Merge remote-tracking branch 'upstream/develop' into 1602-mixed-content

This commit is contained in:
Michael Vogel 2016-02-17 12:18:46 +01:00
commit c770b00d6d
67 changed files with 4438 additions and 22303 deletions

View file

@ -590,15 +590,6 @@ class App {
if(x($_SERVER,'SERVER_NAME')) { if(x($_SERVER,'SERVER_NAME')) {
$this->hostname = $_SERVER['SERVER_NAME']; $this->hostname = $_SERVER['SERVER_NAME'];
// See bug 437 - this didn't work so disabling it
//if(stristr($this->hostname,'xn--')) {
// PHP or webserver may have converted idn to punycode, so
// convert punycode back to utf-8
// require_once('library/simplepie/idn/idna_convert.class.php');
// $x = new idna_convert();
// $this->hostname = $x->decode($_SERVER['SERVER_NAME']);
//}
if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443) if(x($_SERVER,'SERVER_PORT') && $_SERVER['SERVER_PORT'] != 80 && $_SERVER['SERVER_PORT'] != 443)
$this->hostname .= ':' . $_SERVER['SERVER_PORT']; $this->hostname .= ':' . $_SERVER['SERVER_PORT'];
/* /*

View file

@ -2,6 +2,7 @@
require_once('library/HTML5/Parser.php'); require_once('library/HTML5/Parser.php');
require_once('include/crypto.php'); require_once('include/crypto.php');
require_once('include/feed.php');
if(! function_exists('scrape_dfrn')) { if(! function_exists('scrape_dfrn')) {
function scrape_dfrn($url, $dont_probe = false) { function scrape_dfrn($url, $dont_probe = false) {
@ -379,8 +380,6 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
$network = NETWORK_TWITTER; $network = NETWORK_TWITTER;
} }
// Twitter is deactivated since twitter closed its old API
//$twitter = ((strpos($url,'twitter.com') !== false) ? true : false);
$lastfm = ((strpos($url,'last.fm/user') !== false) ? true : false); $lastfm = ((strpos($url,'last.fm/user') !== false) ? true : false);
$at_addr = ((strpos($url,'@') !== false) ? true : false); $at_addr = ((strpos($url,'@') !== false) ? true : false);
@ -617,21 +616,6 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
$vcard['nick'] = $addr_parts[0]; $vcard['nick'] = $addr_parts[0];
} }
/* if($twitter) {
logger('twitter: setup');
$tid = basename($url);
$tapi = 'https://api.twitter.com/1/statuses/user_timeline.rss';
if(intval($tid))
$poll = $tapi . '?user_id=' . $tid;
else
$poll = $tapi . '?screen_name=' . $tid;
$profile = 'http://twitter.com/#!/' . $tid;
//$vcard['photo'] = 'https://api.twitter.com/1/users/profile_image/' . $tid;
$vcard['photo'] = 'https://api.twitter.com/1/users/profile_image?screen_name=' . $tid . '&size=bigger';
$vcard['nick'] = $tid;
$vcard['fn'] = $tid;
} */
if($lastfm) { if($lastfm) {
$profile = $url; $profile = $url;
$poll = str_replace(array('www.','last.fm/'),array('','ws.audioscrobbler.com/1.0/'),$url) . '/recenttracks.rss'; $poll = str_replace(array('www.','last.fm/'),array('','ws.audioscrobbler.com/1.0/'),$url) . '/recenttracks.rss';
@ -675,85 +659,34 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
if(x($feedret,'photo') && (! x($vcard,'photo'))) if(x($feedret,'photo') && (! x($vcard,'photo')))
$vcard['photo'] = $feedret['photo']; $vcard['photo'] = $feedret['photo'];
require_once('library/simplepie/simplepie.inc');
$feed = new SimplePie();
$cookiejar = tempnam(get_temppath(), 'cookiejar-scrape-feed-'); $cookiejar = tempnam(get_temppath(), 'cookiejar-scrape-feed-');
$xml = fetch_url($poll, false, $redirects, 0, Null, $cookiejar); $xml = fetch_url($poll, false, $redirects, 0, Null, $cookiejar);
unlink($cookiejar); unlink($cookiejar);
logger('probe_url: fetch feed: ' . $poll . ' returns: ' . $xml, LOGGER_DATA); logger('probe_url: fetch feed: ' . $poll . ' returns: ' . $xml, LOGGER_DATA);
$a = get_app();
logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), LOGGER_DATA); if ($xml == "") {
logger("scrape_feed: XML is empty for feed ".$poll);
// Don't try and parse an empty string
$feed->set_raw_data(($xml) ? $xml : '<?xml version="1.0" encoding="utf-8" ?><xml></xml>');
$feed->init();
if($feed->error()) {
logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error());
$network = NETWORK_PHANTOM; $network = NETWORK_PHANTOM;
} } else {
$data = feed_import($xml,$dummy1,$dummy2, $dummy3, true);
if(! x($vcard,'photo')) if (!is_array($data)) {
$vcard['photo'] = $feed->get_image_url(); logger("scrape_feed: This doesn't seem to be a feed: ".$poll);
$author = $feed->get_author(); $network = NETWORK_PHANTOM;
} else {
if (($vcard["photo"] == "") AND ($data["header"]["author-avatar"] != ""))
$vcard["photo"] = $data["header"]["author-avatar"];
if($author) { if (($vcard["fn"] == "") AND ($data["header"]["author-name"] != ""))
$vcard['fn'] = unxmlify(trim($author->get_name())); $vcard["fn"] = $data["header"]["author-name"];
if(! $vcard['fn'])
$vcard['fn'] = trim(unxmlify($author->get_email()));
if(strpos($vcard['fn'],'@') !== false)
$vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
$email = unxmlify($author->get_email()); if (($vcard["nick"] == "") AND ($data["header"]["author-nick"] != ""))
if(! $profile && $author->get_link()) $vcard["nick"] = $data["header"]["author-nick"];
$profile = trim(unxmlify($author->get_link()));
if(! $vcard['photo']) { if(!$profile AND ($data["header"]["author-link"] != "") AND !in_array($network, array("", NETWORK_FEED)))
$rawtags = $feed->get_feed_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author'); $profile = $data["header"]["author-link"];
if($rawtags) {
$elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
$vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
}
}
// Fetch fullname via poco:displayName
$pocotags = $feed->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
if ($pocotags) {
$elems = $pocotags[0]['child']['http://portablecontacts.net/spec/1.0'];
if (isset($elems["displayName"]))
$vcard['fn'] = $elems["displayName"][0]["data"];
if (isset($elems["preferredUsername"]))
$vcard['nick'] = $elems["preferredUsername"][0]["data"];
}
}
else {
$item = $feed->get_item(0);
if($item) {
$author = $item->get_author();
if($author) {
$vcard['fn'] = trim(unxmlify($author->get_name()));
if(! $vcard['fn'])
$vcard['fn'] = trim(unxmlify($author->get_email()));
if(strpos($vcard['fn'],'@') !== false)
$vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
$email = unxmlify($author->get_email());
if(! $profile && $author->get_link())
$profile = trim(unxmlify($author->get_link()));
}
if(! $vcard['photo']) {
$rawmedia = $item->get_item_tags('http://search.yahoo.com/mrss/','thumbnail');
if($rawmedia && $rawmedia[0]['attribs']['']['url'])
$vcard['photo'] = unxmlify($rawmedia[0]['attribs']['']['url']);
}
if(! $vcard['photo']) {
$rawtags = $item->get_item_tags( SIMPLEPIE_NAMESPACE_ATOM_10, 'author');
if($rawtags) {
$elems = $rawtags[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10];
if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo'))
$vcard['photo'] = $elems['link'][0]['attribs']['']['href'];
}
}
} }
} }
@ -796,27 +729,9 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
} }
} }
if((! $vcard['photo']) && strlen($email)) if(! $network)
$vcard['photo'] = avatar_img($email);
if($poll === $profile)
$lnk = $feed->get_permalink();
if(isset($lnk) && strlen($lnk))
$profile = $lnk;
if(! $network) {
$network = NETWORK_FEED; $network = NETWORK_FEED;
// If it is a feed, don't take the author name as feed name
unset($vcard['fn']);
}
if(! (x($vcard,'fn')))
$vcard['fn'] = notags($feed->get_title());
if(! (x($vcard,'fn')))
$vcard['fn'] = notags($feed->get_description());
if(strpos($vcard['fn'],'Twitter / ') !== false) {
$vcard['fn'] = substr($vcard['fn'],strpos($vcard['fn'],'/')+1);
$vcard['fn'] = trim($vcard['fn']);
}
if(! x($vcard,'nick')) { if(! x($vcard,'nick')) {
$vcard['nick'] = strtolower(notags(unxmlify($vcard['fn']))); $vcard['nick'] = strtolower(notags(unxmlify($vcard['fn'])));
if(strpos($vcard['nick'],' ')) if(strpos($vcard['nick'],' '))
@ -829,7 +744,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
if(! x($vcard,'photo')) { if(! x($vcard,'photo')) {
$a = get_app(); $a = get_app();
$vcard['photo'] = $a->get_baseurl() . '/images/person-175.jpg' ; $vcard['photo'] = App::get_baseurl() . '/images/person-175.jpg' ;
} }
if(! $profile) if(! $profile)

View file

@ -2,7 +2,18 @@
require_once("include/html2bbcode.php"); require_once("include/html2bbcode.php");
require_once("include/items.php"); require_once("include/items.php");
function feed_import($xml,$importer,&$contact, &$hub) { /**
* @brief Read a RSS/RDF/Atom feed and create an item entry for it
*
* @param string $xml The feed data
* @param array $importer The user record of the importer
* @param array $contact The contact record of the feed
* @param string $hub Unused dummy value for compatibility reasons
* @param bool $simulate If enabled, no data is imported
*
* @return array In simulation mode it returns the header and the first item
*/
function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
$a = get_app(); $a = get_app();
@ -14,18 +25,19 @@ function feed_import($xml,$importer,&$contact, &$hub) {
$doc = new DOMDocument(); $doc = new DOMDocument();
@$doc->loadXML($xml); @$doc->loadXML($xml);
$xpath = new DomXPath($doc); $xpath = new DomXPath($doc);
$xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom"); $xpath->registerNamespace('atom', NAMESPACE_ATOM1);
$xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/"); $xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");
$xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/"); $xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/");
$xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#"); $xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
$xpath->registerNamespace('rss', "http://purl.org/rss/1.0/"); $xpath->registerNamespace('rss', "http://purl.org/rss/1.0/");
$xpath->registerNamespace('media', "http://search.yahoo.com/mrss/"); $xpath->registerNamespace('media', "http://search.yahoo.com/mrss/");
$xpath->registerNamespace('poco', NAMESPACE_POCO);
$author = array(); $author = array();
// Is it RDF? // Is it RDF?
if ($xpath->query('/rdf:RDF/rss:channel')->length > 0) { if ($xpath->query('/rdf:RDF/rss:channel')->length > 0) {
//$author["author-link"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:link/text()')->item(0)->nodeValue; $author["author-link"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:link/text()')->item(0)->nodeValue;
$author["author-name"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:title/text()')->item(0)->nodeValue; $author["author-name"] = $xpath->evaluate('/rdf:RDF/rss:channel/rss:title/text()')->item(0)->nodeValue;
if ($author["author-name"] == "") if ($author["author-name"] == "")
@ -36,19 +48,27 @@ function feed_import($xml,$importer,&$contact, &$hub) {
// Is it Atom? // Is it Atom?
if ($xpath->query('/atom:feed/atom:entry')->length > 0) { if ($xpath->query('/atom:feed/atom:entry')->length > 0) {
//$self = $xpath->query("/atom:feed/atom:link[@rel='self']")->item(0)->attributes; $alternate = $xpath->query("atom:link[@rel='alternate']")->item(0)->attributes;
//if (is_object($self)) if (is_object($alternate))
// foreach($self AS $attributes) foreach($alternate AS $attributes)
// if ($attributes->name == "href") if ($attributes->name == "href")
// $author["author-link"] = $attributes->textContent; $author["author-link"] = $attributes->textContent;
//if ($author["author-link"] == "") { if ($author["author-link"] == "")
// $alternate = $xpath->query("/atom:feed/atom:link[@rel='alternate']")->item(0)->attributes; $author["author-link"] = $xpath->evaluate('/atom:feed/atom:author/atom:uri/text()')->item(0)->nodeValue;
// if (is_object($alternate))
// foreach($alternate AS $attributes) if ($author["author-link"] == "") {
// if ($attributes->name == "href") $self = $xpath->query("atom:link[@rel='self']")->item(0)->attributes;
// $author["author-link"] = $attributes->textContent; if (is_object($self))
//} foreach($self AS $attributes)
if ($attributes->name == "href")
$author["author-link"] = $attributes->textContent;
}
if ($author["author-link"] == "")
$author["author-link"] = $xpath->evaluate('/atom:feed/atom:id/text()')->item(0)->nodeValue;
$author["author-avatar"] = $xpath->evaluate('/atom:feed/atom:logo/text()')->item(0)->nodeValue;
$author["author-name"] = $xpath->evaluate('/atom:feed/atom:title/text()')->item(0)->nodeValue; $author["author-name"] = $xpath->evaluate('/atom:feed/atom:title/text()')->item(0)->nodeValue;
@ -58,7 +78,13 @@ function feed_import($xml,$importer,&$contact, &$hub) {
if ($author["author-name"] == "") if ($author["author-name"] == "")
$author["author-name"] = $xpath->evaluate('/atom:feed/atom:author/atom:name/text()')->item(0)->nodeValue; $author["author-name"] = $xpath->evaluate('/atom:feed/atom:author/atom:name/text()')->item(0)->nodeValue;
//$author["author-avatar"] = $xpath->evaluate('/atom:feed/atom:logo/text()')->item(0)->nodeValue; $value = $xpath->evaluate('atom:author/poco:displayName/text()')->item(0)->nodeValue;
if ($value != "")
$author["author-name"] = $value;
$value = $xpath->evaluate('atom:author/poco:preferredUsername/text()')->item(0)->nodeValue;
if ($value != "")
$author["author-nick"] = $value;
$author["edited"] = $author["created"] = $xpath->query('/atom:feed/atom:updated/text()')->item(0)->nodeValue; $author["edited"] = $author["created"] = $xpath->query('/atom:feed/atom:updated/text()')->item(0)->nodeValue;
@ -69,9 +95,10 @@ function feed_import($xml,$importer,&$contact, &$hub) {
// Is it RSS? // Is it RSS?
if ($xpath->query('/rss/channel')->length > 0) { if ($xpath->query('/rss/channel')->length > 0) {
//$author["author-link"] = $xpath->evaluate('/rss/channel/link/text()')->item(0)->nodeValue; $author["author-link"] = $xpath->evaluate('/rss/channel/link/text()')->item(0)->nodeValue;
$author["author-name"] = $xpath->evaluate('/rss/channel/title/text()')->item(0)->nodeValue; $author["author-name"] = $xpath->evaluate('/rss/channel/title/text()')->item(0)->nodeValue;
//$author["author-avatar"] = $xpath->evaluate('/rss/channel/image/url/text()')->item(0)->nodeValue; $author["author-avatar"] = $xpath->evaluate('/rss/channel/image/url/text()')->item(0)->nodeValue;
if ($author["author-name"] == "") if ($author["author-name"] == "")
$author["author-name"] = $xpath->evaluate('/rss/channel/copyright/text()')->item(0)->nodeValue; $author["author-name"] = $xpath->evaluate('/rss/channel/copyright/text()')->item(0)->nodeValue;
@ -86,18 +113,21 @@ function feed_import($xml,$importer,&$contact, &$hub) {
$entries = $xpath->query('/rss/channel/item'); $entries = $xpath->query('/rss/channel/item');
} }
//if ($author["author-link"] == "") if (!$simulate) {
$author["author-link"] = $contact["url"]; $author["author-link"] = $contact["url"];
if ($author["author-name"] == "") if ($author["author-name"] == "")
$author["author-name"] = $contact["name"]; $author["author-name"] = $contact["name"];
//if ($author["author-avatar"] == "")
$author["author-avatar"] = $contact["thumb"]; $author["author-avatar"] = $contact["thumb"];
$author["owner-link"] = $contact["url"]; $author["owner-link"] = $contact["url"];
$author["owner-name"] = $contact["name"]; $author["owner-name"] = $contact["name"];
$author["owner-avatar"] = $contact["thumb"]; $author["owner-avatar"] = $contact["thumb"];
// This is no field in the item table. So we have to unset it.
unset($author["author-nick"]);
}
$header = array(); $header = array();
$header["uid"] = $importer["uid"]; $header["uid"] = $importer["uid"];
@ -120,6 +150,8 @@ function feed_import($xml,$importer,&$contact, &$hub) {
if (!is_object($entries)) if (!is_object($entries))
return; return;
$items = array();
$entrylist = array(); $entrylist = array();
foreach ($entries AS $entry) foreach ($entries AS $entry)
@ -201,13 +233,13 @@ function feed_import($xml,$importer,&$contact, &$hub) {
if ($creator != "") if ($creator != "")
$item["author-name"] = $creator; $item["author-name"] = $creator;
//$item["object"] = $xml; if (!$simulate) {
$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')",
$r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')", intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN));
intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN)); if ($r) {
if ($r) { logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG); continue;
continue; }
} }
/// @TODO ? /// @TODO ?
@ -272,14 +304,21 @@ function feed_import($xml,$importer,&$contact, &$hub) {
$item["body"] = html2bbcode($body); $item["body"] = html2bbcode($body);
} }
logger("Stored feed: ".print_r($item, true), LOGGER_DEBUG); if (!$simulate) {
logger("Stored feed: ".print_r($item, true), LOGGER_DEBUG);
$notify = item_is_remote_self($contact, $item); $notify = item_is_remote_self($contact, $item);
$id = item_store($item, false, $notify); $id = item_store($item, false, $notify);
//print_r($item); logger("Feed for contact ".$contact["url"]." stored under id ".$id);
} else
$items[] = $item;
logger("Feed for contact ".$contact["url"]." stored under id ".$id); if ($simulate)
break;
} }
if ($simulate)
return array("header" => $author, "items" => $items);
} }
?> ?>

View file

@ -1,26 +0,0 @@
Copyright (c) 2004-2007, Ryan Parman and Geoffrey Sneddon.
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 SimplePie Team 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 HOLDERS
AND 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.

View file

@ -1,53 +0,0 @@
# SimplePie
## Authors and contributors
* [Ryan Parman](http://ryanparman.com)
* [Geoffrey Sneddon](http://gsnedders.com)
* [Ryan McCue](http://ryanmccue.info)
* [Michael Shipley](http://michaelpshipley.com)
* [Steve Minutillo](http://minutillo.com/steve/)
## License
[New BSD license](http://www.opensource.org/licenses/bsd-license.php)
## Project status
SimplePie is currently maintained by Ryan McCue.
At the moment, there isn't a lot of active development happening. If the community decides that SimplePie is a valuable tool, then the community will come together to maintain it into the future.
If you're interested in getting involved with SimplePie, please get in touch with Ryan McCue.
## What comes in the package?
1. `simplepie.inc` - The SimplePie library. This is all that's required for your pages.
2. `README.markdown` - This document.
3. `LICENSE.txt` - A copy of the BSD license.
4. `compatibility_test/` - The SimplePie compatibility test that checks your server for required settings.
5. `demo/` - A basic feed reader demo that shows off some of SimplePie's more noticable features.
6. `idn/` - A third-party library that SimplePie can optionally use to understand Internationalized Domain Names (IDNs).
7. `test/` - SimplePie's unit test suite.
## To start the demo
1. Upload this package to your webserver.
2. Make sure that the cache folder inside of the demo folder is server-writable.
3. Navigate your browser to the demo folder.
## Need support?
For further setup and install documentation, function references, etc., visit:
[http://simplepie.org/wiki/](http://simplepie.org/wiki/)
For bug reports and feature requests, visit:
[http://github.com/rmccue/simplepie/issues](http://github.com/rmccue/simplepie/issues)
Support mailing list -- powered by users, for users.
[http://tech.groups.yahoo.com/group/simplepie-support/](http://tech.groups.yahoo.com/group/simplepie-support/)

View file

@ -1,7 +0,0 @@
SIMPLEPIE COMPATIBILITY TEST
1) Upload sp_compatibility_test.php to the web-accessible root of your website.
For example, if your website is www.example.com, upload it so that you can get
to it at www.example.com/sp_compatibility_test.php
2) Open your web browser and go to the page you just uploaded.

File diff suppressed because one or more lines are too long

View file

@ -1,178 +0,0 @@
<?php
require_once 'simplepie.inc';
function normalize_character_set($charset)
{
return strtolower(preg_replace('/(?:[^a-zA-Z0-9]+|([^0-9])0+)/', '\1', $charset));
}
function build_character_set_list()
{
$file = new SimplePie_File('http://www.iana.org/assignments/character-sets');
if (!$file->success && !($file->method & SIMPLEPIE_FILE_SOURCE_REMOTE === 0 || ($file->status_code === 200 || $file->status_code > 206 && $file->status_code < 300)))
{
return false;
}
else
{
$data = explode("\n", $file->body);
unset($file);
foreach ($data as $line)
{
// New character set
if (substr($line, 0, 5) === 'Name:')
{
// If we already have one, push it on to the array
if (isset($aliases))
{
for ($i = 0, $count = count($aliases); $i < $count; $i++)
{
$aliases[$i] = normalize_character_set($aliases[$i]);
}
$charsets[$preferred] = array_unique($aliases);
natsort($charsets[$preferred]);
}
$start = 5 + strspn($line, "\x09\x0A\x0B\xC\x0D\x20", 5);
$chars = strcspn($line, "\x09\x0A\x0B\xC\x0D\x20", $start);
$aliases = array(substr($line, $start, $chars));
$preferred = end($aliases);
}
// Another alias
elseif(substr($line, 0, 6) === 'Alias:')
{
$start = 7 + strspn($line, "\x09\x0A\x0B\xC\x0D\x20", 7);
$chars = strcspn($line, "\x09\x0A\x0B\xC\x0D\x20", $start);
$aliases[] = substr($line, $start, $chars);
if (end($aliases) === 'None')
{
array_pop($aliases);
}
elseif (substr($line, 7 + $chars + 1, 21) === '(preferred MIME name)')
{
$preferred = end($aliases);
}
}
}
// Compatibility replacements
$compat = array(
'EUC-KR' => 'windows-949',
'GB2312' => 'GBK',
'GB_2312-80' => 'GBK',
'ISO-8859-1' => 'windows-1252',
'ISO-8859-9' => 'windows-1254',
'ISO-8859-11' => 'windows-874',
'KS_C_5601-1987' => 'windows-949',
'TIS-620' => 'windows-874',
//'US-ASCII' => 'windows-1252',
'x-x-big5' => 'Big5',
);
foreach ($compat as $real => $replace)
{
if (isset($charsets[$real]) && isset($charsets[$replace]))
{
$charsets[$replace] = array_merge($charsets[$replace], $charsets[$real]);
unset($charsets[$real]);
}
elseif (isset($charsets[$real]))
{
$charsets[$replace] = $charsets[$real];
$charsets[$replace][] = normalize_character_set($replace);
unset($charsets[$real]);
}
else
{
$charsets[$replace][] = normalize_character_set($real);
}
$charsets[$replace] = array_unique($charsets[$replace]);
natsort($charsets[$replace]);
}
// Sort it
uksort($charsets, 'strnatcasecmp');
// Check that nothing matches more than one
$all = call_user_func_array('array_merge', $charsets);
$all_count = array_count_values($all);
if (max($all_count) > 1)
{
echo "Duplicated charsets:\n";
foreach ($all_count as $charset => $count)
{
if ($count > 1)
{
echo "$charset\n";
}
}
}
// And we're done!
return $charsets;
}
}
function charset($charset)
{
$normalized_charset = normalize_character_set($charset);
if ($charsets = build_character_set_list())
{
foreach ($charsets as $preferred => $aliases)
{
if (in_array($normalized_charset, $aliases))
{
return $preferred;
}
}
return $charset;
}
else
{
return false;
}
}
function build_function()
{
if ($charsets = build_character_set_list())
{
$return = <<<EOF
function charset(\$charset)
{
// Normalization from UTS #22
switch (strtolower(preg_replace('/(?:[^a-zA-Z0-9]+|([^0-9])0+)/', '\\1', \$charset)))
{
EOF;
foreach ($charsets as $preferred => $aliases)
{
foreach ($aliases as $alias)
{
$return .= "\t\tcase " . var_export($alias, true) . ":\n";
}
$return .= "\t\t\treturn " . var_export($preferred, true) . ";\n\n";
}
$return .= <<<EOF
default:
return \$charset;
}
}
EOF;
return $return;
}
else
{
return false;
}
}
if (php_sapi_name() === 'cli' && realpath($_SERVER['argv'][0]) === __FILE__)
{
echo build_function();
}
?>

View file

@ -1,38 +0,0 @@
/* SQLite */
CREATE TABLE cache_data (
id TEXT NOT NULL,
items SMALLINT NOT NULL DEFAULT 0,
data BLOB NOT NULL,
mtime INTEGER UNSIGNED NOT NULL
);
CREATE UNIQUE INDEX id ON cache_data(id);
CREATE TABLE items (
feed_id TEXT NOT NULL,
id TEXT NOT NULL,
data TEXT NOT NULL,
posted INTEGER UNSIGNED NOT NULL
);
CREATE INDEX feed_id ON items(feed_id);
/* MySQL */
CREATE TABLE `cache_data` (
`id` TEXT CHARACTER SET utf8 NOT NULL,
`items` SMALLINT NOT NULL DEFAULT 0,
`data` BLOB NOT NULL,
`mtime` INT UNSIGNED NOT NULL,
UNIQUE (
`id`(125)
)
);
CREATE TABLE `items` (
`feed_id` TEXT CHARACTER SET utf8 NOT NULL,
`id` TEXT CHARACTER SET utf8 NOT NULL,
`data` TEXT CHARACTER SET utf8 NOT NULL,
`posted` INT UNSIGNED NOT NULL,
INDEX `feed_id` (
`feed_id`(125)
)
);

View file

@ -1,23 +0,0 @@
#!/usr/bin/php
<?php
include_once('../simplepie.inc');
// Parse it
$feed = new SimplePie();
if (isset($argv[1]) && $argv[1] !== '')
{
$feed->set_feed_url($argv[1]);
$feed->enable_cache(false);
$feed->init();
}
$items = $feed->get_items();
foreach ($items as $item)
{
echo $item->get_title() . "\n";
}
var_dump($feed->get_item_quantity());
?>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 715 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,5 +0,0 @@
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://www.jeroenwijering.com/extras/readme.html">
</head>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 851 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

View file

@ -1,35 +0,0 @@
/*=:project
scalable Inman Flash Replacement (sIFR) version 3.
=:file
Copyright: 2006 Mark Wubben.
Author: Mark Wubben, <http://novemberborn.net/>
=:history
* IFR: Shaun Inman
* sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin
* sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben
=:license
This software is licensed and provided under the CC-GNU LGPL.
See <http://creativecommons.org/licenses/LGPL/2.1/>
*/
/* This is the print stylesheet to hide the Flash headlines from the browser... regular browser text headlines will now print as normal */
.sIFR-flash {
display: none !important;
height: 0;
width: 0;
position: absolute;
overflow: hidden;
}
.sIFR-alternate {
visibility: visible !important;
display: block !important;
position: static !important;
left: auto !important;
top: auto !important;
}

View file

@ -1,39 +0,0 @@
/*=:project
scalable Inman Flash Replacement (sIFR) version 3.
=:file
Copyright: 2006 Mark Wubben.
Author: Mark Wubben, <http://novemberborn.net/>
=:history
* IFR: Shaun Inman
* sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin
* sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben
=:license
This software is licensed and provided under the CC-GNU LGPL.
See <http://creativecommons.org/licenses/LGPL/2.1/>
*/
/*---- sIFR ---*/
.sIFR-flash {
visibility: visible !important;
margin: 0;
padding: 0;
}
.sIFR-replaced {
visibility: visible !important;
}
.sIFR-alternate {
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
display: block;
overflow: hidden;
}
/*---- Header styling ---*/

View file

@ -1,40 +0,0 @@
var yanone_kaffeesatz = {
src: './for_the_demo/yanone-kaffeesatz-bold.swf'
};
var lucida_grande = {
src: './for_the_demo/lucida-grande-bold.swf'
};
sIFR.activate(yanone_kaffeesatz);
//sIFR.activate(lucida_grande);
sIFR.replace(yanone_kaffeesatz, {
//sIFR.replace(lucida_grande, {
selector: 'h3.header',
wmode: 'transparent',
css: {
'.sIFR-root': {
'text-align': 'center',
'color': '#000000',
'font-weight': 'bold',
'background-color': '#EEFFEE',
'font-size': '50px', // For Yanone Kaffeesatz
//'font-size': '40px', // For Lucida Grande
'letter-spacing': '0' // For Yanone Kaffeesatz
//'letter-spacing': '-4' // For Lucida Grande
},
'a': {
'text-decoration': 'none',
'color': '#000000'
},
'a:hover': {
'text-decoration': 'none',
'color': '#666666'
}
}
});

File diff suppressed because one or more lines are too long

View file

@ -1,397 +0,0 @@
/*
Theme Name: SimplePie
Theme URI: http://simplepie.org
Description: A simple, yet beautiful theme inspired by several cleanly designed websites.
Version: 1.4
Author: Ryan Parman
Author URI: http://skyzyx.com
Updated: 21 June 2007
*/
/*********************************************
HYPERLINK STYLES
*********************************************/
a {
color:#369;
text-decoration:underline;
padding:0 1px;
}
a:hover {
color:#fff !important;
background-color:#333;
text-decoration:none;
padding:0 1px;
}
a.nohover {
text-decoration:none;
border:none;
}
a.nohover:hover {
background-color:transparent;
border:none;
}
a.namelink {
padding:0;
margin:0;
overflow:hidden;
height:1px;
}
h4 a,
.sample_feeds a {
color:#000;
}
/*********************************************
GENERAL STYLES
*********************************************/
body {
/*font:12px/18px Verdana, sans-serif;*/
font:14px/1.5em "Lucida Grande", Tahoma, sans-serif;
letter-spacing:0px;
color:#333;
background-color:#fff;
margin:0;
padding:0;
}
div#site {
width:600px;
margin:50px auto 0 auto;
}
h1#logo {
margin:0;
padding:0;
text-align:center;
}
h1#logo a,
h1#logo a:hover {
background-color:transparent;
text-decoration:none;
padding:0;
}
h2.image {
margin:0;
padding:0;
text-align:center;
}
h3 {
margin:20px 0 0 0;
padding:0;
font-size:1.5em;
}
h4 {
margin:20px 0 0 0;
padding:0;
font-size:1.2em;
letter-spacing:-1px;
}
h5 {
margin:10px 0 0 0;
padding:0;
font-size:1em;
font-weight:bold;
}
em {
font-style:normal;
background-color:#ffc;
}
p {
margin:0;
padding:5px 0;
}
ul, ol {
margin:10px 0 10px 20px;
padding:0 0 0 15px;
}
ul li, ol li {
margin:0 0 7px 0;
padding:0 0 0 3px;
}
form {
margin:0;
padding:0;
}
code {
font-size:1em;
background-color:#f3f3ff;
color:#000;
}
div#site pre {
background-color:#f3f3ff;
color:#000080;
border:1px dotted #000080;
overflow:auto;
padding:3px 5px;
}
blockquote {
font-size:1em;
color:#666;
border-left:4px solid #666;
margin:10px 0 10px 30px;
padding:0 5px 0 10px;
background:#f3f3f3 url(background_blockquote.png) repeat top left;
}
input, select, textarea {
font-size:12px;
line-height:1.2em;
padding:2px;
}
input[type=text], select, textarea {
background-color:#e9f5ff;
border:1px solid #333;
}
input[type=text]:focus, select:focus, textarea:focus {
background-color:#ffe;
}
.clearLeft {clear:left;}
.clearRight {clear:right;}
.clearBoth {clear:both;}
.hide {display:none;}
/*********************************************
NAVIGATION STYLES
*********************************************/
div#header {
background:#fff url(top_gradient.gif) repeat-x top left;
margin:0;
padding:0;
}
div#header form {
margin:0;
padding:0;
}
div#header div#headerInner {
margin:0;
padding:0;
}
div#header div#headerInner div#logoContainer {}
div#header div#headerInner div#logoContainerInner {
width:550px;
margin:0 auto;
padding:20px;
}
div#header div#headerInner div#logoContainer div#logo {
float:left;
width:200px;
}
div#header div#headerInner div#logoContainer div#logo a,
div#header div#headerInner div#logoContainer div#logo a:hover {
border:none;
background:none;
}
div#header div#headerInner div#logoContainer div#feed {
float:right;
width:300px;
text-align:right;
padding:10px 0 0 0;
}
div#header div#headerInner div#logoContainer div#feed input.text {
width:60%;
}
div#header div#headerInner div#menu {
background:#eee url(background_menuitem_shadow.gif) repeat-x top left;
border-top:2px solid #ccc;
border-bottom:1px solid #ddd;
text-align:center;
}
div#header div#headerInner div#menu table {
width:auto;
margin:0 auto;
}
div#header div#headerInner div#menu ul {
display:block;
width:100%;
margin:0 auto;
padding:0;
font-size:12px;
}
div#header div#headerInner div#menu ul li {
display:block;
float:left;
}
div#header div#headerInner div#menu ul li a {
display:block;
margin:-2px 0 0 0;
padding:5px 7px 8px 7px;
text-decoration:none;
color:#666 !important;
background-color:transparent;
}
div#header div#headerInner div#menu ul li a:hover {
display:block;
margin:-2px 0 0 0;
padding:5px 7px 8px 7px;
text-decoration:none;
color:#666;
background:#fff url(background_menuitem_off.gif) no-repeat bottom right;
}
body#bodydemo div#header div#headerInner div#menu ul li#demo a {
display:block;
margin:-2px 0 0 0;
padding:5px 7px 8px 7px;
text-decoration:none;
color:#333;
font-weight:bold;
background:#fff url(background_menuitem.gif) no-repeat bottom right;
}
/*********************************************
CONTENT STYLES
*********************************************/
div.chunk {
margin:20px 0 0 0;
padding:0 0 10px 0;
border-bottom:1px solid #ccc;
}
div.topchunk {
margin:0 !important;
}
.footnote,
.footnote a {
font-size:12px;
line-height:1.3em;
color:#aaa;
}
.footnote em {
background-color:transparent;
font-style:italic;
}
.footnote code {
background-color:transparent;
font:11px/14px monospace;
color:#aaa;
}
p.subscribe {
background-color:#f3f3f3;
font-size:12px;
text-align:center;
}
p.highlight {
background-color:#ffc;
font-size:12px;
text-align:center;
}
p.sample_feeds {
font-size:12px;
line-height:1.2em;
}
div.sp_errors {
background-color:#eee;
padding:5px;
text-align:center;
font-size:12px;
}
.noborder {
border:none !important;
}
img.favicon {
margin:0 4px -2px 0;
width:16px;
height:16px;
}
p.favicons a,
p.favicons a:hover {
border:none;
background-color:transparent;
}
p.favicons img {
border:none;
}
/*********************************************
DEMO STYLES
*********************************************/
div#sp_input {
background-color:#ffc;
border:2px solid #f90;
padding:5px;
text-align:center;
}
div#sp_input input.text {
border:1px solid #999;
background:#e9f5ff url(feed.png) no-repeat 4px 50%;
width:75%;
padding:2px 2px 2px 28px;
font:18px/22px "Lucida Grande", Verdana, sans-serif;
font-weight:bold;
letter-spacing:-1px;
}
form#sp_form {
margin:15px 0;
}
div.focus {
margin:0;
padding:10px 20px;
background-color:#efe;
}
p.sample_feeds {
text-align:justify;
}
/*********************************************
SIFR STYLES
*********************************************/
.sIFR-active h3.header {
visibility:hidden;
line-height:1em;
}

View file

@ -1,31 +0,0 @@
/**********************************************************
Sleight
(c) 2001, Aaron Boodman
http://www.youngpup.net
**********************************************************/
if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent)
{
document.writeln('<style type="text/css">img { visibility:hidden; } </style>');
window.attachEvent("onload", fnLoadPngs);
}
function fnLoadPngs()
{
var rslt = navigator.appVersion.match(/MSIE (\d+\.\d+)/, '');
var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5);
for (var i = document.images.length - 1, img = null; (img = document.images[i]); i--)
{
if (itsAllGood && img.src.match(/\.png$/i) != null)
{
var src = img.src;
var div = document.createElement("DIV");
div.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizing='scale')"
div.style.width = img.width + "px";
div.style.height = img.height + "px";
img.replaceNode(div);
}
img.style.visibility = "visible";
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

View file

@ -1,71 +0,0 @@
/*=:project
scalable Inman Flash Replacement (sIFR) version 3.
=:file
Copyright: 2006 Mark Wubben.
Author: Mark Wubben, <http://novemberborn.net/>
=:history
* IFR: Shaun Inman
* sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin
* sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben
=:license
This software is licensed and provided under the CC-GNU LGPL.
See <http://creativecommons.org/licenses/LGPL/2.1/>
*/
import TextField.StyleSheet;
class SifrStyleSheet extends TextField.StyleSheet {
public var fontSize;
public var latestLeading = 0;
public function parseCSS(cssText:String) {
var native = new TextField.StyleSheet();
var parsed = native.parseCSS(cssText);
if(!parsed) return false;
var selectors = native.getStyleNames();
for(var i = selectors.length - 1; i >= 0; i--) {
var selector = selectors[i];
var nativeStyle = native.getStyle(selector);
var style = this.getStyle(selector) || nativeStyle;
if(style != nativeStyle) {
for(var property in nativeStyle) style[property] = nativeStyle[property];
}
this.setStyle(selector, style);
}
return true;
}
// Apply leading to the textFormat. Much thanks to <http://www.blog.lessrain.com/?p=98>.
private function applyLeading(format, leading) {
this.latestLeading = leading;
if(leading >= 0) {
format.leading = leading;
return format;
}
// Workaround for negative leading, which is ignored otherwise.
var newFormat = new TextFormat(null, null, null, null, null, null, null, null, null, null, null, null, leading);
for(var property in format) if(property != 'leading') newFormat[property] = format[property];
return newFormat;
}
public function transform(style) {
var format = super.transform(style);
if(style.leading) format = applyLeading(format, style.leading);
if(style.letterSpacing) format.letterSpacing = style.letterSpacing;
// Support font sizes relative to the size of .sIFR-root.
if(this.fontSize && style.fontSize && style.fontSize.indexOf('%')) {
format.size = this.fontSize * parseInt(style.fontSize) / 100;
}
format.kerning = _root.kerning == 'true' || !(_root.kerning == 'false') || sIFR.defaultKerning;
return format;
}
}

View file

@ -1,12 +0,0 @@
This is a pre-release nightly of sIFR 3 (r245 to be exact). We (the SimplePie team) will be updating the
sIFR code and font files from time to time as new releases of sIFR 3 are made available.
In this folder you'll find a few Flash 8 files. The only one of you might want to mess with is sifr.fla.
* Open it up
* Double-click the rectangle in the middle
* Select all
* Change the font
More information about sIFR 3 can be found here:
* http://dev.novemberborn.net/sifr3/
* http://wiki.novemberborn.net/sifr3/

View file

@ -1,12 +0,0 @@
// MTASC only parses as-files with class definitions, so here goes...
class Options {
public static function apply() {
sIFR.fromLocal = true;
sIFR.domains = ['*'];
// Parsing `p.foo` might not work, see: <http://livedocs.macromedia.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=00001766.html>
// Appearantly you have to use hex color codes as well, names are not supported!
sIFR.styles.parseCSS('.foo { text-decoration: underline; }');
}
}

View file

@ -1,359 +0,0 @@
/*=:project
scalable Inman Flash Replacement (sIFR) version 3.
=:file
Copyright: 2006 Mark Wubben.
Author: Mark Wubben, <http://novemberborn.net/>
=:history
* IFR: Shaun Inman
* sIFR 1: Mike Davidson, Shaun Inman and Tomas Jogin
* sIFR 2: Mike Davidson, Shaun Inman, Tomas Jogin and Mark Wubben
=:license
This software is licensed and provided under the CC-GNU LGPL.
See <http://creativecommons.org/licenses/LGPL/2.1/>
*/
import SifrStyleSheet;
class sIFR {
public static var DEFAULT_TEXT = 'Rendered with sIFR 3, revision 245';
public static var CSS_ROOT_CLASS = 'sIFR-root';
public static var DEFAULT_WIDTH = 300;
public static var DEFAULT_HEIGHT = 100;
public static var DEFAULT_ANTI_ALIAS_TYPE = 'advanced';
public static var MARGIN_LEFT = -3;
public static var PADDING_BOTTOM = 5; // Extra padding to make sure the movie is high enough in most cases.
public static var LEADING_REMAINDER = 2; // Flash uses the specified leading minus 2 as the applied leading.
public static var MAX_FONT_SIZE = 126;
public static var ALIASING_MAX_FONT_SIZE = 48;
//= Holds CSS properties and other rendering properties for the Flash movie.
// *Don't overwrite!*
public static var styles:SifrStyleSheet = new SifrStyleSheet();
//= Allow sIFR to be run from localhost
public static var fromLocal:Boolean = true;
//= Array containing domains for which sIFR may render text. Used to prevent
// hotlinking. Use `*` to allow all domains.
public static var domains:Array = [];
//= Whether kerning is enabled by default. This can be overriden from the client side.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002811.html>.
public static var defaultKerning:Boolean = true;
//= Default value which can be overriden from the client side.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002788.html>.
public static var defaultSharpness:Number = 0;
//= Default value which can be overriden from the client side.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002787.html>.
public static var defaultThickness:Number = 0;
//= Default value which can be overriden from the client side.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002732.html>.
public static var defaultOpacity:Number = -1; // Use client settings
//= Default value which can be overriden from the client side.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002788.html>.
public static var defaultBlendMode:Number = -1; // Use cliest settings
//= Overrides the grid fit type as defined on the client side.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002444.html>.
public static var enforcedGridFitType:String = null;
//= If `true` sIFR won't override the anti aliasing set in the Flash IDE when exporting.
// Thickness and sharpness won't be affected either.
public static var preserveAntiAlias:Boolean = false;
//= If `true` sIFR will disable anti-aliasing if the font size is larger than `ALIASING_MAX_FONT_SIZE`.
// This setting is *independent* from `preserveAntiAlias`.
public static var conditionalAntiAlias:Boolean = true;
//= Sets the anti alias type. By default it's `DEFAULT_ANTI_ALIAS_TYPE`.
// See also <http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&file=00002733.html>.
public static var antiAliasType:String = null;
//= Flash filters can be added to this array and will be applied to the text field.
public static var filters:Array = [];
//= A mapping from the names of the filters to their actual objecs, used when transforming
// filters defined on the client. You can add additional filters here so they'll be supported
// when defined on the client.
public static var filterMap:Object = {
DisplacementMapFilter : flash.filters.DisplacementMapFilter,
ColorMatrixFilter : flash.filters.ColorMatrixFilter,
ConvolutionFilter : flash.filters.ConvolutionFilter,
GradientBevelFilter : flash.filters.GradientBevelFilter,
GradientGlowFilter : flash.filters.GradientGlowFilter,
BevelFilter : flash.filters.BevelFilter,
GlowFilter : flash.filters.GlowFilter,
BlurFilter : flash.filters.BlurFilter,
DropShadowFilter : flash.filters.DropShadowFilter
};
private static var instance;
private var textField;
private var content;
private var realHeight;
private var originalHeight;
private var currentHeight;
private var fontSize;
private var tuneWidth;
private var tuneHeight;
//= Sets the default styles for `sIFR.styles`. This method is called
// directly in `sifr.fla`, before options are applied.
public static function setDefaultStyles() {
sIFR.styles.parseCSS([
'.', CSS_ROOT_CLASS, ' { color: #000000; }',
'strong { display: inline; font-weight: bold; } ',
'em { display: inline; font-style: italic; }',
'a { color: #0000FF; text-decoration: underline; }',
'a:hover { color: #0000FF; text-decoration: none; }'
].join(''));
}
//= Validates the domain sIFR is being used on.
// Returns `true` if the domain is valid, `false` otherwise.
public static function checkDomain():Boolean {
if(sIFR.domains.length == 0) return true;
var domain = (new LocalConnection()).domain();
if(sIFR.fromLocal) sIFR.domains.push('localhost');
for(var i = 0; i < sIFR.domains.length; i++) {
var match = sIFR.domains[i];
if(match == '*' || match == domain) return true;
var wildcard = match.lastIndexOf('*');
if(wildcard > -1) {
match = match.substr(wildcard + 1);
var matchPosition = domain.lastIndexOf(match);
if(matchPosition > -1 && (matchPosition + match.length) == domain.length) return true;
}
}
return false;
}
//= Runs sIFR. Called automatically.
public static function run() {
var holder = _root.holder;
var content = checkDomain() ? unescape(_root.content) : DEFAULT_TEXT
if(content == 'undefined' || content == '') {
content = DEFAULT_TEXT;
fscommand('resetmovie', '');
} else fscommand('ping', '');
// Sets stage parameters
Stage.scaleMode = 'noscale';
Stage.align = 'TL';
Stage.showMenu = false;
// Other parameters
var opacity = parseInt(_root.opacity);
if(!isNaN(opacity)) holder._alpha = sIFR.defaultOpacity == -1 ? opacity : sIFR.defaultOpacity;
else holder._alpha = 100;
_root.blendMode = sIFR.defaultBlendMode == -1 ? _root.blendmode : sIFR.defaultBlendMode;
sIFR.instance = new sIFR(holder.txtF, content);
// This should ignore resizes from the callback. Disabled for now.
/* if(_root.zoomsupport == 'true') Stage.addListener({onResize: function() { sIFR.instance.scale() }});*/
// Setup callbacks
_root.watch('callbackTrigger', function() {
sIFR.callback();
return false;
});
}
private static function eval(str) {
var as;
if(str.charAt(0) == '{') { // Ah, we need to create an object
as = {};
str = str.substring(1, str.length - 1);
var $ = str.split(',');
for(var i = 0; i < $.length; i++) {
var $1 = $[i].split(':');
as[$1[0]] = sIFR.eval($1[1]);
}
} else if(str.charAt(0) == '"') { // String
as = str.substring(1, str.length - 1);
} else if(str == 'true' || str == 'false') { // Boolean
as = str == 'true';
} else { // Float
as = parseFloat(str);
}
return as;
}
private function applyFilters() {
var $filters = this.textField.filters;
$filters = $filters.concat(sIFR.filters);
var $ = _root.flashfilters.split(';'); // name,prop:value,...;
for(var i = 0; i < $.length; i++) {
var $1 = $[i].split(',');
var newFilter = new sIFR.filterMap[$1[0]]();
for(var j = 1; j < $1.length; j++) {
var $2 = $1[j].split(':');
newFilter[$2[0]] = sIFR.eval(unescape($2[1]));
}
$filters.push(newFilter);
}
this.textField.filters = $filters;
}
private function sIFR(textField, content) {
this.textField = textField;
this.content = content;
var offsetLeft = parseInt(_root.offsetleft);
textField._x = MARGIN_LEFT + (isNaN(offsetLeft) ? 0 : offsetLeft);
var offsetTop = parseInt(_root.offsettop);
if(!isNaN(offsetTop)) textField._y += offsetTop;
tuneWidth = parseInt(_root.tunewidth);
if(isNaN(tuneWidth)) tuneWidth = 0;
tuneHeight = parseInt(_root.tuneheight);
if(isNaN(tuneHeight)) tuneHeight = 0;
textField._width = tuneWidth + (isNaN(parseInt(_root.width)) ? DEFAULT_WIDTH : parseInt(_root.width));
textField._height = tuneHeight + (isNaN(parseInt(_root.height)) ? DEFAULT_HEIGHT : parseInt(_root.height));
textField.wordWrap = true;
textField.selectable = _root.selectable == 'true';
textField.gridFitType = sIFR.enforcedGridFitType || _root.gridfittype;
this.applyFilters();
// Determine font-size and the number of lines
this.fontSize = parseInt(_root.size);
if(isNaN(this.fontSize)) this.fontSize = 26;
styles.fontSize = this.fontSize;
if(!sIFR.preserveAntiAlias && (sIFR.conditionalAntiAlias && this.fontSize < ALIASING_MAX_FONT_SIZE
|| !sIFR.conditionalAntiAlias)) {
textField.antiAliasType = sIFR.antiAliasType || DEFAULT_ANTI_ALIAS_TYPE;
}
if(!sIFR.preserveAntiAlias || !isNaN(parseInt(_root.sharpness))) {
textField.sharpness = parseInt(_root.sharpness);
}
if(isNaN(textField.sharpness)) textField.sharpness = sIFR.defaultSharpness;
if(!sIFR.preserveAntiAlias || !isNaN(parseInt(_root.thickness))) {
textField.thickness = parseInt(_root.thickness);
}
if(isNaN(textField.thickness)) textField.thickness = sIFR.defaultThickness;
// Set font-size and other styles
sIFR.styles.parseCSS(unescape(_root.css));
var rootStyle = styles.getStyle('.sIFR-root') || {};
rootStyle.fontSize = this.fontSize; // won't go higher than 126!
styles.setStyle('.sIFR-root', rootStyle);
textField.styleSheet = styles;
this.write(content);
this.repaint();
}
private function repaint() {
var leadingFix = this.isSingleLine() ? sIFR.styles.latestLeading : 0;
if(leadingFix > 0) leadingFix -= LEADING_REMAINDER;
// Flash wants to scroll the movie by one line, by adding the fontSize to the
// textField height this is no longer happens. We also add the absolute tuneHeight,
// to prevent a negative value from triggering the bug. We won't send the fake
// value to the JavaScript side, though.
textField._height = textField.textHeight + PADDING_BOTTOM + this.fontSize + Math.abs(tuneHeight) + tuneHeight - leadingFix;
this.realHeight = textField._height - this.fontSize - Math.abs(tuneHeight);
var arg = 'height:' + this.realHeight;
if(_root.fitexactly == 'true') arg += ',width:' + (textField.textWidth + tuneWidth);
fscommand('resize', arg);
this.originalHeight = textField._height;
this.currentHeight = Stage.height;
textField._xscale = textField._yscale = parseInt(_root.zoom);
}
private function write(content) {
this.textField.htmlText = ['<p class="', CSS_ROOT_CLASS, '">',
content, '</p>'
].join('');
}
private function isSingleLine() {
return Math.round((this.textField.textHeight - sIFR.styles.latestLeading) / this.fontSize) == 1;
}
//= Scales the text field to the new scale of the Flash movie itself.
public function scale() {
this.currentHeight = Stage.height;
var scale = 100 * Math.round(this.currentHeight / this.originalHeight);
textField._xscale = textField._yscale = scale;
}
private function calculateRatios() {
var strings = ['X', 'X<br>X', 'X<br>X<br>X', 'X<br>X<br>X<br>X'];
var results = {};
for(var i = 1; i <= strings.length; i++) {
var size = 6;
this.write(strings[i - 1]);
while(size < MAX_FONT_SIZE) {
var rootStyle = sIFR.styles.getStyle('.sIFR-root') || {};
rootStyle.fontSize = size;
sIFR.styles.setStyle('.sIFR-root', rootStyle);
this.textField.styleSheet = sIFR.styles;
this.repaint();
var ratio = (this.realHeight - PADDING_BOTTOM) / i / size;
if(!results[size]) results[size] = ratio;
else results[size] = ((i - 1) * results[size] + ratio) / i;
size++;
}
}
var sizes = [], ratios = [];
var ratiosToSizes = {}, sizesToRatios = {};
for(var size in results) {
if(results[size] == Object.prototype[size]) continue;
var ratio = results[size];
ratiosToSizes[ratio] = Math.max(ratio, parseInt(size));
}
for(var ratio in ratiosToSizes) {
if(ratiosToSizes[ratio] == Object.prototype[ratio]) continue;
sizesToRatios[ratiosToSizes[ratio]] = roundDecimals(ratio, 2);
sizes.push(ratiosToSizes[ratio]);
}
sizes.sort(function(a, b) { return a - b; });
for(var j = 0; j < sizes.length - 1; j++) ratios.push(sizes[j], sizesToRatios[sizes[j]]);
ratios.push(sizesToRatios[sizes[sizes.length - 1]]);
fscommand('debug:ratios', '[' + ratios.join(',') + ']');
}
private function roundDecimals(value, decimals) {
return Math.round(value * Math.pow(10, decimals)) / Math.pow(10, decimals);
}
public static function callback() {
switch(_root.callbackType) {
case 'replacetext':
sIFR.instance.content = _root.callbackValue;
sIFR.instance.write(_root.callbackValue);
sIFR.instance.repaint();
break;
case 'resettext':
sIFR.instance.write('');
sIFR.instance.write(sIFR.instance.content);
break;
case 'ratios':
sIFR.instance.calculateRatios();
break;
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,6 +0,0 @@
<?php
// This should be modifed as your own use warrants.
require_once('../simplepie.inc');
SimplePie_Misc::display_cached_file($_GET['i'], './cache', 'spi');
?>

View file

@ -1,295 +0,0 @@
<?php
// Start counting time for the page load
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
// Include SimplePie
// Located in the parent directory
include_once('../simplepie.inc');
include_once('../idn/idna_convert.class.php');
// Create a new instance of the SimplePie object
$feed = new SimplePie();
//$feed->force_fsockopen(true);
// Make sure that page is getting passed a URL
if (isset($_GET['feed']) && $_GET['feed'] !== '')
{
// Strip slashes if magic quotes is enabled (which automatically escapes certain characters)
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc())
{
$_GET['feed'] = stripslashes($_GET['feed']);
}
// Use the URL that was passed to the page in SimplePie
$feed->set_feed_url($_GET['feed']);
// XML dump
$feed->enable_xml_dump(isset($_GET['xmldump']) ? true : false);
}
// Allow us to change the input encoding from the URL string if we want to. (optional)
if (!empty($_GET['input']))
{
$feed->set_input_encoding($_GET['input']);
}
// Allow us to choose to not re-order the items by date. (optional)
if (!empty($_GET['orderbydate']) && $_GET['orderbydate'] == 'false')
{
$feed->enable_order_by_date(false);
}
// Allow us to cache images in feeds. This will also bypass any hotlink blocking put in place by the website.
if (!empty($_GET['image']) && $_GET['image'] == 'true')
{
$feed->set_image_handler('./handler_image.php');
}
// We'll enable the discovering and caching of favicons.
$feed->set_favicon_handler('./handler_image.php');
// Initialize the whole SimplePie object. Read the feed, process it, parse it, cache it, and
// all that other good stuff. The feed's information will not be available to SimplePie before
// this is called.
$success = $feed->init();
// We'll make sure that the right content type and character encoding gets set automatically.
// This function will grab the proper character encoding, as well as set the content type to text/html.
$feed->handle_content_type();
// When we end our PHP block, we want to make sure our DOCTYPE is on the top line to make
// sure that the browser snaps into Standards Mode.
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<title>SimplePie: Demo</title>
<link rel="stylesheet" href="./for_the_demo/sIFR-screen.css" type="text/css" media="screen">
<link rel="stylesheet" href="./for_the_demo/sIFR-print.css" type="text/css" media="print">
<link rel="stylesheet" href="./for_the_demo/simplepie.css" type="text/css" media="screen, projector" />
<script type="text/javascript" src="./for_the_demo/sifr.js"></script>
<script type="text/javascript" src="./for_the_demo/sifr-config.js"></script>
<script type="text/javascript" src="./for_the_demo/sleight.js"></script>
</head>
<body id="bodydemo">
<div id="header">
<div id="headerInner">
<div id="logoContainer">
<div id="logoContainerInner">
<div align="center"><a href="http://simplepie.org"><img src="./for_the_demo/logo_simplepie_demo.png" alt="SimplePie Demo: PHP-based RSS and Atom feed handling" title="SimplePie Demo: PHP-based RSS and Atom feed handling" border="0" /></a></div>
<div class="clearLeft"></div>
</div>
</div>
<div id="menu">
<!-- I know, I know, I know... tables for layout, I know. If a web standards evangelist (like me) has to resort
to using tables for something, it's because no other possible solution could be found. This issue? No way to
do centered floats purely with CSS. The table box model allows for a dynamic width while centered, while the
CSS box model for DIVs doesn't allow for it. :( -->
<table cellpadding="0" cellspacing="0" border="0"><tbody><tr><td>
<ul><li id="demo"><a href="./">SimplePie Demo</a></li><li><a href="http://simplepie.org/wiki/faq/start">FAQ/Troubleshooting</a></li><li><a href="http://simplepie.org/support/">Support Forums</a></li><li><a href="http://simplepie.org/wiki/reference/start">API Reference</a></li><li><a href="http://simplepie.org/blog/">Weblog</a></li><li><a href="../test/test.php">Unit Tests</a></li></ul>
<div class="clearLeft"></div>
</td></tr></tbody></table>
</div>
</div>
</div>
<div id="site">
<div id="content">
<div class="chunk">
<form action="" method="get" name="sp_form" id="sp_form">
<div id="sp_input">
<!-- If a feed has already been passed through the form, then make sure that the URL remains in the form field. -->
<p><input type="text" name="feed" value="<?php if ($feed->subscribe_url()) echo $feed->subscribe_url(); ?>" class="text" id="feed_input" />&nbsp;<input type="submit" value="Read" class="button" /></p>
</div>
</form>
<?php
// Check to see if there are more than zero errors (i.e. if there are any errors at all)
if ($feed->error())
{
// If so, start a <div> element with a classname so we can style it.
echo '<div class="sp_errors">' . "\r\n";
// ... and display it.
echo '<p>' . htmlspecialchars($feed->error()) . "</p>\r\n";
// Close the <div> element we opened.
echo '</div>' . "\r\n";
}
?>
<!-- Here are some sample feeds. -->
<p class="sample_feeds"><strong>Or try one of the following:</strong>
<a href="?feed=http://www.詹姆斯.com/atomtests/iri/everything.atom" title="Test: International Domain Name support">詹姆斯.com</a>,
<a href="?feed=http://www.adultswim.com/williams/podcast/tools/xml/video_rss.xml" title="Humor from the people who make [adult swim] cartoons.">adult swim</a>,
<a href="?feed=http://afterdawn.com/news/afterdawn_rss.xml" title="Ripping, Burning, DRM, and the Dark Side of Consumer Electronics Media">Afterdawn</a>,
<a href="?feed=http://feeds.feedburner.com/ajaxian" title="AJAX and Scripting News">Ajaxian</a>,
<a href="?feed=http://www.andybudd.com/index.rdf&amp;image=true" title="Test: Bypass Image Hotlink Blocking">Andy Budd</a>,
<a href="?feed=http://feeds.feedburner.com/AskANinja" title="Test: Embedded Enclosures">Ask a Ninja</a>,
<a href="?feed=http://www.atomenabled.org/atom.xml" title="Test: Atom 1.0 Support">AtomEnabled.org</a>,
<a href="?feed=http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml" title="World News">BBC News</a>,
<a href="?feed=http://newsrss.bbc.co.uk/rss/arabic/news/rss.xml" title="Test: Windows-1256 Encoding">BBC Arabic</a>,
<a href="?feed=http://newsrss.bbc.co.uk/rss/chinese/simp/news/rss.xml" title="Test: GB2312 Encoding">BBC China</a>,
<a href="?feed=http://newsrss.bbc.co.uk/rss/russian/news/rss.xml" title="Test: Windows-1251 Encoding">BBC Russia</a>,
<a href="?feed=http://inessential.com/xml/rss.xml" title="Developer of NetNewsWire">Brent Simmons</a>,
<a href="?feed=http://www.channelfrederator.com/rss" title="Test: Embedded Enclosures">Channel Frederator</a>,
<a href="?feed=http://rss.cnn.com/rss/cnn_topstories.rss" title="World News">CNN</a>,
<a href="?feed=http://digg.com/rss/index.xml" title="Tech news. Better than Slashdot.">Digg</a>,
<a href="?feed=http://revision3.com/diggnation/feed/quicktime-large" title="Tech and industry videocast.">Diggnation</a>,
<a href="?feed=http://www.flickr.com/services/feeds/photos_public.gne?format=rss2" title="Flickr Photos">Flickr</a>,
<a href="?feed=http://news.google.com/?output=rss" title="World News">Google News</a>,
<a href="?feed=http://video.google.com/videofeed?type=top100new&num=20&output=rss" title="Test: Media RSS Support">Google Video</a>,
<a href="?feed=http://blogs.law.harvard.edu/home/feed/rdf/" title="Test: Tag Stripping">Harvard Law</a>,
<a href="?feed=http://hagada.org.il/hagada/html/backend.php" title="Test: Window-1255 Encoding">Hebrew Language</a>,
<a href="?feed=http://www.infoworld.com/rss/news.xml" title="Test: Ad Stripping">InfoWorld</a>,
<a href="?feed=http://phobos.apple.com/WebObjects/MZStore.woa/wpa/MRSS/topsongs/limit=10/rss.xml&orderbydate=false" title="Test: Tag Stripping">iTunes</a>,
<a href="?feed=http://blog.japan.cnet.com/lessig/index.rdf" title="Test: EUC-JP Encoding">Japanese Language</a>,
<a href="?feed=http://nurapt.kaist.ac.kr/~jamaica/htmls/blog/rss.php&amp;input=EUC-KR" title="Test: EUC-KR Encoding">Korean Language</a>,
<a href="?feed=http://mir.aculo.us/xml/rss/feed.xml" title="Weblog for the developer of Scriptaculous">mir.aculo.us</a>,
<a href="?feed=http://images.apple.com/trailers/rss/newtrailers.rss" title="Apple's QuickTime movie trailer site">Movie Trailers</a>,
<a href="?feed=http://www.newspond.com/rss/main.xml" title="Tech and Science News">Newspond</a>,
<a href="?feed=http://nick.typepad.com/blog/index.rss" title="Developer of TopStyle and FeedDemon">Nick Bradbury</a>,
<a href="?feed=http://feeds.feedburner.com/ok-cancel" title="Usability comics and commentary">OK/Cancel</a>,
<a href="?feed=http://osnews.com/files/recent.rdf" title="News about every OS ever">OS News</a>,
<a href="?feed=http://weblog.philringnalda.com/feed/" title="Test: Atom 1.0 Support">Phil Ringnalda</a>,
<a href="?feed=http://kabili.libsyn.com/rss" title="Test: Improved enclosure type sniffing">Photoshop Videocast</a>,
<a href="?feed=http://www.pariurisportive.com/blog/xmlsrv/rss2.php?blog=2" title="Test: ISO-8859-1 Encoding">Romanian Language</a>,
<a href="?feed=http://www.erased.info/rss2.php" title="Test: KOI8-R Encoding">Russian Language</a>,
<a href="?feed=http://www.upsaid.com/isis/index.rdf" title="Test: BIG5 Encoding">Traditional Chinese Language</a>,
<a href="?feed=http://technorati.com/watchlists/rss.html?wid=29290" title="Technorati watch for SimplePie">Technorati</a>,
<a href="?feed=http://www.tbray.org/ongoing/ongoing.atom" title="Test: Atom 1.0 Support">Tim Bray</a>,
<a href="?feed=http://tuaw.com/rss.xml" title="Apple News">TUAW</a>,
<a href="?feed=http://www.tvgasm.com/atom.xml&amp;image=true" title="Test: Bypass Image Hotlink Blocking">TVgasm</a>,
<a href="?feed=http://uneasysilence.com/feed/" title="Interesting tech randomness">UNEASYsilence</a>,
<a href="?feed=http://feeds.feedburner.com/web20Show" title="Test: Embedded Enclosures">Web 2.0 Show</a>,
<a href="?feed=http://windowsvistablog.com/blogs/MainFeed.aspx" title="Test: Tag Stripping">Windows Vista Blog</a>,
<a href="?feed=http://xkcd.com/rss.xml" title="Test: LightHTTPd and GZipping">XKCD</a>,
<a href="?feed=http://rss.news.yahoo.com/rss/topstories" title="World News">Yahoo! News</a>,
<a href="?feed=http://youtube.com/rss/global/top_favorites.rss" title="Funny user-submitted videos">You Tube</a>,
<a href="?feed=http://zeldman.com/rss/" title="The father of the web standards movement">Zeldman</a></p>
</div>
<div id="sp_results">
<!-- As long as the feed has data to work with... -->
<?php if ($success): ?>
<div class="chunk focus" align="center">
<!-- If the feed has a link back to the site that publishes it (which 99% of them do), link the feed's title to it. -->
<h3 class="header"><?php if ($feed->get_link()) echo '<a href="' . $feed->get_link() . '">'; echo $feed->get_title(); if ($feed->get_link()) echo '</a>'; ?></h3>
<!-- If the feed has a description, display it. -->
<?php echo $feed->get_description(); ?>
</div>
<!-- Add subscribe links for several different aggregation services -->
<p class="subscribe"><strong>Subscribe:</strong> <a href="<?php echo $feed->subscribe_bloglines(); ?>">Bloglines</a>, <a href="<?php echo $feed->subscribe_google(); ?>">Google Reader</a>, <a href="<?php echo $feed->subscribe_msn(); ?>">My MSN</a>, <a href="<?php echo $feed->subscribe_netvibes(); ?>">Netvibes</a>, <a href="<?php echo $feed->subscribe_newsburst(); ?>">Newsburst</a><br /><a href="<?php echo $feed->subscribe_newsgator(); ?>">Newsgator</a>, <a href="<?php echo $feed->subscribe_odeo(); ?>">Odeo</a>, <a href="<?php echo $feed->subscribe_podnova(); ?>">Podnova</a>, <a href="<?php echo $feed->subscribe_rojo(); ?>">Rojo</a>, <a href="<?php echo $feed->subscribe_yahoo(); ?>">My Yahoo!</a>, <a href="<?php echo $feed->subscribe_feed(); ?>">Desktop Reader</a></p>
<!-- Let's begin looping through each individual news item in the feed. -->
<?php foreach($feed->get_items() as $item): ?>
<div class="chunk">
<?php
// Let's add a favicon for each item. If one doesn't exist, we'll use an alternate one.
if (!$favicon = $feed->get_favicon())
{
$favicon = './for_the_demo/favicons/alternate.png';
}
?>
<!-- If the item has a permalink back to the original post (which 99% of them do), link the item's title to it. -->
<h4><img src="<?php echo $favicon; ?>" alt="Favicon" class="favicon" /><?php if ($item->get_permalink()) echo '<a href="' . $item->get_permalink() . '">'; echo $item->get_title(); if ($item->get_permalink()) echo '</a>'; ?>&nbsp;<span class="footnote"><?php echo $item->get_date('j M Y, g:i a'); ?></span></h4>
<!-- Display the item's primary content. -->
<?php echo $item->get_content(); ?>
<?php
// Check for enclosures. If an item has any, set the first one to the $enclosure variable.
if ($enclosure = $item->get_enclosure(0))
{
// Use the embed() method to embed the enclosure into the page inline.
echo '<div align="center">';
echo '<p>' . $enclosure->embed(array(
'audio' => './for_the_demo/place_audio.png',
'video' => './for_the_demo/place_video.png',
'mediaplayer' => './for_the_demo/mediaplayer.swf',
'altclass' => 'download'
)) . '</p>';
if ($enclosure->get_link() && $enclosure->get_type())
{
echo '<p class="footnote" align="center">(' . $enclosure->get_type();
if ($enclosure->get_size())
{
echo '; ' . $enclosure->get_size() . ' MB';
}
echo ')</p>';
}
if ($enclosure->get_thumbnail())
{
echo '<div><img src="' . $enclosure->get_thumbnail() . '" alt="" /></div>';
}
echo '</div>';
}
?>
<!-- Add links to add this post to one of a handful of services. -->
<p class="footnote favicons" align="center">
<a href="<?php echo $item->add_to_blinklist(); ?>" title="Add post to Blinklist"><img src="./for_the_demo/favicons/blinklist.png" alt="Blinklist" /></a>
<a href="<?php echo $item->add_to_blogmarks(); ?>" title="Add post to Blogmarks"><img src="./for_the_demo/favicons/blogmarks.png" alt="Blogmarks" /></a>
<a href="<?php echo $item->add_to_delicious(); ?>" title="Add post to del.icio.us"><img src="./for_the_demo/favicons/delicious.png" alt="del.icio.us" /></a>
<a href="<?php echo $item->add_to_digg(); ?>" title="Digg this!"><img src="./for_the_demo/favicons/digg.png" alt="Digg" /></a>
<a href="<?php echo $item->add_to_magnolia(); ?>" title="Add post to Ma.gnolia"><img src="./for_the_demo/favicons/magnolia.png" alt="Ma.gnolia" /></a>
<a href="<?php echo $item->add_to_myweb20(); ?>" title="Add post to My Web 2.0"><img src="./for_the_demo/favicons/myweb2.png" alt="My Web 2.0" /></a>
<a href="<?php echo $item->add_to_newsvine(); ?>" title="Add post to Newsvine"><img src="./for_the_demo/favicons/newsvine.png" alt="Newsvine" /></a>
<a href="<?php echo $item->add_to_reddit(); ?>" title="Add post to Reddit"><img src="./for_the_demo/favicons/reddit.png" alt="Reddit" /></a>
<a href="<?php echo $item->add_to_segnalo(); ?>" title="Add post to Segnalo"><img src="./for_the_demo/favicons/segnalo.png" alt="Segnalo" /></a>
<a href="<?php echo $item->add_to_simpy(); ?>" title="Add post to Simpy"><img src="./for_the_demo/favicons/simpy.png" alt="Simpy" /></a>
<a href="<?php echo $item->add_to_spurl(); ?>" title="Add post to Spurl"><img src="./for_the_demo/favicons/spurl.png" alt="Spurl" /></a>
<a href="<?php echo $item->add_to_wists(); ?>" title="Add post to Wists"><img src="./for_the_demo/favicons/wists.png" alt="Wists" /></a>
<a href="<?php echo $item->search_technorati(); ?>" title="Who's linking to this post?"><img src="./for_the_demo/favicons/technorati.png" alt="Technorati" /></a>
</p>
</div>
<!-- Stop looping through each item once we've gone through all of them. -->
<?php endforeach; ?>
<!-- From here on, we're no longer using data from the feed. -->
<?php endif; ?>
</div>
<div>
<!-- Display how fast the page was rendered. -->
<p class="footnote">Page processed in <?php $mtime = explode(' ', microtime()); echo round($mtime[0] + $mtime[1] - $starttime, 3); ?> seconds.</p>
<!-- Display the version of SimplePie being loaded. -->
<p class="footnote">Powered by <a href="<?php echo SIMPLEPIE_URL; ?>"><?php echo SIMPLEPIE_NAME . ' ' . SIMPLEPIE_VERSION . ', Build ' . SIMPLEPIE_BUILD; ?></a>. Run the <a href="../compatibility_test/sp_compatibility_test.php">SimplePie Compatibility Test</a>. SimplePie is &copy; 2004&ndash;<?php echo date('Y'); ?>, Ryan Parman and Geoffrey Sneddon, and licensed under the <a href="http://www.opensource.org/licenses/bsd-license.php">BSD License</a>.</p>
</div>
</div>
</div>
</body>
</html>

View file

@ -1,137 +0,0 @@
<?php
function microtime_float()
{
if (version_compare(phpversion(), '5.0.0', '>='))
{
return microtime(true);
}
else
{
list($usec, $sec) = explode(' ', microtime());
return ((float) $usec + (float) $sec);
}
}
$start = microtime_float();
include('../simplepie.inc');
// Parse it
$feed = new SimplePie();
if (!empty($_GET['feed']))
{
if (get_magic_quotes_gpc())
{
$_GET['feed'] = stripslashes($_GET['feed']);
}
$feed->set_feed_url($_GET['feed']);
$feed->init();
}
$feed->handle_content_type();
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo (empty($_GET['feed'])) ? 'SimplePie' : 'SimplePie: ' . $feed->get_title(); ?></title>
<!-- META HTTP-EQUIV -->
<meta http-equiv="content-type" content="text/html; charset=<?php echo ($feed->get_encoding()) ? $feed->get_encoding() : 'UTF-8'; ?>" />
<meta http-equiv="imagetoolbar" content="false" />
<style type="text/css">
html, body {
height:100%;
margin:0;
padding:0;
}
h1 {
background-color:#333;
color:#fff;
font-size:3em;
margin:0;
padding:5px 15px;
text-align:center;
}
div#footer {
padding:5px 0;
}
div#footer,
div#footer a {
text-align:center;
font-size:0.7em;
}
div#footer a {
text-decoration:underline;
}
code {
background-color:#f3f3ff;
color:#000;
}
pre {
background-color:#f3f3ff;
color:#000080;
border:1px dotted #000080;
padding:3px 5px;
}
form {
margin:0;
padding:0;
}
div.chunk {
border-bottom:1px solid #ccc;
}
form#sp_form {
text-align:center;
margin:0;
padding:0;
}
form#sp_form input.text {
width:85%;
}
</style>
</head>
<body>
<h1><?php echo (empty($_GET['feed'])) ? 'SimplePie' : 'SimplePie: ' . $feed->get_title(); ?></h1>
<form action="" method="get" name="sp_form" id="sp_form">
<p><input type="text" name="feed" value="<?php echo ($feed->subscribe_url()) ? htmlspecialchars($feed->subscribe_url()) : 'http://'; ?>" class="text" id="feed_input" />&nbsp;<input type="submit" value="Read" class="button" /></p>
</form>
<div id="sp_results">
<?php if ($feed->data): ?>
<?php $items = $feed->get_items(); ?>
<p align="center"><span style="background-color:#ffc;">Displaying <?php echo $feed->get_item_quantity(); ?> most recent entries.</span></p>
<?php foreach($items as $item): ?>
<div class="chunk" style="padding:0 5px;">
<h4><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a> <?php echo $item->get_date('j M Y'); ?></h4>
<?php echo $item->get_content(); ?>
<?php
if ($enclosure = $item->get_enclosure(0))
echo '<p><a href="' . $enclosure->get_link() . '" class="download"><img src="./for_the_demo/mini_podcast.png" alt="Podcast" title="Download the Podcast" border="0" /></a></p>';
?>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>
</div>
<div id="footer">
Powered by <?php echo SIMPLEPIE_LINKBACK; ?>, a product of <a href="http://www.skyzyx.com">Skyzyx Technologies</a>.<br />
Page created in <?php echo round(microtime_float()-$start, 3); ?> seconds.
</div>
</body>
</html>

View file

@ -1,108 +0,0 @@
<?php
/********************************************************************
MULTIFEEDS TEST PAGE
Nothing too exciting here. Just a sample page that demos integrated
Multifeeds support as well as cached favicons and perhaps a few other
things.
Lots of this code is commented to help explain some of the new stuff.
Code was tested in PHP 5.2.2, but *should* also work with earlier
versions of PHP, as supported by SimplePie (PHP 4.1).
********************************************************************/
// Include the SimplePie library, and the one that handles internationalized domain names.
require_once('../simplepie.inc');
require_once('../idn/idna_convert.class.php');
// Initialize some feeds for use.
$feed = new SimplePie();
$feed->set_feed_url(array(
'http://rss.news.yahoo.com/rss/topstories',
'http://news.google.com/?output=atom',
'http://rss.cnn.com/rss/cnn_topstories.rss'
));
// When we set these, we need to make sure that the handler_image.php file is also trying to read from the same cache directory that we are.
$feed->set_favicon_handler('./handler_image.php');
$feed->set_image_handler('./handler_image.php');
// Initialize the feed.
$feed->init();
// Make sure the page is being served with the UTF-8 headers.
$feed->handle_content_type();
// Begin the (X)HTML page.
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Multifeeds Test page</title>
<link rel="stylesheet" href="../demo/for_the_demo/simplepie.css" type="text/css" media="screen" title="SimplePie Styles" charset="utf-8" />
<style type="text/css">
div#site {
width:600px;
}
span.footnote {
white-space:nowrap;
}
h1 {
line-height:1.4em;
}
h4 {
padding-left:20px;
background-color:transparent;
background-repeat:no-repeat;
background-position:0 1px;
}
.clearBoth {
clear:both;
}
</style>
</head>
<body>
<div id="site">
<?php if ($feed->error): ?>
<p><?=$feed->error()?></p>
<?php endif ?>
<div class="chunk">
<h1>Quick-n-Dirty Multifeeds Demo</a></h1>
</div>
<?php
// Let's loop through each item in the feed.
foreach($feed->get_items() as $item):
// Let's give ourselves a reference to the parent $feed object for this particular item.
$feed = $item->get_feed();
?>
<div class="chunk">
<h4 style="background-image:url(<?php echo $feed->get_favicon(); ?>);"><a href="<?php echo $item->get_permalink(); ?>"><?php echo html_entity_decode($item->get_title(), ENT_QUOTES, 'UTF-8'); ?></a></h4>
<!-- get_content() prefers full content over summaries -->
<?php echo $item->get_content(); ?>
<?php if ($enclosure = $item->get_enclosure()): ?>
<div>
<?php echo $enclosure->native_embed(array(
// New 'mediaplayer' attribute shows off Flash-based MP3 and FLV playback.
'mediaplayer' => '../demo/for_the_demo/mediaplayer.swf'
)); ?>
</div>
<?php endif; ?>
<p class="footnote">Source: <a href="<?php echo $feed->get_permalink(); ?>"><?php echo $feed->get_title(); ?></a> | <?php echo $item->get_date('j M Y | g:i a'); ?></p>
</div>
<?php endforeach ?>
<p class="footnote">This is a test of the emergency broadcast system. This is only a test&hellip; beeeeeeeeeeeeeeeeeeeeeeeeeep!</p>
</div>
</body>
</html>

View file

@ -1,62 +0,0 @@
<?php
include_once('../simplepie.inc');
include_once('../idn/idna_convert.class.php');
// Parse it
$feed = new SimplePie();
if (isset($_GET['feed']) && $_GET['feed'] !== '')
{
if (get_magic_quotes_gpc())
{
$_GET['feed'] = stripslashes($_GET['feed']);
}
$feed->set_feed_url($_GET['feed']);
$feed->enable_cache(false);
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
$feed->init();
$endtime = explode(' ', microtime());
$endtime = $endtime[1] + $endtime[0];
$time = $endtime - $starttime;
}
else
{
$time = 'null';
}
$feed->handle_content_type();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<title>SimplePie Test</title>
<pre>
<?php
// memory_get_peak_usage() only exists on PHP 5.2 and higher if PHP is compiled with the --enable-memory-limit configuration option or on PHP 5.2.1 and higher (which runs as if --enable-memory-limit was on, with no option)
if (function_exists('memory_get_peak_usage'))
{
var_dump($time, memory_get_usage(), memory_get_peak_usage());
}
// memory_get_usage() only exists if PHP is compiled with the --enable-memory-limit configuration option or on PHP 5.2.1 and higher (which runs as if --enable-memory-limit was on, with no option)
else if (function_exists('memory_get_usage'))
{
var_dump($time, memory_get_usage());
}
else
{
var_dump($time);
}
// Output buffer
function callable_htmlspecialchars($string)
{
return htmlspecialchars($string);
}
ob_start('callable_htmlspecialchars');
// Output
print_r($feed);
ob_end_flush();
?>
</pre>

View file

@ -1,502 +0,0 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

View file

@ -1,123 +0,0 @@
*******************************************************************************
* *
* IDNA Convert (idna_convert.class.php) *
* *
* http://idnaconv.phlymail.de mailto:phlymail@phlylabs.de *
*******************************************************************************
* (c) 2004-2007 phlyLabs, Berlin *
* This file is encoded in UTF-8 *
*******************************************************************************
Introduction
------------
The class idna_convert allows to convert internationalized domain names
(see RFC 3490, 3491, 3492 and 3454 for detials) as they can be used with various
registries worldwide to be translated between their original (localized) form
and their encoded form as it will be used in the DNS (Domain Name System).
The class provides two public methods, encode() and decode(), which do exactly
what you would expect them to do. You are allowed to use complete domain names,
simple strings and complete email addresses as well. That means, that you might
use any of the following notations:
- www.nörgler.com
- xn--nrgler-wxa
- xn--brse-5qa.xn--knrz-1ra.info
Errors, incorrectly encoded or invalid strings will lead to either a FALSE
response (when in strict mode) or to only partially converted strings.
You can query the occured error by calling the method get_last_error().
Unicode strings are expected to be either UTF-8 strings, UCS-4 strings or UCS-4
arrays. The default format is UTF-8. For setting different encodings, you can
call the method setParams() - please see the inline documentation for details.
ACE strings (the Punycode form) are always 7bit ASCII strings.
ATTENTION: We no longer supply the PHP5 version of the class. It is not
necessary for achieving a successfull conversion, since the supplied PHP code is
compatible with both PHP4 and PHP5. We expect to see no compatibility issues
with the upcoming PHP6, too.
Files
-----
idna_convert.class.php - The actual class
idna_convert.create.npdata.php - Useful for (re)creating the NPData file
npdata.ser - Serialized data for NamePrep
example.php - An example web page for converting
ReadMe.txt - This file
LICENCE - The LGPL licence file
The class is contained in idna_convert.class.php.
MAKE SURE to copy the npdata.ser file into the same folder as the class file
itself!
Examples
--------
1. Say we wish to encode the domain name nörgler.com:
// Include the class
include_once('idna_convert.class.php');
// Instantiate it *
$IDN = new idna_convert();
// The input string, if input is not UTF-8 or UCS-4, it must be converted before
$input = utf8_encode('nörgler.com');
// Encode it to its punycode presentation
$output = $IDN->encode($input);
// Output, what we got now
echo $output; // This will read: xn--nrgler-wxa.com
2. We received an email from a punycoded domain and are willing to learn, how
the domain name reads originally
// Include the class
include_once('idna_convert.class.php');
// Instantiate it (depending on the version you are using) with
$IDN = new idna_convert();
// The input string
$input = 'andre@xn--brse-5qa.xn--knrz-1ra.info';
// Encode it to its punycode presentation
$output = $IDN->decode($input);
// Output, what we got now, if output should be in a format different to UTF-8
// or UCS-4, you will have to convert it before outputting it
echo utf8_decode($output); // This will read: andre@börse.knörz.info
3. The input is read from a UCS-4 coded file and encoded line by line. By
appending the optional second parameter we tell enode() about the input
format to be used
// Include the class
include_once('idna_convert.class.php');
// Instantiate it
$IDN = new dinca_convert();
// Iterate through the input file line by line
foreach (file('ucs4-domains.txt') as $line) {
echo $IDN->encode(trim($line), 'ucs4_string');
echo "\n";
}
NPData
------
Should you need to recreate the npdata.ser file, which holds all necessary translation
tables in a serialized format, you can run the file idna_convert.create.npdata.php, which
creates the file for you and stores it in the same folder, where it is placed.
Should you need to do changes to the tables you can do so, but beware of the consequences.
Contact us
----------
In case of errors, bugs, questions, wishes, please don't hesitate to contact us
under the email address above.
The team of phlyLabs
http://phlylabs.de
mailto:phlymail@phlylabs.de

View file

@ -1,969 +0,0 @@
<?php
// {{{ license
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker: */
//
// +----------------------------------------------------------------------+
// | This library is free software; you can redistribute it and/or modify |
// | it under the terms of the GNU Lesser General Public License as |
// | published by the Free Software Foundation; either version 2.1 of the |
// | License, or (at your option) any later version. |
// | |
// | This library is distributed in the hope that it will be useful, but |
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
// | Lesser General Public License for more details. |
// | |
// | You should have received a copy of the GNU Lesser General Public |
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
// | USA. |
// +----------------------------------------------------------------------+
//
// }}}
/**
* Encode/decode Internationalized Domain Names.
*
* The class allows to convert internationalized domain names
* (see RFC 3490 for details) as they can be used with various registries worldwide
* to be translated between their original (localized) form and their encoded form
* as it will be used in the DNS (Domain Name System).
*
* The class provides two public methods, encode() and decode(), which do exactly
* what you would expect them to do. You are allowed to use complete domain names,
* simple strings and complete email addresses as well. That means, that you might
* use any of the following notations:
*
* - www.nörgler.com
* - xn--nrgler-wxa
* - xn--brse-5qa.xn--knrz-1ra.info
*
* Unicode input might be given as either UTF-8 string, UCS-4 string or UCS-4
* array. Unicode output is available in the same formats.
* You can select your preferred format via {@link set_paramter()}.
*
* ACE input and output is always expected to be ASCII.
*
* @author Matthias Sommerfeld <mso@phlylabs.de>
* @copyright 2004-2007 phlyLabs Berlin, http://phlylabs.de
* @version 0.5.1
*
*/
class idna_convert
{
/**
* Holds all relevant mapping tables, loaded from a seperate file on construct
* See RFC3454 for details
*
* @var array
* @access private
*/
var $NP = array();
// Internal settings, do not mess with them
var $_punycode_prefix = 'xn--';
var $_invalid_ucs = 0x80000000;
var $_max_ucs = 0x10FFFF;
var $_base = 36;
var $_tmin = 1;
var $_tmax = 26;
var $_skew = 38;
var $_damp = 700;
var $_initial_bias = 72;
var $_initial_n = 0x80;
var $_sbase = 0xAC00;
var $_lbase = 0x1100;
var $_vbase = 0x1161;
var $_tbase = 0x11A7;
var $_lcount = 19;
var $_vcount = 21;
var $_tcount = 28;
var $_ncount = 588; // _vcount * _tcount
var $_scount = 11172; // _lcount * _tcount * _vcount
var $_error = false;
// See {@link set_paramter()} for details of how to change the following
// settings from within your script / application
var $_api_encoding = 'utf8'; // Default input charset is UTF-8
var $_allow_overlong = false; // Overlong UTF-8 encodings are forbidden
var $_strict_mode = false; // Behave strict or not
// The constructor
function idna_convert($options = false)
{
$this->slast = $this->_sbase + $this->_lcount * $this->_vcount * $this->_tcount;
if (function_exists('file_get_contents')) {
$this->NP = unserialize(file_get_contents(dirname(__FILE__).'/npdata.ser'));
} else {
$this->NP = unserialize(join('', file(dirname(__FILE__).'/npdata.ser')));
}
// If parameters are given, pass these to the respective method
if (is_array($options)) {
return $this->set_parameter($options);
}
return true;
}
/**
* Sets a new option value. Available options and values:
* [encoding - Use either UTF-8, UCS4 as array or UCS4 as string as input ('utf8' for UTF-8,
* 'ucs4_string' and 'ucs4_array' respectively for UCS4); The output is always UTF-8]
* [overlong - Unicode does not allow unnecessarily long encodings of chars,
* to allow this, set this parameter to true, else to false;
* default is false.]
* [strict - true: strict mode, good for registration purposes - Causes errors
* on failures; false: loose mode, ideal for "wildlife" applications
* by silently ignoring errors and returning the original input instead
*
* @param mixed Parameter to set (string: single parameter; array of Parameter => Value pairs)
* @param string Value to use (if parameter 1 is a string)
* @return boolean true on success, false otherwise
* @access public
*/
function set_parameter($option, $value = false)
{
if (!is_array($option)) {
$option = array($option => $value);
}
foreach ($option as $k => $v) {
switch ($k) {
case 'encoding':
switch ($v) {
case 'utf8':
case 'ucs4_string':
case 'ucs4_array':
$this->_api_encoding = $v;
break;
default:
$this->_error('Set Parameter: Unknown parameter '.$v.' for option '.$k);
return false;
}
break;
case 'overlong':
$this->_allow_overlong = ($v) ? true : false;
break;
case 'strict':
$this->_strict_mode = ($v) ? true : false;
break;
default:
$this->_error('Set Parameter: Unknown option '.$k);
return false;
}
}
return true;
}
/**
* Decode a given ACE domain name
* @param string Domain name (ACE string)
* [@param string Desired output encoding, see {@link set_parameter}]
* @return string Decoded Domain name (UTF-8 or UCS-4)
* @access public
*/
function decode($input, $one_time_encoding = false)
{
// Optionally set
if ($one_time_encoding) {
switch ($one_time_encoding) {
case 'utf8':
case 'ucs4_string':
case 'ucs4_array':
break;
default:
$this->_error('Unknown encoding '.$one_time_encoding);
return false;
}
}
// Make sure to drop any newline characters around
$input = trim($input);
// Negotiate input and try to determine, whether it is a plain string,
// an email address or something like a complete URL
if (strpos($input, '@')) { // Maybe it is an email address
// No no in strict mode
if ($this->_strict_mode) {
$this->_error('Only simple domain name parts can be handled in strict mode');
return false;
}
list ($email_pref, $input) = explode('@', $input, 2);
$arr = explode('.', $input);
foreach ($arr as $k => $v) {
if (preg_match('!^'.preg_quote($this->_punycode_prefix, '!').'!', $v)) {
$conv = $this->_decode($v);
if ($conv) $arr[$k] = $conv;
}
}
$input = join('.', $arr);
$arr = explode('.', $email_pref);
foreach ($arr as $k => $v) {
if (preg_match('!^'.preg_quote($this->_punycode_prefix, '!').'!', $v)) {
$conv = $this->_decode($v);
if ($conv) $arr[$k] = $conv;
}
}
$email_pref = join('.', $arr);
$return = $email_pref . '@' . $input;
} elseif (preg_match('![:\./]!', $input)) { // Or a complete domain name (with or without paths / parameters)
// No no in strict mode
if ($this->_strict_mode) {
$this->_error('Only simple domain name parts can be handled in strict mode');
return false;
}
$parsed = parse_url($input);
if (isset($parsed['host'])) {
$arr = explode('.', $parsed['host']);
foreach ($arr as $k => $v) {
$conv = $this->_decode($v);
if ($conv) $arr[$k] = $conv;
}
$parsed['host'] = join('.', $arr);
$return =
(empty($parsed['scheme']) ? '' : $parsed['scheme'].(strtolower($parsed['scheme']) == 'mailto' ? ':' : '://'))
.(empty($parsed['user']) ? '' : $parsed['user'].(empty($parsed['pass']) ? '' : ':'.$parsed['pass']).'@')
.$parsed['host']
.(empty($parsed['port']) ? '' : ':'.$parsed['port'])
.(empty($parsed['path']) ? '' : $parsed['path'])
.(empty($parsed['query']) ? '' : '?'.$parsed['query'])
.(empty($parsed['fragment']) ? '' : '#'.$parsed['fragment']);
} else { // parse_url seems to have failed, try without it
$arr = explode('.', $input);
foreach ($arr as $k => $v) {
$conv = $this->_decode($v);
$arr[$k] = ($conv) ? $conv : $v;
}
$return = join('.', $arr);
}
} else { // Otherwise we consider it being a pure domain name string
$return = $this->_decode($input);
if (!$return) $return = $input;
}
// The output is UTF-8 by default, other output formats need conversion here
// If one time encoding is given, use this, else the objects property
switch (($one_time_encoding) ? $one_time_encoding : $this->_api_encoding) {
case 'utf8':
return $return;
break;
case 'ucs4_string':
return $this->_ucs4_to_ucs4_string($this->_utf8_to_ucs4($return));
break;
case 'ucs4_array':
return $this->_utf8_to_ucs4($return);
break;
default:
$this->_error('Unsupported output format');
return false;
}
}
/**
* Encode a given UTF-8 domain name
* @param string Domain name (UTF-8 or UCS-4)
* [@param string Desired input encoding, see {@link set_parameter}]
* @return string Encoded Domain name (ACE string)
* @access public
*/
function encode($decoded, $one_time_encoding = false)
{
// Forcing conversion of input to UCS4 array
// If one time encoding is given, use this, else the objects property
switch ($one_time_encoding ? $one_time_encoding : $this->_api_encoding) {
case 'utf8':
$decoded = $this->_utf8_to_ucs4($decoded);
break;
case 'ucs4_string':
$decoded = $this->_ucs4_string_to_ucs4($decoded);
case 'ucs4_array':
break;
default:
$this->_error('Unsupported input format: '.($one_time_encoding ? $one_time_encoding : $this->_api_encoding));
return false;
}
// No input, no output, what else did you expect?
if (empty($decoded)) return '';
// Anchors for iteration
$last_begin = 0;
// Output string
$output = '';
foreach ($decoded as $k => $v) {
// Make sure to use just the plain dot
switch($v) {
case 0x3002:
case 0xFF0E:
case 0xFF61:
$decoded[$k] = 0x2E;
// Right, no break here, the above are converted to dots anyway
// Stumbling across an anchoring character
case 0x2E:
case 0x2F:
case 0x3A:
case 0x3F:
case 0x40:
// Neither email addresses nor URLs allowed in strict mode
if ($this->_strict_mode) {
$this->_error('Neither email addresses nor URLs are allowed in strict mode.');
return false;
} else {
// Skip first char
if ($k) {
$encoded = '';
$encoded = $this->_encode(array_slice($decoded, $last_begin, (($k)-$last_begin)));
if ($encoded) {
$output .= $encoded;
} else {
$output .= $this->_ucs4_to_utf8(array_slice($decoded, $last_begin, (($k)-$last_begin)));
}
$output .= chr($decoded[$k]);
}
$last_begin = $k + 1;
}
}
}
// Catch the rest of the string
if ($last_begin) {
$inp_len = sizeof($decoded);
$encoded = '';
$encoded = $this->_encode(array_slice($decoded, $last_begin, (($inp_len)-$last_begin)));
if ($encoded) {
$output .= $encoded;
} else {
$output .= $this->_ucs4_to_utf8(array_slice($decoded, $last_begin, (($inp_len)-$last_begin)));
}
return $output;
} else {
if ($output = $this->_encode($decoded)) {
return $output;
} else {
return $this->_ucs4_to_utf8($decoded);
}
}
}
/**
* Use this method to get the last error ocurred
* @param void
* @return string The last error, that occured
* @access public
*/
function get_last_error()
{
return $this->_error;
}
/**
* The actual decoding algorithm
* @access private
*/
function _decode($encoded)
{
// We do need to find the Punycode prefix
if (!preg_match('!^'.preg_quote($this->_punycode_prefix, '!').'!', $encoded)) {
$this->_error('This is not a punycode string');
return false;
}
$encode_test = preg_replace('!^'.preg_quote($this->_punycode_prefix, '!').'!', '', $encoded);
// If nothing left after removing the prefix, it is hopeless
if (!$encode_test) {
$this->_error('The given encoded string was empty');
return false;
}
// Find last occurence of the delimiter
$delim_pos = strrpos($encoded, '-');
if ($delim_pos > strlen($this->_punycode_prefix)) {
for ($k = strlen($this->_punycode_prefix); $k < $delim_pos; ++$k) {
$decoded[] = ord($encoded{$k});
}
} else {
$decoded = array();
}
$deco_len = count($decoded);
$enco_len = strlen($encoded);
// Wandering through the strings; init
$is_first = true;
$bias = $this->_initial_bias;
$idx = 0;
$char = $this->_initial_n;
for ($enco_idx = ($delim_pos) ? ($delim_pos + 1) : 0; $enco_idx < $enco_len; ++$deco_len) {
for ($old_idx = $idx, $w = 1, $k = $this->_base; 1 ; $k += $this->_base) {
$digit = $this->_decode_digit($encoded{$enco_idx++});
$idx += $digit * $w;
$t = ($k <= $bias) ? $this->_tmin :
(($k >= $bias + $this->_tmax) ? $this->_tmax : ($k - $bias));
if ($digit < $t) break;
$w = (int) ($w * ($this->_base - $t));
}
$bias = $this->_adapt($idx - $old_idx, $deco_len + 1, $is_first);
$is_first = false;
$char += (int) ($idx / ($deco_len + 1));
$idx %= ($deco_len + 1);
if ($deco_len > 0) {
// Make room for the decoded char
for ($i = $deco_len; $i > $idx; $i--) {
$decoded[$i] = $decoded[($i - 1)];
}
}
$decoded[$idx++] = $char;
}
return $this->_ucs4_to_utf8($decoded);
}
/**
* The actual encoding algorithm
* @access private
*/
function _encode($decoded)
{
// We cannot encode a domain name containing the Punycode prefix
$extract = strlen($this->_punycode_prefix);
$check_pref = $this->_utf8_to_ucs4($this->_punycode_prefix);
$check_deco = array_slice($decoded, 0, $extract);
if ($check_pref == $check_deco) {
$this->_error('This is already a punycode string');
return false;
}
// We will not try to encode strings consisting of basic code points only
$encodable = false;
foreach ($decoded as $k => $v) {
if ($v > 0x7a) {
$encodable = true;
break;
}
}
if (!$encodable) {
$this->_error('The given string does not contain encodable chars');
return false;
}
// Do NAMEPREP
$decoded = $this->_nameprep($decoded);
if (!$decoded || !is_array($decoded)) return false; // NAMEPREP failed
$deco_len = count($decoded);
if (!$deco_len) return false; // Empty array
$codecount = 0; // How many chars have been consumed
$encoded = '';
// Copy all basic code points to output
for ($i = 0; $i < $deco_len; ++$i) {
$test = $decoded[$i];
// Will match [-0-9a-zA-Z]
if ((0x2F < $test && $test < 0x40) || (0x40 < $test && $test < 0x5B)
|| (0x60 < $test && $test <= 0x7B) || (0x2D == $test)) {
$encoded .= chr($decoded[$i]);
$codecount++;
}
}
if ($codecount == $deco_len) return $encoded; // All codepoints were basic ones
// Start with the prefix; copy it to output
$encoded = $this->_punycode_prefix.$encoded;
// If we have basic code points in output, add an hyphen to the end
if ($codecount) $encoded .= '-';
// Now find and encode all non-basic code points
$is_first = true;
$cur_code = $this->_initial_n;
$bias = $this->_initial_bias;
$delta = 0;
while ($codecount < $deco_len) {
// Find the smallest code point >= the current code point and
// remember the last ouccrence of it in the input
for ($i = 0, $next_code = $this->_max_ucs; $i < $deco_len; $i++) {
if ($decoded[$i] >= $cur_code && $decoded[$i] <= $next_code) {
$next_code = $decoded[$i];
}
}
$delta += ($next_code - $cur_code) * ($codecount + 1);
$cur_code = $next_code;
// Scan input again and encode all characters whose code point is $cur_code
for ($i = 0; $i < $deco_len; $i++) {
if ($decoded[$i] < $cur_code) {
$delta++;
} elseif ($decoded[$i] == $cur_code) {
for ($q = $delta, $k = $this->_base; 1; $k += $this->_base) {
$t = ($k <= $bias) ? $this->_tmin :
(($k >= $bias + $this->_tmax) ? $this->_tmax : $k - $bias);
if ($q < $t) break;
$encoded .= $this->_encode_digit(intval($t + (($q - $t) % ($this->_base - $t)))); //v0.4.5 Changed from ceil() to intval()
$q = (int) (($q - $t) / ($this->_base - $t));
}
$encoded .= $this->_encode_digit($q);
$bias = $this->_adapt($delta, $codecount+1, $is_first);
$codecount++;
$delta = 0;
$is_first = false;
}
}
$delta++;
$cur_code++;
}
return $encoded;
}
/**
* Adapt the bias according to the current code point and position
* @access private
*/
function _adapt($delta, $npoints, $is_first)
{
$delta = intval($is_first ? ($delta / $this->_damp) : ($delta / 2));
$delta += intval($delta / $npoints);
for ($k = 0; $delta > (($this->_base - $this->_tmin) * $this->_tmax) / 2; $k += $this->_base) {
$delta = intval($delta / ($this->_base - $this->_tmin));
}
return intval($k + ($this->_base - $this->_tmin + 1) * $delta / ($delta + $this->_skew));
}
/**
* Encoding a certain digit
* @access private
*/
function _encode_digit($d)
{
return chr($d + 22 + 75 * ($d < 26));
}
/**
* Decode a certain digit
* @access private
*/
function _decode_digit($cp)
{
$cp = ord($cp);
return ($cp - 48 < 10) ? $cp - 22 : (($cp - 65 < 26) ? $cp - 65 : (($cp - 97 < 26) ? $cp - 97 : $this->_base));
}
/**
* Internal error handling method
* @access private
*/
function _error($error = '')
{
$this->_error = $error;
}
/**
* Do Nameprep according to RFC3491 and RFC3454
* @param array Unicode Characters
* @return string Unicode Characters, Nameprep'd
* @access private
*/
function _nameprep($input)
{
$output = array();
$error = false;
//
// Mapping
// Walking through the input array, performing the required steps on each of
// the input chars and putting the result into the output array
// While mapping required chars we apply the cannonical ordering
foreach ($input as $v) {
// Map to nothing == skip that code point
if (in_array($v, $this->NP['map_nothing'])) continue;
// Try to find prohibited input
if (in_array($v, $this->NP['prohibit']) || in_array($v, $this->NP['general_prohibited'])) {
$this->_error('NAMEPREP: Prohibited input U+'.sprintf('%08X', $v));
return false;
}
foreach ($this->NP['prohibit_ranges'] as $range) {
if ($range[0] <= $v && $v <= $range[1]) {
$this->_error('NAMEPREP: Prohibited input U+'.sprintf('%08X', $v));
return false;
}
}
//
// Hangul syllable decomposition
if (0xAC00 <= $v && $v <= 0xD7AF) {
foreach ($this->_hangul_decompose($v) as $out) {
$output[] = (int) $out;
}
// There's a decomposition mapping for that code point
} elseif (isset($this->NP['replacemaps'][$v])) {
foreach ($this->_apply_cannonical_ordering($this->NP['replacemaps'][$v]) as $out) {
$output[] = (int) $out;
}
} else {
$output[] = (int) $v;
}
}
// Before applying any Combining, try to rearrange any Hangul syllables
$output = $this->_hangul_compose($output);
//
// Combine code points
//
$last_class = 0;
$last_starter = 0;
$out_len = count($output);
for ($i = 0; $i < $out_len; ++$i) {
$class = $this->_get_combining_class($output[$i]);
if ((!$last_class || $last_class > $class) && $class) {
// Try to match
$seq_len = $i - $last_starter;
$out = $this->_combine(array_slice($output, $last_starter, $seq_len));
// On match: Replace the last starter with the composed character and remove
// the now redundant non-starter(s)
if ($out) {
$output[$last_starter] = $out;
if (count($out) != $seq_len) {
for ($j = $i+1; $j < $out_len; ++$j) {
$output[$j-1] = $output[$j];
}
unset($output[$out_len]);
}
// Rewind the for loop by one, since there can be more possible compositions
$i--;
$out_len--;
$last_class = ($i == $last_starter) ? 0 : $this->_get_combining_class($output[$i-1]);
continue;
}
}
// The current class is 0
if (!$class) $last_starter = $i;
$last_class = $class;
}
return $output;
}
/**
* Decomposes a Hangul syllable
* (see http://www.unicode.org/unicode/reports/tr15/#Hangul
* @param integer 32bit UCS4 code point
* @return array Either Hangul Syllable decomposed or original 32bit value as one value array
* @access private
*/
function _hangul_decompose($char)
{
$sindex = (int) $char - $this->_sbase;
if ($sindex < 0 || $sindex >= $this->_scount) {
return array($char);
}
$result = array();
$result[] = (int) $this->_lbase + $sindex / $this->_ncount;
$result[] = (int) $this->_vbase + ($sindex % $this->_ncount) / $this->_tcount;
$T = intval($this->_tbase + $sindex % $this->_tcount);
if ($T != $this->_tbase) $result[] = $T;
return $result;
}
/**
* Ccomposes a Hangul syllable
* (see http://www.unicode.org/unicode/reports/tr15/#Hangul
* @param array Decomposed UCS4 sequence
* @return array UCS4 sequence with syllables composed
* @access private
*/
function _hangul_compose($input)
{
$inp_len = count($input);
if (!$inp_len) return array();
$result = array();
$last = (int) $input[0];
$result[] = $last; // copy first char from input to output
for ($i = 1; $i < $inp_len; ++$i) {
$char = (int) $input[$i];
$sindex = $last - $this->_sbase;
$lindex = $last - $this->_lbase;
$vindex = $char - $this->_vbase;
$tindex = $char - $this->_tbase;
// Find out, whether two current characters are LV and T
if (0 <= $sindex && $sindex < $this->_scount && ($sindex % $this->_tcount == 0)
&& 0 <= $tindex && $tindex <= $this->_tcount) {
// create syllable of form LVT
$last += $tindex;
$result[(count($result) - 1)] = $last; // reset last
continue; // discard char
}
// Find out, whether two current characters form L and V
if (0 <= $lindex && $lindex < $this->_lcount && 0 <= $vindex && $vindex < $this->_vcount) {
// create syllable of form LV
$last = (int) $this->_sbase + ($lindex * $this->_vcount + $vindex) * $this->_tcount;
$result[(count($result) - 1)] = $last; // reset last
continue; // discard char
}
// if neither case was true, just add the character
$last = $char;
$result[] = $char;
}
return $result;
}
/**
* Returns the combining class of a certain wide char
* @param integer Wide char to check (32bit integer)
* @return integer Combining class if found, else 0
* @access private
*/
function _get_combining_class($char)
{
return isset($this->NP['norm_combcls'][$char]) ? $this->NP['norm_combcls'][$char] : 0;
}
/**
* Apllies the cannonical ordering of a decomposed UCS4 sequence
* @param array Decomposed UCS4 sequence
* @return array Ordered USC4 sequence
* @access private
*/
function _apply_cannonical_ordering($input)
{
$swap = true;
$size = count($input);
while ($swap) {
$swap = false;
$last = $this->_get_combining_class(intval($input[0]));
for ($i = 0; $i < $size-1; ++$i) {
$next = $this->_get_combining_class(intval($input[$i+1]));
if ($next != 0 && $last > $next) {
// Move item leftward until it fits
for ($j = $i + 1; $j > 0; --$j) {
if ($this->_get_combining_class(intval($input[$j-1])) <= $next) break;
$t = intval($input[$j]);
$input[$j] = intval($input[$j-1]);
$input[$j-1] = $t;
$swap = true;
}
// Reentering the loop looking at the old character again
$next = $last;
}
$last = $next;
}
}
return $input;
}
/**
* Do composition of a sequence of starter and non-starter
* @param array UCS4 Decomposed sequence
* @return array Ordered USC4 sequence
* @access private
*/
function _combine($input)
{
$inp_len = count($input);
foreach ($this->NP['replacemaps'] as $np_src => $np_target) {
if ($np_target[0] != $input[0]) continue;
if (count($np_target) != $inp_len) continue;
$hit = false;
foreach ($input as $k2 => $v2) {
if ($v2 == $np_target[$k2]) {
$hit = true;
} else {
$hit = false;
break;
}
}
if ($hit) return $np_src;
}
return false;
}
/**
* This converts an UTF-8 encoded string to its UCS-4 representation
* By talking about UCS-4 "strings" we mean arrays of 32bit integers representing
* each of the "chars". This is due to PHP not being able to handle strings with
* bit depth different from 8. This apllies to the reverse method _ucs4_to_utf8(), too.
* The following UTF-8 encodings are supported:
* bytes bits representation
* 1 7 0xxxxxxx
* 2 11 110xxxxx 10xxxxxx
* 3 16 1110xxxx 10xxxxxx 10xxxxxx
* 4 21 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
* 5 26 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
* 6 31 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
* Each x represents a bit that can be used to store character data.
* The five and six byte sequences are part of Annex D of ISO/IEC 10646-1:2000
* @access private
*/
function _utf8_to_ucs4($input)
{
$output = array();
$out_len = 0;
$inp_len = strlen($input);
$mode = 'next';
$test = 'none';
for ($k = 0; $k < $inp_len; ++$k) {
$v = ord($input{$k}); // Extract byte from input string
if ($v < 128) { // We found an ASCII char - put into stirng as is
$output[$out_len] = $v;
++$out_len;
if ('add' == $mode) {
$this->_error('Conversion from UTF-8 to UCS-4 failed: malformed input at byte '.$k);
return false;
}
continue;
}
if ('next' == $mode) { // Try to find the next start byte; determine the width of the Unicode char
$start_byte = $v;
$mode = 'add';
$test = 'range';
if ($v >> 5 == 6) { // &110xxxxx 10xxxxx
$next_byte = 0; // Tells, how many times subsequent bitmasks must rotate 6bits to the left
$v = ($v - 192) << 6;
} elseif ($v >> 4 == 14) { // &1110xxxx 10xxxxxx 10xxxxxx
$next_byte = 1;
$v = ($v - 224) << 12;
} elseif ($v >> 3 == 30) { // &11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
$next_byte = 2;
$v = ($v - 240) << 18;
} elseif ($v >> 2 == 62) { // &111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
$next_byte = 3;
$v = ($v - 248) << 24;
} elseif ($v >> 1 == 126) { // &1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
$next_byte = 4;
$v = ($v - 252) << 30;
} else {
$this->_error('This might be UTF-8, but I don\'t understand it at byte '.$k);
return false;
}
if ('add' == $mode) {
$output[$out_len] = (int) $v;
++$out_len;
continue;
}
}
if ('add' == $mode) {
if (!$this->_allow_overlong && $test == 'range') {
$test = 'none';
if (($v < 0xA0 && $start_byte == 0xE0) || ($v < 0x90 && $start_byte == 0xF0) || ($v > 0x8F && $start_byte == 0xF4)) {
$this->_error('Bogus UTF-8 character detected (out of legal range) at byte '.$k);
return false;
}
}
if ($v >> 6 == 2) { // Bit mask must be 10xxxxxx
$v = ($v - 128) << ($next_byte * 6);
$output[($out_len - 1)] += $v;
--$next_byte;
} else {
$this->_error('Conversion from UTF-8 to UCS-4 failed: malformed input at byte '.$k);
return false;
}
if ($next_byte < 0) {
$mode = 'next';
}
}
} // for
return $output;
}
/**
* Convert UCS-4 string into UTF-8 string
* See _utf8_to_ucs4() for details
* @access private
*/
function _ucs4_to_utf8($input)
{
$output = '';
$k = 0;
foreach ($input as $v) {
++$k;
// $v = ord($v);
if ($v < 128) { // 7bit are transferred literally
$output .= chr($v);
} elseif ($v < (1 << 11)) { // 2 bytes
$output .= chr(192 + ($v >> 6)) . chr(128 + ($v & 63));
} elseif ($v < (1 << 16)) { // 3 bytes
$output .= chr(224 + ($v >> 12)) . chr(128 + (($v >> 6) & 63)) . chr(128 + ($v & 63));
} elseif ($v < (1 << 21)) { // 4 bytes
$output .= chr(240 + ($v >> 18)) . chr(128 + (($v >> 12) & 63))
. chr(128 + (($v >> 6) & 63)) . chr(128 + ($v & 63));
} elseif ($v < (1 << 26)) { // 5 bytes
$output .= chr(248 + ($v >> 24)) . chr(128 + (($v >> 18) & 63))
. chr(128 + (($v >> 12) & 63)) . chr(128 + (($v >> 6) & 63))
. chr(128 + ($v & 63));
} elseif ($v < (1 << 31)) { // 6 bytes
$output .= chr(252 + ($v >> 30)) . chr(128 + (($v >> 24) & 63))
. chr(128 + (($v >> 18) & 63)) . chr(128 + (($v >> 12) & 63))
. chr(128 + (($v >> 6) & 63)) . chr(128 + ($v & 63));
} else {
$this->_error('Conversion from UCS-4 to UTF-8 failed: malformed input at byte '.$k);
return false;
}
}
return $output;
}
/**
* Convert UCS-4 array into UCS-4 string
*
* @access private
*/
function _ucs4_to_ucs4_string($input)
{
$output = '';
// Take array values and split output to 4 bytes per value
// The bit mask is 255, which reads &11111111
foreach ($input as $v) {
$output .= chr(($v >> 24) & 255).chr(($v >> 16) & 255).chr(($v >> 8) & 255).chr($v & 255);
}
return $output;
}
/**
* Convert UCS-4 strin into UCS-4 garray
*
* @access private
*/
function _ucs4_string_to_ucs4($input)
{
$output = array();
$inp_len = strlen($input);
// Input length must be dividable by 4
if ($inp_len % 4) {
$this->_error('Input UCS4 string is broken');
return false;
}
// Empty input - return empty output
if (!$inp_len) return $output;
for ($i = 0, $out_len = -1; $i < $inp_len; ++$i) {
// Increment output position every 4 input bytes
if (!($i % 4)) {
$out_len++;
$output[$out_len] = 0;
}
$output[$out_len] += ord($input{$i}) << (8 * (3 - ($i % 4) ) );
}
return $output;
}
}
/**
* Adapter class for aligning the API of idna_convert with that of Net_IDNA
* @author Matthias Sommerfeld <mso@phlylabs.de>
*/
class Net_IDNA_php4 extends idna_convert
{
/**
* Sets a new option value. Available options and values:
* [encoding - Use either UTF-8, UCS4 as array or UCS4 as string as input ('utf8' for UTF-8,
* 'ucs4_string' and 'ucs4_array' respectively for UCS4); The output is always UTF-8]
* [overlong - Unicode does not allow unnecessarily long encodings of chars,
* to allow this, set this parameter to true, else to false;
* default is false.]
* [strict - true: strict mode, good for registration purposes - Causes errors
* on failures; false: loose mode, ideal for "wildlife" applications
* by silently ignoring errors and returning the original input instead
*
* @param mixed Parameter to set (string: single parameter; array of Parameter => Value pairs)
* @param string Value to use (if parameter 1 is a string)
* @return boolean true on success, false otherwise
* @access public
*/
function setParams($option, $param = false)
{
return $this->IC->set_parameters($option, $param);
}
}
?>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -10,7 +10,7 @@ Internationalisation
extract.php - extracts translatable strings from our project files. It extract.php - extracts translatable strings from our project files. It
currently doesn't pick up strings in other libraries we might be using such as currently doesn't pick up strings in other libraries we might be using such as
tinymce, simplepie, and the HTML parsers. tinymce and the HTML parsers.
In order for extract to do its job, every use of the t() translation function In order for extract to do its job, every use of the t() translation function
must be preceded by one space. The string also can not contain parentheses. If must be preceded by one space. The string also can not contain parentheses. If

View file

@ -46,17 +46,20 @@ for i in c:
n1 = len(contributors) n1 = len(contributors)
print(' > found %d contributors' % n1) print(' > found %d contributors' % n1)
# get the contributors to the addons # get the contributors to the addons
os.chdir(path+'/addon') try:
# get the contributors os.chdir(path+'/addon')
print('> getting contributors to the addons') # get the contributors
p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'], print('> getting contributors to the addons')
stdout=subprocess.PIPE, p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'],
stderr=subprocess.STDOUT) stdout=subprocess.PIPE,
c = iter(p.stdout.readline, b'') stderr=subprocess.STDOUT)
for i in c: c = iter(p.stdout.readline, b'')
name = i.decode().split('\t')[1].split('\n')[0] for i in c:
if not name in contributors and name not in dontinclude: name = i.decode().split('\t')[1].split('\n')[0]
contributors.append(name) if not name in contributors and name not in dontinclude:
contributors.append(name)
except FileNotFoundError:
print(' > no addon directory found ( THE LIST OF CONTRIBUTORS WILL BE INCOMPLETE )')
n2 = len(contributors) n2 = len(contributors)
print(' > found %d new contributors' % (n2-n1)) print(' > found %d new contributors' % (n2-n1))
print('> total of %d contributors to the repositories of friendica' % n2) print('> total of %d contributors to the repositories of friendica' % n2)

View file

@ -1,8 +1,9 @@
# FRIENDICA Distributed Social Network # FRIENDICA Distributed Social Network
# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project # Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
# This file is distributed under the same license as the Friendica package. # This file is distributed under the same license as the Friendica package.
# #
# Translators: # Translators:
# Aliaksei Sakalou <nullbsd@gmail.com>, 2016
# Alex <info@pixelbits.de>, 2013 # Alex <info@pixelbits.de>, 2013
# vislav <bizadmin@list.ru>, 2014 # vislav <bizadmin@list.ru>, 2014
# Alex <info@pixelbits.de>, 2013 # Alex <info@pixelbits.de>, 2013
@ -15,1151 +16,1317 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-02-09 08:57+0100\n" "POT-Creation-Date: 2016-01-24 06:49+0100\n"
"PO-Revision-Date: 2015-02-09 09:46+0000\n" "PO-Revision-Date: 2016-02-16 18:28+0300\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n" "Last-Translator: Aliaksei Sakalou <nullbsd@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/friendica/language/ru/)\n" "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/"
"language/ru/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: ru\n" "Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Poedit 1.5.4\n"
#: ../../mod/contacts.php:108 #: mod/contacts.php:50 include/identity.php:395
msgid "Network:"
msgstr "Сеть:"
#: mod/contacts.php:51 mod/contacts.php:961 mod/videos.php:37
#: mod/viewcontacts.php:105 mod/dirfind.php:214 mod/network.php:598
#: mod/allfriends.php:77 mod/match.php:82 mod/directory.php:172
#: mod/common.php:123 mod/suggest.php:95 mod/photos.php:41
#: include/identity.php:298
msgid "Forum"
msgstr "Форум"
#: mod/contacts.php:128
#, php-format #, php-format
msgid "%d contact edited." msgid "%d contact edited."
msgid_plural "%d contacts edited" msgid_plural "%d contacts edited."
msgstr[0] "%d контакт изменён." msgstr[0] ""
msgstr[1] "%d контакты изменены" msgstr[1] ""
msgstr[2] "%d контакты изменены" msgstr[2] ""
msgstr[3] ""
#: ../../mod/contacts.php:139 ../../mod/contacts.php:272 #: mod/contacts.php:159 mod/contacts.php:383
msgid "Could not access contact record." msgid "Could not access contact record."
msgstr "Не удалось получить доступ к записи контакта." msgstr "Не удалось получить доступ к записи контакта."
#: ../../mod/contacts.php:153 #: mod/contacts.php:173
msgid "Could not locate selected profile." msgid "Could not locate selected profile."
msgstr "Не удалось найти выбранный профиль." msgstr "Не удалось найти выбранный профиль."
#: ../../mod/contacts.php:186 #: mod/contacts.php:206
msgid "Contact updated." msgid "Contact updated."
msgstr "Контакт обновлен." msgstr "Контакт обновлен."
#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576 #: mod/contacts.php:208 mod/dfrn_request.php:575
msgid "Failed to update contact record." msgid "Failed to update contact record."
msgstr "Не удалось обновить запись контакта." msgstr "Не удалось обновить запись контакта."
#: ../../mod/contacts.php:254 ../../mod/manage.php:96 #: mod/contacts.php:365 mod/manage.php:96 mod/display.php:509
#: ../../mod/display.php:499 ../../mod/profile_photo.php:19 #: mod/profile_photo.php:19 mod/profile_photo.php:175
#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 #: mod/profile_photo.php:186 mod/profile_photo.php:199
#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 #: mod/ostatus_subscribe.php:9 mod/follow.php:11 mod/follow.php:73
#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19 #: mod/follow.php:155 mod/item.php:180 mod/item.php:192 mod/group.php:19
#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78 #: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:77
#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24 #: mod/wall_upload.php:80 mod/viewcontacts.php:40 mod/notifications.php:69
#: ../../mod/notifications.php:66 ../../mod/message.php:38 #: mod/message.php:45 mod/message.php:181 mod/crepair.php:117
#: ../../mod/message.php:174 ../../mod/crepair.php:119 #: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4
#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 #: mod/allfriends.php:12 mod/events.php:165 mod/wallmessage.php:9
#: ../../mod/events.php:140 ../../mod/install.php:151 #: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 #: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20
#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 #: mod/settings.php:126 mod/settings.php:646 mod/register.php:42
#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 #: mod/delegate.php:12 mod/common.php:18 mod/mood.php:114 mod/suggest.php:58
#: ../../mod/settings.php:596 ../../mod/settings.php:601 #: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10
#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114 #: mod/api.php:26 mod/api.php:31 mod/notes.php:22 mod/poke.php:149
#: ../../mod/suggest.php:58 ../../mod/profiles.php:165 #: mod/repair_ostatus.php:9 mod/invite.php:15 mod/invite.php:101
#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26 #: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110
#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 #: mod/uimport.php:23 mod/attach.php:33 include/items.php:5096 index.php:383
#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
msgid "Permission denied." msgid "Permission denied."
msgstr "Нет разрешения." msgstr "Нет разрешения."
#: ../../mod/contacts.php:287 #: mod/contacts.php:404
msgid "Contact has been blocked" msgid "Contact has been blocked"
msgstr "Контакт заблокирован" msgstr "Контакт заблокирован"
#: ../../mod/contacts.php:287 #: mod/contacts.php:404
msgid "Contact has been unblocked" msgid "Contact has been unblocked"
msgstr "Контакт разблокирован" msgstr "Контакт разблокирован"
#: ../../mod/contacts.php:298 #: mod/contacts.php:415
msgid "Contact has been ignored" msgid "Contact has been ignored"
msgstr "Контакт проигнорирован" msgstr "Контакт проигнорирован"
#: ../../mod/contacts.php:298 #: mod/contacts.php:415
msgid "Contact has been unignored" msgid "Contact has been unignored"
msgstr "У контакта отменено игнорирование" msgstr "У контакта отменено игнорирование"
#: ../../mod/contacts.php:310 #: mod/contacts.php:427
msgid "Contact has been archived" msgid "Contact has been archived"
msgstr "Контакт заархивирован" msgstr "Контакт заархивирован"
#: ../../mod/contacts.php:310 #: mod/contacts.php:427
msgid "Contact has been unarchived" msgid "Contact has been unarchived"
msgstr "Контакт разархивирован" msgstr "Контакт разархивирован"
#: ../../mod/contacts.php:335 ../../mod/contacts.php:711 #: mod/contacts.php:454 mod/contacts.php:802
msgid "Do you really want to delete this contact?" msgid "Do you really want to delete this contact?"
msgstr "Вы действительно хотите удалить этот контакт?" msgstr "Вы действительно хотите удалить этот контакт?"
#: ../../mod/contacts.php:337 ../../mod/message.php:209 #: mod/contacts.php:456 mod/follow.php:110 mod/message.php:216
#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 #: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1117
#: ../../mod/settings.php:1024 ../../mod/settings.php:1028 #: mod/settings.php:1121 mod/settings.php:1126 mod/settings.php:1132
#: ../../mod/settings.php:1033 ../../mod/settings.php:1039 #: mod/settings.php:1138 mod/settings.php:1144 mod/settings.php:1170
#: ../../mod/settings.php:1045 ../../mod/settings.php:1051 #: mod/settings.php:1171 mod/settings.php:1172 mod/settings.php:1173
#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 #: mod/settings.php:1174 mod/dfrn_request.php:857 mod/register.php:238
#: ../../mod/settings.php:1083 ../../mod/settings.php:1084 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830 #: mod/profiles.php:687 mod/api.php:105 include/items.php:4928
#: ../../mod/register.php:233 ../../mod/suggest.php:29
#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
#: ../../include/items.php:4557
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 #: mod/contacts.php:459 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 #: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93
#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615 #: mod/fbrowser.php:128 mod/settings.php:660 mod/settings.php:686
#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844 #: mod/dfrn_request.php:871 mod/suggest.php:32 mod/editpost.php:148
#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 #: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1220
#: ../../mod/photos.php:203 ../../mod/photos.php:292 #: include/items.php:4931
#: ../../include/conversation.php:1129 ../../include/items.php:4560
msgid "Cancel" msgid "Cancel"
msgstr "Отмена" msgstr "Отмена"
#: ../../mod/contacts.php:352 #: mod/contacts.php:471
msgid "Contact has been removed." msgid "Contact has been removed."
msgstr "Контакт удален." msgstr "Контакт удален."
#: ../../mod/contacts.php:390 #: mod/contacts.php:512
#, php-format #, php-format
msgid "You are mutual friends with %s" msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s" msgstr "У Вас взаимная дружба с %s"
#: ../../mod/contacts.php:394 #: mod/contacts.php:516
#, php-format #, php-format
msgid "You are sharing with %s" msgid "You are sharing with %s"
msgstr "Вы делитесь с %s" msgstr "Вы делитесь с %s"
#: ../../mod/contacts.php:399 #: mod/contacts.php:521
#, php-format #, php-format
msgid "%s is sharing with you" msgid "%s is sharing with you"
msgstr "%s делитса с Вами" msgstr "%s делитса с Вами"
#: ../../mod/contacts.php:416 #: mod/contacts.php:541
msgid "Private communications are not available for this contact." msgid "Private communications are not available for this contact."
msgstr "Личные коммуникации недоступны для этого контакта." msgstr "Личные коммуникации недоступны для этого контакта."
#: ../../mod/contacts.php:419 ../../mod/admin.php:569 #: mod/contacts.php:544 mod/admin.php:822
msgid "Never" msgid "Never"
msgstr "Никогда" msgstr "Никогда"
#: ../../mod/contacts.php:423 #: mod/contacts.php:548
msgid "(Update was successful)" msgid "(Update was successful)"
msgstr "(Обновление было успешно)" msgstr "(Обновление было успешно)"
#: ../../mod/contacts.php:423 #: mod/contacts.php:548
msgid "(Update was not successful)" msgid "(Update was not successful)"
msgstr "(Обновление не удалось)" msgstr "(Обновление не удалось)"
#: ../../mod/contacts.php:425 #: mod/contacts.php:550
msgid "Suggest friends" msgid "Suggest friends"
msgstr "Предложить друзей" msgstr "Предложить друзей"
#: ../../mod/contacts.php:429 #: mod/contacts.php:554
#, php-format #, php-format
msgid "Network type: %s" msgid "Network type: %s"
msgstr "Сеть: %s" msgstr "Сеть: %s"
#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200 #: mod/contacts.php:567
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d Контакт"
msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
#: ../../mod/contacts.php:437
msgid "View all contacts"
msgstr "Показать все контакты"
#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
msgid "Unblock"
msgstr "Разблокировать"
#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
msgid "Block"
msgstr "Заблокировать"
#: ../../mod/contacts.php:445
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
#: ../../mod/contacts.php:715
msgid "Unignore"
msgstr "Не игнорировать"
#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
msgid "Ignore"
msgstr "Игнорировать"
#: ../../mod/contacts.php:451
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
msgid "Unarchive"
msgstr "Разархивировать"
#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
msgid "Archive"
msgstr "Архивировать"
#: ../../mod/contacts.php:458
msgid "Toggle Archive status"
msgstr "Сменить статус архивации (архивирова/не архивировать)"
#: ../../mod/contacts.php:461
msgid "Repair"
msgstr "Восстановить"
#: ../../mod/contacts.php:464
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
#: ../../mod/contacts.php:470
msgid "Communications lost with this contact!" msgid "Communications lost with this contact!"
msgstr "Связь с контактом утеряна!" msgstr "Связь с контактом утеряна!"
#: ../../mod/contacts.php:473 #: mod/contacts.php:570
msgid "Contact Editor" msgid "Fetch further information for feeds"
msgstr "Редактор контакта" msgstr ""
#: ../../mod/contacts.php:475 ../../mod/manage.php:110 #: mod/contacts.php:571 mod/admin.php:831
#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 msgid "Disabled"
#: ../../mod/message.php:564 ../../mod/crepair.php:186 msgstr "Отключенный"
#: ../../mod/events.php:478 ../../mod/content.php:710
#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 #: mod/contacts.php:571
#: ../../mod/profiles.php:686 ../../mod/localtime.php:45 msgid "Fetch information"
#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084 msgstr ""
#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
#: ../../mod/photos.php:1565 ../../mod/photos.php:1609 #: mod/contacts.php:571
#: ../../mod/photos.php:1697 ../../object/Item.php:678 msgid "Fetch information and keywords"
#: ../../view/theme/cleanzero/config.php:80 msgstr ""
#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
#: ../../view/theme/diabook/config.php:148 #: mod/contacts.php:587 mod/manage.php:143 mod/fsuggest.php:107
#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53 #: mod/message.php:342 mod/message.php:525 mod/crepair.php:196
#: ../../view/theme/duepuntozero/config.php:59 #: mod/events.php:574 mod/content.php:712 mod/install.php:261
#: mod/install.php:299 mod/mood.php:137 mod/profiles.php:696
#: mod/localtime.php:45 mod/poke.php:198 mod/invite.php:140
#: mod/photos.php:1137 mod/photos.php:1261 mod/photos.php:1579
#: mod/photos.php:1630 mod/photos.php:1678 mod/photos.php:1766
#: object/Item.php:710 view/theme/cleanzero/config.php:80
#: view/theme/dispy/config.php:70 view/theme/quattro/config.php:64
#: view/theme/diabook/config.php:148 view/theme/diabook/theme.php:633
#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
msgid "Submit" msgid "Submit"
msgstr "Подтвердить" msgstr "Добавить"
#: ../../mod/contacts.php:476 #: mod/contacts.php:588
msgid "Profile Visibility" msgid "Profile Visibility"
msgstr "Видимость профиля" msgstr "Видимость профиля"
#: ../../mod/contacts.php:477 #: mod/contacts.php:589
#, php-format #, php-format
msgid "" msgid ""
"Please choose the profile you would like to display to %s when viewing your " "Please choose the profile you would like to display to %s when viewing your "
"profile securely." "profile securely."
msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен." msgstr ""
"Пожалуйста, выберите профиль, который вы хотите отображать %s, когда "
"просмотр вашего профиля безопасен."
#: ../../mod/contacts.php:478 #: mod/contacts.php:590
msgid "Contact Information / Notes" msgid "Contact Information / Notes"
msgstr "Информация о контакте / Заметки" msgstr "Информация о контакте / Заметки"
#: ../../mod/contacts.php:479 #: mod/contacts.php:591
msgid "Edit contact notes" msgid "Edit contact notes"
msgstr "Редактировать заметки контакта" msgstr "Редактировать заметки контакта"
#: ../../mod/contacts.php:484 ../../mod/contacts.php:679 #: mod/contacts.php:596 mod/contacts.php:952 mod/viewcontacts.php:97
#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40 #: mod/nogroup.php:41
#, php-format #, php-format
msgid "Visit %s's profile [%s]" msgid "Visit %s's profile [%s]"
msgstr "Посетить профиль %s [%s]" msgstr "Посетить профиль %s [%s]"
#: ../../mod/contacts.php:485 #: mod/contacts.php:597
msgid "Block/Unblock contact" msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт" msgstr "Блокировать / Разблокировать контакт"
#: ../../mod/contacts.php:486 #: mod/contacts.php:598
msgid "Ignore contact" msgid "Ignore contact"
msgstr "Игнорировать контакт" msgstr "Игнорировать контакт"
#: ../../mod/contacts.php:487 #: mod/contacts.php:599
msgid "Repair URL settings" msgid "Repair URL settings"
msgstr "Восстановить настройки URL" msgstr "Восстановить настройки URL"
#: ../../mod/contacts.php:488 #: mod/contacts.php:600
msgid "View conversations" msgid "View conversations"
msgstr "Просмотр бесед" msgstr "Просмотр бесед"
#: ../../mod/contacts.php:490 #: mod/contacts.php:602
msgid "Delete contact" msgid "Delete contact"
msgstr "Удалить контакт" msgstr "Удалить контакт"
#: ../../mod/contacts.php:494 #: mod/contacts.php:606
msgid "Last update:" msgid "Last update:"
msgstr "Последнее обновление: " msgstr "Последнее обновление: "
#: ../../mod/contacts.php:496 #: mod/contacts.php:608
msgid "Update public posts" msgid "Update public posts"
msgstr "Обновить публичные сообщения" msgstr "Обновить публичные сообщения"
#: ../../mod/contacts.php:498 ../../mod/admin.php:1503 #: mod/contacts.php:610
msgid "Update now" msgid "Update now"
msgstr "Обновить сейчас" msgstr "Обновить сейчас"
#: ../../mod/contacts.php:505 #: mod/contacts.php:612 mod/follow.php:103 mod/dirfind.php:196
#: mod/allfriends.php:65 mod/match.php:71 mod/suggest.php:82
#: include/contact_widgets.php:32 include/Contact.php:297
#: include/conversation.php:924
msgid "Connect/Follow"
msgstr "Подключиться/Следовать"
#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865
#: mod/admin.php:1312
msgid "Unblock"
msgstr "Разблокировать"
#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:865
#: mod/admin.php:1311
msgid "Block"
msgstr "Заблокировать"
#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872
msgid "Unignore"
msgstr "Не игнорировать"
#: mod/contacts.php:616 mod/contacts.php:807 mod/contacts.php:872
#: mod/notifications.php:54 mod/notifications.php:179
#: mod/notifications.php:259
msgid "Ignore"
msgstr "Игнорировать"
#: mod/contacts.php:619
msgid "Currently blocked" msgid "Currently blocked"
msgstr "В настоящее время заблокирован" msgstr "В настоящее время заблокирован"
#: ../../mod/contacts.php:506 #: mod/contacts.php:620
msgid "Currently ignored" msgid "Currently ignored"
msgstr "В настоящее время игнорируется" msgstr "В настоящее время игнорируется"
#: ../../mod/contacts.php:507 #: mod/contacts.php:621
msgid "Currently archived" msgid "Currently archived"
msgstr "В данный момент архивирован" msgstr "В данный момент архивирован"
#: ../../mod/contacts.php:508 ../../mod/notifications.php:157 #: mod/contacts.php:622 mod/notifications.php:172 mod/notifications.php:251
#: ../../mod/notifications.php:204
msgid "Hide this contact from others" msgid "Hide this contact from others"
msgstr "Скрыть этот контакт от других" msgstr "Скрыть этот контакт от других"
#: ../../mod/contacts.php:508 #: mod/contacts.php:622
msgid "" msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible" "Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы." msgstr "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы."
#: ../../mod/contacts.php:509 #: mod/contacts.php:623
msgid "Notification for new posts" msgid "Notification for new posts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:509 #: mod/contacts.php:623
msgid "Send a notification of every new post of this contact" msgid "Send a notification of every new post of this contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:510 #: mod/contacts.php:626
msgid "Fetch further information for feeds"
msgstr ""
#: ../../mod/contacts.php:511
msgid "Disabled"
msgstr ""
#: ../../mod/contacts.php:511
msgid "Fetch information"
msgstr ""
#: ../../mod/contacts.php:511
msgid "Fetch information and keywords"
msgstr ""
#: ../../mod/contacts.php:513
msgid "Blacklisted keywords" msgid "Blacklisted keywords"
msgstr "" msgstr ""
#: ../../mod/contacts.php:513 #: mod/contacts.php:626
msgid "" msgid ""
"Comma separated list of keywords that should not be converted to hashtags, " "Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected" "when \"Fetch information and keywords\" is selected"
msgstr "" msgstr ""
#: ../../mod/contacts.php:564 #: mod/contacts.php:633 mod/follow.php:126 mod/notifications.php:255
msgid "Profile URL"
msgstr "URL профиля"
#: mod/contacts.php:636 mod/notifications.php:244 mod/events.php:566
#: mod/directory.php:145 include/identity.php:308 include/bb2diaspora.php:170
#: include/event.php:36 include/event.php:60
msgid "Location:"
msgstr "Откуда:"
#: mod/contacts.php:638 mod/notifications.php:246 mod/directory.php:153
#: include/identity.php:317 include/identity.php:631
msgid "About:"
msgstr "О себе:"
#: mod/contacts.php:640 mod/follow.php:134 mod/notifications.php:248
#: include/identity.php:625
msgid "Tags:"
msgstr "Ключевые слова: "
#: mod/contacts.php:685
msgid "Suggestions" msgid "Suggestions"
msgstr "Предложения" msgstr "Предложения"
#: ../../mod/contacts.php:567 #: mod/contacts.php:688
msgid "Suggest potential friends" msgid "Suggest potential friends"
msgstr "Предложить потенциального знакомого" msgstr "Предложить потенциального знакомого"
#: ../../mod/contacts.php:570 ../../mod/group.php:194 #: mod/contacts.php:693 mod/group.php:192
msgid "All Contacts" msgid "All Contacts"
msgstr "Все контакты" msgstr "Все контакты"
#: ../../mod/contacts.php:573 #: mod/contacts.php:696
msgid "Show all contacts" msgid "Show all contacts"
msgstr "Показать все контакты" msgstr "Показать все контакты"
#: ../../mod/contacts.php:576 #: mod/contacts.php:701
msgid "Unblocked" msgid "Unblocked"
msgstr "Не блокирован" msgstr "Не блокирован"
#: ../../mod/contacts.php:579 #: mod/contacts.php:704
msgid "Only show unblocked contacts" msgid "Only show unblocked contacts"
msgstr "Показать только не блокированные контакты" msgstr "Показать только не блокированные контакты"
#: ../../mod/contacts.php:583 #: mod/contacts.php:710
msgid "Blocked" msgid "Blocked"
msgstr "Заблокирован" msgstr "Заблокирован"
#: ../../mod/contacts.php:586 #: mod/contacts.php:713
msgid "Only show blocked contacts" msgid "Only show blocked contacts"
msgstr "Показать только блокированные контакты" msgstr "Показать только блокированные контакты"
#: ../../mod/contacts.php:590 #: mod/contacts.php:719
msgid "Ignored" msgid "Ignored"
msgstr "Игнорирован" msgstr "Игнорирован"
#: ../../mod/contacts.php:593 #: mod/contacts.php:722
msgid "Only show ignored contacts" msgid "Only show ignored contacts"
msgstr "Показать только игнорируемые контакты" msgstr "Показать только игнорируемые контакты"
#: ../../mod/contacts.php:597 #: mod/contacts.php:728
msgid "Archived" msgid "Archived"
msgstr "Архивированные" msgstr "Архивированные"
#: ../../mod/contacts.php:600 #: mod/contacts.php:731
msgid "Only show archived contacts" msgid "Only show archived contacts"
msgstr "Показывать только архивные контакты" msgstr "Показывать только архивные контакты"
#: ../../mod/contacts.php:604 #: mod/contacts.php:737
msgid "Hidden" msgid "Hidden"
msgstr "Скрытые" msgstr "Скрытые"
#: ../../mod/contacts.php:607 #: mod/contacts.php:740
msgid "Only show hidden contacts" msgid "Only show hidden contacts"
msgstr "Показывать только скрытые контакты" msgstr "Показывать только скрытые контакты"
#: ../../mod/contacts.php:655 #: mod/contacts.php:793 mod/contacts.php:841 mod/viewcontacts.php:116
msgid "Mutual Friendship" #: include/identity.php:741 include/identity.php:744 include/text.php:1012
msgstr "Взаимная дружба" #: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125
#: ../../mod/contacts.php:659
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: ../../mod/contacts.php:663
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Редактировать контакт"
#: ../../mod/contacts.php:702 ../../include/nav.php:177
#: ../../view/theme/diabook/theme.php:125
msgid "Contacts" msgid "Contacts"
msgstr "Контакты" msgstr "Контакты"
#: ../../mod/contacts.php:706 #: mod/contacts.php:797
msgid "Search your contacts" msgid "Search your contacts"
msgstr "Поиск ваших контактов" msgstr "Поиск ваших контактов"
#: ../../mod/contacts.php:707 ../../mod/directory.php:61 #: mod/contacts.php:798
msgid "Finding: " msgid "Finding: "
msgstr "Результат поиска: " msgstr "Результат поиска: "
#: ../../mod/contacts.php:708 ../../mod/directory.php:63 #: mod/contacts.php:799 mod/directory.php:210 include/contact_widgets.php:34
#: ../../include/contact_widgets.php:34
msgid "Find" msgid "Find"
msgstr "Найти" msgstr "Найти"
#: ../../mod/contacts.php:713 ../../mod/settings.php:132 #: mod/contacts.php:805 mod/settings.php:156 mod/settings.php:685
#: ../../mod/settings.php:640
msgid "Update" msgid "Update"
msgstr "Обновление" msgstr "Обновление"
#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007 #: mod/contacts.php:808 mod/contacts.php:879
#: ../../mod/content.php:438 ../../mod/content.php:741 msgid "Archive"
#: ../../mod/settings.php:677 ../../mod/photos.php:1654 msgstr "Архивировать"
#: ../../object/Item.php:130 ../../include/conversation.php:614
#: mod/contacts.php:808 mod/contacts.php:879
msgid "Unarchive"
msgstr "Разархивировать"
#: mod/contacts.php:809 mod/group.php:171 mod/admin.php:1310
#: mod/content.php:440 mod/content.php:743 mod/settings.php:722
#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635
msgid "Delete" msgid "Delete"
msgstr "Удалить" msgstr "Удалить"
#: ../../mod/hcard.php:10 #: mod/contacts.php:822 include/identity.php:686 include/nav.php:75
msgid "Status"
msgstr "Посты"
#: mod/contacts.php:825 mod/follow.php:143 include/identity.php:689
msgid "Status Messages and Posts"
msgstr "Ваши посты"
#: mod/contacts.php:830 mod/profperm.php:104 mod/newmember.php:32
#: include/identity.php:579 include/identity.php:665 include/identity.php:694
#: include/nav.php:76 view/theme/diabook/theme.php:124
msgid "Profile"
msgstr "Информация"
#: mod/contacts.php:833 include/identity.php:697
msgid "Profile Details"
msgstr "Информация о вас"
#: mod/contacts.php:844
msgid "View all contacts"
msgstr "Показать все контакты"
#: mod/contacts.php:850 mod/common.php:134
msgid "Common Friends"
msgstr "Общие друзья"
#: mod/contacts.php:853
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:857
msgid "Repair"
msgstr "Восстановить"
#: mod/contacts.php:860
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
#: mod/contacts.php:868
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
#: mod/contacts.php:875
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
#: mod/contacts.php:882
msgid "Toggle Archive status"
msgstr "Сменить статус архивации (архивирова/не архивировать)"
#: mod/contacts.php:924
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: mod/contacts.php:928
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: mod/contacts.php:932
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: mod/contacts.php:953 mod/nogroup.php:42
msgid "Edit contact"
msgstr "Редактировать контакт"
#: mod/hcard.php:10
msgid "No profile" msgid "No profile"
msgstr "Нет профиля" msgstr "Нет профиля"
#: ../../mod/manage.php:106 #: mod/manage.php:139
msgid "Manage Identities and/or Pages" msgid "Manage Identities and/or Pages"
msgstr "Управление идентификацией и / или страницами" msgstr "Управление идентификацией и / или страницами"
#: ../../mod/manage.php:107 #: mod/manage.php:140
msgid "" msgid ""
"Toggle between different identities or community/group pages which share " "Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions" "your account details or which you have been granted \"manage\" permissions"
msgstr "" msgstr ""
#: ../../mod/manage.php:108 #: mod/manage.php:141
msgid "Select an identity to manage: " msgid "Select an identity to manage: "
msgstr "Выберите идентификацию для управления: " msgstr "Выберите идентификацию для управления: "
#: ../../mod/oexchange.php:25 #: mod/oexchange.php:25
msgid "Post successful." msgid "Post successful."
msgstr "Успешно добавлено." msgstr "Успешно добавлено."
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368 #: mod/profperm.php:19 mod/group.php:72 index.php:382
msgid "Permission denied" msgid "Permission denied"
msgstr "Доступ запрещен" msgstr "Доступ запрещен"
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 #: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier." msgid "Invalid profile identifier."
msgstr "Недопустимый идентификатор профиля." msgstr "Недопустимый идентификатор профиля."
#: ../../mod/profperm.php:101 #: mod/profperm.php:102
msgid "Profile Visibility Editor" msgid "Profile Visibility Editor"
msgstr "Редактор видимости профиля" msgstr "Редактор видимости профиля"
#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119 #: mod/profperm.php:106 mod/group.php:223
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
msgid "Profile"
msgstr "Профиль"
#: ../../mod/profperm.php:105 ../../mod/group.php:224
msgid "Click on a contact to add or remove." msgid "Click on a contact to add or remove."
msgstr "Нажмите на контакт, чтобы добавить или удалить." msgstr "Нажмите на контакт, чтобы добавить или удалить."
#: ../../mod/profperm.php:114 #: mod/profperm.php:115
msgid "Visible To" msgid "Visible To"
msgstr "Видимый для" msgstr "Видимый для"
#: ../../mod/profperm.php:130 #: mod/profperm.php:131
msgid "All Contacts (with secure profile access)" msgid "All Contacts (with secure profile access)"
msgstr "Все контакты (с безопасным доступом к профилю)" msgstr "Все контакты (с безопасным доступом к профилю)"
#: ../../mod/display.php:82 ../../mod/display.php:284 #: mod/display.php:82 mod/display.php:291 mod/display.php:513
#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169 #: mod/viewsrc.php:15 mod/admin.php:234 mod/admin.php:1365 mod/admin.php:1599
#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15 #: mod/notice.php:15 include/items.php:4887
#: ../../include/items.php:4516
msgid "Item not found." msgid "Item not found."
msgstr "Пункт не найден." msgstr "Пункт не найден."
#: ../../mod/display.php:212 ../../mod/videos.php:115 #: mod/display.php:220 mod/videos.php:197 mod/viewcontacts.php:35
#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18 #: mod/community.php:22 mod/dfrn_request.php:786 mod/search.php:93
#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89 #: mod/search.php:99 mod/directory.php:37 mod/photos.php:976
#: ../../mod/directory.php:33 ../../mod/photos.php:920
msgid "Public access denied." msgid "Public access denied."
msgstr "Свободный доступ закрыт." msgstr "Свободный доступ закрыт."
#: ../../mod/display.php:332 ../../mod/profile.php:155 #: mod/display.php:339 mod/profile.php:155
msgid "Access to this profile has been restricted." msgid "Access to this profile has been restricted."
msgstr "Доступ к этому профилю ограничен." msgstr "Доступ к этому профилю ограничен."
#: ../../mod/display.php:496 #: mod/display.php:506
msgid "Item has been removed." msgid "Item has been removed."
msgstr "Пункт был удален." msgstr "Пункт был удален."
#: ../../mod/newmember.php:6 #: mod/newmember.php:6
msgid "Welcome to Friendica" msgid "Welcome to Friendica"
msgstr "Добро пожаловать в Friendica" msgstr "Добро пожаловать в Friendica"
#: ../../mod/newmember.php:8 #: mod/newmember.php:8
msgid "New Member Checklist" msgid "New Member Checklist"
msgstr "Новый контрольный список участников" msgstr "Новый контрольный список участников"
#: ../../mod/newmember.php:12 #: mod/newmember.php:12
msgid "" msgid ""
"We would like to offer some tips and links to help make your experience " "We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page " "enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial " "will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear." "registration and then will quietly disappear."
msgstr "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет." msgstr ""
"Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу "
"работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую "
"страницу. Ссылка на эту страницу будет видна на вашей домашней странице в "
"течение двух недель после первоначальной регистрации, а затем она исчезнет."
#: ../../mod/newmember.php:14 #: mod/newmember.php:14
msgid "Getting Started" msgid "Getting Started"
msgstr "Начало работы" msgstr "Начало работы"
#: ../../mod/newmember.php:18 #: mod/newmember.php:18
msgid "Friendica Walk-Through" msgid "Friendica Walk-Through"
msgstr "Friendica тур" msgstr "Friendica тур"
#: ../../mod/newmember.php:18 #: mod/newmember.php:18
msgid "" msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your " "On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to" "profile and network tabs, make some new connections, and find some groups to "
" join." "join."
msgstr "На вашей странице <em>Быстрый старт</em> - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним." msgstr ""
"На вашей странице <em>Быстрый старт</em> - можно найти краткое введение в "
"ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы "
"присоединиться к ним."
#: ../../mod/newmember.php:22 ../../mod/admin.php:1104 #: mod/newmember.php:22 mod/admin.php:1418 mod/admin.php:1676
#: ../../mod/admin.php:1325 ../../mod/settings.php:85 #: mod/settings.php:109 include/nav.php:182 view/theme/diabook/theme.php:544
#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648
#: ../../view/theme/diabook/theme.php:648
msgid "Settings" msgid "Settings"
msgstr "Настройки" msgstr "Настройки"
#: ../../mod/newmember.php:26 #: mod/newmember.php:26
msgid "Go to Your Settings" msgid "Go to Your Settings"
msgstr "Перейти к вашим настройкам" msgstr "Перейти к вашим настройкам"
#: ../../mod/newmember.php:26 #: mod/newmember.php:26
msgid "" msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a " "On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and " "note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web." "will be useful in making friends on the free social web."
msgstr "На вашей странице <em>Настройки</em> - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети." msgstr ""
"На вашей странице <em>Настройки</em> - вы можете изменить свой "
"первоначальный пароль. Также обратите внимание на ваш личный адрес. Он "
"выглядит так же, как адрес электронной почты - и будет полезен для поиска "
"друзей в свободной социальной сети."
#: ../../mod/newmember.php:28 #: mod/newmember.php:28
msgid "" msgid ""
"Review the other settings, particularly the privacy settings. An unpublished" "Review the other settings, particularly the privacy settings. An unpublished "
" directory listing is like having an unlisted phone number. In general, you " "directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and " "should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you." "potential friends know exactly how to find you."
msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." msgstr ""
"Просмотрите другие установки, в частности, параметры конфиденциальности. "
"Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, "
"вероятно, следует опубликовать свою информацию - если все ваши друзья и "
"потенциальные друзья точно знают, как вас найти."
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 #: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709
#: ../../mod/profiles.php:699
msgid "Upload Profile Photo" msgid "Upload Profile Photo"
msgstr "Загрузить фото профиля" msgstr "Загрузить фото профиля"
#: ../../mod/newmember.php:36 #: mod/newmember.php:36
msgid "" msgid ""
"Upload a profile photo if you have not done so already. Studies have shown " "Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make" "that people with real photos of themselves are ten times more likely to make "
" friends than people who do not." "friends than people who do not."
msgstr "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают." msgstr ""
"Загрузите фотографию профиля, если вы еще не сделали это. Исследования "
"показали, что люди с реальными фотографиями имеют в десять раз больше шансов "
"подружиться, чем люди, которые этого не делают."
#: ../../mod/newmember.php:38 #: mod/newmember.php:38
msgid "Edit Your Profile" msgid "Edit Your Profile"
msgstr "Редактировать профиль" msgstr "Редактировать профиль"
#: ../../mod/newmember.php:38 #: mod/newmember.php:38
msgid "" msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the " "Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown" "settings for hiding your list of friends and hiding the profile from unknown "
" visitors." "visitors."
msgstr "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей." msgstr ""
"Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. "
"Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля "
"от неизвестных посетителей."
#: ../../mod/newmember.php:40 #: mod/newmember.php:40
msgid "Profile Keywords" msgid "Profile Keywords"
msgstr "Ключевые слова профиля" msgstr "Ключевые слова профиля"
#: ../../mod/newmember.php:40 #: mod/newmember.php:40
msgid "" msgid ""
"Set some public keywords for your default profile which describe your " "Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and " "interests. We may be able to find other people with similar interests and "
"suggest friendships." "suggest friendships."
msgstr "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу." msgstr ""
"Установите некоторые публичные ключевые слова для вашего профиля по "
"умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти "
"других людей со схожими интересами и предложить дружбу."
#: ../../mod/newmember.php:44 #: mod/newmember.php:44
msgid "Connecting" msgid "Connecting"
msgstr "Подключение" msgstr "Подключение"
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 #: mod/newmember.php:51
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Если</em> это ваш личный сервер, установите дополнение Facebook, это может облегчить ваш переход на свободную социальную сеть."
#: ../../mod/newmember.php:56
msgid "Importing Emails" msgid "Importing Emails"
msgstr "Импортирование Email-ов" msgstr "Импортирование Email-ов"
#: ../../mod/newmember.php:56 #: mod/newmember.php:51
msgid "" msgid ""
"Enter your email access information on your Connector Settings page if you " "Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email " "wish to import and interact with friends or mailing lists from your email "
"INBOX" "INBOX"
msgstr "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты" msgstr ""
"Введите информацию о доступе к вашему email на странице настроек вашего "
"коннектора, если вы хотите импортировать, и общаться с друзьями или получать "
"рассылки на ваш ящик электронной почты"
#: ../../mod/newmember.php:58 #: mod/newmember.php:53
msgid "Go to Your Contacts Page" msgid "Go to Your Contacts Page"
msgstr "Перейти на страницу ваших контактов" msgstr "Перейти на страницу ваших контактов"
#: ../../mod/newmember.php:58 #: mod/newmember.php:53
msgid "" msgid ""
"Your Contacts page is your gateway to managing friendships and connecting " "Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site " "with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog." "URL in the <em>Add New Contact</em> dialog."
msgstr "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог <em>Добавить новый контакт</em>." msgstr ""
"Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с "
"друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в "
"диалог <em>Добавить новый контакт</em>."
#: ../../mod/newmember.php:60 #: mod/newmember.php:55
msgid "Go to Your Site's Directory" msgid "Go to Your Site's Directory"
msgstr "Перейти в каталог вашего сайта" msgstr "Перейти в каталог вашего сайта"
#: ../../mod/newmember.php:60 #: mod/newmember.php:55
msgid "" msgid ""
"The Directory page lets you find other people in this network or other " "The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on " "federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested." "their profile page. Provide your own Identity Address if requested."
msgstr "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется." msgstr ""
"На странице каталога вы можете найти других людей в этой сети или на других "
"похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на "
"страницах их профилей. Укажите свой собственный адрес идентификации, если "
"требуется."
#: ../../mod/newmember.php:62 #: mod/newmember.php:57
msgid "Finding New People" msgid "Finding New People"
msgstr "Поиск людей" msgstr "Поиск людей"
#: ../../mod/newmember.php:62 #: mod/newmember.php:57
msgid "" msgid ""
"On the side panel of the Contacts page are several tools to find new " "On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or " "friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand" "interest, and provide suggestions based on network relationships. On a brand "
" new site, friend suggestions will usually begin to be populated within 24 " "new site, friend suggestions will usually begin to be populated within 24 "
"hours." "hours."
msgstr "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." msgstr ""
"На боковой панели страницы Контакты есть несколько инструментов, чтобы найти "
"новых друзей. Мы можем искать по соответствию интересам, посмотреть людей "
"по имени или интересам, и внести предложения на основе сетевых отношений. На "
"новом сайте, предложения дружбы, как правило, начинают заполняться в течение "
"24 часов."
#: ../../mod/newmember.php:66 ../../include/group.php:270 #: mod/newmember.php:61 include/group.php:283
msgid "Groups" msgid "Groups"
msgstr "Группы" msgstr "Группы"
#: ../../mod/newmember.php:70 #: mod/newmember.php:65
msgid "Group Your Contacts" msgid "Group Your Contacts"
msgstr "Группа \"ваши контакты\"" msgstr "Группа \"ваши контакты\""
#: ../../mod/newmember.php:70 #: mod/newmember.php:65
msgid "" msgid ""
"Once you have made some friends, organize them into private conversation " "Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with" "groups from the sidebar of your Contacts page and then you can interact with "
" each group privately on your Network page." "each group privately on your Network page."
msgstr "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть." msgstr ""
"После того, как вы найдете несколько друзей, организуйте их в группы частных "
"бесед в боковой панели на странице Контакты, а затем вы можете "
"взаимодействовать с каждой группой приватно или на вашей странице Сеть."
#: ../../mod/newmember.php:73 #: mod/newmember.php:68
msgid "Why Aren't My Posts Public?" msgid "Why Aren't My Posts Public?"
msgstr "Почему мои посты не публичные?" msgstr "Почему мои посты не публичные?"
#: ../../mod/newmember.php:73 #: mod/newmember.php:68
msgid "" msgid ""
"Friendica respects your privacy. By default, your posts will only show up to" "Friendica respects your privacy. By default, your posts will only show up to "
" people you've added as friends. For more information, see the help section " "people you've added as friends. For more information, see the help section "
"from the link above." "from the link above."
msgstr "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше." msgstr ""
"Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут "
"показываться только для людей, которых вы добавили в список друзей. Для "
"получения дополнительной информации см. раздел справки по ссылке выше."
#: ../../mod/newmember.php:78 #: mod/newmember.php:73
msgid "Getting Help" msgid "Getting Help"
msgstr "Получить помощь" msgstr "Получить помощь"
#: ../../mod/newmember.php:82 #: mod/newmember.php:77
msgid "Go to the Help Section" msgid "Go to the Help Section"
msgstr "Перейти в раздел справки" msgstr "Перейти в раздел справки"
#: ../../mod/newmember.php:82 #: mod/newmember.php:77
msgid "" msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program" "Our <strong>help</strong> pages may be consulted for detail on other program "
" features and resources." "features and resources."
msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса." msgstr ""
"Наши страницы <strong>помощи</strong> могут проконсультировать о "
"подробностях и возможностях программы и ресурса."
#: ../../mod/openid.php:24 #: mod/openid.php:24
msgid "OpenID protocol error. No ID returned." msgid "OpenID protocol error. No ID returned."
msgstr "Ошибка протокола OpenID. Не возвращён ID." msgstr "Ошибка протокола OpenID. Не возвращён ID."
#: ../../mod/openid.php:53 #: mod/openid.php:53
msgid "" msgid ""
"Account not found and OpenID registration is not permitted on this site." "Account not found and OpenID registration is not permitted on this site."
msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте." msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
#: ../../mod/openid.php:93 ../../include/auth.php:112 #: mod/openid.php:93 include/auth.php:118 include/auth.php:181
#: ../../include/auth.php:175
msgid "Login failed." msgid "Login failed."
msgstr "Войти не удалось." msgstr "Войти не удалось."
#: ../../mod/profile_photo.php:44 #: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed." msgid "Image uploaded but image cropping failed."
msgstr "Изображение загружено, но обрезка изображения не удалась." msgstr "Изображение загружено, но обрезка изображения не удалась."
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 #: mod/profile_photo.php:210 mod/profile_photo.php:302
#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 #: mod/profile_photo.php:311 mod/photos.php:78 mod/photos.php:192
#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187 #: mod/photos.php:775 mod/photos.php:1245 mod/photos.php:1268
#: ../../mod/photos.php:1210 ../../include/user.php:335 #: mod/photos.php:1862 include/user.php:345 include/user.php:352
#: ../../include/user.php:342 ../../include/user.php:349 #: include/user.php:359 view/theme/diabook/theme.php:500
#: ../../view/theme/diabook/theme.php:500
msgid "Profile Photos" msgid "Profile Photos"
msgstr "Фотографии профиля" msgstr "Фотографии профиля"
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 #: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 #: mod/profile_photo.php:314
#, php-format #, php-format
msgid "Image size reduction [%s] failed." msgid "Image size reduction [%s] failed."
msgstr "Уменьшение размера изображения [%s] не удалось." msgstr "Уменьшение размера изображения [%s] не удалось."
#: ../../mod/profile_photo.php:118 #: mod/profile_photo.php:124
msgid "" msgid ""
"Shift-reload the page or clear browser cache if the new photo does not " "Shift-reload the page or clear browser cache if the new photo does not "
"display immediately." "display immediately."
msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." msgstr ""
"Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть "
"свое новое фото немедленно."
#: ../../mod/profile_photo.php:128 #: mod/profile_photo.php:134
msgid "Unable to process image" msgid "Unable to process image"
msgstr "Не удается обработать изображение" msgstr "Не удается обработать изображение"
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122 #: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811
#, php-format #, php-format
msgid "Image exceeds size limit of %d" msgid "Image exceeds size limit of %s"
msgstr "Изображение превышает предельный размер %d" msgstr ""
#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144 #: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851
#: ../../mod/photos.php:807
msgid "Unable to process image." msgid "Unable to process image."
msgstr "Невозможно обработать фото." msgstr "Невозможно обработать фото."
#: ../../mod/profile_photo.php:242 #: mod/profile_photo.php:248
msgid "Upload File:" msgid "Upload File:"
msgstr "Загрузить файл:" msgstr "Загрузить файл:"
#: ../../mod/profile_photo.php:243 #: mod/profile_photo.php:249
msgid "Select a profile:" msgid "Select a profile:"
msgstr "Выбрать этот профиль:" msgstr "Выбрать этот профиль:"
#: ../../mod/profile_photo.php:245 #: mod/profile_photo.php:251
msgid "Upload" msgid "Upload"
msgstr "Загрузить" msgstr "Загрузить"
#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062 #: mod/profile_photo.php:254
msgid "or" msgid "or"
msgstr "или" msgstr "или"
#: ../../mod/profile_photo.php:248 #: mod/profile_photo.php:254
msgid "skip this step" msgid "skip this step"
msgstr "пропустить этот шаг" msgstr "пропустить этот шаг"
#: ../../mod/profile_photo.php:248 #: mod/profile_photo.php:254
msgid "select a photo from your photo albums" msgid "select a photo from your photo albums"
msgstr "выберите фото из ваших фотоальбомов" msgstr "выберите фото из ваших фотоальбомов"
#: ../../mod/profile_photo.php:262 #: mod/profile_photo.php:268
msgid "Crop Image" msgid "Crop Image"
msgstr "Обрезать изображение" msgstr "Обрезать изображение"
#: ../../mod/profile_photo.php:263 #: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing." msgid "Please adjust the image cropping for optimum viewing."
msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра."
#: ../../mod/profile_photo.php:265 #: mod/profile_photo.php:271
msgid "Done Editing" msgid "Done Editing"
msgstr "Редактирование выполнено" msgstr "Редактирование выполнено"
#: ../../mod/profile_photo.php:299 #: mod/profile_photo.php:305
msgid "Image uploaded successfully." msgid "Image uploaded successfully."
msgstr "Изображение загружено успешно." msgstr "Изображение загружено успешно."
#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172 #: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878
#: ../../mod/photos.php:834
msgid "Image upload failed." msgid "Image upload failed."
msgstr "Загрузка фото неудачная." msgstr "Загрузка фото неудачная."
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 #: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165
#: ../../include/conversation.php:126 ../../include/conversation.php:254 #: include/conversation.php:130 include/conversation.php:266
#: ../../include/text.php:1968 ../../include/diaspora.php:2087 #: include/text.php:2000 include/diaspora.php:2169
#: ../../view/theme/diabook/theme.php:471 #: view/theme/diabook/theme.php:471
msgid "photo" msgid "photo"
msgstr "фото" msgstr "фото"
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149 #: mod/subthread.php:87 mod/tagger.php:62 include/like.php:165
#: ../../mod/like.php:319 ../../include/conversation.php:121 #: include/like.php:334 include/conversation.php:125
#: ../../include/conversation.php:130 ../../include/conversation.php:249 #: include/conversation.php:134 include/conversation.php:261
#: ../../include/conversation.php:258 ../../include/diaspora.php:2087 #: include/conversation.php:270 include/diaspora.php:2169
#: ../../view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
#: ../../view/theme/diabook/theme.php:475
msgid "status" msgid "status"
msgstr "статус" msgstr "статус"
#: ../../mod/subthread.php:103 #: mod/subthread.php:103
#, php-format #, php-format
msgid "%1$s is following %2$s's %3$s" msgid "%1$s is following %2$s's %3$s"
msgstr "" msgstr ""
#: ../../mod/tagrm.php:41 #: mod/tagrm.php:41
msgid "Tag removed" msgid "Tag removed"
msgstr "Ключевое слово удалено" msgstr "Ключевое слово удалено"
#: ../../mod/tagrm.php:79 #: mod/tagrm.php:79
msgid "Remove Item Tag" msgid "Remove Item Tag"
msgstr "Удалить ключевое слово" msgstr "Удалить ключевое слово"
#: ../../mod/tagrm.php:81 #: mod/tagrm.php:81
msgid "Select a tag to remove: " msgid "Select a tag to remove: "
msgstr "Выберите ключевое слово для удаления: " msgstr "Выберите ключевое слово для удаления: "
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139 #: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove" msgid "Remove"
msgstr "Удалить" msgstr "Удалить"
#: ../../mod/filer.php:30 ../../include/conversation.php:1006 #: mod/ostatus_subscribe.php:14
#: ../../include/conversation.php:1024 msgid "Subscribing to OStatus contacts"
msgstr ""
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr ""
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr ""
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr ""
#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44
msgid "Done"
msgstr "Готово"
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "удачно"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "неудача"
#: mod/ostatus_subscribe.php:69 object/Item.php:235
msgid "ignored"
msgstr ""
#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50
msgid "Keep this window open until done."
msgstr ""
#: mod/filer.php:30 include/conversation.php:1132
#: include/conversation.php:1150
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "Сохранить в папку:" msgstr "Сохранить в папку:"
#: ../../mod/filer.php:30 #: mod/filer.php:30
msgid "- select -" msgid "- select -"
msgstr "- выбрать -" msgstr "- выбрать -"
#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63 #: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61
#: ../../include/text.php:956 #: include/text.php:1004
msgid "Save" msgid "Save"
msgstr "Сохранить" msgstr "Сохранить"
#: ../../mod/follow.php:27 #: mod/follow.php:19 mod/dfrn_request.php:870
msgid "Submit Request"
msgstr "Отправить запрос"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr ""
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr ""
#: mod/follow.php:109 mod/dfrn_request.php:856
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: mod/follow.php:110 mod/dfrn_request.php:857
#, php-format
msgid "Does %s know you?"
msgstr "%s знает вас?"
#: mod/follow.php:110 mod/settings.php:1103 mod/settings.php:1109
#: mod/settings.php:1117 mod/settings.php:1121 mod/settings.php:1126
#: mod/settings.php:1132 mod/settings.php:1138 mod/settings.php:1144
#: mod/settings.php:1170 mod/settings.php:1171 mod/settings.php:1172
#: mod/settings.php:1173 mod/settings.php:1174 mod/dfrn_request.php:857
#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662
#: mod/profiles.php:687 mod/api.php:106
msgid "No"
msgstr "Нет"
#: mod/follow.php:111 mod/dfrn_request.php:861
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: mod/follow.php:117 mod/dfrn_request.php:867
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: mod/follow.php:180
msgid "Contact added" msgid "Contact added"
msgstr "Контакт добавлен" msgstr "Контакт добавлен"
#: ../../mod/item.php:113 #: mod/item.php:114
msgid "Unable to locate original post." msgid "Unable to locate original post."
msgstr "Не удалось найти оригинальный пост." msgstr "Не удалось найти оригинальный пост."
#: ../../mod/item.php:345 #: mod/item.php:329
msgid "Empty post discarded." msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается." msgstr "Пустое сообщение отбрасывается."
#: ../../mod/item.php:484 ../../mod/wall_upload.php:169 #: mod/item.php:467 mod/wall_upload.php:213 mod/wall_upload.php:227
#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185 #: mod/wall_upload.php:234 include/Photo.php:958 include/Photo.php:973
#: ../../include/Photo.php:916 ../../include/Photo.php:931 #: include/Photo.php:980 include/Photo.php:1002 include/message.php:145
#: ../../include/Photo.php:938 ../../include/Photo.php:960
#: ../../include/message.php:144
msgid "Wall Photos" msgid "Wall Photos"
msgstr "Фото стены" msgstr "Фото стены"
#: ../../mod/item.php:938 #: mod/item.php:842
msgid "System error. Post not saved." msgid "System error. Post not saved."
msgstr "Системная ошибка. Сообщение не сохранено." msgstr "Системная ошибка. Сообщение не сохранено."
#: ../../mod/item.php:964 #: mod/item.php:971
#, php-format #, php-format
msgid "" msgid ""
"This message was sent to you by %s, a member of the Friendica social " "This message was sent to you by %s, a member of the Friendica social network."
"network." msgstr ""
msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." "Это сообщение было отправлено вам %s, участником социальной сети Friendica."
#: ../../mod/item.php:966 #: mod/item.php:973
#, php-format #, php-format
msgid "You may visit them online at %s" msgid "You may visit them online at %s"
msgstr "Вы можете посетить их в онлайне на %s" msgstr "Вы можете посетить их в онлайне на %s"
#: ../../mod/item.php:967 #: mod/item.php:974
msgid "" msgid ""
"Please contact the sender by replying to this post if you do not wish to " "Please contact the sender by replying to this post if you do not wish to "
"receive these messages." "receive these messages."
msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." msgstr ""
"Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не "
"хотите получать эти сообщения."
#: ../../mod/item.php:971 #: mod/item.php:978
#, php-format #, php-format
msgid "%s posted an update." msgid "%s posted an update."
msgstr "%s отправил/а/ обновление." msgstr "%s отправил/а/ обновление."
#: ../../mod/group.php:29 #: mod/group.php:29
msgid "Group created." msgid "Group created."
msgstr "Группа создана." msgstr "Группа создана."
#: ../../mod/group.php:35 #: mod/group.php:35
msgid "Could not create group." msgid "Could not create group."
msgstr "Не удалось создать группу." msgstr "Не удалось создать группу."
#: ../../mod/group.php:47 ../../mod/group.php:140 #: mod/group.php:47 mod/group.php:140
msgid "Group not found." msgid "Group not found."
msgstr "Группа не найдена." msgstr "Группа не найдена."
#: ../../mod/group.php:60 #: mod/group.php:60
msgid "Group name changed." msgid "Group name changed."
msgstr "Название группы изменено." msgstr "Название группы изменено."
#: ../../mod/group.php:87 #: mod/group.php:87
msgid "Save Group" msgid "Save Group"
msgstr "Сохранить группу" msgstr "Сохранить группу"
#: ../../mod/group.php:93 #: mod/group.php:93
msgid "Create a group of contacts/friends." msgid "Create a group of contacts/friends."
msgstr "Создать группу контактов / друзей." msgstr "Создать группу контактов / друзей."
#: ../../mod/group.php:94 ../../mod/group.php:180 #: mod/group.php:94 mod/group.php:178 include/group.php:289
msgid "Group Name: " msgid "Group Name: "
msgstr "Название группы: " msgstr "Название группы: "
#: ../../mod/group.php:113 #: mod/group.php:113
msgid "Group removed." msgid "Group removed."
msgstr "Группа удалена." msgstr "Группа удалена."
#: ../../mod/group.php:115 #: mod/group.php:115
msgid "Unable to remove group." msgid "Unable to remove group."
msgstr "Не удается удалить группу." msgstr "Не удается удалить группу."
#: ../../mod/group.php:179 #: mod/group.php:177
msgid "Group Editor" msgid "Group Editor"
msgstr "Редактор групп" msgstr "Редактор групп"
#: ../../mod/group.php:192 #: mod/group.php:190
msgid "Members" msgid "Members"
msgstr "Участники" msgstr "Участники"
#: ../../mod/apps.php:7 ../../index.php:212 #: mod/group.php:193 mod/network.php:576 mod/content.php:130
msgid "Group is empty"
msgstr "Группа пуста"
#: mod/apps.php:7 index.php:226
msgid "You must be logged in to use addons. " msgid "You must be logged in to use addons. "
msgstr "Вы должны войти в систему, чтобы использовать аддоны." msgstr "Вы должны войти в систему, чтобы использовать аддоны."
#: ../../mod/apps.php:11 #: mod/apps.php:11
msgid "Applications" msgid "Applications"
msgstr "Приложения" msgstr "Приложения"
#: ../../mod/apps.php:14 #: mod/apps.php:14
msgid "No installed applications." msgid "No installed applications."
msgstr "Нет установленных приложений." msgstr "Нет установленных приложений."
#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18 #: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
#: ../../mod/profiles.php:133 ../../mod/profiles.php:179 #: mod/profiles.php:179 mod/profiles.php:627
#: ../../mod/profiles.php:630
msgid "Profile not found." msgid "Profile not found."
msgstr "Профиль не найден." msgstr "Профиль не найден."
#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20 #: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92
#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133 #: mod/crepair.php:131
msgid "Contact not found." msgid "Contact not found."
msgstr "Контакт не найден." msgstr "Контакт не найден."
#: ../../mod/dfrn_confirm.php:121 #: mod/dfrn_confirm.php:121
msgid "" msgid ""
"This may occasionally happen if contact was requested by both persons and it" "This may occasionally happen if contact was requested by both persons and it "
" has already been approved." "has already been approved."
msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен." msgstr ""
"Это может иногда происходить, если контакт запрашивали двое людей, и он был "
"уже одобрен."
#: ../../mod/dfrn_confirm.php:240 #: mod/dfrn_confirm.php:240
msgid "Response from remote site was not understood." msgid "Response from remote site was not understood."
msgstr "Ответ от удаленного сайта не был понят." msgstr "Ответ от удаленного сайта не был понят."
#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254 #: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
msgid "Unexpected response from remote site: " msgid "Unexpected response from remote site: "
msgstr "Неожиданный ответ от удаленного сайта: " msgstr "Неожиданный ответ от удаленного сайта: "
#: ../../mod/dfrn_confirm.php:263 #: mod/dfrn_confirm.php:263
msgid "Confirmation completed successfully." msgid "Confirmation completed successfully."
msgstr "Подтверждение успешно завершено." msgstr "Подтверждение успешно завершено."
#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279 #: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
#: ../../mod/dfrn_confirm.php:286
msgid "Remote site reported: " msgid "Remote site reported: "
msgstr "Удаленный сайт сообщил: " msgstr "Удаленный сайт сообщил: "
#: ../../mod/dfrn_confirm.php:277 #: mod/dfrn_confirm.php:277
msgid "Temporary failure. Please wait and try again." msgid "Temporary failure. Please wait and try again."
msgstr "Временные неудачи. Подождите и попробуйте еще раз." msgstr "Временные неудачи. Подождите и попробуйте еще раз."
#: ../../mod/dfrn_confirm.php:284 #: mod/dfrn_confirm.php:284
msgid "Introduction failed or was revoked." msgid "Introduction failed or was revoked."
msgstr "Запрос ошибочен или был отозван." msgstr "Запрос ошибочен или был отозван."
#: ../../mod/dfrn_confirm.php:429 #: mod/dfrn_confirm.php:430
msgid "Unable to set contact photo." msgid "Unable to set contact photo."
msgstr "Не удается установить фото контакта." msgstr "Не удается установить фото контакта."
#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172 #: mod/dfrn_confirm.php:487 include/conversation.php:185
#: ../../include/diaspora.php:620 #: include/diaspora.php:637
#, php-format #, php-format
msgid "%1$s is now friends with %2$s" msgid "%1$s is now friends with %2$s"
msgstr "%1$s и %2$s теперь друзья" msgstr "%1$s и %2$s теперь друзья"
#: ../../mod/dfrn_confirm.php:571 #: mod/dfrn_confirm.php:572
#, php-format #, php-format
msgid "No user record found for '%s' " msgid "No user record found for '%s' "
msgstr "Не найдено записи пользователя для '%s' " msgstr "Не найдено записи пользователя для '%s' "
#: ../../mod/dfrn_confirm.php:581 #: mod/dfrn_confirm.php:582
msgid "Our site encryption key is apparently messed up." msgid "Our site encryption key is apparently messed up."
msgstr "Наш ключ шифрования сайта, по-видимому, перепутался." msgstr "Наш ключ шифрования сайта, по-видимому, перепутался."
#: ../../mod/dfrn_confirm.php:592 #: mod/dfrn_confirm.php:593
msgid "Empty site URL was provided or URL could not be decrypted by us." msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами." msgstr ""
"Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
#: ../../mod/dfrn_confirm.php:613 #: mod/dfrn_confirm.php:614
msgid "Contact record was not found for you on our site." msgid "Contact record was not found for you on our site."
msgstr "Запись контакта не найдена для вас на нашем сайте." msgstr "Запись контакта не найдена для вас на нашем сайте."
#: ../../mod/dfrn_confirm.php:627 #: mod/dfrn_confirm.php:628
#, php-format #, php-format
msgid "Site public key not available in contact record for URL %s." msgid "Site public key not available in contact record for URL %s."
msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s" msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s"
#: ../../mod/dfrn_confirm.php:647 #: mod/dfrn_confirm.php:648
msgid "" msgid ""
"The ID provided by your system is a duplicate on our system. It should work " "The ID provided by your system is a duplicate on our system. It should work "
"if you try again." "if you try again."
msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку." msgstr ""
"ID, предложенный вашей системой, является дубликатом в нашей системе. Он "
"должен работать, если вы повторите попытку."
#: ../../mod/dfrn_confirm.php:658 #: mod/dfrn_confirm.php:659
msgid "Unable to set your contact credentials on our system." msgid "Unable to set your contact credentials on our system."
msgstr "Не удалось установить ваши учетные данные контакта в нашей системе." msgstr "Не удалось установить ваши учетные данные контакта в нашей системе."
#: ../../mod/dfrn_confirm.php:725 #: mod/dfrn_confirm.php:726
msgid "Unable to update your contact profile details on our system" msgid "Unable to update your contact profile details on our system"
msgstr "Не удается обновить ваши контактные детали профиля в нашей системе" msgstr "Не удается обновить ваши контактные детали профиля в нашей системе"
#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717 #: mod/dfrn_confirm.php:753 mod/dfrn_request.php:741 include/items.php:4299
#: ../../include/items.php:4008
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "[Имя не разглашается]" msgstr "[Имя не разглашается]"
#: ../../mod/dfrn_confirm.php:797 #: mod/dfrn_confirm.php:798
#, php-format #, php-format
msgid "%1$s has joined %2$s" msgid "%1$s has joined %2$s"
msgstr "%1$s присоединился %2$s" msgstr "%1$s присоединился %2$s"
#: ../../mod/profile.php:21 ../../boot.php:1458 #: mod/profile.php:21 include/identity.php:51
msgid "Requested profile is not available." msgid "Requested profile is not available."
msgstr "Запрашиваемый профиль недоступен." msgstr "Запрашиваемый профиль недоступен."
#: ../../mod/profile.php:180 #: mod/profile.php:179
msgid "Tips for New Members" msgid "Tips for New Members"
msgstr "Советы для новых участников" msgstr "Советы для новых участников"
#: ../../mod/videos.php:125 #: mod/videos.php:123
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/videos.php:128
msgid "Delete Video"
msgstr "Удалить видео"
#: mod/videos.php:207
msgid "No videos selected" msgid "No videos selected"
msgstr "Видео не выбрано" msgstr "Видео не выбрано"
#: ../../mod/videos.php:226 ../../mod/photos.php:1031 #: mod/videos.php:308 mod/photos.php:1087
msgid "Access to this item is restricted." msgid "Access to this item is restricted."
msgstr "Доступ к этому пункту ограничен." msgstr "Доступ к этому пункту ограничен."
#: ../../mod/videos.php:301 ../../include/text.php:1405 #: mod/videos.php:383 include/text.php:1472
msgid "View Video" msgid "View Video"
msgstr "Просмотреть видео" msgstr "Просмотреть видео"
#: ../../mod/videos.php:308 ../../mod/photos.php:1808 #: mod/videos.php:390 mod/photos.php:1890
msgid "View Album" msgid "View Album"
msgstr "Просмотреть альбом" msgstr "Просмотреть альбом"
#: ../../mod/videos.php:317 #: mod/videos.php:399
msgid "Recent Videos" msgid "Recent Videos"
msgstr "Последние видео" msgstr "Последние видео"
#: ../../mod/videos.php:319 #: mod/videos.php:401
msgid "Upload New Videos" msgid "Upload New Videos"
msgstr "Загрузить новые видео" msgstr "Загрузить новые видео"
#: ../../mod/tagger.php:95 ../../include/conversation.php:266 #: mod/tagger.php:95 include/conversation.php:278
#, php-format #, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s" msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s tagged %2$s's %3$s в %4$s" msgstr "%1$s tagged %2$s's %3$s в %4$s"
#: ../../mod/fsuggest.php:63 #: mod/fsuggest.php:63
msgid "Friend suggestion sent." msgid "Friend suggestion sent."
msgstr "Приглашение в друзья отправлено." msgstr "Приглашение в друзья отправлено."
#: ../../mod/fsuggest.php:97 #: mod/fsuggest.php:97
msgid "Suggest Friends" msgid "Suggest Friends"
msgstr "Предложить друзей" msgstr "Предложить друзей"
#: ../../mod/fsuggest.php:99 #: mod/fsuggest.php:99
#, php-format #, php-format
msgid "Suggest a friend for %s" msgid "Suggest a friend for %s"
msgstr "Предложить друга для %s." msgstr "Предложить друга для %s."
#: ../../mod/lostpass.php:19 #: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1781
msgid "Invalid request."
msgstr "Неверный запрос."
#: mod/lostpass.php:19
msgid "No valid account found." msgid "No valid account found."
msgstr "Не найдено действительного аккаунта." msgstr "Не найдено действительного аккаунта."
#: ../../mod/lostpass.php:35 #: mod/lostpass.php:35
msgid "Password reset request issued. Check your email." msgid "Password reset request issued. Check your email."
msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту." msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту."
#: ../../mod/lostpass.php:42 #: mod/lostpass.php:42
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
"\t\tDear %1$s,\n" "\t\tDear %1$s,\n"
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" "\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
"\t\tpassword. In order to confirm this request, please select the verification link\n" "\t\tpassword. In order to confirm this request, please select the "
"verification link\n"
"\t\tbelow or paste it into your web browser address bar.\n" "\t\tbelow or paste it into your web browser address bar.\n"
"\n" "\n"
"\t\tIf you did NOT request this change, please DO NOT follow the link\n" "\t\tIf you did NOT request this change, please DO NOT follow the link\n"
@ -1169,7 +1336,7 @@ msgid ""
"\t\tissued this request." "\t\tissued this request."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:53 #: mod/lostpass.php:53
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -1178,7 +1345,8 @@ msgid ""
"\t\t%1$s\n" "\t\t%1$s\n"
"\n" "\n"
"\t\tYou will then receive a follow-up message containing the new password.\n" "\t\tYou will then receive a follow-up message containing the new password.\n"
"\t\tYou may change that password from your account settings page after logging in.\n" "\t\tYou may change that password from your account settings page after "
"logging in.\n"
"\n" "\n"
"\t\tThe login details are as follows:\n" "\t\tThe login details are as follows:\n"
"\n" "\n"
@ -1186,55 +1354,60 @@ msgid ""
"\t\tLogin Name:\t%3$s" "\t\tLogin Name:\t%3$s"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:72 #: mod/lostpass.php:72
#, php-format #, php-format
msgid "Password reset requested at %s" msgid "Password reset requested at %s"
msgstr "Запрос на сброс пароля получен %s" msgstr "Запрос на сброс пароля получен %s"
#: ../../mod/lostpass.php:92 #: mod/lostpass.php:92
msgid "" msgid ""
"Request could not be verified. (You may have previously submitted it.) " "Request could not be verified. (You may have previously submitted it.) "
"Password reset failed." "Password reset failed."
msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная." msgstr ""
"Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) "
"Попытка сброса пароля неудачная."
#: ../../mod/lostpass.php:109 ../../boot.php:1280 #: mod/lostpass.php:109 boot.php:1444
msgid "Password Reset" msgid "Password Reset"
msgstr "Сброс пароля" msgstr "Сброс пароля"
#: ../../mod/lostpass.php:110 #: mod/lostpass.php:110
msgid "Your password has been reset as requested." msgid "Your password has been reset as requested."
msgstr "Ваш пароль был сброшен по требованию." msgstr "Ваш пароль был сброшен по требованию."
#: ../../mod/lostpass.php:111 #: mod/lostpass.php:111
msgid "Your new password is" msgid "Your new password is"
msgstr "Ваш новый пароль" msgstr "Ваш новый пароль"
#: ../../mod/lostpass.php:112 #: mod/lostpass.php:112
msgid "Save or copy your new password - and then" msgid "Save or copy your new password - and then"
msgstr "Сохраните или скопируйте новый пароль - и затем" msgstr "Сохраните или скопируйте новый пароль - и затем"
#: ../../mod/lostpass.php:113 #: mod/lostpass.php:113
msgid "click here to login" msgid "click here to login"
msgstr "нажмите здесь для входа" msgstr "нажмите здесь для входа"
#: ../../mod/lostpass.php:114 #: mod/lostpass.php:114
msgid "" msgid ""
"Your password may be changed from the <em>Settings</em> page after " "Your password may be changed from the <em>Settings</em> page after "
"successful login." "successful login."
msgstr "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа." msgstr ""
"Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного "
"входа."
#: ../../mod/lostpass.php:125 #: mod/lostpass.php:125
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
"\t\t\t\tDear %1$s,\n" "\t\t\t\tDear %1$s,\n"
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" "\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
"\t\t\t\tinformation for your records (or change your password immediately to\n" "\t\t\t\tinformation for your records (or change your password immediately "
"to\n"
"\t\t\t\tsomething that you will remember).\n" "\t\t\t\tsomething that you will remember).\n"
"\t\t\t" "\t\t\t"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:131 #: mod/lostpass.php:131
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -1244,1379 +1417,1693 @@ msgid ""
"\t\t\t\tLogin Name:\t%2$s\n" "\t\t\t\tLogin Name:\t%2$s\n"
"\t\t\t\tPassword:\t%3$s\n" "\t\t\t\tPassword:\t%3$s\n"
"\n" "\n"
"\t\t\t\tYou may change that password from your account settings page after logging in.\n" "\t\t\t\tYou may change that password from your account settings page after "
"logging in.\n"
"\t\t\t" "\t\t\t"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:147 #: mod/lostpass.php:147
#, php-format #, php-format
msgid "Your password has been changed at %s" msgid "Your password has been changed at %s"
msgstr "Ваш пароль был изменен %s" msgstr "Ваш пароль был изменен %s"
#: ../../mod/lostpass.php:159 #: mod/lostpass.php:159
msgid "Forgot your Password?" msgid "Forgot your Password?"
msgstr "Забыли пароль?" msgstr "Забыли пароль?"
#: ../../mod/lostpass.php:160 #: mod/lostpass.php:160
msgid "" msgid ""
"Enter your email address and submit to have your password reset. Then check " "Enter your email address and submit to have your password reset. Then check "
"your email for further instructions." "your email for further instructions."
msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций." msgstr ""
"Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш "
"пароль. Затем проверьте свою электронную почту для получения дальнейших "
"инструкций."
#: ../../mod/lostpass.php:161 #: mod/lostpass.php:161
msgid "Nickname or Email: " msgid "Nickname or Email: "
msgstr "Ник или E-mail: " msgstr "Ник или E-mail: "
#: ../../mod/lostpass.php:162 #: mod/lostpass.php:162
msgid "Reset" msgid "Reset"
msgstr "Сброс" msgstr "Сброс"
#: ../../mod/like.php:166 ../../include/conversation.php:137 #: mod/ping.php:265
#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: ../../mod/like.php:168 ../../include/conversation.php:140
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: ../../mod/ping.php:240
msgid "{0} wants to be your friend" msgid "{0} wants to be your friend"
msgstr "{0} хочет стать Вашим другом" msgstr "{0} хочет стать Вашим другом"
#: ../../mod/ping.php:245 #: mod/ping.php:280
msgid "{0} sent you a message" msgid "{0} sent you a message"
msgstr "{0} отправил Вам сообщение" msgstr "{0} отправил Вам сообщение"
#: ../../mod/ping.php:250 #: mod/ping.php:295
msgid "{0} requested registration" msgid "{0} requested registration"
msgstr "{0} требуемая регистрация" msgstr "{0} требуемая регистрация"
#: ../../mod/ping.php:256 #: mod/viewcontacts.php:72
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} прокомментировал сообщение от %s"
#: ../../mod/ping.php:261
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} нравится сообщение от %s"
#: ../../mod/ping.php:266
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} не нравится сообщение от %s"
#: ../../mod/ping.php:271
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} теперь друзья с %s"
#: ../../mod/ping.php:276
msgid "{0} posted"
msgstr "{0} опубликовано"
#: ../../mod/ping.php:281
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} пометил сообщение %s с #%s"
#: ../../mod/ping.php:287
msgid "{0} mentioned you in a post"
msgstr "{0} упоменул Вас в сообщение"
#: ../../mod/viewcontacts.php:41
msgid "No contacts." msgid "No contacts."
msgstr "Нет контактов." msgstr "Нет контактов."
#: ../../mod/viewcontacts.php:78 ../../include/text.php:876 #: mod/notifications.php:29
msgid "View Contacts"
msgstr "Просмотр контактов"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier." msgid "Invalid request identifier."
msgstr "Неверный идентификатор запроса." msgstr "Неверный идентификатор запроса."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 #: mod/notifications.php:38 mod/notifications.php:180
#: ../../mod/notifications.php:211 #: mod/notifications.php:260
msgid "Discard" msgid "Discard"
msgstr "Отказаться" msgstr "Отказаться"
#: ../../mod/notifications.php:78 #: mod/notifications.php:81
msgid "System" msgid "System"
msgstr "Система" msgstr "Система"
#: ../../mod/notifications.php:83 ../../include/nav.php:145 #: mod/notifications.php:87 mod/admin.php:390 include/nav.php:154
msgid "Network" msgid "Network"
msgstr "Сеть" msgstr "Новости"
#: ../../mod/notifications.php:88 ../../mod/network.php:371 #: mod/notifications.php:93 mod/network.php:384
msgid "Personal" msgid "Personal"
msgstr "Персонал" msgstr "Персонал"
#: ../../mod/notifications.php:93 ../../include/nav.php:105 #: mod/notifications.php:99 include/nav.php:104 include/nav.php:157
#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123 #: view/theme/diabook/theme.php:123
msgid "Home" msgid "Home"
msgstr "Главная" msgstr "Мой профиль"
#: ../../mod/notifications.php:98 ../../include/nav.php:154 #: mod/notifications.php:105 include/nav.php:162
msgid "Introductions" msgid "Introductions"
msgstr "Запросы" msgstr "Запросы"
#: ../../mod/notifications.php:122 #: mod/notifications.php:130
msgid "Show Ignored Requests" msgid "Show Ignored Requests"
msgstr "Показать проигнорированные запросы" msgstr "Показать проигнорированные запросы"
#: ../../mod/notifications.php:122 #: mod/notifications.php:130
msgid "Hide Ignored Requests" msgid "Hide Ignored Requests"
msgstr "Скрыть проигнорированные запросы" msgstr "Скрыть проигнорированные запросы"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 #: mod/notifications.php:164 mod/notifications.php:234
msgid "Notification type: " msgid "Notification type: "
msgstr "Тип уведомления: " msgstr "Тип уведомления: "
#: ../../mod/notifications.php:150 #: mod/notifications.php:165
msgid "Friend Suggestion" msgid "Friend Suggestion"
msgstr "Предложение в друзья" msgstr "Предложение в друзья"
#: ../../mod/notifications.php:152 #: mod/notifications.php:167
#, php-format #, php-format
msgid "suggested by %s" msgid "suggested by %s"
msgstr "предложено юзером %s" msgstr "предложено юзером %s"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 #: mod/notifications.php:173 mod/notifications.php:252
msgid "Post a new friend activity" msgid "Post a new friend activity"
msgstr "Настроение" msgstr "Настроение"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 #: mod/notifications.php:173 mod/notifications.php:252
msgid "if applicable" msgid "if applicable"
msgstr "если требуется" msgstr "если требуется"
#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 #: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1308
#: ../../mod/admin.php:1005
msgid "Approve" msgid "Approve"
msgstr "Одобрить" msgstr "Одобрить"
#: ../../mod/notifications.php:181 #: mod/notifications.php:196
msgid "Claims to be known to you: " msgid "Claims to be known to you: "
msgstr "Утверждения, о которых должно быть вам известно: " msgstr "Утверждения, о которых должно быть вам известно: "
#: ../../mod/notifications.php:181 #: mod/notifications.php:196
msgid "yes" msgid "yes"
msgstr "да" msgstr "да"
#: ../../mod/notifications.php:181 #: mod/notifications.php:196
msgid "no" msgid "no"
msgstr "нет" msgstr "нет"
#: ../../mod/notifications.php:188 #: mod/notifications.php:197
msgid "Approve as: " msgid ""
msgstr "Утвердить как: " "Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
"you allow to read but you do not want to read theirs. Approve as: "
msgstr ""
#: ../../mod/notifications.php:189 #: mod/notifications.php:200
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
"allow to read but you do not want to read theirs. Approve as: "
msgstr ""
#: mod/notifications.php:208
msgid "Friend" msgid "Friend"
msgstr "Друг" msgstr "Друг"
#: ../../mod/notifications.php:190 #: mod/notifications.php:209
msgid "Sharer" msgid "Sharer"
msgstr "Участник" msgstr "Участник"
#: ../../mod/notifications.php:190 #: mod/notifications.php:209
msgid "Fan/Admirer" msgid "Fan/Admirer"
msgstr "Фанат / Поклонник" msgstr "Фанат / Поклонник"
#: ../../mod/notifications.php:196 #: mod/notifications.php:235
msgid "Friend/Connect Request" msgid "Friend/Connect Request"
msgstr "Запрос в друзья / на подключение" msgstr "Запрос в друзья / на подключение"
#: ../../mod/notifications.php:196 #: mod/notifications.php:235
msgid "New Follower" msgid "New Follower"
msgstr "Новый фолловер" msgstr "Новый фолловер"
#: ../../mod/notifications.php:217 #: mod/notifications.php:250 mod/directory.php:147 include/identity.php:310
#: include/identity.php:590
msgid "Gender:"
msgstr "Пол:"
#: mod/notifications.php:266
msgid "No introductions." msgid "No introductions."
msgstr "Запросов нет." msgstr "Запросов нет."
#: ../../mod/notifications.php:220 ../../include/nav.php:155 #: mod/notifications.php:269 include/nav.php:165
msgid "Notifications" msgid "Notifications"
msgstr "Уведомления" msgstr "Уведомления"
#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 #: mod/notifications.php:307 mod/notifications.php:436
#: ../../mod/notifications.php:478 #: mod/notifications.php:527
#, php-format #, php-format
msgid "%s liked %s's post" msgid "%s liked %s's post"
msgstr "%s нравится %s сообшение" msgstr "%s нравится %s сообшение"
#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 #: mod/notifications.php:317 mod/notifications.php:446
#: ../../mod/notifications.php:488 #: mod/notifications.php:537
#, php-format #, php-format
msgid "%s disliked %s's post" msgid "%s disliked %s's post"
msgstr "%s не нравится %s сообшение" msgstr "%s не нравится %s сообшение"
#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 #: mod/notifications.php:332 mod/notifications.php:461
#: ../../mod/notifications.php:503 #: mod/notifications.php:552
#, php-format #, php-format
msgid "%s is now friends with %s" msgid "%s is now friends with %s"
msgstr "%s теперь друзья с %s" msgstr "%s теперь друзья с %s"
#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 #: mod/notifications.php:339 mod/notifications.php:468
#, php-format #, php-format
msgid "%s created a new post" msgid "%s created a new post"
msgstr "%s написал новое сообщение" msgstr "%s написал новое сообщение"
#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 #: mod/notifications.php:340 mod/notifications.php:469
#: ../../mod/notifications.php:513 #: mod/notifications.php:562
#, php-format #, php-format
msgid "%s commented on %s's post" msgid "%s commented on %s's post"
msgstr "%s прокомментировал %s сообщение" msgstr "%s прокомментировал %s сообщение"
#: ../../mod/notifications.php:306 #: mod/notifications.php:355
msgid "No more network notifications." msgid "No more network notifications."
msgstr "Уведомлений из сети больше нет." msgstr "Уведомлений из сети больше нет."
#: ../../mod/notifications.php:310 #: mod/notifications.php:359
msgid "Network Notifications" msgid "Network Notifications"
msgstr "Уведомления сети" msgstr "Уведомления сети"
#: ../../mod/notifications.php:336 ../../mod/notify.php:75 #: mod/notifications.php:385 mod/notify.php:72
msgid "No more system notifications." msgid "No more system notifications."
msgstr "Системных уведомлений больше нет." msgstr "Системных уведомлений больше нет."
#: ../../mod/notifications.php:340 ../../mod/notify.php:79 #: mod/notifications.php:389 mod/notify.php:76
msgid "System Notifications" msgid "System Notifications"
msgstr "Уведомления системы" msgstr "Уведомления системы"
#: ../../mod/notifications.php:435 #: mod/notifications.php:484
msgid "No more personal notifications." msgid "No more personal notifications."
msgstr "Персональных уведомлений больше нет." msgstr "Персональных уведомлений больше нет."
#: ../../mod/notifications.php:439 #: mod/notifications.php:488
msgid "Personal Notifications" msgid "Personal Notifications"
msgstr "Личные уведомления" msgstr "Личные уведомления"
#: ../../mod/notifications.php:520 #: mod/notifications.php:569
msgid "No more home notifications." msgid "No more home notifications."
msgstr "Уведомлений больше нет." msgstr "Уведомлений больше нет."
#: ../../mod/notifications.php:524 #: mod/notifications.php:573
msgid "Home Notifications" msgid "Home Notifications"
msgstr "Уведомления" msgstr "Уведомления"
#: ../../mod/babel.php:17 #: mod/babel.php:17
msgid "Source (bbcode) text:" msgid "Source (bbcode) text:"
msgstr "Код (bbcode):" msgstr "Код (bbcode):"
#: ../../mod/babel.php:23 #: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:" msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Код (Diaspora) для конвертации в BBcode:" msgstr "Код (Diaspora) для конвертации в BBcode:"
#: ../../mod/babel.php:31 #: mod/babel.php:31
msgid "Source input: " msgid "Source input: "
msgstr "Ввести код:" msgstr "Ввести код:"
#: ../../mod/babel.php:35 #: mod/babel.php:35
msgid "bb2html (raw HTML): " msgid "bb2html (raw HTML): "
msgstr "bb2html (raw HTML): " msgstr "bb2html (raw HTML): "
#: ../../mod/babel.php:39 #: mod/babel.php:39
msgid "bb2html: " msgid "bb2html: "
msgstr "bb2html: " msgstr "bb2html: "
#: ../../mod/babel.php:43 #: mod/babel.php:43
msgid "bb2html2bb: " msgid "bb2html2bb: "
msgstr "bb2html2bb: " msgstr "bb2html2bb: "
#: ../../mod/babel.php:47 #: mod/babel.php:47
msgid "bb2md: " msgid "bb2md: "
msgstr "bb2md: " msgstr "bb2md: "
#: ../../mod/babel.php:51 #: mod/babel.php:51
msgid "bb2md2html: " msgid "bb2md2html: "
msgstr "bb2md2html: " msgstr "bb2md2html: "
#: ../../mod/babel.php:55 #: mod/babel.php:55
msgid "bb2dia2bb: " msgid "bb2dia2bb: "
msgstr "bb2dia2bb: " msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59 #: mod/babel.php:59
msgid "bb2md2html2bb: " msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: " msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69 #: mod/babel.php:69
msgid "Source input (Diaspora format): " msgid "Source input (Diaspora format): "
msgstr "Ввод кода (формат Diaspora):" msgstr "Ввод кода (формат Diaspora):"
#: ../../mod/babel.php:74 #: mod/babel.php:74
msgid "diaspora2bb: " msgid "diaspora2bb: "
msgstr "diaspora2bb: " msgstr "diaspora2bb: "
#: ../../mod/navigation.php:20 ../../include/nav.php:34 #: mod/navigation.php:19 include/nav.php:33
msgid "Nothing new here" msgid "Nothing new here"
msgstr "Ничего нового здесь" msgstr "Ничего нового здесь"
#: ../../mod/navigation.php:24 ../../include/nav.php:38 #: mod/navigation.php:23 include/nav.php:37
msgid "Clear notifications" msgid "Clear notifications"
msgstr "Стереть уведомления" msgstr "Стереть уведомления"
#: ../../mod/message.php:9 ../../include/nav.php:164 #: mod/message.php:15 include/nav.php:174
msgid "New Message" msgid "New Message"
msgstr "Новое сообщение" msgstr "Новое сообщение"
#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 #: mod/message.php:70 mod/wallmessage.php:56
msgid "No recipient selected." msgid "No recipient selected."
msgstr "Не выбран получатель." msgstr "Не выбран получатель."
#: ../../mod/message.php:67 #: mod/message.php:74
msgid "Unable to locate contact information." msgid "Unable to locate contact information."
msgstr "Не удалось найти контактную информацию." msgstr "Не удалось найти контактную информацию."
#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 #: mod/message.php:77 mod/wallmessage.php:62
msgid "Message could not be sent." msgid "Message could not be sent."
msgstr "Сообщение не может быть отправлено." msgstr "Сообщение не может быть отправлено."
#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 #: mod/message.php:80 mod/wallmessage.php:65
msgid "Message collection failure." msgid "Message collection failure."
msgstr "Неудача коллекции сообщения." msgstr "Неудача коллекции сообщения."
#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 #: mod/message.php:83 mod/wallmessage.php:68
msgid "Message sent." msgid "Message sent."
msgstr "Сообщение отправлено." msgstr "Сообщение отправлено."
#: ../../mod/message.php:182 ../../include/nav.php:161 #: mod/message.php:189 include/nav.php:171
msgid "Messages" msgid "Messages"
msgstr "Сообщения" msgstr "Сообщения"
#: ../../mod/message.php:207 #: mod/message.php:214
msgid "Do you really want to delete this message?" msgid "Do you really want to delete this message?"
msgstr "Вы действительно хотите удалить это сообщение?" msgstr "Вы действительно хотите удалить это сообщение?"
#: ../../mod/message.php:227 #: mod/message.php:234
msgid "Message deleted." msgid "Message deleted."
msgstr "Сообщение удалено." msgstr "Сообщение удалено."
#: ../../mod/message.php:258 #: mod/message.php:265
msgid "Conversation removed." msgid "Conversation removed."
msgstr "Беседа удалена." msgstr "Беседа удалена."
#: ../../mod/message.php:283 ../../mod/message.php:291 #: mod/message.php:290 mod/message.php:298 mod/message.php:427
#: ../../mod/message.php:466 ../../mod/message.php:474 #: mod/message.php:435 mod/wallmessage.php:127 mod/wallmessage.php:135
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 #: include/conversation.php:1128 include/conversation.php:1146
#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:" msgstr "Пожалуйста, введите URL ссылки:"
#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 #: mod/message.php:326 mod/wallmessage.php:142
msgid "Send Private Message" msgid "Send Private Message"
msgstr "Отправить личное сообщение" msgstr "Отправить личное сообщение"
#: ../../mod/message.php:320 ../../mod/message.php:553 #: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144
#: ../../mod/wallmessage.php:144
msgid "To:" msgid "To:"
msgstr "Кому:" msgstr "Кому:"
#: ../../mod/message.php:325 ../../mod/message.php:555 #: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145
#: ../../mod/wallmessage.php:145
msgid "Subject:" msgid "Subject:"
msgstr "Тема:" msgstr "Тема:"
#: ../../mod/message.php:329 ../../mod/message.php:558 #: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151
#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 #: mod/invite.php:134
msgid "Your message:" msgid "Your message:"
msgstr "Ваше сообщение:" msgstr "Ваше сообщение:"
#: ../../mod/message.php:332 ../../mod/message.php:562 #: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154
#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 #: mod/editpost.php:110 include/conversation.php:1183
#: ../../include/conversation.php:1091
msgid "Upload photo" msgid "Upload photo"
msgstr "Загрузить фото" msgstr "Загрузить фото"
#: ../../mod/message.php:333 ../../mod/message.php:563 #: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155
#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 #: mod/editpost.php:114 include/conversation.php:1187
#: ../../include/conversation.php:1095
msgid "Insert web link" msgid "Insert web link"
msgstr "Вставить веб-ссылку" msgstr "Вставить веб-ссылку"
#: ../../mod/message.php:334 ../../mod/message.php:565 #: mod/message.php:341 mod/message.php:526 mod/content.php:501
#: ../../mod/content.php:499 ../../mod/content.php:883 #: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124
#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 #: mod/photos.php:1610 object/Item.php:396 include/conversation.php:713
#: ../../mod/photos.php:1545 ../../object/Item.php:364 #: include/conversation.php:1201
#: ../../include/conversation.php:692 ../../include/conversation.php:1109
msgid "Please wait" msgid "Please wait"
msgstr "Пожалуйста, подождите" msgstr "Пожалуйста, подождите"
#: ../../mod/message.php:371 #: mod/message.php:368
msgid "No messages." msgid "No messages."
msgstr "Нет сообщений." msgstr "Нет сообщений."
#: ../../mod/message.php:378 #: mod/message.php:411
msgid "Message not available."
msgstr "Сообщение не доступно."
#: mod/message.php:481
msgid "Delete message"
msgstr "Удалить сообщение"
#: mod/message.php:507 mod/message.php:584
msgid "Delete conversation"
msgstr "Удалить историю общения"
#: mod/message.php:509
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
"Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность "
"ответить со страницы профиля отправителя."
#: mod/message.php:513
msgid "Send Reply"
msgstr "Отправить ответ"
#: mod/message.php:557
#, php-format #, php-format
msgid "Unknown sender - %s" msgid "Unknown sender - %s"
msgstr "Неизвестный отправитель - %s" msgstr "Неизвестный отправитель - %s"
#: ../../mod/message.php:381 #: mod/message.php:560
#, php-format #, php-format
msgid "You and %s" msgid "You and %s"
msgstr "Вы и %s" msgstr "Вы и %s"
#: ../../mod/message.php:384 #: mod/message.php:563
#, php-format #, php-format
msgid "%s and You" msgid "%s and You"
msgstr "%s и Вы" msgstr "%s и Вы"
#: ../../mod/message.php:405 ../../mod/message.php:546 #: mod/message.php:587
msgid "Delete conversation"
msgstr "Удалить историю общения"
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A" msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A" msgstr "D, d M Y - g:i A"
#: ../../mod/message.php:411 #: mod/message.php:590
#, php-format #, php-format
msgid "%d message" msgid "%d message"
msgid_plural "%d messages" msgid_plural "%d messages"
msgstr[0] "%d сообщение" msgstr[0] "%d сообщение"
msgstr[1] "%d сообщений" msgstr[1] "%d сообщений"
msgstr[2] "%d сообщений" msgstr[2] "%d сообщений"
msgstr[3] "%d сообщений"
#: ../../mod/message.php:450 #: mod/update_display.php:22 mod/update_community.php:18
msgid "Message not available." #: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25
msgstr "Сообщение не доступно."
#: ../../mod/message.php:520
msgid "Delete message"
msgstr "Удалить сообщение"
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя."
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Отправить ответ"
#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
#: ../../mod/update_network.php:25
msgid "[Embedded content - reload page to view]" msgid "[Embedded content - reload page to view]"
msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]" msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
#: ../../mod/crepair.php:106 #: mod/crepair.php:104
msgid "Contact settings applied." msgid "Contact settings applied."
msgstr "Установки контакта приняты." msgstr "Установки контакта приняты."
#: ../../mod/crepair.php:108 #: mod/crepair.php:106
msgid "Contact update failed." msgid "Contact update failed."
msgstr "Обновление контакта неудачное." msgstr "Обновление контакта неудачное."
#: ../../mod/crepair.php:139 #: mod/crepair.php:137
msgid "Repair Contact Settings"
msgstr "Восстановить установки контакта"
#: ../../mod/crepair.php:141
msgid "" msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect" "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
" information your communications with this contact may stop working." "information your communications with this contact may stop working."
msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать." msgstr ""
"<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную "
"информацию, ваша связь с этим контактом перестанет работать."
#: ../../mod/crepair.php:142 #: mod/crepair.php:138
msgid "" msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are " "Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page." "uncertain what to do on this page."
msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице." msgstr ""
"Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' "
"<strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
#: ../../mod/crepair.php:148 #: mod/crepair.php:151 mod/crepair.php:153
msgid "Return to contact editor"
msgstr "Возврат к редактору контакта"
#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
msgid "No mirroring" msgid "No mirroring"
msgstr "" msgstr ""
#: ../../mod/crepair.php:159 #: mod/crepair.php:151
msgid "Mirror as forwarded posting" msgid "Mirror as forwarded posting"
msgstr "" msgstr ""
#: ../../mod/crepair.php:159 ../../mod/crepair.php:161 #: mod/crepair.php:151 mod/crepair.php:153
msgid "Mirror as my own posting" msgid "Mirror as my own posting"
msgstr "" msgstr ""
#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015 #: mod/crepair.php:167
#: ../../mod/admin.php:1016 ../../mod/admin.php:1029 msgid "Return to contact editor"
#: ../../mod/settings.php:616 ../../mod/settings.php:642 msgstr "Возврат к редактору контакта"
#: mod/crepair.php:169
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:170 mod/admin.php:1306 mod/admin.php:1318
#: mod/admin.php:1319 mod/admin.php:1332 mod/settings.php:661
#: mod/settings.php:687
msgid "Name" msgid "Name"
msgstr "Имя" msgstr "Имя"
#: ../../mod/crepair.php:166 #: mod/crepair.php:171
msgid "Account Nickname" msgid "Account Nickname"
msgstr "Ник аккаунта" msgstr "Ник аккаунта"
#: ../../mod/crepair.php:167 #: mod/crepair.php:172
msgid "@Tagname - overrides Name/Nickname" msgid "@Tagname - overrides Name/Nickname"
msgstr "" msgstr ""
#: ../../mod/crepair.php:168 #: mod/crepair.php:173
msgid "Account URL" msgid "Account URL"
msgstr "URL аккаунта" msgstr "URL аккаунта"
#: ../../mod/crepair.php:169 #: mod/crepair.php:174
msgid "Friend Request URL" msgid "Friend Request URL"
msgstr "URL запроса в друзья" msgstr "URL запроса в друзья"
#: ../../mod/crepair.php:170 #: mod/crepair.php:175
msgid "Friend Confirm URL" msgid "Friend Confirm URL"
msgstr "URL подтверждения друга" msgstr "URL подтверждения друга"
#: ../../mod/crepair.php:171 #: mod/crepair.php:176
msgid "Notification Endpoint URL" msgid "Notification Endpoint URL"
msgstr "URL эндпоинта уведомления" msgstr "URL эндпоинта уведомления"
#: ../../mod/crepair.php:172 #: mod/crepair.php:177
msgid "Poll/Feed URL" msgid "Poll/Feed URL"
msgstr "URL опроса/ленты" msgstr "URL опроса/ленты"
#: ../../mod/crepair.php:173 #: mod/crepair.php:178
msgid "New photo from this URL" msgid "New photo from this URL"
msgstr "Новое фото из этой URL" msgstr "Новое фото из этой URL"
#: ../../mod/crepair.php:174 #: mod/crepair.php:179
msgid "Remote Self" msgid "Remote Self"
msgstr "" msgstr ""
#: ../../mod/crepair.php:176 #: mod/crepair.php:182
msgid "Mirror postings from this contact" msgid "Mirror postings from this contact"
msgstr "" msgstr ""
#: ../../mod/crepair.php:176 #: mod/crepair.php:184
msgid "" msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new " "Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact." "entries from this contact."
msgstr "" msgstr ""
#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92 #: mod/bookmarklet.php:12 boot.php:1430 include/nav.php:91
msgid "Login" msgid "Login"
msgstr "Вход" msgstr "Вход"
#: ../../mod/bookmarklet.php:41 #: mod/bookmarklet.php:41
msgid "The post was created" msgid "The post was created"
msgstr "" msgstr ""
#: ../../mod/viewsrc.php:7 #: mod/viewsrc.php:7
msgid "Access denied." msgid "Access denied."
msgstr "Доступ запрещен." msgstr "Доступ запрещен."
#: ../../mod/dirfind.php:26 #: mod/dirfind.php:194 mod/allfriends.php:80 mod/match.php:85
msgid "People Search" #: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:212
msgstr "Поиск людей" msgid "Connect"
msgstr "Подключить"
#: ../../mod/dirfind.php:60 ../../mod/match.php:65 #: mod/dirfind.php:195 mod/allfriends.php:64 mod/match.php:70
#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:283
#: include/Contact.php:296 include/Contact.php:338
#: include/conversation.php:912 include/conversation.php:926
msgid "View Profile"
msgstr "Просмотреть профиль"
#: mod/dirfind.php:224
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:231 mod/match.php:105
msgid "No matches" msgid "No matches"
msgstr "Нет соответствий" msgstr "Нет соответствий"
#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78 #: mod/fbrowser.php:32 include/identity.php:702 include/nav.php:77
#: ../../view/theme/diabook/theme.php:126 #: view/theme/diabook/theme.php:126
msgid "Photos" msgid "Photos"
msgstr "Фото" msgstr "Фото"
#: ../../mod/fbrowser.php:113 #: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:62
#: mod/photos.php:192 mod/photos.php:1119 mod/photos.php:1245
#: mod/photos.php:1268 mod/photos.php:1838 mod/photos.php:1850
#: view/theme/diabook/theme.php:499
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: mod/fbrowser.php:125
msgid "Files" msgid "Files"
msgstr "Файлы" msgstr "Файлы"
#: ../../mod/nogroup.php:59 #: mod/nogroup.php:63
msgid "Contacts who are not members of a group" msgid "Contacts who are not members of a group"
msgstr "Контакты, которые не являются членами группы" msgstr "Контакты, которые не являются членами группы"
#: ../../mod/admin.php:57 #: mod/admin.php:92
msgid "Theme settings updated." msgid "Theme settings updated."
msgstr "Настройки темы обновлены." msgstr "Настройки темы обновлены."
#: ../../mod/admin.php:104 ../../mod/admin.php:619 #: mod/admin.php:156 mod/admin.php:888
msgid "Site" msgid "Site"
msgstr "Сайт" msgstr "Сайт"
#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013 #: mod/admin.php:157 mod/admin.php:832 mod/admin.php:1301 mod/admin.php:1316
msgid "Users" msgid "Users"
msgstr "Пользователи" msgstr "Пользователи"
#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155 #: mod/admin.php:158 mod/admin.php:1416 mod/admin.php:1476 mod/settings.php:72
#: ../../mod/settings.php:57
msgid "Plugins" msgid "Plugins"
msgstr "Плагины" msgstr "Плагины"
#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357 #: mod/admin.php:159 mod/admin.php:1674 mod/admin.php:1724
msgid "Themes" msgid "Themes"
msgstr "Темы" msgstr "Темы"
#: ../../mod/admin.php:108 #: mod/admin.php:160 mod/settings.php:50
msgid "Additional features"
msgstr "Дополнительные возможности"
#: mod/admin.php:161
msgid "DB updates" msgid "DB updates"
msgstr "Обновление БД" msgstr "Обновление БД"
#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444 #: mod/admin.php:162 mod/admin.php:385
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:163 mod/admin.php:354
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1792
msgid "Logs" msgid "Logs"
msgstr "Журналы" msgstr "Журналы"
#: ../../mod/admin.php:124 #: mod/admin.php:178 mod/admin.php:1859
msgid "View Logs"
msgstr "Просмотр логов"
#: mod/admin.php:179
msgid "probe address" msgid "probe address"
msgstr "" msgstr ""
#: ../../mod/admin.php:125 #: mod/admin.php:180
msgid "check webfinger" msgid "check webfinger"
msgstr "" msgstr ""
#: ../../mod/admin.php:130 ../../include/nav.php:184 #: mod/admin.php:186 include/nav.php:194
msgid "Admin" msgid "Admin"
msgstr "Администратор" msgstr "Администратор"
#: ../../mod/admin.php:131 #: mod/admin.php:187
msgid "Plugin Features" msgid "Plugin Features"
msgstr "Возможности плагина" msgstr "Возможности плагина"
#: ../../mod/admin.php:133 #: mod/admin.php:189
msgid "diagnostics" msgid "diagnostics"
msgstr "" msgstr "Диагностика"
#: ../../mod/admin.php:134 #: mod/admin.php:190
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения" msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:193 ../../mod/admin.php:952 #: mod/admin.php:347
msgid "Normal Account" msgid ""
msgstr "Обычный аккаунт" "This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr ""
#: ../../mod/admin.php:194 ../../mod/admin.php:953 #: mod/admin.php:348
msgid "Soapbox Account" msgid ""
msgstr "Аккаунт Витрина" "The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr ""
#: ../../mod/admin.php:195 ../../mod/admin.php:954 #: mod/admin.php:353 mod/admin.php:384 mod/admin.php:441 mod/admin.php:887
msgid "Community/Celebrity Account" #: mod/admin.php:1300 mod/admin.php:1415 mod/admin.php:1475 mod/admin.php:1673
msgstr "Аккаунт Сообщество / Знаменитость" #: mod/admin.php:1723 mod/admin.php:1791 mod/admin.php:1858
#: ../../mod/admin.php:196 ../../mod/admin.php:955
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: ../../mod/admin.php:197
msgid "Blog Account"
msgstr "Аккаунт блога"
#: ../../mod/admin.php:198
msgid "Private Forum"
msgstr "Личный форум"
#: ../../mod/admin.php:217
msgid "Message queues"
msgstr "Очереди сообщений"
#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
msgid "Administration" msgid "Administration"
msgstr "Администрация" msgstr "Администрация"
#: ../../mod/admin.php:223 #: mod/admin.php:360
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr ""
#: mod/admin.php:387
msgid "ID"
msgstr ""
#: mod/admin.php:388
msgid "Recipient Name"
msgstr ""
#: mod/admin.php:389
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:391
msgid "Created"
msgstr ""
#: mod/admin.php:392
msgid "Last Tried"
msgstr ""
#: mod/admin.php:393
msgid ""
"This page lists the content of the queue for outgoing postings. These are "
"postings the initial delivery failed for. They will be resend later and "
"eventually deleted if the delivery fails permanently."
msgstr ""
#: mod/admin.php:412 mod/admin.php:1254
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: mod/admin.php:413 mod/admin.php:1255
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: mod/admin.php:414 mod/admin.php:1256
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: mod/admin.php:415 mod/admin.php:1257
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: mod/admin.php:416
msgid "Blog Account"
msgstr "Аккаунт блога"
#: mod/admin.php:417
msgid "Private Forum"
msgstr "Личный форум"
#: mod/admin.php:436
msgid "Message queues"
msgstr "Очереди сообщений"
#: mod/admin.php:442
msgid "Summary" msgid "Summary"
msgstr "Резюме" msgstr "Резюме"
#: ../../mod/admin.php:225 #: mod/admin.php:444
msgid "Registered users" msgid "Registered users"
msgstr "Зарегистрированные пользователи" msgstr "Зарегистрированные пользователи"
#: ../../mod/admin.php:227 #: mod/admin.php:446
msgid "Pending registrations" msgid "Pending registrations"
msgstr "Ожидающие регистрации" msgstr "Ожидающие регистрации"
#: ../../mod/admin.php:228 #: mod/admin.php:447
msgid "Version" msgid "Version"
msgstr "Версия" msgstr "Версия"
#: ../../mod/admin.php:232 #: mod/admin.php:452
msgid "Active plugins" msgid "Active plugins"
msgstr "Активные плагины" msgstr "Активные плагины"
#: ../../mod/admin.php:255 #: mod/admin.php:475
msgid "Can not parse base url. Must have at least <scheme>://<domain>" msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>" msgstr ""
"Невозможно определить базовый URL. Он должен иметь следующий вид - "
"<scheme>://<domain>"
#: ../../mod/admin.php:516 #: mod/admin.php:760
msgid "RINO2 needs mcrypt php extension to work."
msgstr "Для функционирования RINO2 необходим пакет php5-mcrypt"
#: mod/admin.php:768
msgid "Site settings updated." msgid "Site settings updated."
msgstr "Установки сайта обновлены." msgstr "Установки сайта обновлены."
#: ../../mod/admin.php:545 ../../mod/settings.php:828 #: mod/admin.php:796 mod/settings.php:912
msgid "No special theme for mobile devices" msgid "No special theme for mobile devices"
msgstr "Нет специальной темы для мобильных устройств" msgstr "Нет специальной темы для мобильных устройств"
#: ../../mod/admin.php:562 #: mod/admin.php:815
msgid "No community page" msgid "No community page"
msgstr "" msgstr ""
#: ../../mod/admin.php:563 #: mod/admin.php:816
msgid "Public postings from users of this site" msgid "Public postings from users of this site"
msgstr "" msgstr ""
#: ../../mod/admin.php:564 #: mod/admin.php:817
msgid "Global community page" msgid "Global community page"
msgstr "" msgstr ""
#: ../../mod/admin.php:570 #: mod/admin.php:823
msgid "At post arrival" msgid "At post arrival"
msgstr "" msgstr ""
#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56 #: mod/admin.php:824 include/contact_selectors.php:56
msgid "Frequently" msgid "Frequently"
msgstr "Часто" msgstr "Часто"
#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57 #: mod/admin.php:825 include/contact_selectors.php:57
msgid "Hourly" msgid "Hourly"
msgstr "Раз в час" msgstr "Раз в час"
#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58 #: mod/admin.php:826 include/contact_selectors.php:58
msgid "Twice daily" msgid "Twice daily"
msgstr "Два раза в день" msgstr "Два раза в день"
#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59 #: mod/admin.php:827 include/contact_selectors.php:59
msgid "Daily" msgid "Daily"
msgstr "Ежедневно" msgstr "Ежедневно"
#: ../../mod/admin.php:579 #: mod/admin.php:833
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:834
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:838
msgid "One month"
msgstr "Один месяц"
#: mod/admin.php:839
msgid "Three months"
msgstr "Три месяца"
#: mod/admin.php:840
msgid "Half a year"
msgstr "Пол года"
#: mod/admin.php:841
msgid "One year"
msgstr "Один год"
#: mod/admin.php:846
msgid "Multi user instance" msgid "Multi user instance"
msgstr "Многопользовательский вид" msgstr "Многопользовательский вид"
#: ../../mod/admin.php:602 #: mod/admin.php:869
msgid "Closed" msgid "Closed"
msgstr "Закрыто" msgstr "Закрыто"
#: ../../mod/admin.php:603 #: mod/admin.php:870
msgid "Requires approval" msgid "Requires approval"
msgstr "Требуется подтверждение" msgstr "Требуется подтверждение"
#: ../../mod/admin.php:604 #: mod/admin.php:871
msgid "Open" msgid "Open"
msgstr "Открыто" msgstr "Открыто"
#: ../../mod/admin.php:608 #: mod/admin.php:875
msgid "No SSL policy, links will track page SSL state" msgid "No SSL policy, links will track page SSL state"
msgstr "Нет режима SSL, состояние SSL не будет отслеживаться" msgstr "Нет режима SSL, состояние SSL не будет отслеживаться"
#: ../../mod/admin.php:609 #: mod/admin.php:876
msgid "Force all links to use SSL" msgid "Force all links to use SSL"
msgstr "Заставить все ссылки использовать SSL" msgstr "Заставить все ссылки использовать SSL"
#: ../../mod/admin.php:610 #: mod/admin.php:877
msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)" msgstr ""
"Само-подписанный сертификат, использовать SSL только локально (не "
"рекомендуется)"
#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358 #: mod/admin.php:889 mod/admin.php:1477 mod/admin.php:1725 mod/admin.php:1793
#: ../../mod/admin.php:1445 ../../mod/settings.php:614 #: mod/admin.php:1942 mod/settings.php:659 mod/settings.php:769
#: ../../mod/settings.php:724 ../../mod/settings.php:798 #: mod/settings.php:813 mod/settings.php:882 mod/settings.php:969
#: ../../mod/settings.php:880 ../../mod/settings.php:1113 #: mod/settings.php:1204
msgid "Save Settings" msgid "Save Settings"
msgstr "Сохранить настройки" msgstr "Сохранить настройки"
#: ../../mod/admin.php:621 ../../mod/register.php:255 #: mod/admin.php:890 mod/register.php:263
msgid "Registration" msgid "Registration"
msgstr "Регистрация" msgstr "Регистрация"
#: ../../mod/admin.php:622 #: mod/admin.php:891
msgid "File upload" msgid "File upload"
msgstr "Загрузка файлов" msgstr "Загрузка файлов"
#: ../../mod/admin.php:623 #: mod/admin.php:892
msgid "Policies" msgid "Policies"
msgstr "Политики" msgstr "Политики"
#: ../../mod/admin.php:624 #: mod/admin.php:893
msgid "Advanced" msgid "Advanced"
msgstr "Расширенный" msgstr "Расширенный"
#: ../../mod/admin.php:625 #: mod/admin.php:894
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:895
msgid "Performance" msgid "Performance"
msgstr "Производительность" msgstr "Производительность"
#: ../../mod/admin.php:626 #: mod/admin.php:896
msgid "" msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable." "Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным." msgstr ""
"Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер "
"недоступным."
#: ../../mod/admin.php:629 #: mod/admin.php:899
msgid "Site name" msgid "Site name"
msgstr "Название сайта" msgstr "Название сайта"
#: ../../mod/admin.php:630 #: mod/admin.php:900
msgid "Host name" msgid "Host name"
msgstr "" msgstr "Имя хоста"
#: ../../mod/admin.php:631 #: mod/admin.php:901
msgid "Sender Email" msgid "Sender Email"
msgstr "" msgstr "Системный Email"
#: ../../mod/admin.php:632 #: mod/admin.php:901
msgid ""
"The email address your server shall use to send notification emails from."
msgstr "Адрес с которого будут приходить письма пользователям."
#: mod/admin.php:902
msgid "Banner/Logo" msgid "Banner/Logo"
msgstr "Баннер/Логотип" msgstr "Баннер/Логотип"
#: ../../mod/admin.php:633 #: mod/admin.php:903
msgid "Shortcut icon" msgid "Shortcut icon"
msgstr "" msgstr ""
#: ../../mod/admin.php:634 #: mod/admin.php:903
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:904
msgid "Touch icon" msgid "Touch icon"
msgstr "" msgstr ""
#: ../../mod/admin.php:635 #: mod/admin.php:904
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:905
msgid "Additional Info" msgid "Additional Info"
msgstr "Дополнительная информация" msgstr "Дополнительная информация"
#: ../../mod/admin.php:635 #: mod/admin.php:905
#, php-format
msgid "" msgid ""
"For public servers: you can add additional information here that will be " "For public servers: you can add additional information here that will be "
"listed at dir.friendica.com/siteinfo." "listed at %s/siteinfo."
msgstr "Для публичных серверов: вы можете добавить дополнительную информацию, которая будет перечислена в dir.friendica.com/siteinfo." msgstr ""
#: ../../mod/admin.php:636 #: mod/admin.php:906
msgid "System language" msgid "System language"
msgstr "Системный язык" msgstr "Системный язык"
#: ../../mod/admin.php:637 #: mod/admin.php:907
msgid "System theme" msgid "System theme"
msgstr "Системная тема" msgstr "Системная тема"
#: ../../mod/admin.php:637 #: mod/admin.php:907
msgid "" msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' " "Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>" "id='cnftheme'>change theme settings</a>"
msgstr "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>" msgstr ""
"Тема системы по умолчанию - может быть переопределена пользователем - <a "
"href='#' id='cnftheme'>изменить настройки темы</a>"
#: ../../mod/admin.php:638 #: mod/admin.php:908
msgid "Mobile system theme" msgid "Mobile system theme"
msgstr "Мобильная тема системы" msgstr "Мобильная тема системы"
#: ../../mod/admin.php:638 #: mod/admin.php:908
msgid "Theme for mobile devices" msgid "Theme for mobile devices"
msgstr "Тема для мобильных устройств" msgstr "Тема для мобильных устройств"
#: ../../mod/admin.php:639 #: mod/admin.php:909
msgid "SSL link policy" msgid "SSL link policy"
msgstr "Политика SSL" msgstr "Политика SSL"
#: ../../mod/admin.php:639 #: mod/admin.php:909
msgid "Determines whether generated links should be forced to use SSL" msgid "Determines whether generated links should be forced to use SSL"
msgstr "Ссылки должны быть вынуждены использовать SSL" msgstr "Ссылки должны быть вынуждены использовать SSL"
#: ../../mod/admin.php:640 #: mod/admin.php:910
msgid "Force SSL" msgid "Force SSL"
msgstr "" msgstr "SSL принудительно"
#: ../../mod/admin.php:640 #: mod/admin.php:910
msgid "" msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
" to endless loops." "to endless loops."
msgstr "" msgstr ""
#: ../../mod/admin.php:641 #: mod/admin.php:911
msgid "Old style 'Share'" msgid "Old style 'Share'"
msgstr "Старый стиль 'Share'" msgstr "Старый стиль 'Share'"
#: ../../mod/admin.php:641 #: mod/admin.php:911
msgid "Deactivates the bbcode element 'share' for repeating items." msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Отключение BBCode элемента 'share' для повторяющихся элементов." msgstr "Отключение BBCode элемента 'share' для повторяющихся элементов."
#: ../../mod/admin.php:642 #: mod/admin.php:912
msgid "Hide help entry from navigation menu" msgid "Hide help entry from navigation menu"
msgstr "Скрыть пункт \"помощь\" в меню навигации" msgstr "Скрыть пункт \"помощь\" в меню навигации"
#: ../../mod/admin.php:642 #: mod/admin.php:912
msgid "" msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can " "Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly." "still access it calling /help directly."
msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую." msgstr ""
"Скрывает элемент меню для страницы справки из меню навигации. Вы все еще "
"можете получить доступ к нему через вызов/помощь напрямую."
#: ../../mod/admin.php:643 #: mod/admin.php:913
msgid "Single user instance" msgid "Single user instance"
msgstr "Однопользовательский режим" msgstr "Однопользовательский режим"
#: ../../mod/admin.php:643 #: mod/admin.php:913
msgid "Make this instance multi-user or single-user for the named user" msgid "Make this instance multi-user or single-user for the named user"
msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" msgstr ""
"Сделать этот экземпляр многопользовательским, или однопользовательским для "
"названного пользователя"
#: ../../mod/admin.php:644 #: mod/admin.php:914
msgid "Maximum image size" msgid "Maximum image size"
msgstr "Максимальный размер изображения" msgstr "Максимальный размер изображения"
#: ../../mod/admin.php:644 #: mod/admin.php:914
msgid "" msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no " "Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits." "limits."
msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений." msgstr ""
"Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, "
"что означает отсутствие ограничений."
#: ../../mod/admin.php:645 #: mod/admin.php:915
msgid "Maximum image length" msgid "Maximum image length"
msgstr "Максимальная длина картинки" msgstr "Максимальная длина картинки"
#: ../../mod/admin.php:645 #: mod/admin.php:915
msgid "" msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is " "Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits." "-1, which means no limits."
msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." msgstr ""
"Максимальная длина в пикселях для длинной стороны загруженных изображений. "
"По умолчанию равно -1, что означает отсутствие ограничений."
#: ../../mod/admin.php:646 #: mod/admin.php:916
msgid "JPEG image quality" msgid "JPEG image quality"
msgstr "Качество JPEG изображения" msgstr "Качество JPEG изображения"
#: ../../mod/admin.php:646 #: mod/admin.php:916
msgid "" msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality." "100, which is full quality."
msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." msgstr ""
"Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По "
"умолчанию 100, что означает полное качество."
#: ../../mod/admin.php:648 #: mod/admin.php:918
msgid "Register policy" msgid "Register policy"
msgstr "Политика регистрация" msgstr "Политика регистрация"
#: ../../mod/admin.php:649 #: mod/admin.php:919
msgid "Maximum Daily Registrations" msgid "Maximum Daily Registrations"
msgstr "Максимальное число регистраций в день" msgstr "Максимальное число регистраций в день"
#: ../../mod/admin.php:649 #: mod/admin.php:919
msgid "" msgid ""
"If registration is permitted above, this sets the maximum number of new user" "If registration is permitted above, this sets the maximum number of new user "
" registrations to accept per day. If register is set to closed, this " "registrations to accept per day. If register is set to closed, this setting "
"setting has no effect." "has no effect."
msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта." msgstr ""
"Если регистрация разрешена, этот параметр устанавливает максимальное "
"количество новых регистраций пользователей в день. Если регистрация закрыта, "
"эта опция не имеет никакого эффекта."
#: ../../mod/admin.php:650 #: mod/admin.php:920
msgid "Register text" msgid "Register text"
msgstr "Текст регистрации" msgstr "Текст регистрации"
#: ../../mod/admin.php:650 #: mod/admin.php:920
msgid "Will be displayed prominently on the registration page." msgid "Will be displayed prominently on the registration page."
msgstr "Будет находиться на видном месте на странице регистрации." msgstr "Будет находиться на видном месте на странице регистрации."
#: ../../mod/admin.php:651 #: mod/admin.php:921
msgid "Accounts abandoned after x days" msgid "Accounts abandoned after x days"
msgstr "Аккаунт считается после x дней не воспользованным" msgstr "Аккаунт считается после x дней не воспользованным"
#: ../../mod/admin.php:651 #: mod/admin.php:921
msgid "" msgid ""
"Will not waste system resources polling external sites for abandonded " "Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit." "accounts. Enter 0 for no time limit."
msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." msgstr ""
"Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите "
"0 для отключения лимита времени."
#: ../../mod/admin.php:652 #: mod/admin.php:922
msgid "Allowed friend domains" msgid "Allowed friend domains"
msgstr "Разрешенные домены друзей" msgstr "Разрешенные домены друзей"
#: ../../mod/admin.php:652 #: mod/admin.php:922
msgid "" msgid ""
"Comma separated list of domains which are allowed to establish friendships " "Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains" "with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." msgstr ""
"Разделенный запятыми список доменов, которые разрешены для установления "
"связей. Групповые символы принимаются. Оставьте пустым для разрешения связи "
"со всеми доменами."
#: ../../mod/admin.php:653 #: mod/admin.php:923
msgid "Allowed email domains" msgid "Allowed email domains"
msgstr "Разрешенные почтовые домены" msgstr "Разрешенные почтовые домены"
#: ../../mod/admin.php:653 #: mod/admin.php:923
msgid "" msgid ""
"Comma separated list of domains which are allowed in email addresses for " "Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any " "registrations to this site. Wildcards are accepted. Empty to allow any "
"domains" "domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." msgstr ""
"Разделенный запятыми список доменов, которые разрешены для установления "
"связей. Групповые символы принимаются. Оставьте пустым для разрешения связи "
"со всеми доменами."
#: ../../mod/admin.php:654 #: mod/admin.php:924
msgid "Block public" msgid "Block public"
msgstr "Блокировать общественный доступ" msgstr "Блокировать общественный доступ"
#: ../../mod/admin.php:654 #: mod/admin.php:924
msgid "" msgid ""
"Check to block public access to all otherwise public personal pages on this " "Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in." "site unless you are currently logged in."
msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт." msgstr ""
"Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным "
"персональным страницам на этом сайте, если вы не вошли на сайт."
#: ../../mod/admin.php:655 #: mod/admin.php:925
msgid "Force publish" msgid "Force publish"
msgstr "Принудительная публикация" msgstr "Принудительная публикация"
#: ../../mod/admin.php:655 #: mod/admin.php:925
msgid "" msgid ""
"Check to force all profiles on this site to be listed in the site directory." "Check to force all profiles on this site to be listed in the site directory."
msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." msgstr ""
"Отметьте, чтобы принудительно заставить все профили на этом сайте, быть "
"перечислеными в каталоге сайта."
#: ../../mod/admin.php:656 #: mod/admin.php:926
msgid "Global directory update URL" msgid "Global directory URL"
msgstr "URL обновления глобального каталога" msgstr ""
#: ../../mod/admin.php:656 #: mod/admin.php:926
msgid "" msgid ""
"URL to update the global directory. If this is not set, the global directory" "URL to the global directory. If this is not set, the global directory is "
" is completely unavailable to the application." "completely unavailable to the application."
msgstr "URL для обновления глобального каталога. Если он не установлен, глобальный каталог полностью недоступен для приложения." msgstr ""
#: ../../mod/admin.php:657 #: mod/admin.php:927
msgid "Allow threaded items" msgid "Allow threaded items"
msgstr "Разрешить темы в обсуждении" msgstr "Разрешить темы в обсуждении"
#: ../../mod/admin.php:657 #: mod/admin.php:927
msgid "Allow infinite level threading for items on this site." msgid "Allow infinite level threading for items on this site."
msgstr "Разрешить бесконечный уровень для тем на этом сайте." msgstr "Разрешить бесконечный уровень для тем на этом сайте."
#: ../../mod/admin.php:658 #: mod/admin.php:928
msgid "Private posts by default for new users" msgid "Private posts by default for new users"
msgstr "Частные сообщения по умолчанию для новых пользователей" msgstr "Частные сообщения по умолчанию для новых пользователей"
#: ../../mod/admin.php:658 #: mod/admin.php:928
msgid "" msgid ""
"Set default post permissions for all new members to the default privacy " "Set default post permissions for all new members to the default privacy "
"group rather than public." "group rather than public."
msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников." msgstr ""
"Установить права на создание постов по умолчанию для всех участников в "
"дефолтной приватной группе, а не для публичных участников."
#: ../../mod/admin.php:659 #: mod/admin.php:929
msgid "Don't include post content in email notifications" msgid "Don't include post content in email notifications"
msgstr "Не включать текст сообщения в email-оповещение." msgstr "Не включать текст сообщения в email-оповещение."
#: ../../mod/admin.php:659 #: mod/admin.php:929
msgid "" msgid ""
"Don't include the content of a post/comment/private message/etc. in the " "Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure." "email notifications that are sent out from this site, as a privacy measure."
msgstr "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности." msgstr ""
"Не включать содержание сообщения/комментария/личного сообщения и т.д.. в "
"уведомления электронной почты, отправленных с сайта, в качестве меры "
"конфиденциальности."
#: ../../mod/admin.php:660 #: mod/admin.php:930
msgid "Disallow public access to addons listed in the apps menu." msgid "Disallow public access to addons listed in the apps menu."
msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений."
#: ../../mod/admin.php:660 #: mod/admin.php:930
msgid "" msgid ""
"Checking this box will restrict addons listed in the apps menu to members " "Checking this box will restrict addons listed in the apps menu to members "
"only." "only."
msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." msgstr ""
"При установке этого флажка, будут ограничены аддоны, перечисленные в меню "
"приложений, только для участников."
#: ../../mod/admin.php:661 #: mod/admin.php:931
msgid "Don't embed private images in posts" msgid "Don't embed private images in posts"
msgstr "Не вставлять личные картинки в постах" msgstr "Не вставлять личные картинки в постах"
#: ../../mod/admin.php:661 #: mod/admin.php:931
msgid "" msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy " "Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private " "of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a " "photos will have to authenticate and load each image, which may take a while."
"while." msgstr ""
msgstr "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." "Не заменяйте локально расположенные фотографии в постах на внедрённые копии "
"изображений. Это означает, что контакты, которые получают сообщения, "
"содержащие личные фотографии, будут вынуждены идентефицироваться и грузить "
"каждое изображение, что может занять некоторое время."
#: ../../mod/admin.php:662 #: mod/admin.php:932
msgid "Allow Users to set remote_self" msgid "Allow Users to set remote_self"
msgstr "Разрешить пользователям установить remote_self" msgstr "Разрешить пользователям установить remote_self"
#: ../../mod/admin.php:662 #: mod/admin.php:932
msgid "" msgid ""
"With checking this, every user is allowed to mark every contact as a " "With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact " "remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream." "causes mirroring every posting of that contact in the users stream."
msgstr "" msgstr ""
#: ../../mod/admin.php:663 #: mod/admin.php:933
msgid "Block multiple registrations" msgid "Block multiple registrations"
msgstr "Блокировать множественные регистрации" msgstr "Блокировать множественные регистрации"
#: ../../mod/admin.php:663 #: mod/admin.php:933
msgid "Disallow users to register additional accounts for use as pages." msgid "Disallow users to register additional accounts for use as pages."
msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." msgstr ""
"Запретить пользователям регистрировать дополнительные аккаунты для "
"использования в качестве страниц."
#: ../../mod/admin.php:664 #: mod/admin.php:934
msgid "OpenID support" msgid "OpenID support"
msgstr "Поддержка OpenID" msgstr "Поддержка OpenID"
#: ../../mod/admin.php:664 #: mod/admin.php:934
msgid "OpenID support for registration and logins." msgid "OpenID support for registration and logins."
msgstr "OpenID поддержка для регистрации и входа в систему." msgstr "OpenID поддержка для регистрации и входа в систему."
#: ../../mod/admin.php:665 #: mod/admin.php:935
msgid "Fullname check" msgid "Fullname check"
msgstr "Проверка полного имени" msgstr "Проверка полного имени"
#: ../../mod/admin.php:665 #: mod/admin.php:935
msgid "" msgid ""
"Force users to register with a space between firstname and lastname in Full " "Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure" "name, as an antispam measure"
msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера." msgstr ""
"Принудить пользователей регистрироваться с пробелом между именем и фамилией "
"в строке \"полное имя\". Антиспам мера."
#: ../../mod/admin.php:666 #: mod/admin.php:936
msgid "UTF-8 Regular expressions" msgid "UTF-8 Regular expressions"
msgstr "UTF-8 регулярные выражения" msgstr "UTF-8 регулярные выражения"
#: ../../mod/admin.php:666 #: mod/admin.php:936
msgid "Use PHP UTF8 regular expressions" msgid "Use PHP UTF8 regular expressions"
msgstr "Используйте PHP UTF-8 для регулярных выражений" msgstr "Используйте PHP UTF-8 для регулярных выражений"
#: ../../mod/admin.php:667 #: mod/admin.php:937
msgid "Community Page Style" msgid "Community Page Style"
msgstr "" msgstr ""
#: ../../mod/admin.php:667 #: mod/admin.php:937
msgid "" msgid ""
"Type of community page to show. 'Global community' shows every public " "Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server." "posting from an open distributed network that arrived on this server."
msgstr "" msgstr ""
#: ../../mod/admin.php:668 #: mod/admin.php:938
msgid "Posts per user on community page" msgid "Posts per user on community page"
msgstr "" msgstr ""
#: ../../mod/admin.php:668 #: mod/admin.php:938
msgid "" msgid ""
"The maximum number of posts per user on the community page. (Not valid for " "The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')" "'Global Community')"
msgstr "" msgstr ""
#: ../../mod/admin.php:669 #: mod/admin.php:939
msgid "Enable OStatus support" msgid "Enable OStatus support"
msgstr "Включить поддержку OStatus" msgstr "Включить поддержку OStatus"
#: ../../mod/admin.php:669 #: mod/admin.php:939
msgid "" msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be " "communications in OStatus are public, so privacy warnings will be "
"occasionally displayed." "occasionally displayed."
msgstr "" msgstr ""
#: ../../mod/admin.php:670 #: mod/admin.php:940
msgid "OStatus conversation completion interval" msgid "OStatus conversation completion interval"
msgstr "" msgstr ""
#: ../../mod/admin.php:670 #: mod/admin.php:940
msgid "" msgid ""
"How often shall the poller check for new entries in OStatus conversations? " "How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task." "This can be a very ressource task."
msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей." msgstr ""
"Как часто процессы должны проверять наличие новых записей в OStatus "
"разговорах? Это может быть очень ресурсоёмкой задачей."
#: ../../mod/admin.php:671 #: mod/admin.php:941
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:943
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub "
"directory."
msgstr ""
#: mod/admin.php:944
msgid "Enable Diaspora support" msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora" msgstr "Включить поддержку Diaspora"
#: ../../mod/admin.php:671 #: mod/admin.php:944
msgid "Provide built-in Diaspora network compatibility." msgid "Provide built-in Diaspora network compatibility."
msgstr "Обеспечить встроенную поддержку сети Diaspora." msgstr "Обеспечить встроенную поддержку сети Diaspora."
#: ../../mod/admin.php:672 #: mod/admin.php:945
msgid "Only allow Friendica contacts" msgid "Only allow Friendica contacts"
msgstr "Позвольть только Friendica контакты" msgstr "Позвольть только Friendica контакты"
#: ../../mod/admin.php:672 #: mod/admin.php:945
msgid "" msgid ""
"All contacts must use Friendica protocols. All other built-in communication " "All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled." "protocols disabled."
msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены." msgstr ""
"Все контакты должны использовать только Friendica протоколы. Все другие "
"встроенные коммуникационные протоколы отключены."
#: ../../mod/admin.php:673 #: mod/admin.php:946
msgid "Verify SSL" msgid "Verify SSL"
msgstr "Проверка SSL" msgstr "Проверка SSL"
#: ../../mod/admin.php:673 #: mod/admin.php:946
msgid "" msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you" "If you wish, you can turn on strict certificate checking. This will mean you "
" cannot connect (at all) to self-signed SSL sites." "cannot connect (at all) to self-signed SSL sites."
msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат." msgstr ""
"Если хотите, вы можете включить строгую проверку сертификатов. Это будет "
"означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-"
"подписанный SSL сертификат."
#: ../../mod/admin.php:674 #: mod/admin.php:947
msgid "Proxy user" msgid "Proxy user"
msgstr "Прокси пользователь" msgstr "Прокси пользователь"
#: ../../mod/admin.php:675 #: mod/admin.php:948
msgid "Proxy URL" msgid "Proxy URL"
msgstr "Прокси URL" msgstr "Прокси URL"
#: ../../mod/admin.php:676 #: mod/admin.php:949
msgid "Network timeout" msgid "Network timeout"
msgstr "Тайм-аут сети" msgstr "Тайм-аут сети"
#: ../../mod/admin.php:676 #: mod/admin.php:949
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." msgstr ""
"Значение указывается в секундах. Установите 0 для снятия ограничений (не "
"рекомендуется)."
#: ../../mod/admin.php:677 #: mod/admin.php:950
msgid "Delivery interval" msgid "Delivery interval"
msgstr "Интервал поставки" msgstr "Интервал поставки"
#: ../../mod/admin.php:677 #: mod/admin.php:950
msgid "" msgid ""
"Delay background delivery processes by this many seconds to reduce system " "Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers." "for large dedicated servers."
msgstr "Установите задержку выполнения фоновых процессов доставки до указанного количества секунд, чтобы уменьшить нагрузку на систему. Рекомендация: 4-5 для обычного shared хостинга, 2-3 для виртуальных частных серверов. 0-1 для мощных выделенных серверов." msgstr ""
"Установите задержку выполнения фоновых процессов доставки до указанного "
"количества секунд, чтобы уменьшить нагрузку на систему. Рекомендация: 4-5 "
"для обычного shared хостинга, 2-3 для виртуальных частных серверов. 0-1 для "
"мощных выделенных серверов."
#: ../../mod/admin.php:678 #: mod/admin.php:951
msgid "Poll interval" msgid "Poll interval"
msgstr "Интервал опроса" msgstr "Интервал опроса"
#: ../../mod/admin.php:678 #: mod/admin.php:951
msgid "" msgid ""
"Delay background polling processes by this many seconds to reduce system " "Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval." "load. If 0, use delivery interval."
msgstr "Установить задержку фоновых процессов опросов путем ограничения количества секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал доставки." msgstr ""
"Установить задержку фоновых процессов опросов путем ограничения количества "
"секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал "
"доставки."
#: ../../mod/admin.php:679 #: mod/admin.php:952
msgid "Maximum Load Average" msgid "Maximum Load Average"
msgstr "Средняя максимальная нагрузка" msgstr "Средняя максимальная нагрузка"
#: ../../mod/admin.php:679 #: mod/admin.php:952
msgid "" msgid ""
"Maximum system load before delivery and poll processes are deferred - " "Maximum system load before delivery and poll processes are deferred - "
"default 50." "default 50."
msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50." msgstr ""
"Максимальная нагрузка на систему перед приостановкой процессов доставки и "
"опросов - по умолчанию 50."
#: ../../mod/admin.php:681 #: mod/admin.php:953
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:953
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:954
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:954
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:955
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:955
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:957
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:957
msgid ""
"If enabled, the global contacts are checked periodically for missing or "
"outdated data and the vitality of the contacts and servers."
msgstr ""
#: mod/admin.php:958
msgid "Days between requery"
msgstr ""
#: mod/admin.php:958
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:959
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:959
msgid ""
"Periodically query other servers for contacts. You can choose between "
"'users': the users on the remote system, 'Global Contacts': active contacts "
"that are known on the system. The fallback is meant for Redmatrix servers "
"and older friendica servers, where global contacts weren't available. The "
"fallback increases the server load, so the recommened setting is 'Users, "
"Global Contacts'."
msgstr ""
#: mod/admin.php:960
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:960
msgid ""
"When the discovery is activated, this value defines the timeframe for the "
"activity of the global contacts that are fetched from other servers."
msgstr ""
#: mod/admin.php:961
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:961
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
#: mod/admin.php:963
msgid "Publish server information"
msgstr ""
#: mod/admin.php:963
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
"profiles, number of posts and the activated protocols and connectors. See <a "
"href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr ""
#: mod/admin.php:965
msgid "Use MySQL full text engine" msgid "Use MySQL full text engine"
msgstr "Использовать систему полнотексного поиска MySQL" msgstr "Использовать систему полнотексного поиска MySQL"
#: ../../mod/admin.php:681 #: mod/admin.php:965
msgid "" msgid ""
"Activates the full text engine. Speeds up search - but can only search for " "Activates the full text engine. Speeds up search - but can only search for "
"four and more characters." "four and more characters."
msgstr "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов." msgstr ""
"Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать "
"только при указании четырех и более символов."
#: ../../mod/admin.php:682 #: mod/admin.php:966
msgid "Suppress Language" msgid "Suppress Language"
msgstr "" msgstr ""
#: ../../mod/admin.php:682 #: mod/admin.php:966
msgid "Suppress language information in meta information about a posting." msgid "Suppress language information in meta information about a posting."
msgstr "" msgstr ""
#: ../../mod/admin.php:683 #: mod/admin.php:967
msgid "Suppress Tags" msgid "Suppress Tags"
msgstr "" msgstr ""
#: ../../mod/admin.php:683 #: mod/admin.php:967
msgid "Suppress showing a list of hashtags at the end of the posting." msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr "" msgstr ""
#: ../../mod/admin.php:684 #: mod/admin.php:968
msgid "Path to item cache" msgid "Path to item cache"
msgstr "Путь к элементам кэша" msgstr "Путь к элементам кэша"
#: ../../mod/admin.php:685 #: mod/admin.php:968
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:969
msgid "Cache duration in seconds" msgid "Cache duration in seconds"
msgstr "Время жизни кэша в секундах" msgstr "Время жизни кэша в секундах"
#: ../../mod/admin.php:685 #: mod/admin.php:969
msgid "" msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One" "How long should the cache files be hold? Default value is 86400 seconds (One "
" day). To disable the item cache, set the value to -1." "day). To disable the item cache, set the value to -1."
msgstr "" msgstr ""
#: ../../mod/admin.php:686 #: mod/admin.php:970
msgid "Maximum numbers of comments per post" msgid "Maximum numbers of comments per post"
msgstr "" msgstr ""
#: ../../mod/admin.php:686 #: mod/admin.php:970
msgid "How much comments should be shown for each post? Default value is 100." msgid "How much comments should be shown for each post? Default value is 100."
msgstr "" msgstr ""
#: ../../mod/admin.php:687 #: mod/admin.php:971
msgid "Path for lock file" msgid "Path for lock file"
msgstr "Путь к файлу блокировки" msgstr "Путь к файлу блокировки"
#: ../../mod/admin.php:688 #: mod/admin.php:971
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr ""
#: mod/admin.php:972
msgid "Temp path" msgid "Temp path"
msgstr "Временная папка" msgstr "Временная папка"
#: ../../mod/admin.php:689 #: mod/admin.php:972
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
#: mod/admin.php:973
msgid "Base path to installation" msgid "Base path to installation"
msgstr "Путь для установки" msgstr "Путь для установки"
#: ../../mod/admin.php:690 #: mod/admin.php:973
msgid ""
"If the system cannot detect the correct path to your installation, enter the "
"correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr ""
#: mod/admin.php:974
msgid "Disable picture proxy" msgid "Disable picture proxy"
msgstr "" msgstr ""
#: ../../mod/admin.php:690 #: mod/admin.php:974
msgid "" msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on" "The picture proxy increases performance and privacy. It shouldn't be used on "
" systems with very low bandwith." "systems with very low bandwith."
msgstr "" msgstr ""
#: ../../mod/admin.php:691 #: mod/admin.php:975
msgid "Enable old style pager" msgid "Enable old style pager"
msgstr "" msgstr ""
#: ../../mod/admin.php:691 #: mod/admin.php:975
msgid "" msgid ""
"The old style pager has page numbers but slows down massively the page " "The old style pager has page numbers but slows down massively the page speed."
"speed."
msgstr "" msgstr ""
#: ../../mod/admin.php:692 #: mod/admin.php:976
msgid "Only search in tags" msgid "Only search in tags"
msgstr "" msgstr ""
#: ../../mod/admin.php:692 #: mod/admin.php:976
msgid "On large systems the text search can slow down the system extremely." msgid "On large systems the text search can slow down the system extremely."
msgstr "" msgstr ""
#: ../../mod/admin.php:694 #: mod/admin.php:978
msgid "New base url" msgid "New base url"
msgstr "Новый базовый url" msgstr "Новый базовый url"
#: ../../mod/admin.php:711 #: mod/admin.php:978
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts "
"of all users."
msgstr ""
#: mod/admin.php:980
msgid "RINO Encryption"
msgstr "RINO шифрование"
#: mod/admin.php:980
msgid "Encryption layer between nodes."
msgstr "Слой шифрования между узлами."
#: mod/admin.php:981
msgid "Embedly API key"
msgstr ""
#: mod/admin.php:981
msgid ""
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
"web pages. This is an optional parameter."
msgstr ""
#: mod/admin.php:1010
msgid "Update has been marked successful" msgid "Update has been marked successful"
msgstr "Обновление было успешно отмечено" msgstr "Обновление было успешно отмечено"
#: ../../mod/admin.php:719 #: mod/admin.php:1018
#, php-format #, php-format
msgid "Database structure update %s was successfully applied." msgid "Database structure update %s was successfully applied."
msgstr "" msgstr ""
#: ../../mod/admin.php:722 #: mod/admin.php:1021
#, php-format #, php-format
msgid "Executing of database structure update %s failed with error: %s" msgid "Executing of database structure update %s failed with error: %s"
msgstr "" msgstr ""
#: ../../mod/admin.php:734 #: mod/admin.php:1033
#, php-format #, php-format
msgid "Executing %s failed with error: %s" msgid "Executing %s failed with error: %s"
msgstr "" msgstr ""
#: ../../mod/admin.php:737 #: mod/admin.php:1036
#, php-format #, php-format
msgid "Update %s was successfully applied." msgid "Update %s was successfully applied."
msgstr "Обновление %s успешно применено." msgstr "Обновление %s успешно применено."
#: ../../mod/admin.php:741 #: mod/admin.php:1040
#, php-format #, php-format
msgid "Update %s did not return a status. Unknown if it succeeded." msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." msgstr ""
"Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."
#: ../../mod/admin.php:743 #: mod/admin.php:1042
#, php-format #, php-format
msgid "There was no additional update function %s that needed to be called." msgid "There was no additional update function %s that needed to be called."
msgstr "" msgstr ""
#: ../../mod/admin.php:762 #: mod/admin.php:1061
msgid "No failed updates." msgid "No failed updates."
msgstr "Неудавшихся обновлений нет." msgstr "Неудавшихся обновлений нет."
#: ../../mod/admin.php:763 #: mod/admin.php:1062
msgid "Check database structure" msgid "Check database structure"
msgstr "" msgstr ""
#: ../../mod/admin.php:768 #: mod/admin.php:1067
msgid "Failed Updates" msgid "Failed Updates"
msgstr "Неудавшиеся обновления" msgstr "Неудавшиеся обновления"
#: ../../mod/admin.php:769 #: mod/admin.php:1068
msgid "" msgid ""
"This does not include updates prior to 1139, which did not return a status." "This does not include updates prior to 1139, which did not return a status."
msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." msgstr ""
"Эта цифра не включает обновления до 1139, которое не возвращает статус."
#: ../../mod/admin.php:770 #: mod/admin.php:1069
msgid "Mark success (if update was manually applied)" msgid "Mark success (if update was manually applied)"
msgstr "Отмечено успешно (если обновление было применено вручную)" msgstr "Отмечено успешно (если обновление было применено вручную)"
#: ../../mod/admin.php:771 #: mod/admin.php:1070
msgid "Attempt to execute this update step automatically" msgid "Attempt to execute this update step automatically"
msgstr "Попытаться выполнить этот шаг обновления автоматически" msgstr "Попытаться выполнить этот шаг обновления автоматически"
#: ../../mod/admin.php:803 #: mod/admin.php:1102
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -2624,7 +3111,7 @@ msgid ""
"\t\t\t\tthe administrator of %2$s has set up an account for you." "\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr "" msgstr ""
#: ../../mod/admin.php:806 #: mod/admin.php:1105
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -2634,310 +3121,354 @@ msgid ""
"\t\t\tLogin Name:\t\t%2$s\n" "\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n" "\t\t\tPassword:\t\t%3$s\n"
"\n" "\n"
"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" "\t\t\tYou may change your password from your account \"Settings\" page after "
"logging\n"
"\t\t\tin.\n" "\t\t\tin.\n"
"\n" "\n"
"\t\t\tPlease take a few moments to review the other account settings on that page.\n" "\t\t\tPlease take a few moments to review the other account settings on that "
"page.\n"
"\n" "\n"
"\t\t\tYou may also wish to add some basic information to your default profile\n" "\t\t\tYou may also wish to add some basic information to your default "
"profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" "\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n" "\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n" "\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" "\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" "and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more "
"specific\n"
"\t\t\tthan that.\n" "\t\t\tthan that.\n"
"\n" "\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" "\t\t\tWe fully respect your right to privacy, and none of these items are "
"necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n" "\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n" "\t\t\tyou to make some new and interesting friends.\n"
"\n" "\n"
"\t\t\tThank you and welcome to %4$s." "\t\t\tThank you and welcome to %4$s."
msgstr "" msgstr ""
#: ../../mod/admin.php:838 ../../include/user.php:413 #: mod/admin.php:1137 include/user.php:423
#, php-format #, php-format
msgid "Registration details for %s" msgid "Registration details for %s"
msgstr "Подробности регистрации для %s" msgstr "Подробности регистрации для %s"
#: ../../mod/admin.php:850 #: mod/admin.php:1149
#, php-format #, php-format
msgid "%s user blocked/unblocked" msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked" msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s пользователь заблокирован/разблокирован" msgstr[0] "%s пользователь заблокирован/разблокирован"
msgstr[1] "%s пользователей заблокировано/разблокировано" msgstr[1] "%s пользователей заблокировано/разблокировано"
msgstr[2] "%s пользователей заблокировано/разблокировано" msgstr[2] "%s пользователей заблокировано/разблокировано"
msgstr[3] "%s пользователей заблокировано/разблокировано"
#: ../../mod/admin.php:857 #: mod/admin.php:1156
#, php-format #, php-format
msgid "%s user deleted" msgid "%s user deleted"
msgid_plural "%s users deleted" msgid_plural "%s users deleted"
msgstr[0] "%s человек удален" msgstr[0] "%s человек удален"
msgstr[1] "%s чел. удалено" msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено" msgstr[2] "%s чел. удалено"
msgstr[3] "%s чел. удалено"
#: ../../mod/admin.php:896 #: mod/admin.php:1203
#, php-format #, php-format
msgid "User '%s' deleted" msgid "User '%s' deleted"
msgstr "Пользователь '%s' удален" msgstr "Пользователь '%s' удален"
#: ../../mod/admin.php:904 #: mod/admin.php:1211
#, php-format #, php-format
msgid "User '%s' unblocked" msgid "User '%s' unblocked"
msgstr "Пользователь '%s' разблокирован" msgstr "Пользователь '%s' разблокирован"
#: ../../mod/admin.php:904 #: mod/admin.php:1211
#, php-format #, php-format
msgid "User '%s' blocked" msgid "User '%s' blocked"
msgstr "Пользователь '%s' блокирован" msgstr "Пользователь '%s' блокирован"
#: ../../mod/admin.php:999 #: mod/admin.php:1302
msgid "Add User" msgid "Add User"
msgstr "Добавить пользователя" msgstr "Добавить пользователя"
#: ../../mod/admin.php:1000 #: mod/admin.php:1303
msgid "select all" msgid "select all"
msgstr "выбрать все" msgstr "выбрать все"
#: ../../mod/admin.php:1001 #: mod/admin.php:1304
msgid "User registrations waiting for confirm" msgid "User registrations waiting for confirm"
msgstr "Регистрации пользователей, ожидающие подтверждения" msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:1002 #: mod/admin.php:1305
msgid "User waiting for permanent deletion" msgid "User waiting for permanent deletion"
msgstr "Пользователь ожидает окончательного удаления" msgstr "Пользователь ожидает окончательного удаления"
#: ../../mod/admin.php:1003 #: mod/admin.php:1306
msgid "Request date" msgid "Request date"
msgstr "Запрос даты" msgstr "Запрос даты"
#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016 #: mod/admin.php:1306 mod/admin.php:1318 mod/admin.php:1319 mod/admin.php:1334
#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79 #: include/contact_selectors.php:79 include/contact_selectors.php:86
#: ../../include/contact_selectors.php:86
msgid "Email" msgid "Email"
msgstr "Эл. почта" msgstr "Эл. почта"
#: ../../mod/admin.php:1004 #: mod/admin.php:1307
msgid "No registrations." msgid "No registrations."
msgstr "Нет регистраций." msgstr "Нет регистраций."
#: ../../mod/admin.php:1006 #: mod/admin.php:1309
msgid "Deny" msgid "Deny"
msgstr "Отклонить" msgstr "Отклонить"
#: ../../mod/admin.php:1010 #: mod/admin.php:1313
msgid "Site admin" msgid "Site admin"
msgstr "Админ сайта" msgstr "Админ сайта"
#: ../../mod/admin.php:1011 #: mod/admin.php:1314
msgid "Account expired" msgid "Account expired"
msgstr "Аккаунт просрочен" msgstr "Аккаунт просрочен"
#: ../../mod/admin.php:1014 #: mod/admin.php:1317
msgid "New User" msgid "New User"
msgstr "Новый пользователь" msgstr "Новый пользователь"
#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 #: mod/admin.php:1318 mod/admin.php:1319
msgid "Register date" msgid "Register date"
msgstr "Дата регистрации" msgstr "Дата регистрации"
#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 #: mod/admin.php:1318 mod/admin.php:1319
msgid "Last login" msgid "Last login"
msgstr "Последний вход" msgstr "Последний вход"
#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 #: mod/admin.php:1318 mod/admin.php:1319
msgid "Last item" msgid "Last item"
msgstr "Последний пункт" msgstr "Последний пункт"
#: ../../mod/admin.php:1015 #: mod/admin.php:1318
msgid "Deleted since" msgid "Deleted since"
msgstr "Удалён с" msgstr "Удалён с"
#: ../../mod/admin.php:1016 ../../mod/settings.php:36 #: mod/admin.php:1319 mod/settings.php:41
msgid "Account" msgid "Account"
msgstr "Аккаунт" msgstr "Аккаунт"
#: ../../mod/admin.php:1018 #: mod/admin.php:1321
msgid "" msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on " "Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?" "this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" msgstr ""
"Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи "
"написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:1019 #: mod/admin.php:1322
msgid "" msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this " "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?" "site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" msgstr ""
"Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на "
"этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:1029 #: mod/admin.php:1332
msgid "Name of the new user." msgid "Name of the new user."
msgstr "Имя нового пользователя." msgstr "Имя нового пользователя."
#: ../../mod/admin.php:1030 #: mod/admin.php:1333
msgid "Nickname" msgid "Nickname"
msgstr "Ник" msgstr "Ник"
#: ../../mod/admin.php:1030 #: mod/admin.php:1333
msgid "Nickname of the new user." msgid "Nickname of the new user."
msgstr "Ник нового пользователя." msgstr "Ник нового пользователя."
#: ../../mod/admin.php:1031 #: mod/admin.php:1334
msgid "Email address of the new user." msgid "Email address of the new user."
msgstr "Email адрес нового пользователя." msgstr "Email адрес нового пользователя."
#: ../../mod/admin.php:1064 #: mod/admin.php:1377
#, php-format #, php-format
msgid "Plugin %s disabled." msgid "Plugin %s disabled."
msgstr "Плагин %s отключен." msgstr "Плагин %s отключен."
#: ../../mod/admin.php:1068 #: mod/admin.php:1381
#, php-format #, php-format
msgid "Plugin %s enabled." msgid "Plugin %s enabled."
msgstr "Плагин %s включен." msgstr "Плагин %s включен."
#: ../../mod/admin.php:1078 ../../mod/admin.php:1294 #: mod/admin.php:1392 mod/admin.php:1628
msgid "Disable" msgid "Disable"
msgstr "Отключить" msgstr "Отключить"
#: ../../mod/admin.php:1080 ../../mod/admin.php:1296 #: mod/admin.php:1394 mod/admin.php:1630
msgid "Enable" msgid "Enable"
msgstr "Включить" msgstr "Включить"
#: ../../mod/admin.php:1103 ../../mod/admin.php:1324 #: mod/admin.php:1417 mod/admin.php:1675
msgid "Toggle" msgid "Toggle"
msgstr "Переключить" msgstr "Переключить"
#: ../../mod/admin.php:1111 ../../mod/admin.php:1334 #: mod/admin.php:1425 mod/admin.php:1684
msgid "Author: " msgid "Author: "
msgstr "Автор:" msgstr "Автор:"
#: ../../mod/admin.php:1112 ../../mod/admin.php:1335 #: mod/admin.php:1426 mod/admin.php:1685
msgid "Maintainer: " msgid "Maintainer: "
msgstr "Программа обслуживания: " msgstr "Программа обслуживания: "
#: ../../mod/admin.php:1254 #: mod/admin.php:1478
msgid "Reload active plugins"
msgstr ""
#: mod/admin.php:1483
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr ""
#: mod/admin.php:1588
msgid "No themes found." msgid "No themes found."
msgstr "Темы не найдены." msgstr "Темы не найдены."
#: ../../mod/admin.php:1316 #: mod/admin.php:1666
msgid "Screenshot" msgid "Screenshot"
msgstr "Скриншот" msgstr "Скриншот"
#: ../../mod/admin.php:1362 #: mod/admin.php:1726
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:1731
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr ""
#: mod/admin.php:1732
msgid "[Experimental]" msgid "[Experimental]"
msgstr "[экспериментально]" msgstr "[экспериментально]"
#: ../../mod/admin.php:1363 #: mod/admin.php:1733
msgid "[Unsupported]" msgid "[Unsupported]"
msgstr "[Неподдерживаемое]" msgstr "[Неподдерживаемое]"
#: ../../mod/admin.php:1390 #: mod/admin.php:1757
msgid "Log settings updated." msgid "Log settings updated."
msgstr "Настройки журнала обновлены." msgstr "Настройки журнала обновлены."
#: ../../mod/admin.php:1446 #: mod/admin.php:1794
msgid "Clear" msgid "Clear"
msgstr "Очистить" msgstr "Очистить"
#: ../../mod/admin.php:1452 #: mod/admin.php:1799
msgid "Enable Debugging" msgid "Enable Debugging"
msgstr "Включить отладку" msgstr "Включить отладку"
#: ../../mod/admin.php:1453 #: mod/admin.php:1800
msgid "Log file" msgid "Log file"
msgstr "Лог-файл" msgstr "Лог-файл"
#: ../../mod/admin.php:1453 #: mod/admin.php:1800
msgid "" msgid ""
"Must be writable by web server. Relative to your Friendica top-level " "Must be writable by web server. Relative to your Friendica top-level "
"directory." "directory."
msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." msgstr ""
"Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica "
"каталога верхнего уровня."
#: ../../mod/admin.php:1454 #: mod/admin.php:1801
msgid "Log level" msgid "Log level"
msgstr "Уровень лога" msgstr "Уровень лога"
#: ../../mod/admin.php:1504 #: mod/admin.php:1804
msgid "Close" msgid "PHP logging"
msgstr "Закрыть" msgstr "PHP логирование"
#: ../../mod/admin.php:1510 #: mod/admin.php:1805
msgid "FTP Host" msgid ""
msgstr "FTP хост" "To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
#: ../../mod/admin.php:1511 #: mod/admin.php:1931 mod/admin.php:1932 mod/settings.php:759
msgid "FTP Path" msgid "Off"
msgstr "Путь FTP" msgstr "Выкл."
#: ../../mod/admin.php:1512 #: mod/admin.php:1931 mod/admin.php:1932 mod/settings.php:759
msgid "FTP User" msgid "On"
msgstr "FTP пользователь" msgstr "Вкл."
#: ../../mod/admin.php:1513 #: mod/admin.php:1932
msgid "FTP Password" #, php-format
msgstr "FTP пароль" msgid "Lock feature %s"
msgstr ""
#: ../../mod/network.php:142 #: mod/admin.php:1940
msgid "Search Results For:" msgid "Manage Additional Features"
msgstr "Результаты поиска для:" msgstr ""
#: ../../mod/network.php:185 ../../mod/search.php:21 #: mod/network.php:146
#, php-format
msgid "Search Results For: %s"
msgstr ""
#: mod/network.php:191 mod/search.php:25
msgid "Remove term" msgid "Remove term"
msgstr "Удалить элемент" msgstr "Удалить элемент"
#: ../../mod/network.php:194 ../../mod/search.php:30 #: mod/network.php:200 mod/search.php:34 include/features.php:84
#: ../../include/features.php:42
msgid "Saved Searches" msgid "Saved Searches"
msgstr "запомненные поиски" msgstr "запомненные поиски"
#: ../../mod/network.php:195 ../../include/group.php:275 #: mod/network.php:201 include/group.php:293
msgid "add" msgid "add"
msgstr "добавить" msgstr "добавить"
#: ../../mod/network.php:356 #: mod/network.php:365
msgid "Commented Order" msgid "Commented Order"
msgstr "Прокомментированный запрос" msgstr "Последние комментарии"
#: ../../mod/network.php:359 #: mod/network.php:368
msgid "Sort by Comment Date" msgid "Sort by Comment Date"
msgstr "Сортировать по дате комментария" msgstr "Сортировать по дате комментария"
#: ../../mod/network.php:362 #: mod/network.php:373
msgid "Posted Order" msgid "Posted Order"
msgstr "Отправленный запрос" msgstr "Лента записей"
#: ../../mod/network.php:365 #: mod/network.php:376
msgid "Sort by Post Date" msgid "Sort by Post Date"
msgstr "Сортировать по дате отправки" msgstr "Сортировать по дате отправки"
#: ../../mod/network.php:374 #: mod/network.php:387
msgid "Posts that mention or involve you" msgid "Posts that mention or involve you"
msgstr "" msgstr ""
#: ../../mod/network.php:380 #: mod/network.php:395
msgid "New" msgid "New"
msgstr "Новый" msgstr "Новый"
#: ../../mod/network.php:383 #: mod/network.php:398
msgid "Activity Stream - by date" msgid "Activity Stream - by date"
msgstr "Лента активности - по дате" msgstr "Лента активности - по дате"
#: ../../mod/network.php:389 #: mod/network.php:406
msgid "Shared Links" msgid "Shared Links"
msgstr "Ссылки, которыми поделились" msgstr "Ссылки, которыми поделились"
#: ../../mod/network.php:392 #: mod/network.php:409
msgid "Interesting Links" msgid "Interesting Links"
msgstr "Интересные ссылки" msgstr "Интересные ссылки"
#: ../../mod/network.php:398 #: mod/network.php:417
msgid "Starred" msgid "Starred"
msgstr "Помеченный" msgstr "Помеченный"
#: ../../mod/network.php:401 #: mod/network.php:420
msgid "Favourite Posts" msgid "Favourite Posts"
msgstr "Избранные посты" msgstr "Избранные посты"
#: ../../mod/network.php:463 #: mod/network.php:479
#, php-format #, php-format
msgid "Warning: This group contains %s member from an insecure network." msgid "Warning: This group contains %s member from an insecure network."
msgid_plural "" msgid_plural ""
@ -2945,4152 +3476,4632 @@ msgid_plural ""
msgstr[0] "Внимание: Эта группа содержит %s участника с незащищенной сети." msgstr[0] "Внимание: Эта группа содержит %s участника с незащищенной сети."
msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети." msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети."
msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети." msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети."
msgstr[3] "Внимание: Эта группа содержит %s участников с незащищенной сети."
#: ../../mod/network.php:466 #: mod/network.php:482
msgid "Private messages to this group are at risk of public disclosure." msgid "Private messages to this group are at risk of public disclosure."
msgstr "Личные сообщения к этой группе находятся под угрозой обнародования." msgstr "Личные сообщения к этой группе находятся под угрозой обнародования."
#: ../../mod/network.php:520 ../../mod/content.php:119 #: mod/network.php:549 mod/content.php:119
msgid "No such group" msgid "No such group"
msgstr "Нет такой группы" msgstr "Нет такой группы"
#: ../../mod/network.php:537 ../../mod/content.php:130 #: mod/network.php:580 mod/content.php:135
msgid "Group is empty" #, php-format
msgstr "Группа пуста" msgid "Group: %s"
msgstr "Группа: %s"
#: ../../mod/network.php:544 ../../mod/content.php:134 #: mod/network.php:608
msgid "Group: "
msgstr "Группа: "
#: ../../mod/network.php:554
msgid "Contact: "
msgstr "Контакт: "
#: ../../mod/network.php:556
msgid "Private messages to this person are at risk of public disclosure." msgid "Private messages to this person are at risk of public disclosure."
msgstr "Личные сообщения этому человеку находятся под угрозой обнародования." msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
#: ../../mod/network.php:561 #: mod/network.php:613
msgid "Invalid contact." msgid "Invalid contact."
msgstr "Недопустимый контакт." msgstr "Недопустимый контакт."
#: ../../mod/allfriends.php:34 #: mod/allfriends.php:43
#, php-format
msgid "Friends of %s"
msgstr "%s Друзья"
#: ../../mod/allfriends.php:40
msgid "No friends to display." msgid "No friends to display."
msgstr "Нет друзей." msgstr "Нет друзей."
#: ../../mod/events.php:66 #: mod/events.php:71 mod/events.php:73
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:80 mod/events.php:82
msgid "Event title and start time are required." msgid "Event title and start time are required."
msgstr "Название мероприятия и время начала обязательны для заполнения." msgstr "Название мероприятия и время начала обязательны для заполнения."
#: ../../mod/events.php:291 #: mod/events.php:201
msgid "Sun"
msgstr "Вс"
#: mod/events.php:202
msgid "Mon"
msgstr "Пн"
#: mod/events.php:203
msgid "Tue"
msgstr "Вт"
#: mod/events.php:204
msgid "Wed"
msgstr "Ср"
#: mod/events.php:205
msgid "Thu"
msgstr "Чт"
#: mod/events.php:206
msgid "Fri"
msgstr "Пт"
#: mod/events.php:207
msgid "Sat"
msgstr "Сб"
#: mod/events.php:208 mod/settings.php:948 include/text.php:1274
msgid "Sunday"
msgstr "Воскресенье"
#: mod/events.php:209 mod/settings.php:948 include/text.php:1274
msgid "Monday"
msgstr "Понедельник"
#: mod/events.php:210 include/text.php:1274
msgid "Tuesday"
msgstr "Вторник"
#: mod/events.php:211 include/text.php:1274
msgid "Wednesday"
msgstr "Среда"
#: mod/events.php:212 include/text.php:1274
msgid "Thursday"
msgstr "Четверг"
#: mod/events.php:213 include/text.php:1274
msgid "Friday"
msgstr "Пятница"
#: mod/events.php:214 include/text.php:1274
msgid "Saturday"
msgstr "Суббота"
#: mod/events.php:215
msgid "Jan"
msgstr "Янв"
#: mod/events.php:216
msgid "Feb"
msgstr "Фев"
#: mod/events.php:217
msgid "Mar"
msgstr "Мрт"
#: mod/events.php:218
msgid "Apr"
msgstr "Апр"
#: mod/events.php:219 mod/events.php:231 include/text.php:1278
msgid "May"
msgstr "Май"
#: mod/events.php:220
msgid "Jun"
msgstr "Июн"
#: mod/events.php:221
msgid "Jul"
msgstr "Июл"
#: mod/events.php:222
msgid "Aug"
msgstr "Авг"
#: mod/events.php:223
msgid "Sept"
msgstr "Сен"
#: mod/events.php:224
msgid "Oct"
msgstr "Окт"
#: mod/events.php:225
msgid "Nov"
msgstr "Нбр"
#: mod/events.php:226
msgid "Dec"
msgstr "Дек"
#: mod/events.php:227 include/text.php:1278
msgid "January"
msgstr "Январь"
#: mod/events.php:228 include/text.php:1278
msgid "February"
msgstr "Февраль"
#: mod/events.php:229 include/text.php:1278
msgid "March"
msgstr "Март"
#: mod/events.php:230 include/text.php:1278
msgid "April"
msgstr "Апрель"
#: mod/events.php:232 include/text.php:1278
msgid "June"
msgstr "Июнь"
#: mod/events.php:233 include/text.php:1278
msgid "July"
msgstr "Июль"
#: mod/events.php:234 include/text.php:1278
msgid "August"
msgstr "Август"
#: mod/events.php:235 include/text.php:1278
msgid "September"
msgstr "Сентябрь"
#: mod/events.php:236 include/text.php:1278
msgid "October"
msgstr "Октябрь"
#: mod/events.php:237 include/text.php:1278
msgid "November"
msgstr "Ноябрь"
#: mod/events.php:238 include/text.php:1278
msgid "December"
msgstr "Декабрь"
#: mod/events.php:239
msgid "today"
msgstr "сегодня"
#: mod/events.php:240 include/datetime.php:288
msgid "month"
msgstr "мес."
#: mod/events.php:241 include/datetime.php:289
msgid "week"
msgstr "неделя"
#: mod/events.php:242 include/datetime.php:290
msgid "day"
msgstr "день"
#: mod/events.php:377
msgid "l, F j" msgid "l, F j"
msgstr "l, j F" msgstr "l, j F"
#: ../../mod/events.php:313 #: mod/events.php:399
msgid "Edit event" msgid "Edit event"
msgstr "Редактировать мероприятие" msgstr "Редактировать мероприятие"
#: ../../mod/events.php:335 ../../include/text.php:1647 #: mod/events.php:421 include/text.php:1728 include/text.php:1735
#: ../../include/text.php:1657
msgid "link to source" msgid "link to source"
msgstr "ссылка на источник" msgstr "ссылка на сообщение"
#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80 #: mod/events.php:456 include/identity.php:722 include/nav.php:79
#: ../../view/theme/diabook/theme.php:127 #: include/nav.php:140 view/theme/diabook/theme.php:127
msgid "Events" msgid "Events"
msgstr "Мероприятия" msgstr "Мероприятия"
#: ../../mod/events.php:371 #: mod/events.php:457
msgid "Create New Event" msgid "Create New Event"
msgstr "Создать новое мероприятие" msgstr "Создать новое мероприятие"
#: ../../mod/events.php:372 #: mod/events.php:458
msgid "Previous" msgid "Previous"
msgstr "Назад" msgstr "Назад"
#: ../../mod/events.php:373 ../../mod/install.php:207 #: mod/events.php:459 mod/install.php:220
msgid "Next" msgid "Next"
msgstr "Далее" msgstr "Далее"
#: ../../mod/events.php:446 #: mod/events.php:554
msgid "hour:minute"
msgstr "час:минута"
#: ../../mod/events.php:456
msgid "Event details" msgid "Event details"
msgstr "Сведения о мероприятии" msgstr "Сведения о мероприятии"
#: ../../mod/events.php:457 #: mod/events.php:555
#, php-format msgid "Starting date and Title are required."
msgid "Format is %s %s. Starting date and Title are required." msgstr ""
msgstr "Формат %s %s. Необхлдима дата старта и заголовок."
#: ../../mod/events.php:459 #: mod/events.php:556
msgid "Event Starts:" msgid "Event Starts:"
msgstr "Начало мероприятия:" msgstr "Начало мероприятия:"
#: ../../mod/events.php:459 ../../mod/events.php:473 #: mod/events.php:556 mod/events.php:568
msgid "Required" msgid "Required"
msgstr "Требуется" msgstr "Требуется"
#: ../../mod/events.php:462 #: mod/events.php:558
msgid "Finish date/time is not known or not relevant" msgid "Finish date/time is not known or not relevant"
msgstr "Дата/время окончания не известны, или не указаны" msgstr "Дата/время окончания не известны, или не указаны"
#: ../../mod/events.php:464 #: mod/events.php:560
msgid "Event Finishes:" msgid "Event Finishes:"
msgstr "Окончание мероприятия:" msgstr "Окончание мероприятия:"
#: ../../mod/events.php:467 #: mod/events.php:562
msgid "Adjust for viewer timezone" msgid "Adjust for viewer timezone"
msgstr "Настройка часового пояса" msgstr "Настройка часового пояса"
#: ../../mod/events.php:469 #: mod/events.php:564
msgid "Description:" msgid "Description:"
msgstr "Описание:" msgstr "Описание:"
#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648 #: mod/events.php:568
#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
msgid "Location:"
msgstr "Откуда:"
#: ../../mod/events.php:473
msgid "Title:" msgid "Title:"
msgstr "Титул:" msgstr "Титул:"
#: ../../mod/events.php:475 #: mod/events.php:570
msgid "Share this event" msgid "Share this event"
msgstr "Поделитесь этим мероприятием" msgstr "Поделитесь этим мероприятием"
#: ../../mod/content.php:437 ../../mod/content.php:740 #: mod/events.php:572 mod/content.php:721 mod/editpost.php:145
#: ../../mod/photos.php:1653 ../../object/Item.php:129 #: mod/photos.php:1631 mod/photos.php:1679 mod/photos.php:1767
#: ../../include/conversation.php:613 #: object/Item.php:719 include/conversation.php:1216
msgid "Preview"
msgstr "Предварительный просмотр"
#: mod/credits.php:16
msgid "Credits"
msgstr ""
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr ""
#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722
#: object/Item.php:133 include/conversation.php:634
msgid "Select" msgid "Select"
msgstr "Выберите" msgstr "Выберите"
#: ../../mod/content.php:471 ../../mod/content.php:852 #: mod/content.php:473 mod/content.php:854 mod/content.php:855
#: ../../mod/content.php:853 ../../object/Item.php:326 #: object/Item.php:357 object/Item.php:358 include/conversation.php:675
#: ../../object/Item.php:327 ../../include/conversation.php:654
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "Просмотреть профиль %s [@ %s]" msgstr "Просмотреть профиль %s [@ %s]"
#: ../../mod/content.php:481 ../../mod/content.php:864 #: mod/content.php:483 mod/content.php:866 object/Item.php:371
#: ../../object/Item.php:340 ../../include/conversation.php:674 #: include/conversation.php:695
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "%s с %s" msgstr "%s с %s"
#: ../../mod/content.php:497 ../../include/conversation.php:690 #: mod/content.php:499 include/conversation.php:711
msgid "View in context" msgid "View in context"
msgstr "Смотреть в контексте" msgstr "Смотреть в контексте"
#: ../../mod/content.php:603 ../../object/Item.php:387 #: mod/content.php:605 object/Item.php:419
#, php-format #, php-format
msgid "%d comment" msgid "%d comment"
msgid_plural "%d comments" msgid_plural "%d comments"
msgstr[0] "%d комментарий" msgstr[0] "%d комментарий"
msgstr[1] "%d комментариев" msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев" msgstr[2] "%d комментариев"
msgstr[3] "%d комментариев"
#: ../../mod/content.php:605 ../../object/Item.php:389 #: mod/content.php:607 object/Item.php:421 object/Item.php:434
#: ../../object/Item.php:402 ../../include/text.php:1972 #: include/text.php:2004
msgid "comment" msgid "comment"
msgid_plural "comments" msgid_plural "comments"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgstr[2] "комментарий" msgstr[2] "комментарий"
msgstr[3] "комментарий"
#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390 #: mod/content.php:608 boot.php:870 object/Item.php:422
#: ../../include/contact_widgets.php:205 #: include/contact_widgets.php:242 include/forums.php:110
#: include/items.php:5207 view/theme/vier/theme.php:264
msgid "show more" msgid "show more"
msgstr "показать больше" msgstr "показать больше"
#: ../../mod/content.php:620 ../../mod/photos.php:1359 #: mod/content.php:622 mod/photos.php:1418 object/Item.php:117
#: ../../object/Item.php:116
msgid "Private Message" msgid "Private Message"
msgstr "Личное сообщение" msgstr "Личное сообщение"
#: ../../mod/content.php:684 ../../mod/photos.php:1542 #: mod/content.php:686 mod/photos.php:1607 object/Item.php:253
#: ../../object/Item.php:231
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "Нравится" msgstr "Нравится"
#: ../../mod/content.php:684 ../../object/Item.php:231 #: mod/content.php:686 object/Item.php:253
msgid "like" msgid "like"
msgstr "нравится" msgstr "нравится"
#: ../../mod/content.php:685 ../../mod/photos.php:1543 #: mod/content.php:687 mod/photos.php:1608 object/Item.php:254
#: ../../object/Item.php:232
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "Не нравится" msgstr "Не нравится"
#: ../../mod/content.php:685 ../../object/Item.php:232 #: mod/content.php:687 object/Item.php:254
msgid "dislike" msgid "dislike"
msgstr "не нравитса" msgstr "не нравитса"
#: ../../mod/content.php:687 ../../object/Item.php:234 #: mod/content.php:689 object/Item.php:256
msgid "Share this" msgid "Share this"
msgstr "Поделитесь этим" msgstr "Поделитесь этим"
#: ../../mod/content.php:687 ../../object/Item.php:234 #: mod/content.php:689 object/Item.php:256
msgid "share" msgid "share"
msgstr "делиться" msgstr "делиться"
#: ../../mod/content.php:707 ../../mod/photos.php:1562 #: mod/content.php:709 mod/photos.php:1627 mod/photos.php:1675
#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 #: mod/photos.php:1763 object/Item.php:707
#: ../../object/Item.php:675
msgid "This is you" msgid "This is you"
msgstr "Это вы" msgstr "Это вы"
#: ../../mod/content.php:709 ../../mod/photos.php:1564 #: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677
#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750 #: mod/photos.php:1765 boot.php:869 object/Item.php:393 object/Item.php:709
#: ../../object/Item.php:361 ../../object/Item.php:677
msgid "Comment" msgid "Comment"
msgstr "Комментарий" msgstr "Оставить комментарий"
#: ../../mod/content.php:711 ../../object/Item.php:679 #: mod/content.php:713 object/Item.php:711
msgid "Bold" msgid "Bold"
msgstr "Жирный" msgstr "Жирный"
#: ../../mod/content.php:712 ../../object/Item.php:680 #: mod/content.php:714 object/Item.php:712
msgid "Italic" msgid "Italic"
msgstr "Kурсивный" msgstr "Kурсивный"
#: ../../mod/content.php:713 ../../object/Item.php:681 #: mod/content.php:715 object/Item.php:713
msgid "Underline" msgid "Underline"
msgstr "Подчеркнутый" msgstr "Подчеркнутый"
#: ../../mod/content.php:714 ../../object/Item.php:682 #: mod/content.php:716 object/Item.php:714
msgid "Quote" msgid "Quote"
msgstr "Цитата" msgstr "Цитата"
#: ../../mod/content.php:715 ../../object/Item.php:683 #: mod/content.php:717 object/Item.php:715
msgid "Code" msgid "Code"
msgstr "Код" msgstr "Код"
#: ../../mod/content.php:716 ../../object/Item.php:684 #: mod/content.php:718 object/Item.php:716
msgid "Image" msgid "Image"
msgstr "Изображение / Фото" msgstr "Изображение / Фото"
#: ../../mod/content.php:717 ../../object/Item.php:685 #: mod/content.php:719 object/Item.php:717
msgid "Link" msgid "Link"
msgstr "Ссылка" msgstr "Ссылка"
#: ../../mod/content.php:718 ../../object/Item.php:686 #: mod/content.php:720 object/Item.php:718
msgid "Video" msgid "Video"
msgstr "Видео" msgstr "Видео"
#: ../../mod/content.php:719 ../../mod/editpost.php:145 #: mod/content.php:730 mod/settings.php:721 object/Item.php:122
#: ../../mod/photos.php:1566 ../../mod/photos.php:1610 #: object/Item.php:124
#: ../../mod/photos.php:1698 ../../object/Item.php:687
#: ../../include/conversation.php:1126
msgid "Preview"
msgstr "предварительный просмотр"
#: ../../mod/content.php:728 ../../mod/settings.php:676
#: ../../object/Item.php:120
msgid "Edit" msgid "Edit"
msgstr "Редактировать" msgstr "Редактировать"
#: ../../mod/content.php:753 ../../object/Item.php:195 #: mod/content.php:755 object/Item.php:217
msgid "add star" msgid "add star"
msgstr "пометить" msgstr "пометить"
#: ../../mod/content.php:754 ../../object/Item.php:196 #: mod/content.php:756 object/Item.php:218
msgid "remove star" msgid "remove star"
msgstr "убрать метку" msgstr "убрать метку"
#: ../../mod/content.php:755 ../../object/Item.php:197 #: mod/content.php:757 object/Item.php:219
msgid "toggle star status" msgid "toggle star status"
msgstr "переключить статус" msgstr "переключить статус"
#: ../../mod/content.php:758 ../../object/Item.php:200 #: mod/content.php:760 object/Item.php:222
msgid "starred" msgid "starred"
msgstr "помечено" msgstr "помечено"
#: ../../mod/content.php:759 ../../object/Item.php:220 #: mod/content.php:761 object/Item.php:242
msgid "add tag" msgid "add tag"
msgstr "добавить ключевое слово (таг)" msgstr "добавить ключевое слово (таг)"
#: ../../mod/content.php:763 ../../object/Item.php:133 #: mod/content.php:765 object/Item.php:137
msgid "save to folder" msgid "save to folder"
msgstr "сохранить в папке" msgstr "сохранить в папке"
#: ../../mod/content.php:854 ../../object/Item.php:328 #: mod/content.php:856 object/Item.php:359
msgid "to" msgid "to"
msgstr "к" msgstr "к"
#: ../../mod/content.php:855 ../../object/Item.php:330 #: mod/content.php:857 object/Item.php:361
msgid "Wall-to-Wall" msgid "Wall-to-Wall"
msgstr "Стена-на-Стену" msgstr "Стена-на-Стену"
#: ../../mod/content.php:856 ../../object/Item.php:331 #: mod/content.php:858 object/Item.php:362
msgid "via Wall-To-Wall:" msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:" msgstr "через Стена-на-Стену:"
#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 #: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account" msgid "Remove My Account"
msgstr "Удалить мой аккаунт" msgstr "Удалить мой аккаунт"
#: ../../mod/removeme.php:47 #: mod/removeme.php:47
msgid "" msgid ""
"This will completely remove your account. Once this has been done it is not " "This will completely remove your account. Once this has been done it is not "
"recoverable." "recoverable."
msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." msgstr ""
"Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, "
"аккаунт восстановлению не подлежит."
#: ../../mod/removeme.php:48 #: mod/removeme.php:48
msgid "Please enter your password for verification:" msgid "Please enter your password for verification:"
msgstr "Пожалуйста, введите свой пароль для проверки:" msgstr "Пожалуйста, введите свой пароль для проверки:"
#: ../../mod/install.php:117 #: mod/install.php:128
msgid "Friendica Communications Server - Setup" msgid "Friendica Communications Server - Setup"
msgstr "Коммуникационный сервер Friendica - Доступ" msgstr "Коммуникационный сервер Friendica - Доступ"
#: ../../mod/install.php:123 #: mod/install.php:134
msgid "Could not connect to database." msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных." msgstr "Не удалось подключиться к базе данных."
#: ../../mod/install.php:127 #: mod/install.php:138
msgid "Could not create table." msgid "Could not create table."
msgstr "Не удалось создать таблицу." msgstr "Не удалось создать таблицу."
#: ../../mod/install.php:133 #: mod/install.php:144
msgid "Your Friendica site database has been installed." msgid "Your Friendica site database has been installed."
msgstr "База данных сайта установлена." msgstr "База данных сайта установлена."
#: ../../mod/install.php:138 #: mod/install.php:149
msgid "" msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin " "You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql." "or mysql."
msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." msgstr ""
"Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью "
"PhpMyAdmin или MySQL."
#: ../../mod/install.php:139 ../../mod/install.php:206 #: mod/install.php:150 mod/install.php:219 mod/install.php:577
#: ../../mod/install.php:525
msgid "Please see the file \"INSTALL.txt\"." msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"." msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: ../../mod/install.php:203 #: mod/install.php:162
msgid "Database already in use."
msgstr ""
#: mod/install.php:216
msgid "System check" msgid "System check"
msgstr "Проверить систему" msgstr "Проверить систему"
#: ../../mod/install.php:208 #: mod/install.php:221
msgid "Check again" msgid "Check again"
msgstr "Проверить еще раз" msgstr "Проверить еще раз"
#: ../../mod/install.php:227 #: mod/install.php:240
msgid "Database connection" msgid "Database connection"
msgstr "Подключение к базе данных" msgstr "Подключение к базе данных"
#: ../../mod/install.php:228 #: mod/install.php:241
msgid "" msgid ""
"In order to install Friendica we need to know how to connect to your " "In order to install Friendica we need to know how to connect to your "
"database." "database."
msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных." msgstr ""
"Для того, чтобы установить Friendica, мы должны знать, как подключиться к "
"базе данных."
#: ../../mod/install.php:229 #: mod/install.php:242
msgid "" msgid ""
"Please contact your hosting provider or site administrator if you have " "Please contact your hosting provider or site administrator if you have "
"questions about these settings." "questions about these settings."
msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах." msgstr ""
"Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, "
"если у вас есть вопросы об этих параметрах."
#: ../../mod/install.php:230 #: mod/install.php:243
msgid "" msgid ""
"The database you specify below should already exist. If it does not, please " "The database you specify below should already exist. If it does not, please "
"create it before continuing." "create it before continuing."
msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением." msgstr ""
"Базы данных, указанная ниже, должна уже существовать. Если этого нет, "
"пожалуйста, создайте ее перед продолжением."
#: ../../mod/install.php:234 #: mod/install.php:247
msgid "Database Server Name" msgid "Database Server Name"
msgstr "Имя сервера базы данных" msgstr "Имя сервера базы данных"
#: ../../mod/install.php:235 #: mod/install.php:248
msgid "Database Login Name" msgid "Database Login Name"
msgstr "Логин базы данных" msgstr "Логин базы данных"
#: ../../mod/install.php:236 #: mod/install.php:249
msgid "Database Login Password" msgid "Database Login Password"
msgstr "Пароль базы данных" msgstr "Пароль базы данных"
#: ../../mod/install.php:237 #: mod/install.php:250
msgid "Database Name" msgid "Database Name"
msgstr "Имя базы данных" msgstr "Имя базы данных"
#: ../../mod/install.php:238 ../../mod/install.php:277 #: mod/install.php:251 mod/install.php:290
msgid "Site administrator email address" msgid "Site administrator email address"
msgstr "Адрес электронной почты администратора сайта" msgstr "Адрес электронной почты администратора сайта"
#: ../../mod/install.php:238 ../../mod/install.php:277 #: mod/install.php:251 mod/install.php:290
msgid "" msgid ""
"Your account email address must match this in order to use the web admin " "Your account email address must match this in order to use the web admin "
"panel." "panel."
msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора." msgstr ""
"Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы "
"использовать веб-панель администратора."
#: ../../mod/install.php:242 ../../mod/install.php:280 #: mod/install.php:255 mod/install.php:293
msgid "Please select a default timezone for your website" msgid "Please select a default timezone for your website"
msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
#: ../../mod/install.php:267 #: mod/install.php:280
msgid "Site settings" msgid "Site settings"
msgstr "Настройки сайта" msgstr "Настройки сайта"
#: ../../mod/install.php:321 #: mod/install.php:334
msgid "Could not find a command line version of PHP in the web server PATH." msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Не удалось найти PATH веб-сервера в установках PHP." msgstr "Не удалось найти PATH веб-сервера в установках PHP."
#: ../../mod/install.php:322 #: mod/install.php:335
msgid "" msgid ""
"If you don't have a command line version of PHP installed on server, you " "If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a " "will not be able to run background polling via cron. See <a href='https://"
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>" "github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
msgstr "Если на вашем сервере не установлена версия командной строки PHP, вы не будете иметь возможность запускать фоновые опросы через крон. См. <a href='http://friendica.com/node/27'> 'Активация запланированных задачах' </a>" "poller'>'Setup the poller'</a>"
msgstr ""
#: ../../mod/install.php:326 #: mod/install.php:339
msgid "PHP executable path" msgid "PHP executable path"
msgstr "PHP executable path" msgstr "PHP executable path"
#: ../../mod/install.php:326 #: mod/install.php:339
msgid "" msgid ""
"Enter full path to php executable. You can leave this blank to continue the " "Enter full path to php executable. You can leave this blank to continue the "
"installation." "installation."
msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." msgstr ""
"Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле "
"пустым, чтобы продолжить установку."
#: ../../mod/install.php:331 #: mod/install.php:344
msgid "Command line PHP" msgid "Command line PHP"
msgstr "Command line PHP" msgstr "Command line PHP"
#: ../../mod/install.php:340 #: mod/install.php:353
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr "" msgstr ""
#: ../../mod/install.php:341 #: mod/install.php:354
msgid "Found PHP version: " msgid "Found PHP version: "
msgstr "Найденная PHP версия: " msgstr "Найденная PHP версия: "
#: ../../mod/install.php:343 #: mod/install.php:356
msgid "PHP cli binary" msgid "PHP cli binary"
msgstr "PHP cli binary" msgstr "PHP cli binary"
#: ../../mod/install.php:354 #: mod/install.php:367
msgid "" msgid ""
"The command line version of PHP on your system does not have " "The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled." "\"register_argc_argv\" enabled."
msgstr "Не включено \"register_argc_argv\" в установках PHP." msgstr "Не включено \"register_argc_argv\" в установках PHP."
#: ../../mod/install.php:355 #: mod/install.php:368
msgid "This is required for message delivery to work." msgid "This is required for message delivery to work."
msgstr "Это необходимо для работы доставки сообщений." msgstr "Это необходимо для работы доставки сообщений."
#: ../../mod/install.php:357 #: mod/install.php:370
msgid "PHP register_argc_argv" msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv" msgstr "PHP register_argc_argv"
#: ../../mod/install.php:378 #: mod/install.php:391
msgid "" msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to " "Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys" "generate encryption keys"
msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" msgstr ""
"Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии "
"генерировать ключи шифрования"
#: ../../mod/install.php:379 #: mod/install.php:392
msgid "" msgid ""
"If running under Windows, please see " "If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"\"http://www.php.net/manual/en/openssl.installation.php\"." "installation.php\"."
msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." msgstr ""
"Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl."
"installation.php\"."
#: ../../mod/install.php:381 #: mod/install.php:394
msgid "Generate encryption keys" msgid "Generate encryption keys"
msgstr "Генерация шифрованых ключей" msgstr "Генерация шифрованых ключей"
#: ../../mod/install.php:388 #: mod/install.php:401
msgid "libCurl PHP module" msgid "libCurl PHP module"
msgstr "libCurl PHP модуль" msgstr "libCurl PHP модуль"
#: ../../mod/install.php:389 #: mod/install.php:402
msgid "GD graphics PHP module" msgid "GD graphics PHP module"
msgstr "GD graphics PHP модуль" msgstr "GD graphics PHP модуль"
#: ../../mod/install.php:390 #: mod/install.php:403
msgid "OpenSSL PHP module" msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP модуль" msgstr "OpenSSL PHP модуль"
#: ../../mod/install.php:391 #: mod/install.php:404
msgid "mysqli PHP module" msgid "mysqli PHP module"
msgstr "mysqli PHP модуль" msgstr "mysqli PHP модуль"
#: ../../mod/install.php:392 #: mod/install.php:405
msgid "mb_string PHP module" msgid "mb_string PHP module"
msgstr "mb_string PHP модуль" msgstr "mb_string PHP модуль"
#: ../../mod/install.php:397 ../../mod/install.php:399 #: mod/install.php:406
msgid "mcrypt PHP module"
msgstr ""
#: mod/install.php:411 mod/install.php:413
msgid "Apache mod_rewrite module" msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module" msgstr "Apache mod_rewrite module"
#: ../../mod/install.php:397 #: mod/install.php:411
msgid "" msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed." "Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." msgstr ""
"Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
#: ../../mod/install.php:405 #: mod/install.php:419
msgid "Error: libCURL PHP module required but not installed." msgid "Error: libCURL PHP module required but not installed."
msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен."
#: ../../mod/install.php:409 #: mod/install.php:423
msgid "" msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed." "Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." msgstr ""
"Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не "
"установлен."
#: ../../mod/install.php:413 #: mod/install.php:427
msgid "Error: openssl PHP module required but not installed." msgid "Error: openssl PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."
#: ../../mod/install.php:417 #: mod/install.php:431
msgid "Error: mysqli PHP module required but not installed." msgid "Error: mysqli PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен." msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен."
#: ../../mod/install.php:421 #: mod/install.php:435
msgid "Error: mb_string PHP module required but not installed." msgid "Error: mb_string PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен."
#: ../../mod/install.php:438 #: mod/install.php:439
msgid "" msgid "Error: mcrypt PHP module required but not installed."
"The web installer needs to be able to create a file called \".htconfig.php\"" msgstr ""
" in the top folder of your web server and it is unable to do so."
msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
#: ../../mod/install.php:439 #: mod/install.php:451
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr ""
#: mod/install.php:453
msgid "mcrypt_create_iv() function"
msgstr ""
#: mod/install.php:469
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\" "
"in the top folder of your web server and it is unable to do so."
msgstr ""
"Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в "
"верхней папке веб-сервера, но он не в состоянии это сделать."
#: mod/install.php:470
msgid "" msgid ""
"This is most often a permission setting, as the web server may not be able " "This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can." "to write files in your folder - even if you can."
msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете." msgstr ""
"Это наиболее частые параметры разрешений, когда веб-сервер не может записать "
"файлы в папке - даже если вы можете."
#: ../../mod/install.php:440 #: mod/install.php:471
msgid "" msgid ""
"At the end of this procedure, we will give you a text to save in a file " "At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder." "named .htconfig.php in your Friendica top folder."
msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica." msgstr ""
"В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем ."
"htconfig.php в корневой папке, где установлена Friendica."
#: ../../mod/install.php:441 #: mod/install.php:472
msgid "" msgid ""
"You can alternatively skip this procedure and perform a manual installation." "You can alternatively skip this procedure and perform a manual installation. "
" Please see the file \"INSTALL.txt\" for instructions." "Please see the file \"INSTALL.txt\" for instructions."
msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций." msgstr ""
"В качестве альтернативы вы можете пропустить эту процедуру и выполнить "
"установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для "
"получения инструкций."
#: ../../mod/install.php:444 #: mod/install.php:475
msgid ".htconfig.php is writable" msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable" msgstr ".htconfig.php is writable"
#: ../../mod/install.php:454 #: mod/install.php:485
msgid "" msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering." "compiles templates to PHP to speed up rendering."
msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." msgstr ""
"Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. "
"Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."
#: ../../mod/install.php:455 #: mod/install.php:486
msgid "" msgid ""
"In order to store these compiled templates, the web server needs to have " "In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level " "write access to the directory view/smarty3/ under the Friendica top level "
"folder." "folder."
msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." msgstr ""
"Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь "
"доступ на запись для папки view/smarty3 в директории, где установлена "
"Friendica."
#: ../../mod/install.php:456 #: mod/install.php:487
msgid "" msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has" "Please ensure that the user that your web server runs as (e.g. www-data) has "
" write access to this folder." "write access to this folder."
msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." msgstr ""
"Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер "
"(например www-data), имеет доступ на запись в этой папке."
#: ../../mod/install.php:457 #: mod/install.php:488
msgid "" msgid ""
"Note: as a security measure, you should give the web server write access to " "Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains." "view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." msgstr ""
"Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ "
"на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., "
"Которые содержатся в этой папке."
#: ../../mod/install.php:460 #: mod/install.php:491
msgid "view/smarty3 is writable" msgid "view/smarty3 is writable"
msgstr "view/smarty3 доступен для записи" msgstr "view/smarty3 доступен для записи"
#: ../../mod/install.php:472 #: mod/install.php:507
msgid "" msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration." "Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.." msgstr ""
"Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."
#: ../../mod/install.php:474 #: mod/install.php:509
msgid "Url rewrite is working" msgid "Url rewrite is working"
msgstr "Url rewrite работает" msgstr "Url rewrite работает"
#: ../../mod/install.php:484 #: mod/install.php:526
msgid "ImageMagick PHP extension is installed"
msgstr ""
#: mod/install.php:528
msgid "ImageMagick supports GIF"
msgstr ""
#: mod/install.php:536
msgid "" msgid ""
"The database configuration file \".htconfig.php\" could not be written. " "The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web " "Please use the enclosed text to create a configuration file in your web "
"server root." "server root."
msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера." msgstr ""
"Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. "
"Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный "
"файл в корневом каталоге веб-сервера."
#: ../../mod/install.php:523 #: mod/install.php:575
msgid "<h1>What next</h1>" msgid "<h1>What next</h1>"
msgstr "<h1>Что далее</h1>" msgstr "<h1>Что далее</h1>"
#: ../../mod/install.php:524 #: mod/install.php:576
msgid "" msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the " "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
"poller." msgstr ""
msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора." "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для "
"регистратора."
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 #: mod/wallmessage.php:42 mod/wallmessage.php:112
#, php-format #, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed." msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.." msgstr ""
"Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."
#: ../../mod/wallmessage.php:59 #: mod/wallmessage.php:59
msgid "Unable to check your home location." msgid "Unable to check your home location."
msgstr "Невозможно проверить местоположение." msgstr "Невозможно проверить местоположение."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 #: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient." msgid "No recipient."
msgstr "Без адресата." msgstr "Без адресата."
#: ../../mod/wallmessage.php:143 #: mod/wallmessage.php:143
#, php-format #, php-format
msgid "" msgid ""
"If you wish for %s to respond, please check that the privacy settings on " "If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders." "your site allow private mail from unknown senders."
msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей." msgstr ""
"Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки "
"конфиденциальности на Вашем сайте принимать персональную почту от "
"неизвестных отправителей."
#: ../../mod/help.php:79 #: mod/help.php:41
msgid "Help:" msgid "Help:"
msgstr "Помощь:" msgstr "Помощь:"
#: ../../mod/help.php:84 ../../include/nav.php:114 #: mod/help.php:47 include/nav.php:113 view/theme/vier/theme.php:302
msgid "Help" msgid "Help"
msgstr "Помощь" msgstr "Помощь"
#: ../../mod/help.php:90 ../../index.php:256 #: mod/help.php:53 mod/p.php:16 mod/p.php:25 index.php:270
msgid "Not Found" msgid "Not Found"
msgstr "Не найдено" msgstr "Не найдено"
#: ../../mod/help.php:93 ../../index.php:259 #: mod/help.php:56 index.php:273
msgid "Page not found." msgid "Page not found."
msgstr "Страница не найдена." msgstr "Страница не найдена."
#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 #: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
#, php-format #, php-format
msgid "%1$s welcomes %2$s" msgid "%1$s welcomes %2$s"
msgstr "%1$s добро пожаловать %2$s" msgstr "%1$s добро пожаловать %2$s"
#: ../../mod/home.php:35 #: mod/home.php:35
#, php-format #, php-format
msgid "Welcome to %s" msgid "Welcome to %s"
msgstr "Добро пожаловать на %s!" msgstr "Добро пожаловать на %s!"
#: ../../mod/wall_attach.php:75 #: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr "" msgstr ""
#: ../../mod/wall_attach.php:75 #: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?" msgid "Or - did you try to upload an empty file?"
msgstr "" msgstr ""
#: ../../mod/wall_attach.php:81 #: mod/wall_attach.php:105
#, php-format #, php-format
msgid "File exceeds size limit of %d" msgid "File exceeds size limit of %s"
msgstr "Файл превышает предельный размер %d" msgstr ""
#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 #: mod/wall_attach.php:156 mod/wall_attach.php:172
msgid "File upload failed." msgid "File upload failed."
msgstr "Загрузка файла не удалась." msgstr "Загрузка файла не удалась."
#: ../../mod/match.php:12 #: mod/match.php:33
msgid "Profile Match"
msgstr "Похожие профили"
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile." msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию." msgstr ""
"Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для "
"вашего профиля по умолчанию."
#: ../../mod/match.php:57 #: mod/match.php:84
msgid "is interested in:" msgid "is interested in:"
msgstr "интересуется:" msgstr "интересуется:"
#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568 #: mod/match.php:98
#: ../../include/contact_widgets.php:10 msgid "Profile Match"
msgid "Connect" msgstr "Похожие профили"
msgstr "Подключить"
#: ../../mod/share.php:44 #: mod/share.php:38
msgid "link" msgid "link"
msgstr "ссылка" msgstr "ссылка"
#: ../../mod/community.php:23 #: mod/community.php:27
msgid "Not available." msgid "Not available."
msgstr "Недоступно." msgstr "Недоступно."
#: ../../mod/community.php:32 ../../include/nav.php:129 #: mod/community.php:36 include/nav.php:136 include/nav.php:138
#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129 #: view/theme/diabook/theme.php:129
msgid "Community" msgid "Community"
msgstr "Сообщество" msgstr "Сообщество"
#: ../../mod/community.php:62 ../../mod/community.php:71 #: mod/community.php:66 mod/community.php:75 mod/search.php:228
#: ../../mod/search.php:168 ../../mod/search.php:192
msgid "No results." msgid "No results."
msgstr "Нет результатов." msgstr "Нет результатов."
#: ../../mod/settings.php:29 ../../mod/photos.php:80 #: mod/settings.php:34 mod/photos.php:117
msgid "everybody" msgid "everybody"
msgstr "каждый" msgstr "каждый"
#: ../../mod/settings.php:41 #: mod/settings.php:58
msgid "Additional features"
msgstr "Дополнительные возможности"
#: ../../mod/settings.php:46
msgid "Display" msgid "Display"
msgstr "" msgstr "Внешний вид"
#: ../../mod/settings.php:52 ../../mod/settings.php:780 #: mod/settings.php:65 mod/settings.php:864
msgid "Social Networks" msgid "Social Networks"
msgstr "" msgstr "Социальные сети"
#: ../../mod/settings.php:62 ../../include/nav.php:170 #: mod/settings.php:79 include/nav.php:180
msgid "Delegations" msgid "Delegations"
msgstr "" msgstr "Делегирование"
#: ../../mod/settings.php:67 #: mod/settings.php:86
msgid "Connected apps" msgid "Connected apps"
msgstr "Подключенные приложения" msgstr "Подключенные приложения"
#: ../../mod/settings.php:72 ../../mod/uexport.php:85 #: mod/settings.php:93 mod/uexport.php:85
msgid "Export personal data" msgid "Export personal data"
msgstr "Экспорт личных данных" msgstr "Экспорт личных данных"
#: ../../mod/settings.php:77 #: mod/settings.php:100
msgid "Remove account" msgid "Remove account"
msgstr "Удалить аккаунт" msgstr "Удалить аккаунт"
#: ../../mod/settings.php:129 #: mod/settings.php:153
msgid "Missing some important data!" msgid "Missing some important data!"
msgstr "Не хватает важных данных!" msgstr "Не хватает важных данных!"
#: ../../mod/settings.php:238 #: mod/settings.php:266
msgid "Failed to connect with email account using the settings provided." msgid "Failed to connect with email account using the settings provided."
msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." msgstr ""
"Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
#: ../../mod/settings.php:243 #: mod/settings.php:271
msgid "Email settings updated." msgid "Email settings updated."
msgstr "Настройки эл. почты обновлены." msgstr "Настройки эл. почты обновлены."
#: ../../mod/settings.php:258 #: mod/settings.php:286
msgid "Features updated" msgid "Features updated"
msgstr "Настройки обновлены" msgstr "Настройки обновлены"
#: ../../mod/settings.php:321 #: mod/settings.php:353
msgid "Relocate message has been send to your contacts" msgid "Relocate message has been send to your contacts"
msgstr "Перемещённое сообщение было отправлено списку контактов" msgstr "Перемещённое сообщение было отправлено списку контактов"
#: ../../mod/settings.php:335 #: mod/settings.php:367 include/user.php:39
msgid "Passwords do not match. Password unchanged." msgid "Passwords do not match. Password unchanged."
msgstr "Пароли не совпадают. Пароль не изменен." msgstr "Пароли не совпадают. Пароль не изменен."
#: ../../mod/settings.php:340 #: mod/settings.php:372
msgid "Empty passwords are not allowed. Password unchanged." msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Пустые пароли не допускаются. Пароль не изменен." msgstr "Пустые пароли не допускаются. Пароль не изменен."
#: ../../mod/settings.php:348 #: mod/settings.php:380
msgid "Wrong password." msgid "Wrong password."
msgstr "Неверный пароль." msgstr "Неверный пароль."
#: ../../mod/settings.php:359 #: mod/settings.php:391
msgid "Password changed." msgid "Password changed."
msgstr "Пароль изменен." msgstr "Пароль изменен."
#: ../../mod/settings.php:361 #: mod/settings.php:393
msgid "Password update failed. Please try again." msgid "Password update failed. Please try again."
msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
#: ../../mod/settings.php:428 #: mod/settings.php:462
msgid " Please use a shorter name." msgid " Please use a shorter name."
msgstr " Пожалуйста, используйте более короткое имя." msgstr " Пожалуйста, используйте более короткое имя."
#: ../../mod/settings.php:430 #: mod/settings.php:464
msgid " Name too short." msgid " Name too short."
msgstr " Имя слишком короткое." msgstr " Имя слишком короткое."
#: ../../mod/settings.php:439 #: mod/settings.php:473
msgid "Wrong Password" msgid "Wrong Password"
msgstr "Неверный пароль." msgstr "Неверный пароль."
#: ../../mod/settings.php:444 #: mod/settings.php:478
msgid " Not valid email." msgid " Not valid email."
msgstr " Неверный e-mail." msgstr " Неверный e-mail."
#: ../../mod/settings.php:450 #: mod/settings.php:484
msgid " Cannot change to that email." msgid " Cannot change to that email."
msgstr " Невозможно изменить на этот e-mail." msgstr " Невозможно изменить на этот e-mail."
#: ../../mod/settings.php:506 #: mod/settings.php:540
msgid "Private forum has no privacy permissions. Using default privacy group." msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию." msgstr ""
"Частный форум не имеет настроек приватности. Используется группа "
"конфиденциальности по умолчанию."
#: ../../mod/settings.php:510 #: mod/settings.php:544
msgid "Private forum has no privacy permissions and no default privacy group." msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию." msgstr ""
"Частный форум не имеет настроек приватности и не имеет групп приватности по "
"умолчанию."
#: ../../mod/settings.php:540 #: mod/settings.php:583
msgid "Settings updated." msgid "Settings updated."
msgstr "Настройки обновлены." msgstr "Настройки обновлены."
#: ../../mod/settings.php:613 ../../mod/settings.php:639 #: mod/settings.php:658 mod/settings.php:684 mod/settings.php:720
#: ../../mod/settings.php:675
msgid "Add application" msgid "Add application"
msgstr "Добавить приложения" msgstr "Добавить приложения"
#: ../../mod/settings.php:617 ../../mod/settings.php:643 #: mod/settings.php:662 mod/settings.php:688
msgid "Consumer Key" msgid "Consumer Key"
msgstr "Consumer Key" msgstr "Consumer Key"
#: ../../mod/settings.php:618 ../../mod/settings.php:644 #: mod/settings.php:663 mod/settings.php:689
msgid "Consumer Secret" msgid "Consumer Secret"
msgstr "Consumer Secret" msgstr "Consumer Secret"
#: ../../mod/settings.php:619 ../../mod/settings.php:645 #: mod/settings.php:664 mod/settings.php:690
msgid "Redirect" msgid "Redirect"
msgstr "Перенаправление" msgstr "Перенаправление"
#: ../../mod/settings.php:620 ../../mod/settings.php:646 #: mod/settings.php:665 mod/settings.php:691
msgid "Icon url" msgid "Icon url"
msgstr "URL символа" msgstr "URL символа"
#: ../../mod/settings.php:631 #: mod/settings.php:676
msgid "You can't edit this application." msgid "You can't edit this application."
msgstr "Вы не можете изменить это приложение." msgstr "Вы не можете изменить это приложение."
#: ../../mod/settings.php:674 #: mod/settings.php:719
msgid "Connected Apps" msgid "Connected Apps"
msgstr "Подключенные приложения" msgstr "Подключенные приложения"
#: ../../mod/settings.php:678 #: mod/settings.php:723
msgid "Client key starts with" msgid "Client key starts with"
msgstr "Ключ клиента начинается с" msgstr "Ключ клиента начинается с"
#: ../../mod/settings.php:679 #: mod/settings.php:724
msgid "No name" msgid "No name"
msgstr "Нет имени" msgstr "Нет имени"
#: ../../mod/settings.php:680 #: mod/settings.php:725
msgid "Remove authorization" msgid "Remove authorization"
msgstr "Удалить авторизацию" msgstr "Удалить авторизацию"
#: ../../mod/settings.php:692 #: mod/settings.php:737
msgid "No Plugin settings configured" msgid "No Plugin settings configured"
msgstr "Нет сконфигурированных настроек плагина" msgstr "Нет сконфигурированных настроек плагина"
#: ../../mod/settings.php:700 #: mod/settings.php:745
msgid "Plugin Settings" msgid "Plugin Settings"
msgstr "Настройки плагина" msgstr "Настройки плагина"
#: ../../mod/settings.php:714 #: mod/settings.php:767
msgid "Off"
msgstr ""
#: ../../mod/settings.php:714
msgid "On"
msgstr ""
#: ../../mod/settings.php:722
msgid "Additional Features" msgid "Additional Features"
msgstr "Дополнительные возможности" msgstr "Дополнительные возможности"
#: ../../mod/settings.php:736 ../../mod/settings.php:737 #: mod/settings.php:777 mod/settings.php:781
msgid "General Social Media Settings"
msgstr ""
#: mod/settings.php:787
msgid "Disable intelligent shortening"
msgstr ""
#: mod/settings.php:789
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the "
"original friendica post."
msgstr ""
#: mod/settings.php:795
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr ""
#: mod/settings.php:797
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr ""
#: mod/settings.php:806
msgid "Your legacy GNU Social account"
msgstr ""
#: mod/settings.php:808
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr ""
#: mod/settings.php:811
msgid "Repair OStatus subscriptions"
msgstr ""
#: mod/settings.php:820 mod/settings.php:821
#, php-format #, php-format
msgid "Built-in support for %s connectivity is %s" msgid "Built-in support for %s connectivity is %s"
msgstr "Встроенная поддержка для %s подключение %s" msgstr "Встроенная поддержка для %s подключение %s"
#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838 #: mod/settings.php:820 mod/dfrn_request.php:865
#: ../../include/contact_selectors.php:80 #: include/contact_selectors.php:80
msgid "Diaspora" msgid "Diaspora"
msgstr "Diaspora" msgstr "Diaspora"
#: ../../mod/settings.php:736 ../../mod/settings.php:737 #: mod/settings.php:820 mod/settings.php:821
msgid "enabled" msgid "enabled"
msgstr "подключено" msgstr "подключено"
#: ../../mod/settings.php:736 ../../mod/settings.php:737 #: mod/settings.php:820 mod/settings.php:821
msgid "disabled" msgid "disabled"
msgstr "отключено" msgstr "отключено"
#: ../../mod/settings.php:737 #: mod/settings.php:821
msgid "StatusNet" msgid "GNU Social (OStatus)"
msgstr "StatusNet" msgstr ""
#: ../../mod/settings.php:773 #: mod/settings.php:857
msgid "Email access is disabled on this site." msgid "Email access is disabled on this site."
msgstr "Доступ эл. почты отключен на этом сайте." msgstr "Доступ эл. почты отключен на этом сайте."
#: ../../mod/settings.php:785 #: mod/settings.php:869
msgid "Email/Mailbox Setup" msgid "Email/Mailbox Setup"
msgstr "Настройка эл. почты / почтового ящика" msgstr "Настройка эл. почты / почтового ящика"
#: ../../mod/settings.php:786 #: mod/settings.php:870
msgid "" msgid ""
"If you wish to communicate with email contacts using this service " "If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox." "(optional), please specify how to connect to your mailbox."
msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." msgstr ""
"Если вы хотите общаться с Email контактами, используя этот сервис (по "
"желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
#: ../../mod/settings.php:787 #: mod/settings.php:871
msgid "Last successful email check:" msgid "Last successful email check:"
msgstr "Последняя успешная проверка электронной почты:" msgstr "Последняя успешная проверка электронной почты:"
#: ../../mod/settings.php:789 #: mod/settings.php:873
msgid "IMAP server name:" msgid "IMAP server name:"
msgstr "Имя IMAP сервера:" msgstr "Имя IMAP сервера:"
#: ../../mod/settings.php:790 #: mod/settings.php:874
msgid "IMAP port:" msgid "IMAP port:"
msgstr "Порт IMAP:" msgstr "Порт IMAP:"
#: ../../mod/settings.php:791 #: mod/settings.php:875
msgid "Security:" msgid "Security:"
msgstr "Безопасность:" msgstr "Безопасность:"
#: ../../mod/settings.php:791 ../../mod/settings.php:796 #: mod/settings.php:875 mod/settings.php:880
msgid "None" msgid "None"
msgstr "Ничего" msgstr "Ничего"
#: ../../mod/settings.php:792 #: mod/settings.php:876
msgid "Email login name:" msgid "Email login name:"
msgstr "Логин эл. почты:" msgstr "Логин эл. почты:"
#: ../../mod/settings.php:793 #: mod/settings.php:877
msgid "Email password:" msgid "Email password:"
msgstr "Пароль эл. почты:" msgstr "Пароль эл. почты:"
#: ../../mod/settings.php:794 #: mod/settings.php:878
msgid "Reply-to address:" msgid "Reply-to address:"
msgstr "Адрес для ответа:" msgstr "Адрес для ответа:"
#: ../../mod/settings.php:795 #: mod/settings.php:879
msgid "Send public posts to all email contacts:" msgid "Send public posts to all email contacts:"
msgstr "Отправлять открытые сообщения на все контакты электронной почты:" msgstr "Отправлять открытые сообщения на все контакты электронной почты:"
#: ../../mod/settings.php:796 #: mod/settings.php:880
msgid "Action after import:" msgid "Action after import:"
msgstr "Действие после импорта:" msgstr "Действие после импорта:"
#: ../../mod/settings.php:796 #: mod/settings.php:880
msgid "Mark as seen" msgid "Mark as seen"
msgstr "Отметить, как прочитанное" msgstr "Отметить, как прочитанное"
#: ../../mod/settings.php:796 #: mod/settings.php:880
msgid "Move to folder" msgid "Move to folder"
msgstr "Переместить в папку" msgstr "Переместить в папку"
#: ../../mod/settings.php:797 #: mod/settings.php:881
msgid "Move to folder:" msgid "Move to folder:"
msgstr "Переместить в папку:" msgstr "Переместить в папку:"
#: ../../mod/settings.php:878 #: mod/settings.php:967
msgid "Display Settings" msgid "Display Settings"
msgstr "Параметры дисплея" msgstr "Параметры дисплея"
#: ../../mod/settings.php:884 ../../mod/settings.php:899 #: mod/settings.php:973 mod/settings.php:991
msgid "Display Theme:" msgid "Display Theme:"
msgstr "Показать тему:" msgstr "Показать тему:"
#: ../../mod/settings.php:885 #: mod/settings.php:974
msgid "Mobile Theme:" msgid "Mobile Theme:"
msgstr "Мобильная тема:" msgstr "Мобильная тема:"
#: ../../mod/settings.php:886 #: mod/settings.php:975
msgid "Update browser every xx seconds" msgid "Update browser every xx seconds"
msgstr "Обновление браузера каждые хх секунд" msgstr "Обновление браузера каждые хх секунд"
#: ../../mod/settings.php:886 #: mod/settings.php:975
msgid "Minimum of 10 seconds, no maximum" msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "Минимум 10 секунд, максимума нет" msgstr ""
#: ../../mod/settings.php:887 #: mod/settings.php:976
msgid "Number of items to display per page:" msgid "Number of items to display per page:"
msgstr "Количество элементов, отображаемых на одной странице:" msgstr "Количество элементов, отображаемых на одной странице:"
#: ../../mod/settings.php:887 ../../mod/settings.php:888 #: mod/settings.php:976 mod/settings.php:977
msgid "Maximum of 100 items" msgid "Maximum of 100 items"
msgstr "Максимум 100 элементов" msgstr "Максимум 100 элементов"
#: ../../mod/settings.php:888 #: mod/settings.php:977
msgid "Number of items to display per page when viewed from mobile device:" msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" msgstr ""
"Количество элементов на странице, когда просмотр осуществляется с мобильных "
"устройств:"
#: ../../mod/settings.php:889 #: mod/settings.php:978
msgid "Don't show emoticons" msgid "Don't show emoticons"
msgstr "не показывать emoticons" msgstr "не показывать emoticons"
#: ../../mod/settings.php:890 #: mod/settings.php:979
msgid "Calendar"
msgstr ""
#: mod/settings.php:980
msgid "Beginning of week:"
msgstr ""
#: mod/settings.php:981
msgid "Don't show notices" msgid "Don't show notices"
msgstr "" msgstr ""
#: ../../mod/settings.php:891 #: mod/settings.php:982
msgid "Infinite scroll" msgid "Infinite scroll"
msgstr "Бесконечная прокрутка" msgstr "Бесконечная прокрутка"
#: ../../mod/settings.php:892 #: mod/settings.php:983
msgid "Automatic updates only at the top of the network page" msgid "Automatic updates only at the top of the network page"
msgstr "" msgstr ""
#: ../../mod/settings.php:969 #: mod/settings.php:985 view/theme/cleanzero/config.php:82
#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66
#: view/theme/diabook/config.php:150 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr "Настройки темы"
#: mod/settings.php:1062
msgid "User Types" msgid "User Types"
msgstr "" msgstr ""
#: ../../mod/settings.php:970 #: mod/settings.php:1063
msgid "Community Types" msgid "Community Types"
msgstr "" msgstr ""
#: ../../mod/settings.php:971 #: mod/settings.php:1064
msgid "Normal Account Page" msgid "Normal Account Page"
msgstr "Стандартная страница аккаунта" msgstr "Стандартная страница аккаунта"
#: ../../mod/settings.php:972 #: mod/settings.php:1065
msgid "This account is a normal personal profile" msgid "This account is a normal personal profile"
msgstr "Этот аккаунт является обычным персональным профилем" msgstr "Этот аккаунт является обычным персональным профилем"
#: ../../mod/settings.php:975 #: mod/settings.php:1068
msgid "Soapbox Page" msgid "Soapbox Page"
msgstr "" msgstr ""
#: ../../mod/settings.php:976 #: mod/settings.php:1069
msgid "Automatically approve all connection/friend requests as read-only fans" msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками" msgstr ""
"Автоматически одобряются все подключения / запросы в друзья, \"только для "
"чтения\" поклонниками"
#: ../../mod/settings.php:979 #: mod/settings.php:1072
msgid "Community Forum/Celebrity Account" msgid "Community Forum/Celebrity Account"
msgstr "Аккаунт сообщества Форум/Знаменитость" msgstr "Аккаунт сообщества Форум/Знаменитость"
#: ../../mod/settings.php:980 #: mod/settings.php:1073
msgid "" msgid "Automatically approve all connection/friend requests as read-write fans"
"Automatically approve all connection/friend requests as read-write fans" msgstr ""
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников" "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и "
"записей\" поклонников"
#: ../../mod/settings.php:983 #: mod/settings.php:1076
msgid "Automatic Friend Page" msgid "Automatic Friend Page"
msgstr "\"Автоматический друг\" страница" msgstr "\"Автоматический друг\" страница"
#: ../../mod/settings.php:984 #: mod/settings.php:1077
msgid "Automatically approve all connection/friend requests as friends" msgid "Automatically approve all connection/friend requests as friends"
msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей" msgstr ""
"Автоматически одобряются все подключения / запросы в друзья, расширяется "
"список друзей"
#: ../../mod/settings.php:987 #: mod/settings.php:1080
msgid "Private Forum [Experimental]" msgid "Private Forum [Experimental]"
msgstr "Личный форум [экспериментально]" msgstr "Личный форум [экспериментально]"
#: ../../mod/settings.php:988 #: mod/settings.php:1081
msgid "Private forum - approved members only" msgid "Private forum - approved members only"
msgstr "Приватный форум - разрешено только участникам" msgstr "Приватный форум - разрешено только участникам"
#: ../../mod/settings.php:1000 #: mod/settings.php:1093
msgid "OpenID:" msgid "OpenID:"
msgstr "OpenID:" msgstr "OpenID:"
#: ../../mod/settings.php:1000 #: mod/settings.php:1093
msgid "(Optional) Allow this OpenID to login to this account." msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
#: ../../mod/settings.php:1010 #: mod/settings.php:1103
msgid "Publish your default profile in your local site directory?" msgid "Publish your default profile in your local site directory?"
msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?" msgstr ""
"Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
#: ../../mod/settings.php:1010 ../../mod/settings.php:1016 #: mod/settings.php:1109
#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
#: ../../mod/register.php:234 ../../mod/profiles.php:661
#: ../../mod/profiles.php:665 ../../mod/api.php:106
msgid "No"
msgstr "Нет"
#: ../../mod/settings.php:1016
msgid "Publish your default profile in the global social directory?" msgid "Publish your default profile in the global social directory?"
msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?" msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
#: ../../mod/settings.php:1024 #: mod/settings.php:1117
msgid "Hide your contact/friend list from viewers of your default profile?" msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?" msgstr ""
"Скрывать ваш список контактов/друзей от посетителей вашего профиля по "
"умолчанию?"
#: ../../mod/settings.php:1028 ../../include/conversation.php:1057 #: mod/settings.php:1121 include/acl_selectors.php:331
msgid "Hide your profile details from unknown viewers?" msgid "Hide your profile details from unknown viewers?"
msgstr "Скрыть данные профиля из неизвестных зрителей?" msgstr "Скрыть данные профиля из неизвестных зрителей?"
#: ../../mod/settings.php:1028 #: mod/settings.php:1121
msgid "" msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't " "If enabled, posting public messages to Diaspora and other networks isn't "
"possible." "possible."
msgstr "" msgstr ""
#: ../../mod/settings.php:1033 #: mod/settings.php:1126
msgid "Allow friends to post to your profile page?" msgid "Allow friends to post to your profile page?"
msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
#: ../../mod/settings.php:1039 #: mod/settings.php:1132
msgid "Allow friends to tag your posts?" msgid "Allow friends to tag your posts?"
msgstr "Разрешить друзьям отмечять ваши сообщения?" msgstr "Разрешить друзьям отмечять ваши сообщения?"
#: ../../mod/settings.php:1045 #: mod/settings.php:1138
msgid "Allow us to suggest you as a potential friend to new members?" msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Позвольть предлогать Вам потенциальных друзей?" msgstr "Позвольть предлогать Вам потенциальных друзей?"
#: ../../mod/settings.php:1051 #: mod/settings.php:1144
msgid "Permit unknown people to send you private mail?" msgid "Permit unknown people to send you private mail?"
msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?" msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?"
#: ../../mod/settings.php:1059 #: mod/settings.php:1152
msgid "Profile is <strong>not published</strong>." msgid "Profile is <strong>not published</strong>."
msgstr "Профиль <strong>не публикуется</strong>." msgstr "Профиль <strong>не публикуется</strong>."
#: ../../mod/settings.php:1067 #: mod/settings.php:1160
msgid "Your Identity Address is" #, php-format
msgstr "Ваш идентификационный адрес" msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
#: ../../mod/settings.php:1078 #: mod/settings.php:1167
msgid "Automatically expire posts after this many days:" msgid "Automatically expire posts after this many days:"
msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
#: ../../mod/settings.php:1078 #: mod/settings.php:1167
msgid "If empty, posts will not expire. Expired posts will be deleted" msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" msgstr ""
"Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим "
"сроком действия будут удалены"
#: ../../mod/settings.php:1079 #: mod/settings.php:1168
msgid "Advanced expiration settings" msgid "Advanced expiration settings"
msgstr "Настройки расширенного окончания срока действия" msgstr "Настройки расширенного окончания срока действия"
#: ../../mod/settings.php:1080 #: mod/settings.php:1169
msgid "Advanced Expiration" msgid "Advanced Expiration"
msgstr "Расширенное окончание срока действия" msgstr "Расширенное окончание срока действия"
#: ../../mod/settings.php:1081 #: mod/settings.php:1170
msgid "Expire posts:" msgid "Expire posts:"
msgstr "Срок хранения сообщений:" msgstr "Срок хранения сообщений:"
#: ../../mod/settings.php:1082 #: mod/settings.php:1171
msgid "Expire personal notes:" msgid "Expire personal notes:"
msgstr "Срок хранения личных заметок:" msgstr "Срок хранения личных заметок:"
#: ../../mod/settings.php:1083 #: mod/settings.php:1172
msgid "Expire starred posts:" msgid "Expire starred posts:"
msgstr "Срок хранения усеянных сообщений:" msgstr "Срок хранения усеянных сообщений:"
#: ../../mod/settings.php:1084 #: mod/settings.php:1173
msgid "Expire photos:" msgid "Expire photos:"
msgstr "Срок хранения фотографий:" msgstr "Срок хранения фотографий:"
#: ../../mod/settings.php:1085 #: mod/settings.php:1174
msgid "Only expire posts by others:" msgid "Only expire posts by others:"
msgstr "Только устаревшие посты других:" msgstr "Только устаревшие посты других:"
#: ../../mod/settings.php:1111 #: mod/settings.php:1202
msgid "Account Settings" msgid "Account Settings"
msgstr "Настройки аккаунта" msgstr "Настройки аккаунта"
#: ../../mod/settings.php:1119 #: mod/settings.php:1210
msgid "Password Settings" msgid "Password Settings"
msgstr "Настройка пароля" msgstr "Смена пароля"
#: ../../mod/settings.php:1120 #: mod/settings.php:1211 mod/register.php:274
msgid "New Password:" msgid "New Password:"
msgstr "Новый пароль:" msgstr "Новый пароль:"
#: ../../mod/settings.php:1121 #: mod/settings.php:1212 mod/register.php:275
msgid "Confirm:" msgid "Confirm:"
msgstr "Подтвердите:" msgstr "Подтвердите:"
#: ../../mod/settings.php:1121 #: mod/settings.php:1212
msgid "Leave password fields blank unless changing" msgid "Leave password fields blank unless changing"
msgstr "Оставьте поля пароля пустыми, если он не изменяется" msgstr "Оставьте поля пароля пустыми, если он не изменяется"
#: ../../mod/settings.php:1122 #: mod/settings.php:1213
msgid "Current Password:" msgid "Current Password:"
msgstr "Текущий пароль:" msgstr "Текущий пароль:"
#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 #: mod/settings.php:1213 mod/settings.php:1214
msgid "Your current password to confirm the changes" msgid "Your current password to confirm the changes"
msgstr "Ваш текущий пароль, для подтверждения изменений" msgstr "Ваш текущий пароль, для подтверждения изменений"
#: ../../mod/settings.php:1123 #: mod/settings.php:1214
msgid "Password:" msgid "Password:"
msgstr "Пароль:" msgstr "Пароль:"
#: ../../mod/settings.php:1127 #: mod/settings.php:1218
msgid "Basic Settings" msgid "Basic Settings"
msgstr "Основные параметры" msgstr "Основные параметры"
#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15 #: mod/settings.php:1219 include/identity.php:588
msgid "Full Name:" msgid "Full Name:"
msgstr "Полное имя:" msgstr "Полное имя:"
#: ../../mod/settings.php:1129 #: mod/settings.php:1220
msgid "Email Address:" msgid "Email Address:"
msgstr "Адрес электронной почты:" msgstr "Адрес электронной почты:"
#: ../../mod/settings.php:1130 #: mod/settings.php:1221
msgid "Your Timezone:" msgid "Your Timezone:"
msgstr "Ваш часовой пояс:" msgstr "Ваш часовой пояс:"
#: ../../mod/settings.php:1131 #: mod/settings.php:1222
msgid "Your Language:"
msgstr ""
#: mod/settings.php:1222
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr ""
#: mod/settings.php:1223
msgid "Default Post Location:" msgid "Default Post Location:"
msgstr "Местонахождение по умолчанию:" msgstr "Местонахождение по умолчанию:"
#: ../../mod/settings.php:1132 #: mod/settings.php:1224
msgid "Use Browser Location:" msgid "Use Browser Location:"
msgstr "Использовать определение местоположения браузером:" msgstr "Использовать определение местоположения браузером:"
#: ../../mod/settings.php:1135 #: mod/settings.php:1227
msgid "Security and Privacy Settings" msgid "Security and Privacy Settings"
msgstr "Параметры безопасности и конфиденциальности" msgstr "Параметры безопасности и конфиденциальности"
#: ../../mod/settings.php:1137 #: mod/settings.php:1229
msgid "Maximum Friend Requests/Day:" msgid "Maximum Friend Requests/Day:"
msgstr "Максимум запросов в друзья в день:" msgstr "Максимум запросов в друзья в день:"
#: ../../mod/settings.php:1137 ../../mod/settings.php:1167 #: mod/settings.php:1229 mod/settings.php:1259
msgid "(to prevent spam abuse)" msgid "(to prevent spam abuse)"
msgstr "(для предотвращения спама)" msgstr "(для предотвращения спама)"
#: ../../mod/settings.php:1138 #: mod/settings.php:1230
msgid "Default Post Permissions" msgid "Default Post Permissions"
msgstr "Разрешение на сообщения по умолчанию" msgstr "Разрешение на сообщения по умолчанию"
#: ../../mod/settings.php:1139 #: mod/settings.php:1231
msgid "(click to open/close)" msgid "(click to open/close)"
msgstr "(нажмите, чтобы открыть / закрыть)" msgstr "(нажмите, чтобы открыть / закрыть)"
#: ../../mod/settings.php:1148 ../../mod/photos.php:1146 #: mod/settings.php:1240 mod/photos.php:1199 mod/photos.php:1584
#: ../../mod/photos.php:1519
msgid "Show to Groups" msgid "Show to Groups"
msgstr "Показать в группах" msgstr "Показать в группах"
#: ../../mod/settings.php:1149 ../../mod/photos.php:1147 #: mod/settings.php:1241 mod/photos.php:1200 mod/photos.php:1585
#: ../../mod/photos.php:1520
msgid "Show to Contacts" msgid "Show to Contacts"
msgstr "Показывать контактам" msgstr "Показывать контактам"
#: ../../mod/settings.php:1150 #: mod/settings.php:1242
msgid "Default Private Post" msgid "Default Private Post"
msgstr "Личное сообщение по умолчанию" msgstr "Личное сообщение по умолчанию"
#: ../../mod/settings.php:1151 #: mod/settings.php:1243
msgid "Default Public Post" msgid "Default Public Post"
msgstr "Публичное сообщение по умолчанию" msgstr "Публичное сообщение по умолчанию"
#: ../../mod/settings.php:1155 #: mod/settings.php:1247
msgid "Default Permissions for New Posts" msgid "Default Permissions for New Posts"
msgstr "Права для новых записей по умолчанию" msgstr "Права для новых записей по умолчанию"
#: ../../mod/settings.php:1167 #: mod/settings.php:1259
msgid "Maximum private messages per day from unknown people:" msgid "Maximum private messages per day from unknown people:"
msgstr "Максимальное количество личных сообщений от незнакомых людей в день:" msgstr "Максимальное количество личных сообщений от незнакомых людей в день:"
#: ../../mod/settings.php:1170 #: mod/settings.php:1262
msgid "Notification Settings" msgid "Notification Settings"
msgstr "Настройка уведомлений" msgstr "Настройка уведомлений"
#: ../../mod/settings.php:1171 #: mod/settings.php:1263
msgid "By default post a status message when:" msgid "By default post a status message when:"
msgstr "Отправить состояние о статусе по умолчанию, если:" msgstr "Отправить состояние о статусе по умолчанию, если:"
#: ../../mod/settings.php:1172 #: mod/settings.php:1264
msgid "accepting a friend request" msgid "accepting a friend request"
msgstr "принятие запроса на добавление в друзья" msgstr "принятие запроса на добавление в друзья"
#: ../../mod/settings.php:1173 #: mod/settings.php:1265
msgid "joining a forum/community" msgid "joining a forum/community"
msgstr "вступление в сообщество/форум" msgstr "вступление в сообщество/форум"
#: ../../mod/settings.php:1174 #: mod/settings.php:1266
msgid "making an <em>interesting</em> profile change" msgid "making an <em>interesting</em> profile change"
msgstr "сделать изменения в <em>настройках интересов</em> профиля" msgstr "сделать изменения в <em>настройках интересов</em> профиля"
#: ../../mod/settings.php:1175 #: mod/settings.php:1267
msgid "Send a notification email when:" msgid "Send a notification email when:"
msgstr "Отправлять уведомление по электронной почте, когда:" msgstr "Отправлять уведомление по электронной почте, когда:"
#: ../../mod/settings.php:1176 #: mod/settings.php:1268
msgid "You receive an introduction" msgid "You receive an introduction"
msgstr "Вы получили запрос" msgstr "Вы получили запрос"
#: ../../mod/settings.php:1177 #: mod/settings.php:1269
msgid "Your introductions are confirmed" msgid "Your introductions are confirmed"
msgstr "Ваши запросы подтверждены" msgstr "Ваши запросы подтверждены"
#: ../../mod/settings.php:1178 #: mod/settings.php:1270
msgid "Someone writes on your profile wall" msgid "Someone writes on your profile wall"
msgstr "Кто-то пишет на стене вашего профиля" msgstr "Кто-то пишет на стене вашего профиля"
#: ../../mod/settings.php:1179 #: mod/settings.php:1271
msgid "Someone writes a followup comment" msgid "Someone writes a followup comment"
msgstr "Кто-то пишет последующий комментарий" msgstr "Кто-то пишет последующий комментарий"
#: ../../mod/settings.php:1180 #: mod/settings.php:1272
msgid "You receive a private message" msgid "You receive a private message"
msgstr "Вы получаете личное сообщение" msgstr "Вы получаете личное сообщение"
#: ../../mod/settings.php:1181 #: mod/settings.php:1273
msgid "You receive a friend suggestion" msgid "You receive a friend suggestion"
msgstr "Вы полулили предложение о добавлении в друзья" msgstr "Вы полулили предложение о добавлении в друзья"
#: ../../mod/settings.php:1182 #: mod/settings.php:1274
msgid "You are tagged in a post" msgid "You are tagged in a post"
msgstr "Вы отмечены в посте" msgstr "Вы отмечены в посте"
#: ../../mod/settings.php:1183 #: mod/settings.php:1275
msgid "You are poked/prodded/etc. in a post" msgid "You are poked/prodded/etc. in a post"
msgstr "" msgstr ""
#: ../../mod/settings.php:1185 #: mod/settings.php:1277
msgid "Activate desktop notifications"
msgstr ""
#: mod/settings.php:1277
msgid "Show desktop popup on new notifications"
msgstr ""
#: mod/settings.php:1279
msgid "Text-only notification emails" msgid "Text-only notification emails"
msgstr "" msgstr ""
#: ../../mod/settings.php:1187 #: mod/settings.php:1281
msgid "Send text only notification emails, without the html part" msgid "Send text only notification emails, without the html part"
msgstr "" msgstr ""
#: ../../mod/settings.php:1189 #: mod/settings.php:1283
msgid "Advanced Account/Page Type Settings" msgid "Advanced Account/Page Type Settings"
msgstr "Расширенные настройки типа аккаунта/страницы" msgstr "Расширенные настройки учётной записи"
#: ../../mod/settings.php:1190 #: mod/settings.php:1284
msgid "Change the behaviour of this account for special situations" msgid "Change the behaviour of this account for special situations"
msgstr "Измените поведение этого аккаунта в специальных ситуациях" msgstr "Измените поведение этого аккаунта в специальных ситуациях"
#: ../../mod/settings.php:1193 #: mod/settings.php:1287
msgid "Relocate" msgid "Relocate"
msgstr "Переместить" msgstr "Перемещение"
#: ../../mod/settings.php:1194 #: mod/settings.php:1288
msgid "" msgid ""
"If you have moved this profile from another server, and some of your " "If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button." "contacts don't receive your updates, try pushing this button."
msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку." msgstr ""
"Если вы переместили эту анкету с другого сервера, и некоторые из ваших "
"контактов не получили ваши обновления, попробуйте нажать эту кнопку."
#: ../../mod/settings.php:1195 #: mod/settings.php:1289
msgid "Resend relocate message to contacts" msgid "Resend relocate message to contacts"
msgstr "Отправить перемещённые сообщения контактам" msgstr "Отправить перемещённые сообщения контактам"
#: ../../mod/dfrn_request.php:95 #: mod/dfrn_request.php:96
msgid "This introduction has already been accepted." msgid "This introduction has already been accepted."
msgstr "Этот запрос был уже принят." msgstr "Этот запрос был уже принят."
#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518 #: mod/dfrn_request.php:119 mod/dfrn_request.php:516
msgid "Profile location is not valid or does not contain profile information." msgid "Profile location is not valid or does not contain profile information."
msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле." msgstr ""
"Местоположение профиля является недопустимым или не содержит информацию о "
"профиле."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523 #: mod/dfrn_request.php:124 mod/dfrn_request.php:521
msgid "Warning: profile location has no identifiable owner name." msgid "Warning: profile location has no identifiable owner name."
msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца." msgstr ""
"Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525 #: mod/dfrn_request.php:126 mod/dfrn_request.php:523
msgid "Warning: profile location has no profile photo." msgid "Warning: profile location has no profile photo."
msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля." msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528 #: mod/dfrn_request.php:129 mod/dfrn_request.php:526
#, php-format #, php-format
msgid "%d required parameter was not found at the given location" msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location" msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d требуемый параметр не был найден в заданном месте" msgstr[0] "%d требуемый параметр не был найден в заданном месте"
msgstr[1] "%d требуемых параметров не были найдены в заданном месте" msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
msgstr[2] "%d требуемых параметров не были найдены в заданном месте" msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
msgstr[3] "%d требуемых параметров не были найдены в заданном месте"
#: ../../mod/dfrn_request.php:172 #: mod/dfrn_request.php:172
msgid "Introduction complete." msgid "Introduction complete."
msgstr "Запрос создан." msgstr "Запрос создан."
#: ../../mod/dfrn_request.php:214 #: mod/dfrn_request.php:214
msgid "Unrecoverable protocol error." msgid "Unrecoverable protocol error."
msgstr "Неисправимая ошибка протокола." msgstr "Неисправимая ошибка протокола."
#: ../../mod/dfrn_request.php:242 #: mod/dfrn_request.php:242
msgid "Profile unavailable." msgid "Profile unavailable."
msgstr "Профиль недоступен." msgstr "Профиль недоступен."
#: ../../mod/dfrn_request.php:267 #: mod/dfrn_request.php:267
#, php-format #, php-format
msgid "%s has received too many connection requests today." msgid "%s has received too many connection requests today."
msgstr "К %s пришло сегодня слишком много запросов на подключение." msgstr "К %s пришло сегодня слишком много запросов на подключение."
#: ../../mod/dfrn_request.php:268 #: mod/dfrn_request.php:268
msgid "Spam protection measures have been invoked." msgid "Spam protection measures have been invoked."
msgstr "Были применены меры защиты от спама." msgstr "Были применены меры защиты от спама."
#: ../../mod/dfrn_request.php:269 #: mod/dfrn_request.php:269
msgid "Friends are advised to please try again in 24 hours." msgid "Friends are advised to please try again in 24 hours."
msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа." msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
#: ../../mod/dfrn_request.php:331 #: mod/dfrn_request.php:331
msgid "Invalid locator" msgid "Invalid locator"
msgstr "Недопустимый локатор" msgstr "Недопустимый локатор"
#: ../../mod/dfrn_request.php:340 #: mod/dfrn_request.php:340
msgid "Invalid email address." msgid "Invalid email address."
msgstr "Неверный адрес электронной почты." msgstr "Неверный адрес электронной почты."
#: ../../mod/dfrn_request.php:367 #: mod/dfrn_request.php:367
msgid "This account has not been configured for email. Request failed." msgid "This account has not been configured for email. Request failed."
msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался." msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался."
#: ../../mod/dfrn_request.php:463 #: mod/dfrn_request.php:474
msgid "Unable to resolve your name at the provided location."
msgstr "Не удается установить ваше имя на предложенном местоположении."
#: ../../mod/dfrn_request.php:476
msgid "You have already introduced yourself here." msgid "You have already introduced yourself here."
msgstr "Вы уже ввели информацию о себе здесь." msgstr "Вы уже ввели информацию о себе здесь."
#: ../../mod/dfrn_request.php:480 #: mod/dfrn_request.php:478
#, php-format #, php-format
msgid "Apparently you are already friends with %s." msgid "Apparently you are already friends with %s."
msgstr "Похоже, что вы уже друзья с %s." msgstr "Похоже, что вы уже друзья с %s."
#: ../../mod/dfrn_request.php:501 #: mod/dfrn_request.php:499
msgid "Invalid profile URL." msgid "Invalid profile URL."
msgstr "Неверный URL профиля." msgstr "Неверный URL профиля."
#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27 #: mod/dfrn_request.php:505 include/follow.php:72
msgid "Disallowed profile URL." msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля." msgstr "Запрещенный URL профиля."
#: ../../mod/dfrn_request.php:597 #: mod/dfrn_request.php:596
msgid "Your introduction has been sent." msgid "Your introduction has been sent."
msgstr "Ваш запрос отправлен." msgstr "Ваш запрос отправлен."
#: ../../mod/dfrn_request.php:650 #: mod/dfrn_request.php:636
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
#: mod/dfrn_request.php:659
msgid "Please login to confirm introduction." msgid "Please login to confirm introduction."
msgstr "Для подтверждения запроса войдите пожалуйста с паролем." msgstr "Для подтверждения запроса войдите пожалуйста с паролем."
#: ../../mod/dfrn_request.php:660 #: mod/dfrn_request.php:669
msgid "" msgid ""
"Incorrect identity currently logged in. Please login to " "Incorrect identity currently logged in. Please login to <strong>this</"
"<strong>this</strong> profile." "strong> profile."
msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль." msgstr ""
"Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> "
"профиль."
#: ../../mod/dfrn_request.php:671 #: mod/dfrn_request.php:683 mod/dfrn_request.php:700
msgid "Confirm"
msgstr "Подтвердить"
#: mod/dfrn_request.php:695
msgid "Hide this contact" msgid "Hide this contact"
msgstr "Скрыть этот контакт" msgstr "Скрыть этот контакт"
#: ../../mod/dfrn_request.php:674 #: mod/dfrn_request.php:698
#, php-format #, php-format
msgid "Welcome home %s." msgid "Welcome home %s."
msgstr "Добро пожаловать домой, %s!" msgstr "Добро пожаловать домой, %s!"
#: ../../mod/dfrn_request.php:675 #: mod/dfrn_request.php:699
#, php-format #, php-format
msgid "Please confirm your introduction/connection request to %s." msgid "Please confirm your introduction/connection request to %s."
msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s." msgstr ""
"Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
#: ../../mod/dfrn_request.php:676 #: mod/dfrn_request.php:828
msgid "Confirm"
msgstr "Подтвердить"
#: ../../mod/dfrn_request.php:804
msgid "" msgid ""
"Please enter your 'Identity Address' from one of the following supported " "Please enter your 'Identity Address' from one of the following supported "
"communications networks:" "communications networks:"
msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:" msgstr ""
"Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих "
"поддерживаемых социальных сетей:"
#: ../../mod/dfrn_request.php:824 #: mod/dfrn_request.php:849
#, php-format
msgid "" msgid ""
"If you are not yet a member of the free social web, <a " "If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public" "\">follow this link to find a public Friendica site and join us today</a>."
" Friendica site and join us today</a>." msgstr ""
msgstr "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"http://dir.friendica.com/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>."
#: ../../mod/dfrn_request.php:827 #: mod/dfrn_request.php:854
msgid "Friend/Connection Request" msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение" msgstr "Запрос в друзья / на подключение"
#: ../../mod/dfrn_request.php:828 #: mod/dfrn_request.php:855
msgid "" msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca" "testuser@identi.ca"
msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" msgstr ""
"Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
#: ../../mod/dfrn_request.php:829 #: mod/dfrn_request.php:863 include/contact_selectors.php:76
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: ../../mod/dfrn_request.php:830
#, php-format
msgid "Does %s know you?"
msgstr "%s знает вас?"
#: ../../mod/dfrn_request.php:834
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
msgid "Friendica" msgid "Friendica"
msgstr "Friendica" msgstr "Friendica"
#: ../../mod/dfrn_request.php:837 #: mod/dfrn_request.php:864
msgid "StatusNet/Federated Social Web" msgid "StatusNet/Federated Social Web"
msgstr "StatusNet / Federated Social Web" msgstr "StatusNet / Federated Social Web"
#: ../../mod/dfrn_request.php:839 #: mod/dfrn_request.php:866
#, php-format #, php-format
msgid "" msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search" " - please do not use this form. Instead, enter %s into your Diaspora search "
" bar." "bar."
msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora" msgstr ""
"Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо "
"этого введите %s в строке поиска Diaspora"
#: ../../mod/dfrn_request.php:840 #: mod/register.php:92
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: ../../mod/dfrn_request.php:843
msgid "Submit Request"
msgstr "Отправить запрос"
#: ../../mod/register.php:90
msgid "" msgid ""
"Registration successful. Please check your email for further instructions." "Registration successful. Please check your email for further instructions."
msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций." msgstr ""
"Регистрация успешна. Пожалуйста, проверьте свою электронную почту для "
"получения дальнейших инструкций."
#: ../../mod/register.php:96 #: mod/register.php:97
#, php-format #, php-format
msgid "" msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> " "Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login." "password: %s<br><br>You can change your password after login."
msgstr "" msgstr ""
#: ../../mod/register.php:105 #: mod/register.php:104
msgid "Registration successful."
msgstr ""
#: mod/register.php:110
msgid "Your registration can not be processed." msgid "Your registration can not be processed."
msgstr "Ваша регистрация не может быть обработана." msgstr "Ваша регистрация не может быть обработана."
#: ../../mod/register.php:148 #: mod/register.php:153
msgid "Your registration is pending approval by the site owner." msgid "Your registration is pending approval by the site owner."
msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
#: ../../mod/register.php:186 ../../mod/uimport.php:50 #: mod/register.php:191 mod/uimport.php:50
msgid "" msgid ""
"This site has exceeded the number of allowed daily account registrations. " "This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow." "Please try again tomorrow."
msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." msgstr ""
"Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, "
"повторите попытку завтра."
#: ../../mod/register.php:214 #: mod/register.php:219
msgid "" msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID " "You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'." "and clicking 'Register'."
msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"." msgstr ""
"Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая "
"ваш OpenID и нажав клавишу \"Регистрация\"."
#: ../../mod/register.php:215 #: mod/register.php:220
msgid "" msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill " "If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items." "in the rest of the items."
msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы." msgstr ""
"Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и "
"заполните остальные элементы."
#: ../../mod/register.php:216 #: mod/register.php:221
msgid "Your OpenID (optional): " msgid "Your OpenID (optional): "
msgstr "Ваш OpenID (необязательно):" msgstr "Ваш OpenID (необязательно):"
#: ../../mod/register.php:230 #: mod/register.php:235
msgid "Include your profile in member directory?" msgid "Include your profile in member directory?"
msgstr "Включить ваш профиль в каталог участников?" msgstr "Включить ваш профиль в каталог участников?"
#: ../../mod/register.php:251 #: mod/register.php:259
msgid "Membership on this site is by invitation only." msgid "Membership on this site is by invitation only."
msgstr "Членство на сайте только по приглашению." msgstr "Членство на сайте только по приглашению."
#: ../../mod/register.php:252 #: mod/register.php:260
msgid "Your invitation ID: " msgid "Your invitation ID: "
msgstr "ID вашего приглашения:" msgstr "ID вашего приглашения:"
#: ../../mod/register.php:263 #: mod/register.php:271
msgid "Your Full Name (e.g. Joe Smith): " msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr "Ваше полное имя (например, Joe Smith): " msgstr ""
#: ../../mod/register.php:264 #: mod/register.php:272
msgid "Your Email Address: " msgid "Your Email Address: "
msgstr "Ваш адрес электронной почты: " msgstr "Ваш адрес электронной почты: "
#: ../../mod/register.php:265 #: mod/register.php:274
msgid "Leave empty for an auto generated password."
msgstr ""
#: mod/register.php:276
msgid "" msgid ""
"Choose a profile nickname. This must begin with a text character. Your " "Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be " "profile address on this site will then be '<strong>nickname@$sitename</"
"'<strong>nickname@$sitename</strong>'." "strong>'."
msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'." msgstr ""
"Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля "
"на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
#: ../../mod/register.php:266 #: mod/register.php:277
msgid "Choose a nickname: " msgid "Choose a nickname: "
msgstr "Выберите псевдоним: " msgstr "Выберите псевдоним: "
#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109 #: mod/register.php:280 boot.php:1405 include/nav.php:108
msgid "Register" msgid "Register"
msgstr "Регистрация" msgstr "Регистрация"
#: ../../mod/register.php:275 ../../mod/uimport.php:64 #: mod/register.php:286 mod/uimport.php:64
msgid "Import" msgid "Import"
msgstr "Импорт" msgstr "Импорт"
#: ../../mod/register.php:276 #: mod/register.php:287
msgid "Import your profile to this friendica instance" msgid "Import your profile to this friendica instance"
msgstr "Импорт своего профиля в этот экземпляр friendica" msgstr "Импорт своего профиля в этот экземпляр friendica"
#: ../../mod/maintenance.php:5 #: mod/maintenance.php:5
msgid "System down for maintenance" msgid "System down for maintenance"
msgstr "Система закрыта на техническое обслуживание" msgstr "Система закрыта на техническое обслуживание"
#: ../../mod/search.php:99 ../../include/text.php:953 #: mod/search.php:100
#: ../../include/text.php:954 ../../include/nav.php:119 msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/search.php:124
msgid "Too Many Requests"
msgstr ""
#: mod/search.php:125
msgid "Only one search per minute is permitted for not logged in users."
msgstr ""
#: mod/search.php:136 include/text.php:1003 include/nav.php:118
msgid "Search" msgid "Search"
msgstr "Поиск" msgstr "Поиск"
#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525 #: mod/search.php:234
msgid "Global Directory" #, php-format
msgstr "Глобальный каталог" msgid "Items tagged with: %s"
msgstr ""
#: ../../mod/directory.php:59 #: mod/search.php:236
msgid "Find on this site" #, php-format
msgstr "Найти на этом сайте" msgid "Search results for: %s"
msgstr ""
#: ../../mod/directory.php:62 #: mod/directory.php:149 include/identity.php:313 include/identity.php:610
msgid "Site Directory"
msgstr "Каталог сайта"
#: ../../mod/directory.php:113 ../../mod/profiles.php:750
msgid "Age: "
msgstr "Возраст: "
#: ../../mod/directory.php:116
msgid "Gender: "
msgstr "Пол: "
#: ../../mod/directory.php:138 ../../boot.php:1650
#: ../../include/profile_advanced.php:17
msgid "Gender:"
msgstr "Пол:"
#: ../../mod/directory.php:140 ../../boot.php:1653
#: ../../include/profile_advanced.php:37
msgid "Status:" msgid "Status:"
msgstr "Статус:" msgstr "Статус:"
#: ../../mod/directory.php:142 ../../boot.php:1655 #: mod/directory.php:151 include/identity.php:315 include/identity.php:621
#: ../../include/profile_advanced.php:48
msgid "Homepage:" msgid "Homepage:"
msgstr "Домашняя страничка:" msgstr "Домашняя страничка:"
#: ../../mod/directory.php:144 ../../boot.php:1657 #: mod/directory.php:203 view/theme/diabook/theme.php:525
#: ../../include/profile_advanced.php:58 #: view/theme/vier/theme.php:205
msgid "About:" msgid "Global Directory"
msgstr "О себе:" msgstr "Глобальный каталог"
#: ../../mod/directory.php:189 #: mod/directory.php:205
msgid "Find on this site"
msgstr "Найти на этом сайте"
#: mod/directory.php:207
msgid "Finding:"
msgstr ""
#: mod/directory.php:209
msgid "Site Directory"
msgstr "Каталог сайта"
#: mod/directory.php:216
msgid "No entries (some entries may be hidden)." msgid "No entries (some entries may be hidden)."
msgstr "Нет записей (некоторые записи могут быть скрыты)." msgstr "Нет записей (некоторые записи могут быть скрыты)."
#: ../../mod/delegate.php:101 #: mod/delegate.php:101
msgid "No potential page delegates located." msgid "No potential page delegates located."
msgstr "" msgstr ""
#: ../../mod/delegate.php:130 ../../include/nav.php:170 #: mod/delegate.php:130 include/nav.php:180
msgid "Delegate Page Management" msgid "Delegate Page Management"
msgstr "Делегировать управление страницей" msgstr "Делегировать управление страницей"
#: ../../mod/delegate.php:132 #: mod/delegate.php:132
msgid "" msgid ""
"Delegates are able to manage all aspects of this account/page except for " "Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to " "basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely." "anybody that you do not trust completely."
msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете." msgstr ""
"Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за "
"исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ "
"в личный кабинет тому, кому вы не полностью доверяете."
#: ../../mod/delegate.php:133 #: mod/delegate.php:133
msgid "Existing Page Managers" msgid "Existing Page Managers"
msgstr "Существующие менеджеры страницы" msgstr "Существующие менеджеры страницы"
#: ../../mod/delegate.php:135 #: mod/delegate.php:135
msgid "Existing Page Delegates" msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы" msgstr "Существующие уполномоченные страницы"
#: ../../mod/delegate.php:137 #: mod/delegate.php:137
msgid "Potential Delegates" msgid "Potential Delegates"
msgstr "Возможные доверенные лица" msgstr "Возможные доверенные лица"
#: ../../mod/delegate.php:140 #: mod/delegate.php:140
msgid "Add" msgid "Add"
msgstr "Добавить" msgstr "Добавить"
#: ../../mod/delegate.php:141 #: mod/delegate.php:141
msgid "No entries." msgid "No entries."
msgstr "Нет записей." msgstr "Нет записей."
#: ../../mod/common.php:42 #: mod/common.php:86
msgid "Common Friends"
msgstr "Общие друзья"
#: ../../mod/common.php:78
msgid "No contacts in common." msgid "No contacts in common."
msgstr "Нет общих контактов." msgstr "Нет общих контактов."
#: ../../mod/uexport.php:77 #: mod/uexport.php:77
msgid "Export account" msgid "Export account"
msgstr "Экспорт аккаунта" msgstr "Экспорт аккаунта"
#: ../../mod/uexport.php:77 #: mod/uexport.php:77
msgid "" msgid ""
"Export your account info and contacts. Use this to make a backup of your " "Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server." "account and/or to move it to another server."
msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер." msgstr ""
"Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать "
"резервную копию вашего аккаунта и/или переместить его на другой сервер."
#: ../../mod/uexport.php:78 #: mod/uexport.php:78
msgid "Export all" msgid "Export all"
msgstr "Экспорт всего" msgstr "Экспорт всего"
#: ../../mod/uexport.php:78 #: mod/uexport.php:78
msgid "" msgid ""
"Export your accout info, contacts and all your items as json. Could be a " "Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup " "very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)" "of your account (photos are not exported)"
msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)" msgstr ""
"Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как "
"JSON. Может получиться очень большой файл и это может занять много времени. "
"Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не "
"экспортируются)"
#: ../../mod/mood.php:62 ../../include/conversation.php:227 #: mod/mood.php:62 include/conversation.php:239
#, php-format #, php-format
msgid "%1$s is currently %2$s" msgid "%1$s is currently %2$s"
msgstr "" msgstr ""
#: ../../mod/mood.php:133 #: mod/mood.php:133
msgid "Mood" msgid "Mood"
msgstr "Настроение" msgstr "Настроение"
#: ../../mod/mood.php:134 #: mod/mood.php:134
msgid "Set your current mood and tell your friends" msgid "Set your current mood and tell your friends"
msgstr "Напишите о вашем настроении и расскажите своим друзьям" msgstr "Напишите о вашем настроении и расскажите своим друзьям"
#: ../../mod/suggest.php:27 #: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?" msgid "Do you really want to delete this suggestion?"
msgstr "Вы действительно хотите удалить это предложение?" msgstr "Вы действительно хотите удалить это предложение?"
#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35 #: mod/suggest.php:71
#: ../../view/theme/diabook/theme.php:527
msgid "Friend Suggestions"
msgstr "Предложения друзей"
#: ../../mod/suggest.php:74
msgid "" msgid ""
"No suggestions available. If this is a new site, please try again in 24 " "No suggestions available. If this is a new site, please try again in 24 "
"hours." "hours."
msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." msgstr ""
"Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 "
"часа."
#: ../../mod/suggest.php:92 #: mod/suggest.php:83 mod/suggest.php:101
msgid "Ignore/Hide" msgid "Ignore/Hide"
msgstr "Проигнорировать/Скрыть" msgstr "Проигнорировать/Скрыть"
#: ../../mod/profiles.php:37 #: mod/suggest.php:111 include/contact_widgets.php:35
#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:207
msgid "Friend Suggestions"
msgstr "Предложения друзей"
#: mod/profiles.php:37
msgid "Profile deleted." msgid "Profile deleted."
msgstr "Профиль удален." msgstr "Профиль удален."
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 #: mod/profiles.php:55 mod/profiles.php:89
msgid "Profile-" msgid "Profile-"
msgstr "Профиль-" msgstr "Профиль-"
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 #: mod/profiles.php:74 mod/profiles.php:117
msgid "New profile created." msgid "New profile created."
msgstr "Новый профиль создан." msgstr "Новый профиль создан."
#: ../../mod/profiles.php:95 #: mod/profiles.php:95
msgid "Profile unavailable to clone." msgid "Profile unavailable to clone."
msgstr "Профиль недоступен для клонирования." msgstr "Профиль недоступен для клонирования."
#: ../../mod/profiles.php:189 #: mod/profiles.php:189
msgid "Profile Name is required." msgid "Profile Name is required."
msgstr "Необходимо имя профиля." msgstr "Необходимо имя профиля."
#: ../../mod/profiles.php:340 #: mod/profiles.php:336
msgid "Marital Status" msgid "Marital Status"
msgstr "Семейное положение" msgstr "Семейное положение"
#: ../../mod/profiles.php:344 #: mod/profiles.php:340
msgid "Romantic Partner" msgid "Romantic Partner"
msgstr "Любимый человек" msgstr "Любимый человек"
#: ../../mod/profiles.php:348 #: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508
msgid "Likes" msgid "Likes"
msgstr "Лайки" msgstr "Лайки"
#: ../../mod/profiles.php:352 #: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508
msgid "Dislikes" msgid "Dislikes"
msgstr "Дизлайк" msgstr "Дизлайк"
#: ../../mod/profiles.php:356 #: mod/profiles.php:352
msgid "Work/Employment" msgid "Work/Employment"
msgstr "Работа/Занятость" msgstr "Работа/Занятость"
#: ../../mod/profiles.php:359 #: mod/profiles.php:355
msgid "Religion" msgid "Religion"
msgstr "Религия" msgstr "Религия"
#: ../../mod/profiles.php:363 #: mod/profiles.php:359
msgid "Political Views" msgid "Political Views"
msgstr "Политические взгляды" msgstr "Политические взгляды"
#: ../../mod/profiles.php:367 #: mod/profiles.php:363
msgid "Gender" msgid "Gender"
msgstr "Пол" msgstr "Пол"
#: ../../mod/profiles.php:371 #: mod/profiles.php:367
msgid "Sexual Preference" msgid "Sexual Preference"
msgstr "Сексуальные предпочтения" msgstr "Сексуальные предпочтения"
#: ../../mod/profiles.php:375 #: mod/profiles.php:371
msgid "Homepage" msgid "Homepage"
msgstr "Домашняя страница" msgstr "Домашняя страница"
#: ../../mod/profiles.php:379 ../../mod/profiles.php:698 #: mod/profiles.php:375 mod/profiles.php:708
msgid "Interests" msgid "Interests"
msgstr "Хобби / Интересы" msgstr "Хобби / Интересы"
#: ../../mod/profiles.php:383 #: mod/profiles.php:379
msgid "Address" msgid "Address"
msgstr "Адрес" msgstr "Адрес"
#: ../../mod/profiles.php:390 ../../mod/profiles.php:694 #: mod/profiles.php:386 mod/profiles.php:704
msgid "Location" msgid "Location"
msgstr "Местонахождение" msgstr "Местонахождение"
#: ../../mod/profiles.php:473 #: mod/profiles.php:469
msgid "Profile updated." msgid "Profile updated."
msgstr "Профиль обновлен." msgstr "Профиль обновлен."
#: ../../mod/profiles.php:568 #: mod/profiles.php:565
msgid " and " msgid " and "
msgstr "и" msgstr "и"
#: ../../mod/profiles.php:576 #: mod/profiles.php:573
msgid "public profile" msgid "public profile"
msgstr "публичный профиль" msgstr "публичный профиль"
#: ../../mod/profiles.php:579 #: mod/profiles.php:576
#, php-format #, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;" msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s изменились с %2$s на &ldquo;%3$s&rdquo;" msgstr "%1$s изменились с %2$s на &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:580 #: mod/profiles.php:577
#, php-format #, php-format
msgid " - Visit %1$s's %2$s" msgid " - Visit %1$s's %2$s"
msgstr " - Посетить профиль %1$s [%2$s]" msgstr " - Посетить профиль %1$s [%2$s]"
#: ../../mod/profiles.php:583 #: mod/profiles.php:580
#, php-format #, php-format
msgid "%1$s has an updated %2$s, changing %3$s." msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "" msgstr ""
#: ../../mod/profiles.php:658 #: mod/profiles.php:655
msgid "Hide contacts and friends:" msgid "Hide contacts and friends:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:663 #: mod/profiles.php:660
msgid "Hide your contact/friend list from viewers of this profile?" msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?" msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
#: ../../mod/profiles.php:685 #: mod/profiles.php:684
msgid "Show more profile fields:"
msgstr ""
#: mod/profiles.php:695
msgid "Edit Profile Details" msgid "Edit Profile Details"
msgstr "Редактировать детали профиля" msgstr "Редактировать детали профиля"
#: ../../mod/profiles.php:687 #: mod/profiles.php:697
msgid "Change Profile Photo" msgid "Change Profile Photo"
msgstr "Изменить фото профиля" msgstr "Изменить фото профиля"
#: ../../mod/profiles.php:688 #: mod/profiles.php:698
msgid "View this profile" msgid "View this profile"
msgstr "Просмотреть этот профиль" msgstr "Просмотреть этот профиль"
#: ../../mod/profiles.php:689 #: mod/profiles.php:699
msgid "Create a new profile using these settings" msgid "Create a new profile using these settings"
msgstr "Создать новый профиль, используя эти настройки" msgstr "Создать новый профиль, используя эти настройки"
#: ../../mod/profiles.php:690 #: mod/profiles.php:700
msgid "Clone this profile" msgid "Clone this profile"
msgstr "Клонировать этот профиль" msgstr "Клонировать этот профиль"
#: ../../mod/profiles.php:691 #: mod/profiles.php:701
msgid "Delete this profile" msgid "Delete this profile"
msgstr "Удалить этот профиль" msgstr "Удалить этот профиль"
#: ../../mod/profiles.php:692 #: mod/profiles.php:702
msgid "Basic information" msgid "Basic information"
msgstr "" msgstr ""
#: ../../mod/profiles.php:693 #: mod/profiles.php:703
msgid "Profile picture" msgid "Profile picture"
msgstr "" msgstr ""
#: ../../mod/profiles.php:695 #: mod/profiles.php:705
msgid "Preferences" msgid "Preferences"
msgstr "" msgstr ""
#: ../../mod/profiles.php:696 #: mod/profiles.php:706
msgid "Status information" msgid "Status information"
msgstr "" msgstr ""
#: ../../mod/profiles.php:697 #: mod/profiles.php:707
msgid "Additional information" msgid "Additional information"
msgstr "" msgstr ""
#: ../../mod/profiles.php:700 #: mod/profiles.php:710
msgid "Profile Name:" msgid "Profile Name:"
msgstr "Имя профиля:" msgstr "Имя профиля:"
#: ../../mod/profiles.php:701 #: mod/profiles.php:711
msgid "Your Full Name:" msgid "Your Full Name:"
msgstr "Ваше полное имя:" msgstr "Ваше полное имя:"
#: ../../mod/profiles.php:702 #: mod/profiles.php:712
msgid "Title/Description:" msgid "Title/Description:"
msgstr "Заголовок / Описание:" msgstr "Заголовок / Описание:"
#: ../../mod/profiles.php:703 #: mod/profiles.php:713
msgid "Your Gender:" msgid "Your Gender:"
msgstr "Ваш пол:" msgstr "Ваш пол:"
#: ../../mod/profiles.php:704 #: mod/profiles.php:714
#, php-format msgid "Birthday :"
msgid "Birthday (%s):" msgstr ""
msgstr "День рождения (%s):"
#: ../../mod/profiles.php:705 #: mod/profiles.php:715
msgid "Street Address:" msgid "Street Address:"
msgstr "Адрес:" msgstr "Адрес:"
#: ../../mod/profiles.php:706 #: mod/profiles.php:716
msgid "Locality/City:" msgid "Locality/City:"
msgstr "Город / Населенный пункт:" msgstr "Город / Населенный пункт:"
#: ../../mod/profiles.php:707 #: mod/profiles.php:717
msgid "Postal/Zip Code:" msgid "Postal/Zip Code:"
msgstr "Почтовый индекс:" msgstr "Почтовый индекс:"
#: ../../mod/profiles.php:708 #: mod/profiles.php:718
msgid "Country:" msgid "Country:"
msgstr "Страна:" msgstr "Страна:"
#: ../../mod/profiles.php:709 #: mod/profiles.php:719
msgid "Region/State:" msgid "Region/State:"
msgstr "Район / Область:" msgstr "Район / Область:"
#: ../../mod/profiles.php:710 #: mod/profiles.php:720
msgid "<span class=\"heart\">&hearts;</span> Marital Status:" msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:" msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
#: ../../mod/profiles.php:711 #: mod/profiles.php:721
msgid "Who: (if applicable)" msgid "Who: (if applicable)"
msgstr "Кто: (если требуется)" msgstr "Кто: (если требуется)"
#: ../../mod/profiles.php:712 #: mod/profiles.php:722
msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com" msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
#: ../../mod/profiles.php:713 #: mod/profiles.php:723
msgid "Since [date]:" msgid "Since [date]:"
msgstr "С какого времени [дата]:" msgstr "С какого времени [дата]:"
#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46 #: mod/profiles.php:724 include/identity.php:619
msgid "Sexual Preference:" msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:" msgstr "Сексуальные предпочтения:"
#: ../../mod/profiles.php:715 #: mod/profiles.php:725
msgid "Homepage URL:" msgid "Homepage URL:"
msgstr "Адрес домашней странички:" msgstr "Адрес домашней странички:"
#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50 #: mod/profiles.php:726 include/identity.php:623
msgid "Hometown:" msgid "Hometown:"
msgstr "Родной город:" msgstr "Родной город:"
#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54 #: mod/profiles.php:727 include/identity.php:627
msgid "Political Views:" msgid "Political Views:"
msgstr "Политические взгляды:" msgstr "Политические взгляды:"
#: ../../mod/profiles.php:718 #: mod/profiles.php:728
msgid "Religious Views:" msgid "Religious Views:"
msgstr "Религиозные взгляды:" msgstr "Религиозные взгляды:"
#: ../../mod/profiles.php:719 #: mod/profiles.php:729
msgid "Public Keywords:" msgid "Public Keywords:"
msgstr "Общественные ключевые слова:" msgstr "Общественные ключевые слова:"
#: ../../mod/profiles.php:720 #: mod/profiles.php:730
msgid "Private Keywords:" msgid "Private Keywords:"
msgstr "Личные ключевые слова:" msgstr "Личные ключевые слова:"
#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62 #: mod/profiles.php:731 include/identity.php:635
msgid "Likes:" msgid "Likes:"
msgstr "Нравится:" msgstr "Нравится:"
#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64 #: mod/profiles.php:732 include/identity.php:637
msgid "Dislikes:" msgid "Dislikes:"
msgstr "Не нравится:" msgstr "Не нравится:"
#: ../../mod/profiles.php:723 #: mod/profiles.php:733
msgid "Example: fishing photography software" msgid "Example: fishing photography software"
msgstr "Пример: рыбалка фотографии программное обеспечение" msgstr "Пример: рыбалка фотографии программное обеспечение"
#: ../../mod/profiles.php:724 #: mod/profiles.php:734
msgid "(Used for suggesting potential friends, can be seen by others)" msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" msgstr ""
"(Используется для предложения потенциальным друзьям, могут увидеть другие)"
#: ../../mod/profiles.php:725 #: mod/profiles.php:735
msgid "(Used for searching profiles, never shown to others)" msgid "(Used for searching profiles, never shown to others)"
msgstr "(Используется для поиска профилей, никогда не показывается другим)" msgstr "(Используется для поиска профилей, никогда не показывается другим)"
#: ../../mod/profiles.php:726 #: mod/profiles.php:736
msgid "Tell us about yourself..." msgid "Tell us about yourself..."
msgstr "Расскажите нам о себе ..." msgstr "Расскажите нам о себе ..."
#: ../../mod/profiles.php:727 #: mod/profiles.php:737
msgid "Hobbies/Interests" msgid "Hobbies/Interests"
msgstr "Хобби / Интересы" msgstr "Хобби / Интересы"
#: ../../mod/profiles.php:728 #: mod/profiles.php:738
msgid "Contact information and Social Networks" msgid "Contact information and Social Networks"
msgstr "Контактная информация и социальные сети" msgstr "Контактная информация и социальные сети"
#: ../../mod/profiles.php:729 #: mod/profiles.php:739
msgid "Musical interests" msgid "Musical interests"
msgstr "Музыкальные интересы" msgstr "Музыкальные интересы"
#: ../../mod/profiles.php:730 #: mod/profiles.php:740
msgid "Books, literature" msgid "Books, literature"
msgstr "Книги, литература" msgstr "Книги, литература"
#: ../../mod/profiles.php:731 #: mod/profiles.php:741
msgid "Television" msgid "Television"
msgstr "Телевидение" msgstr "Телевидение"
#: ../../mod/profiles.php:732 #: mod/profiles.php:742
msgid "Film/dance/culture/entertainment" msgid "Film/dance/culture/entertainment"
msgstr "Кино / танцы / культура / развлечения" msgstr "Кино / танцы / культура / развлечения"
#: ../../mod/profiles.php:733 #: mod/profiles.php:743
msgid "Love/romance" msgid "Love/romance"
msgstr "Любовь / романтика" msgstr "Любовь / романтика"
#: ../../mod/profiles.php:734 #: mod/profiles.php:744
msgid "Work/employment" msgid "Work/employment"
msgstr "Работа / занятость" msgstr "Работа / занятость"
#: ../../mod/profiles.php:735 #: mod/profiles.php:745
msgid "School/education" msgid "School/education"
msgstr "Школа / образование" msgstr "Школа / образование"
#: ../../mod/profiles.php:740 #: mod/profiles.php:750
msgid "" msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> " "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet." "be visible to anybody using the internet."
msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому через Интернет." msgstr ""
"Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> "
"быть виден каждому через Интернет."
#: ../../mod/profiles.php:803 #: mod/profiles.php:760
msgid "Age: "
msgstr "Возраст: "
#: mod/profiles.php:813
msgid "Edit/Manage Profiles" msgid "Edit/Manage Profiles"
msgstr "Редактировать профиль" msgstr "Редактировать профиль"
#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637 #: mod/profiles.php:814 include/identity.php:260 include/identity.php:286
msgid "Change profile photo" msgid "Change profile photo"
msgstr "Изменить фото профиля" msgstr "Изменить фото профиля"
#: ../../mod/profiles.php:805 ../../boot.php:1612 #: mod/profiles.php:815 include/identity.php:261
msgid "Create New Profile" msgid "Create New Profile"
msgstr "Создать новый профиль" msgstr "Создать новый профиль"
#: ../../mod/profiles.php:816 ../../boot.php:1622 #: mod/profiles.php:826 include/identity.php:271
msgid "Profile Image" msgid "Profile Image"
msgstr "Фото профиля" msgstr "Фото профиля"
#: ../../mod/profiles.php:818 ../../boot.php:1625 #: mod/profiles.php:828 include/identity.php:274
msgid "visible to everybody" msgid "visible to everybody"
msgstr "видимый всем" msgstr "видимый всем"
#: ../../mod/profiles.php:819 ../../boot.php:1626 #: mod/profiles.php:829 include/identity.php:275
msgid "Edit visibility" msgid "Edit visibility"
msgstr "Редактировать видимость" msgstr "Редактировать видимость"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 #: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found" msgid "Item not found"
msgstr "Элемент не найден" msgstr "Элемент не найден"
#: ../../mod/editpost.php:39 #: mod/editpost.php:40
msgid "Edit post" msgid "Edit post"
msgstr "Редактировать сообщение" msgstr "Редактировать сообщение"
#: ../../mod/editpost.php:111 ../../include/conversation.php:1092 #: mod/editpost.php:111 include/conversation.php:1184
msgid "upload photo" msgid "upload photo"
msgstr "загрузить фото" msgstr "загрузить фото"
#: ../../mod/editpost.php:112 ../../include/conversation.php:1093 #: mod/editpost.php:112 include/conversation.php:1185
msgid "Attach file" msgid "Attach file"
msgstr "Приложить файл" msgstr "Прикрепить файл"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1094 #: mod/editpost.php:113 include/conversation.php:1186
msgid "attach file" msgid "attach file"
msgstr "приложить файл" msgstr "приложить файл"
#: ../../mod/editpost.php:115 ../../include/conversation.php:1096 #: mod/editpost.php:115 include/conversation.php:1188
msgid "web link" msgid "web link"
msgstr "веб-ссылка" msgstr "веб-ссылка"
#: ../../mod/editpost.php:116 ../../include/conversation.php:1097 #: mod/editpost.php:116 include/conversation.php:1189
msgid "Insert video link" msgid "Insert video link"
msgstr "Вставить ссылку видео" msgstr "Вставить ссылку видео"
#: ../../mod/editpost.php:117 ../../include/conversation.php:1098 #: mod/editpost.php:117 include/conversation.php:1190
msgid "video link" msgid "video link"
msgstr "видео-ссылка" msgstr "видео-ссылка"
#: ../../mod/editpost.php:118 ../../include/conversation.php:1099 #: mod/editpost.php:118 include/conversation.php:1191
msgid "Insert audio link" msgid "Insert audio link"
msgstr "Вставить ссылку аудио" msgstr "Вставить ссылку аудио"
#: ../../mod/editpost.php:119 ../../include/conversation.php:1100 #: mod/editpost.php:119 include/conversation.php:1192
msgid "audio link" msgid "audio link"
msgstr "аудио-ссылка" msgstr "аудио-ссылка"
#: ../../mod/editpost.php:120 ../../include/conversation.php:1101 #: mod/editpost.php:120 include/conversation.php:1193
msgid "Set your location" msgid "Set your location"
msgstr "Задать ваше местоположение" msgstr "Задать ваше местоположение"
#: ../../mod/editpost.php:121 ../../include/conversation.php:1102 #: mod/editpost.php:121 include/conversation.php:1194
msgid "set location" msgid "set location"
msgstr "установить местонахождение" msgstr "установить местонахождение"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1103 #: mod/editpost.php:122 include/conversation.php:1195
msgid "Clear browser location" msgid "Clear browser location"
msgstr "Очистить местонахождение браузера" msgstr "Очистить местонахождение браузера"
#: ../../mod/editpost.php:123 ../../include/conversation.php:1104 #: mod/editpost.php:123 include/conversation.php:1196
msgid "clear location" msgid "clear location"
msgstr "убрать местонахождение" msgstr "убрать местонахождение"
#: ../../mod/editpost.php:125 ../../include/conversation.php:1110 #: mod/editpost.php:125 include/conversation.php:1202
msgid "Permission settings" msgid "Permission settings"
msgstr "Настройки разрешений" msgstr "Настройки разрешений"
#: ../../mod/editpost.php:133 ../../include/conversation.php:1119 #: mod/editpost.php:133 include/acl_selectors.php:344
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "Копии на email адреса" msgstr "Копии на email адреса"
#: ../../mod/editpost.php:134 ../../include/conversation.php:1120 #: mod/editpost.php:134 include/conversation.php:1211
msgid "Public post" msgid "Public post"
msgstr "Публичное сообщение" msgstr "Публичное сообщение"
#: ../../mod/editpost.php:137 ../../include/conversation.php:1106 #: mod/editpost.php:137 include/conversation.php:1198
msgid "Set title" msgid "Set title"
msgstr "Установить заголовок" msgstr "Установить заголовок"
#: ../../mod/editpost.php:139 ../../include/conversation.php:1108 #: mod/editpost.php:139 include/conversation.php:1200
msgid "Categories (comma-separated list)" msgid "Categories (comma-separated list)"
msgstr "Категории (список через запятую)" msgstr "Категории (список через запятую)"
#: ../../mod/editpost.php:140 ../../include/conversation.php:1122 #: mod/editpost.php:140 include/acl_selectors.php:345
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "Пример: bob@example.com, mary@example.com" msgstr "Пример: bob@example.com, mary@example.com"
#: ../../mod/friendica.php:59 #: mod/friendica.php:70
msgid "This is Friendica, version" msgid "This is Friendica, version"
msgstr "Это Friendica, версия" msgstr "Это Friendica, версия"
#: ../../mod/friendica.php:60 #: mod/friendica.php:71
msgid "running at web location" msgid "running at web location"
msgstr "работает на веб-узле" msgstr "работает на веб-узле"
#: ../../mod/friendica.php:62 #: mod/friendica.php:73
msgid "" msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn " "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project." "more about the Friendica project."
msgstr "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica." msgstr ""
"Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</"
"a>, чтобы узнать больше о проекте Friendica."
#: ../../mod/friendica.php:64 #: mod/friendica.php:75
msgid "Bug reports and issues: please visit" msgid "Bug reports and issues: please visit"
msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
#: ../../mod/friendica.php:65 #: mod/friendica.php:75
msgid "the bugtracker at github"
msgstr ""
#: mod/friendica.php:76
msgid "" msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com" "dot com"
msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com" msgstr ""
"Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка "
"com"
#: ../../mod/friendica.php:79 #: mod/friendica.php:90
msgid "Installed plugins/addons/apps:" msgid "Installed plugins/addons/apps:"
msgstr "Установленные плагины / добавки / приложения:" msgstr "Установленные плагины / добавки / приложения:"
#: ../../mod/friendica.php:92 #: mod/friendica.php:103
msgid "No installed plugins/addons/apps" msgid "No installed plugins/addons/apps"
msgstr "Нет установленных плагинов / добавок / приложений" msgstr "Нет установленных плагинов / добавок / приложений"
#: ../../mod/api.php:76 ../../mod/api.php:102 #: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection" msgid "Authorize application connection"
msgstr "Разрешить связь с приложением" msgstr "Разрешить связь с приложением"
#: ../../mod/api.php:77 #: mod/api.php:77
msgid "Return to your app and insert this Securty Code:" msgid "Return to your app and insert this Securty Code:"
msgstr "Вернитесь в ваше приложение и задайте этот код:" msgstr "Вернитесь в ваше приложение и задайте этот код:"
#: ../../mod/api.php:89 #: mod/api.php:89
msgid "Please login to continue." msgid "Please login to continue."
msgstr "Пожалуйста, войдите для продолжения." msgstr "Пожалуйста, войдите для продолжения."
#: ../../mod/api.php:104 #: mod/api.php:104
msgid "" msgid ""
"Do you want to authorize this application to access your posts and contacts," "Do you want to authorize this application to access your posts and contacts, "
" and/or create new posts for you?" "and/or create new posts for you?"
msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?" msgstr ""
"Вы действительно хотите разрешить этому приложению доступ к своим постам и "
"контактам, а также создавать новые записи от вашего имени?"
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 #: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available." msgid "Remote privacy information not available."
msgstr "Личная информация удаленно недоступна." msgstr "Личная информация удаленно недоступна."
#: ../../mod/lockview.php:48 #: mod/lockview.php:48
msgid "Visible to:" msgid "Visible to:"
msgstr "Кто может видеть:" msgstr "Кто может видеть:"
#: ../../mod/notes.php:44 ../../boot.php:2150 #: mod/notes.php:46 include/identity.php:730
msgid "Personal Notes" msgid "Personal Notes"
msgstr "Личные заметки" msgstr "Личные заметки"
#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148 #: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13
#: ../../include/event.php:11
msgid "l F d, Y \\@ g:i A" msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A"
#: ../../mod/localtime.php:24 #: mod/localtime.php:24
msgid "Time Conversion" msgid "Time Conversion"
msgstr "История общения" msgstr "История общения"
#: ../../mod/localtime.php:26 #: mod/localtime.php:26
msgid "" msgid ""
"Friendica provides this service for sharing events with other networks and " "Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones." "friends in unknown timezones."
msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах." msgstr ""
"Friendica предоставляет этот сервис для обмена событиями с другими сетями и "
"друзьями, находящимися в неопределённых часовых поясах."
#: ../../mod/localtime.php:30 #: mod/localtime.php:30
#, php-format #, php-format
msgid "UTC time: %s" msgid "UTC time: %s"
msgstr "UTC время: %s" msgstr "UTC время: %s"
#: ../../mod/localtime.php:33 #: mod/localtime.php:33
#, php-format #, php-format
msgid "Current timezone: %s" msgid "Current timezone: %s"
msgstr "Ваш часовой пояс: %s" msgstr "Ваш часовой пояс: %s"
#: ../../mod/localtime.php:36 #: mod/localtime.php:36
#, php-format #, php-format
msgid "Converted localtime: %s" msgid "Converted localtime: %s"
msgstr "Ваше изменённое время: %s" msgstr "Ваше изменённое время: %s"
#: ../../mod/localtime.php:41 #: mod/localtime.php:41
msgid "Please select your timezone:" msgid "Please select your timezone:"
msgstr "Выберите пожалуйста ваш часовой пояс:" msgstr "Выберите пожалуйста ваш часовой пояс:"
#: ../../mod/poke.php:192 #: mod/poke.php:191
msgid "Poke/Prod" msgid "Poke/Prod"
msgstr "" msgstr ""
#: ../../mod/poke.php:193 #: mod/poke.php:192
msgid "poke, prod or do other things to somebody" msgid "poke, prod or do other things to somebody"
msgstr "" msgstr ""
#: ../../mod/poke.php:194 #: mod/poke.php:193
msgid "Recipient" msgid "Recipient"
msgstr "Получатель" msgstr "Получатель"
#: ../../mod/poke.php:195 #: mod/poke.php:194
msgid "Choose what you wish to do to recipient" msgid "Choose what you wish to do to recipient"
msgstr "Выберите действия для получателя" msgstr "Выберите действия для получателя"
#: ../../mod/poke.php:198 #: mod/poke.php:197
msgid "Make this post private" msgid "Make this post private"
msgstr "Сделать эту запись личной" msgstr "Сделать эту запись личной"
#: ../../mod/invite.php:27 #: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr ""
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Ошибка"
#: mod/invite.php:27
msgid "Total invitation limit exceeded." msgid "Total invitation limit exceeded."
msgstr "Превышен общий лимит приглашений." msgstr "Превышен общий лимит приглашений."
#: ../../mod/invite.php:49 #: mod/invite.php:49
#, php-format #, php-format
msgid "%s : Not a valid email address." msgid "%s : Not a valid email address."
msgstr "%s: Неверный адрес электронной почты." msgstr "%s: Неверный адрес электронной почты."
#: ../../mod/invite.php:73 #: mod/invite.php:73
msgid "Please join us on Friendica" msgid "Please join us on Friendica"
msgstr "Пожалуйста, присоединяйтесь к нам на Friendica" msgstr "Пожалуйста, присоединяйтесь к нам на Friendica"
#: ../../mod/invite.php:84 #: mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator." msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта." msgstr ""
"Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."
#: ../../mod/invite.php:89 #: mod/invite.php:89
#, php-format #, php-format
msgid "%s : Message delivery failed." msgid "%s : Message delivery failed."
msgstr "%s: Доставка сообщения не удалась." msgstr "%s: Доставка сообщения не удалась."
#: ../../mod/invite.php:93 #: mod/invite.php:93
#, php-format #, php-format
msgid "%d message sent." msgid "%d message sent."
msgid_plural "%d messages sent." msgid_plural "%d messages sent."
msgstr[0] "%d сообщение отправлено." msgstr[0] "%d сообщение отправлено."
msgstr[1] "%d сообщений отправлено." msgstr[1] "%d сообщений отправлено."
msgstr[2] "%d сообщений отправлено." msgstr[2] "%d сообщений отправлено."
msgstr[3] "%d сообщений отправлено."
#: ../../mod/invite.php:112 #: mod/invite.php:112
msgid "You have no more invitations available" msgid "You have no more invitations available"
msgstr "У вас нет больше приглашений" msgstr "У вас нет больше приглашений"
#: ../../mod/invite.php:120 #: mod/invite.php:120
#, php-format #, php-format
msgid "" msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on " "Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many" "other sites can all connect with each other, as well as with members of many "
" other social networks." "other social networks."
msgstr "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей." msgstr ""
"Посетите %s со списком общедоступных сайтов, к которым вы можете "
"присоединиться. Все участники Friendica на других сайтах могут соединиться "
"друг с другом, а также с участниками многих других социальных сетей."
#: ../../mod/invite.php:122 #: mod/invite.php:122
#, php-format #, php-format
msgid "" msgid ""
"To accept this invitation, please visit and register at %s or any other " "To accept this invitation, please visit and register at %s or any other "
"public Friendica website." "public Friendica website."
msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica" msgstr ""
"Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на "
"%s ,или любом другом публичном сервере Friendica"
#: ../../mod/invite.php:123 #: mod/invite.php:123
#, php-format #, php-format
msgid "" msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social " "Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with " "web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica " "many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join." "sites you can join."
msgstr "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться." msgstr ""
"Сайты Friendica, подключившись между собой, могут создать сеть с повышенной "
"безопасностью, которая принадлежит и управляется её членами. Они также могут "
"подключаться ко многим традиционным социальным сетям. См. %s со списком "
"альтернативных сайтов Friendica, к которым вы можете присоединиться."
#: ../../mod/invite.php:126 #: mod/invite.php:126
msgid "" msgid ""
"Our apologies. This system is not currently configured to connect with other" "Our apologies. This system is not currently configured to connect with other "
" public sites or invite members." "public sites or invite members."
msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников." msgstr ""
"Извините. Эта система в настоящее время не сконфигурирована для соединения с "
"другими общественными сайтами и для приглашения участников."
#: ../../mod/invite.php:132 #: mod/invite.php:132
msgid "Send invitations" msgid "Send invitations"
msgstr "Отправить приглашения" msgstr "Отправить приглашения"
#: ../../mod/invite.php:133 #: mod/invite.php:133
msgid "Enter email addresses, one per line:" msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:" msgstr "Введите адреса электронной почты, по одному в строке:"
#: ../../mod/invite.php:135 #: mod/invite.php:135
msgid "" msgid ""
"You are cordially invited to join me and other close friends on Friendica - " "You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web." "and help us to create a better social web."
msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть." msgstr ""
"Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - "
"помочь нам создать лучшую социальную сеть."
#: ../../mod/invite.php:137 #: mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code" msgid "You will need to supply this invitation code: $invite_code"
msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code" msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
#: ../../mod/invite.php:137 #: mod/invite.php:137
msgid "" msgid ""
"Once you have registered, please connect with me via my profile page at:" "Once you have registered, please connect with me via my profile page at:"
msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:" msgstr ""
"После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через "
"мою страницу профиля по адресу:"
#: ../../mod/invite.php:139 #: mod/invite.php:139
msgid "" msgid ""
"For more information about the Friendica project and why we feel it is " "For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com" "important, please visit http://friendica.com"
msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com" msgstr ""
"Для получения более подробной информации о проекте Friendica, пожалуйста, "
"посетите http://friendica.com"
#: ../../mod/photos.php:52 ../../boot.php:2129 #: mod/photos.php:99 include/identity.php:705
msgid "Photo Albums" msgid "Photo Albums"
msgstr "Фотоальбомы" msgstr "Фотоальбомы"
#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064 #: mod/photos.php:100 mod/photos.php:1899
#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 msgid "Recent Photos"
#: ../../mod/photos.php:1760 ../../mod/photos.php:1772 msgstr "Последние фото"
#: ../../view/theme/diabook/theme.php:499
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819 #: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901
msgid "Upload New Photos" msgid "Upload New Photos"
msgstr "Загрузить новые фото" msgstr "Загрузить новые фото"
#: ../../mod/photos.php:144 #: mod/photos.php:181
msgid "Contact information unavailable" msgid "Contact information unavailable"
msgstr "Информация о контакте недоступна" msgstr "Информация о контакте недоступна"
#: ../../mod/photos.php:165 #: mod/photos.php:202
msgid "Album not found." msgid "Album not found."
msgstr "Альбом не найден." msgstr "Альбом не найден."
#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 #: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262
msgid "Delete Album" msgid "Delete Album"
msgstr "Удалить альбом" msgstr "Удалить альбом"
#: ../../mod/photos.php:198 #: mod/photos.php:242
msgid "Do you really want to delete this photo album and all its photos?" msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?"
#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515 #: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580
msgid "Delete Photo" msgid "Delete Photo"
msgstr "Удалить фото" msgstr "Удалить фото"
#: ../../mod/photos.php:287 #: mod/photos.php:331
msgid "Do you really want to delete this photo?" msgid "Do you really want to delete this photo?"
msgstr "Вы действительно хотите удалить эту фотографию?" msgstr "Вы действительно хотите удалить эту фотографию?"
#: ../../mod/photos.php:662 #: mod/photos.php:706
#, php-format #, php-format
msgid "%1$s was tagged in %2$s by %3$s" msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s отмечен/а/ в %2$s by %3$s" msgstr "%1$s отмечен/а/ в %2$s by %3$s"
#: ../../mod/photos.php:662 #: mod/photos.php:706
msgid "a photo" msgid "a photo"
msgstr "фото" msgstr "фото"
#: ../../mod/photos.php:767 #: mod/photos.php:819
msgid "Image exceeds size limit of "
msgstr "Размер фото превышает лимит "
#: ../../mod/photos.php:775
msgid "Image file is empty." msgid "Image file is empty."
msgstr "Файл изображения пуст." msgstr "Файл изображения пуст."
#: ../../mod/photos.php:930 #: mod/photos.php:986
msgid "No photos selected" msgid "No photos selected"
msgstr "Не выбрано фото." msgstr "Не выбрано фото."
#: ../../mod/photos.php:1094 #: mod/photos.php:1147
#, php-format #, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий." msgstr ""
"Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."
#: ../../mod/photos.php:1129 #: mod/photos.php:1182
msgid "Upload Photos" msgid "Upload Photos"
msgstr "Загрузить фото" msgstr "Загрузить фото"
#: ../../mod/photos.php:1133 ../../mod/photos.php:1199 #: mod/photos.php:1186 mod/photos.php:1257
msgid "New album name: " msgid "New album name: "
msgstr "Название нового альбома: " msgstr "Название нового альбома: "
#: ../../mod/photos.php:1134 #: mod/photos.php:1187
msgid "or existing album name: " msgid "or existing album name: "
msgstr "или название существующего альбома: " msgstr "или название существующего альбома: "
#: ../../mod/photos.php:1135 #: mod/photos.php:1188
msgid "Do not show a status post for this upload" msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки" msgstr "Не показывать статус-сообщение для этой закачки"
#: ../../mod/photos.php:1137 ../../mod/photos.php:1510 #: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347
msgid "Permissions" msgid "Permissions"
msgstr "Разрешения" msgstr "Разрешения"
#: ../../mod/photos.php:1148 #: mod/photos.php:1201
msgid "Private Photo" msgid "Private Photo"
msgstr "Личное фото" msgstr "Личное фото"
#: ../../mod/photos.php:1149 #: mod/photos.php:1202
msgid "Public Photo" msgid "Public Photo"
msgstr "Публичное фото" msgstr "Публичное фото"
#: ../../mod/photos.php:1212 #: mod/photos.php:1270
msgid "Edit Album" msgid "Edit Album"
msgstr "Редактировать альбом" msgstr "Редактировать альбом"
#: ../../mod/photos.php:1218 #: mod/photos.php:1276
msgid "Show Newest First" msgid "Show Newest First"
msgstr "Показать новые первыми" msgstr "Показать новые первыми"
#: ../../mod/photos.php:1220 #: mod/photos.php:1278
msgid "Show Oldest First" msgid "Show Oldest First"
msgstr "Показать старые первыми" msgstr "Показать старые первыми"
#: ../../mod/photos.php:1248 ../../mod/photos.php:1802 #: mod/photos.php:1306 mod/photos.php:1884
msgid "View Photo" msgid "View Photo"
msgstr "Просмотр фото" msgstr "Просмотр фото"
#: ../../mod/photos.php:1294 #: mod/photos.php:1353
msgid "Permission denied. Access to this item may be restricted." msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен." msgstr "Нет разрешения. Доступ к этому элементу ограничен."
#: ../../mod/photos.php:1296 #: mod/photos.php:1355
msgid "Photo not available" msgid "Photo not available"
msgstr "Фото недоступно" msgstr "Фото недоступно"
#: ../../mod/photos.php:1352 #: mod/photos.php:1411
msgid "View photo" msgid "View photo"
msgstr "Просмотр фото" msgstr "Просмотр фото"
#: ../../mod/photos.php:1352 #: mod/photos.php:1411
msgid "Edit photo" msgid "Edit photo"
msgstr "Редактировать фото" msgstr "Редактировать фото"
#: ../../mod/photos.php:1353 #: mod/photos.php:1412
msgid "Use as profile photo" msgid "Use as profile photo"
msgstr "Использовать как фото профиля" msgstr "Использовать как фото профиля"
#: ../../mod/photos.php:1378 #: mod/photos.php:1437
msgid "View Full Size" msgid "View Full Size"
msgstr "Просмотреть полный размер" msgstr "Просмотреть полный размер"
#: ../../mod/photos.php:1457 #: mod/photos.php:1523
msgid "Tags: " msgid "Tags: "
msgstr "Ключевые слова: " msgstr "Ключевые слова: "
#: ../../mod/photos.php:1460 #: mod/photos.php:1526
msgid "[Remove any tag]" msgid "[Remove any tag]"
msgstr "[Удалить любое ключевое слово]" msgstr "[Удалить любое ключевое слово]"
#: ../../mod/photos.php:1500 #: mod/photos.php:1566
msgid "Rotate CW (right)"
msgstr "Поворот по часовой стрелке (направо)"
#: ../../mod/photos.php:1501
msgid "Rotate CCW (left)"
msgstr "Поворот против часовой стрелки (налево)"
#: ../../mod/photos.php:1503
msgid "New album name" msgid "New album name"
msgstr "Название нового альбома" msgstr "Название нового альбома"
#: ../../mod/photos.php:1506 #: mod/photos.php:1567
msgid "Caption" msgid "Caption"
msgstr "Подпись" msgstr "Подпись"
#: ../../mod/photos.php:1508 #: mod/photos.php:1568
msgid "Add a Tag" msgid "Add a Tag"
msgstr "Добавить ключевое слово (таг)" msgstr "Добавить ключевое слово (таг)"
#: ../../mod/photos.php:1512 #: mod/photos.php:1568
msgid "" msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1521 #: mod/photos.php:1569
msgid "Do not rotate"
msgstr ""
#: mod/photos.php:1570
msgid "Rotate CW (right)"
msgstr "Поворот по часовой стрелке (направо)"
#: mod/photos.php:1571
msgid "Rotate CCW (left)"
msgstr "Поворот против часовой стрелки (налево)"
#: mod/photos.php:1586
msgid "Private photo" msgid "Private photo"
msgstr "Личное фото" msgstr "Личное фото"
#: ../../mod/photos.php:1522 #: mod/photos.php:1587
msgid "Public photo" msgid "Public photo"
msgstr "Публичное фото" msgstr "Публичное фото"
#: ../../mod/photos.php:1544 ../../include/conversation.php:1090 #: mod/photos.php:1609 include/conversation.php:1182
msgid "Share" msgid "Share"
msgstr "Поделиться" msgstr "Поделиться"
#: ../../mod/photos.php:1817 #: mod/photos.php:1648 include/conversation.php:509
msgid "Recent Photos" #: include/conversation.php:1413
msgstr "Последние фото" msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: ../../mod/regmod.php:55 #: mod/photos.php:1648 include/conversation.php:509
msgid "Not attending"
msgstr ""
#: mod/photos.php:1648 include/conversation.php:509
msgid "Might attend"
msgstr ""
#: mod/photos.php:1813
msgid "Map"
msgstr "Карта"
#: mod/p.php:9
msgid "Not Extended"
msgstr ""
#: mod/regmod.php:55
msgid "Account approved." msgid "Account approved."
msgstr "Аккаунт утвержден." msgstr "Аккаунт утвержден."
#: ../../mod/regmod.php:92 #: mod/regmod.php:92
#, php-format #, php-format
msgid "Registration revoked for %s" msgid "Registration revoked for %s"
msgstr "Регистрация отменена для %s" msgstr "Регистрация отменена для %s"
#: ../../mod/regmod.php:104 #: mod/regmod.php:104
msgid "Please login." msgid "Please login."
msgstr "Пожалуйста, войдите с паролем." msgstr "Пожалуйста, войдите с паролем."
#: ../../mod/uimport.php:66 #: mod/uimport.php:66
msgid "Move account" msgid "Move account"
msgstr "Удалить аккаунт" msgstr "Удалить аккаунт"
#: ../../mod/uimport.php:67 #: mod/uimport.php:67
msgid "You can import an account from another Friendica server." msgid "You can import an account from another Friendica server."
msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." msgstr "Вы можете импортировать учетную запись с другого сервера Friendica."
#: ../../mod/uimport.php:68 #: mod/uimport.php:68
msgid "" msgid ""
"You need to export your account from the old server and upload it here. We " "You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also" "will recreate your old account here with all your contacts. We will try also "
" to inform your friends that you moved here." "to inform your friends that you moved here."
msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." msgstr ""
"Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его "
"сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы "
"постараемся также сообщить друзьям, что вы переехали сюда."
#: ../../mod/uimport.php:69 #: mod/uimport.php:69
msgid "" msgid ""
"This feature is experimental. We can't import contacts from the OStatus " "This feature is experimental. We can't import contacts from the OStatus "
"network (statusnet/identi.ca) or from Diaspora" "network (GNU Social/Statusnet) or from Diaspora"
msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (StatusNet / identi.ca) или из Diaspora" msgstr ""
#: ../../mod/uimport.php:70 #: mod/uimport.php:70
msgid "Account file" msgid "Account file"
msgstr "Файл аккаунта" msgstr "Файл аккаунта"
#: ../../mod/uimport.php:70 #: mod/uimport.php:70
msgid "" msgid ""
"To export your account, go to \"Settings->Export your personal data\" and " "To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\"" "select \"Export account\""
msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" msgstr ""
"Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" "
"и выберите \"Экспорт аккаунта\""
#: ../../mod/attach.php:8 #: mod/attach.php:8
msgid "Item not available." msgid "Item not available."
msgstr "Пункт не доступен." msgstr "Пункт не доступен."
#: ../../mod/attach.php:20 #: mod/attach.php:20
msgid "Item was not found." msgid "Item was not found."
msgstr "Пункт не был найден." msgstr "Пункт не был найден."
#: ../../boot.php:749 #: boot.php:868
msgid "Delete this item?" msgid "Delete this item?"
msgstr "Удалить этот элемент?" msgstr "Удалить этот элемент?"
#: ../../boot.php:752 #: boot.php:871
msgid "show fewer" msgid "show fewer"
msgstr "показать меньше" msgstr "показать меньше"
#: ../../boot.php:1122 #: boot.php:1292
#, php-format #, php-format
msgid "Update %s failed. See error logs." msgid "Update %s failed. See error logs."
msgstr "Обновление %s не удалось. Смотрите журнал ошибок." msgstr "Обновление %s не удалось. Смотрите журнал ошибок."
#: ../../boot.php:1240 #: boot.php:1404
msgid "Create a New Account" msgid "Create a New Account"
msgstr "Создать новый аккаунт" msgstr "Создать новый аккаунт"
#: ../../boot.php:1265 ../../include/nav.php:73 #: boot.php:1429 include/nav.php:72
msgid "Logout" msgid "Logout"
msgstr "Выход" msgstr "Выход"
#: ../../boot.php:1268 #: boot.php:1432
msgid "Nickname or Email address: " msgid "Nickname or Email address: "
msgstr "Ник или адрес электронной почты: " msgstr "Ник или адрес электронной почты: "
#: ../../boot.php:1269 #: boot.php:1433
msgid "Password: " msgid "Password: "
msgstr "Пароль: " msgstr "Пароль: "
#: ../../boot.php:1270 #: boot.php:1434
msgid "Remember me" msgid "Remember me"
msgstr "Запомнить" msgstr "Запомнить"
#: ../../boot.php:1273 #: boot.php:1437
msgid "Or login using OpenID: " msgid "Or login using OpenID: "
msgstr "Или зайти с OpenID: " msgstr "Или зайти с OpenID: "
#: ../../boot.php:1279 #: boot.php:1443
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Забыли пароль?" msgstr "Забыли пароль?"
#: ../../boot.php:1282 #: boot.php:1446
msgid "Website Terms of Service" msgid "Website Terms of Service"
msgstr "Правила сайта" msgstr "Правила сайта"
#: ../../boot.php:1283 #: boot.php:1447
msgid "terms of service" msgid "terms of service"
msgstr "правила" msgstr "правила"
#: ../../boot.php:1285 #: boot.php:1449
msgid "Website Privacy Policy" msgid "Website Privacy Policy"
msgstr "Политика конфиденциальности сервера" msgstr "Политика конфиденциальности сервера"
#: ../../boot.php:1286 #: boot.php:1450
msgid "privacy policy" msgid "privacy policy"
msgstr "политика конфиденциальности" msgstr "политика конфиденциальности"
#: ../../boot.php:1419 #: object/Item.php:95
msgid "Requested account is not available."
msgstr "Запрашиваемый профиль недоступен."
#: ../../boot.php:1501 ../../boot.php:1635
#: ../../include/profile_advanced.php:84
msgid "Edit profile"
msgstr "Редактировать профиль"
#: ../../boot.php:1600
msgid "Message"
msgstr "Сообщение"
#: ../../boot.php:1606 ../../include/nav.php:175
msgid "Profiles"
msgstr "Профили"
#: ../../boot.php:1606
msgid "Manage/edit profiles"
msgstr "Управление / редактирование профилей"
#: ../../boot.php:1706
msgid "Network:"
msgstr ""
#: ../../boot.php:1736 ../../boot.php:1822
msgid "g A l F d"
msgstr "g A l F d"
#: ../../boot.php:1737 ../../boot.php:1823
msgid "F d"
msgstr "F d"
#: ../../boot.php:1782 ../../boot.php:1863
msgid "[today]"
msgstr "[сегодня]"
#: ../../boot.php:1794
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
#: ../../boot.php:1795
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
#: ../../boot.php:1856
msgid "[No description]"
msgstr "[без описания]"
#: ../../boot.php:1874
msgid "Event Reminders"
msgstr "Напоминания о мероприятиях"
#: ../../boot.php:1875
msgid "Events this week:"
msgstr "Мероприятия на этой неделе:"
#: ../../boot.php:2112 ../../include/nav.php:76
msgid "Status"
msgstr "Статус"
#: ../../boot.php:2115
msgid "Status Messages and Posts"
msgstr "Сообщение статуса и посты"
#: ../../boot.php:2122
msgid "Profile Details"
msgstr "Детали профиля"
#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
msgid "Videos"
msgstr "Видео"
#: ../../boot.php:2146
msgid "Events and Calendar"
msgstr "Календарь и события"
#: ../../boot.php:2153
msgid "Only You Can See This"
msgstr "Только вы можете это видеть"
#: ../../object/Item.php:94
msgid "This entry was edited" msgid "This entry was edited"
msgstr "Эта запись была отредактирована" msgstr "Эта запись была отредактирована"
#: ../../object/Item.php:208 #: object/Item.php:191
msgid "I will attend"
msgstr ""
#: object/Item.php:191
msgid "I will not attend"
msgstr ""
#: object/Item.php:191
msgid "I might attend"
msgstr ""
#: object/Item.php:230
msgid "ignore thread" msgid "ignore thread"
msgstr "" msgstr ""
#: ../../object/Item.php:209 #: object/Item.php:231
msgid "unignore thread" msgid "unignore thread"
msgstr "" msgstr ""
#: ../../object/Item.php:210 #: object/Item.php:232
msgid "toggle ignore status" msgid "toggle ignore status"
msgstr "" msgstr ""
#: ../../object/Item.php:213 #: object/Item.php:345 include/conversation.php:687
msgid "ignored"
msgstr ""
#: ../../object/Item.php:316 ../../include/conversation.php:666
msgid "Categories:" msgid "Categories:"
msgstr "Категории:" msgstr "Категории:"
#: ../../object/Item.php:317 ../../include/conversation.php:667 #: object/Item.php:346 include/conversation.php:688
msgid "Filed under:" msgid "Filed under:"
msgstr "В рубрике:" msgstr "В рубрике:"
#: ../../object/Item.php:329 #: object/Item.php:360
msgid "via" msgid "via"
msgstr "через" msgstr "через"
#: ../../include/dbstructure.php:26 #: include/dbstructure.php:26
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
"\t\t\tThe friendica developers released update %s recently,\n" "\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n" "\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" "\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." "\t\t\tfriendica developer if you can not help me on your own. My database "
"might be invalid."
msgstr "" msgstr ""
#: ../../include/dbstructure.php:31 #: include/dbstructure.php:31
#, php-format #, php-format
msgid "" msgid ""
"The error message is\n" "The error message is\n"
"[pre]%s[/pre]" "[pre]%s[/pre]"
msgstr "" msgstr ""
#: ../../include/dbstructure.php:162 #: include/dbstructure.php:153
msgid "Errors encountered creating database tables." msgid "Errors encountered creating database tables."
msgstr "Обнаружены ошибки при создании таблиц базы данных." msgstr "Обнаружены ошибки при создании таблиц базы данных."
#: ../../include/dbstructure.php:220 #: include/dbstructure.php:230
msgid "Errors encountered performing database changes." msgid "Errors encountered performing database changes."
msgstr "" msgstr ""
#: ../../include/auth.php:38 #: include/auth.php:44
msgid "Logged out." msgid "Logged out."
msgstr "Выход из системы." msgstr "Выход из системы."
#: ../../include/auth.php:128 ../../include/user.php:67 #: include/auth.php:134 include/user.php:75
msgid "" msgid ""
"We encountered a problem while logging in with the OpenID you provided. " "We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID." "Please check the correct spelling of the ID."
msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID." msgstr ""
"Мы столкнулись с проблемой при входе с OpenID, который вы указали. "
"Пожалуйста, проверьте правильность написания ID."
#: ../../include/auth.php:128 ../../include/user.php:67 #: include/auth.php:134 include/user.php:75
msgid "The error message was:" msgid "The error message was:"
msgstr "Сообщение об ошибке было:" msgstr "Сообщение об ошибке было:"
#: ../../include/contact_widgets.php:6 #: include/contact_widgets.php:6
msgid "Add New Contact" msgid "Add New Contact"
msgstr "Добавить контакт" msgstr "Добавить контакт"
#: ../../include/contact_widgets.php:7 #: include/contact_widgets.php:7
msgid "Enter address or web location" msgid "Enter address or web location"
msgstr "Введите адрес или веб-местонахождение" msgstr "Введите адрес или веб-местонахождение"
#: ../../include/contact_widgets.php:8 #: include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara" msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Пример: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:24 #: include/contact_widgets.php:24
#, php-format #, php-format
msgid "%d invitation available" msgid "%d invitation available"
msgid_plural "%d invitations available" msgid_plural "%d invitations available"
msgstr[0] "%d приглашение доступно" msgstr[0] "%d приглашение доступно"
msgstr[1] "%d приглашений доступно" msgstr[1] "%d приглашений доступно"
msgstr[2] "%d приглашений доступно" msgstr[2] "%d приглашений доступно"
msgstr[3] "%d приглашений доступно"
#: ../../include/contact_widgets.php:30 #: include/contact_widgets.php:30
msgid "Find People" msgid "Find People"
msgstr "Поиск людей" msgstr "Поиск людей"
#: ../../include/contact_widgets.php:31 #: include/contact_widgets.php:31
msgid "Enter name or interest" msgid "Enter name or interest"
msgstr "Введите имя или интерес" msgstr "Введите имя или интерес"
#: ../../include/contact_widgets.php:32 #: include/contact_widgets.php:33
msgid "Connect/Follow"
msgstr "Подключиться/Следовать"
#: ../../include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing" msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Примеры: Роберт Morgenstein, Рыбалка" msgstr "Примеры: Роберт Morgenstein, Рыбалка"
#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526 #: include/contact_widgets.php:36 view/theme/diabook/theme.php:526
#: view/theme/vier/theme.php:206
msgid "Similar Interests" msgid "Similar Interests"
msgstr "Похожие интересы" msgstr "Похожие интересы"
#: ../../include/contact_widgets.php:37 #: include/contact_widgets.php:37
msgid "Random Profile" msgid "Random Profile"
msgstr "Случайный профиль" msgstr "Случайный профиль"
#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528 #: include/contact_widgets.php:38 view/theme/diabook/theme.php:528
#: view/theme/vier/theme.php:208
msgid "Invite Friends" msgid "Invite Friends"
msgstr "Пригласить друзей" msgstr "Пригласить друзей"
#: ../../include/contact_widgets.php:71 #: include/contact_widgets.php:108
msgid "Networks" msgid "Networks"
msgstr "Сети" msgstr "Сети"
#: ../../include/contact_widgets.php:74 #: include/contact_widgets.php:111
msgid "All Networks" msgid "All Networks"
msgstr "Все сети" msgstr "Все сети"
#: ../../include/contact_widgets.php:104 ../../include/features.php:60 #: include/contact_widgets.php:141 include/features.php:102
msgid "Saved Folders" msgid "Saved Folders"
msgstr "Сохранённые папки" msgstr "Сохранённые папки"
#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139 #: include/contact_widgets.php:144 include/contact_widgets.php:176
msgid "Everything" msgid "Everything"
msgstr "Всё" msgstr "Всё"
#: ../../include/contact_widgets.php:136 #: include/contact_widgets.php:173
msgid "Categories" msgid "Categories"
msgstr "Категории" msgstr "Категории"
#: ../../include/features.php:23 #: include/contact_widgets.php:237
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d Контакт"
msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
msgstr[3] "%d Контактов"
#: include/features.php:63
msgid "General Features" msgid "General Features"
msgstr "Основные возможности" msgstr "Основные возможности"
#: ../../include/features.php:25 #: include/features.php:65
msgid "Multiple Profiles" msgid "Multiple Profiles"
msgstr "Несколько профилей" msgstr "Несколько профилей"
#: ../../include/features.php:25 #: include/features.php:65
msgid "Ability to create multiple profiles" msgid "Ability to create multiple profiles"
msgstr "Возможность создания нескольких профилей" msgstr "Возможность создания нескольких профилей"
#: ../../include/features.php:30 #: include/features.php:66
msgid "Post Composition Features" msgid "Photo Location"
msgstr "" msgstr ""
#: ../../include/features.php:31 #: include/features.php:66
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present) "
"prior to stripping metadata and links it to a map."
msgstr ""
#: include/features.php:71
msgid "Post Composition Features"
msgstr "Составление сообщений"
#: include/features.php:72
msgid "Richtext Editor" msgid "Richtext Editor"
msgstr "Редактор RTF" msgstr "Редактор RTF"
#: ../../include/features.php:31 #: include/features.php:72
msgid "Enable richtext editor" msgid "Enable richtext editor"
msgstr "Включить редактор RTF" msgstr "Включить редактор RTF"
#: ../../include/features.php:32 #: include/features.php:73
msgid "Post Preview" msgid "Post Preview"
msgstr "предварительный просмотр" msgstr "Предварительный просмотр"
#: ../../include/features.php:32 #: include/features.php:73
msgid "Allow previewing posts and comments before publishing them" msgid "Allow previewing posts and comments before publishing them"
msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией" msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией"
#: ../../include/features.php:33 #: include/features.php:74
msgid "Auto-mention Forums" msgid "Auto-mention Forums"
msgstr "" msgstr ""
#: ../../include/features.php:33 #: include/features.php:74
msgid "" msgid ""
"Add/remove mention when a fourm page is selected/deselected in ACL window." "Add/remove mention when a fourm page is selected/deselected in ACL window."
msgstr "" msgstr ""
#: ../../include/features.php:38 #: include/features.php:79
msgid "Network Sidebar Widgets" msgid "Network Sidebar Widgets"
msgstr "Виджет боковой панели \"Сеть\"" msgstr "Виджет боковой панели \"Сеть\""
#: ../../include/features.php:39 #: include/features.php:80
msgid "Search by Date" msgid "Search by Date"
msgstr "Поиск по датам" msgstr "Поиск по датам"
#: ../../include/features.php:39 #: include/features.php:80
msgid "Ability to select posts by date ranges" msgid "Ability to select posts by date ranges"
msgstr "Возможность выбора постов по диапазону дат" msgstr "Возможность выбора постов по диапазону дат"
#: ../../include/features.php:40 #: include/features.php:81 include/features.php:111
msgid "List Forums"
msgstr ""
#: include/features.php:81
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:82
msgid "Group Filter" msgid "Group Filter"
msgstr "Фильтр групп" msgstr "Фильтр групп"
#: ../../include/features.php:40 #: include/features.php:82
msgid "Enable widget to display Network posts only from selected group" msgid "Enable widget to display Network posts only from selected group"
msgstr "Включить виджет для отображения сообщений сети только от выбранной группы" msgstr ""
"Включить виджет для отображения сообщений сети только от выбранной группы"
#: ../../include/features.php:41 #: include/features.php:83
msgid "Network Filter" msgid "Network Filter"
msgstr "Фильтр сети" msgstr "Фильтр сети"
#: ../../include/features.php:41 #: include/features.php:83
msgid "Enable widget to display Network posts only from selected network" msgid "Enable widget to display Network posts only from selected network"
msgstr "Включить виджет для отображения сообщений сети только от выбранной сети" msgstr ""
"Включить виджет для отображения сообщений сети только от выбранной сети"
#: ../../include/features.php:42 #: include/features.php:84
msgid "Save search terms for re-use" msgid "Save search terms for re-use"
msgstr "Сохранить условия поиска для повторного использования" msgstr "Сохранить условия поиска для повторного использования"
#: ../../include/features.php:47 #: include/features.php:89
msgid "Network Tabs" msgid "Network Tabs"
msgstr "Сетевые вкладки" msgstr "Сетевые вкладки"
#: ../../include/features.php:48 #: include/features.php:90
msgid "Network Personal Tab" msgid "Network Personal Tab"
msgstr "Персональные сетевые вкладки" msgstr "Персональные сетевые вкладки"
#: ../../include/features.php:48 #: include/features.php:90
msgid "Enable tab to display only Network posts that you've interacted on" msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Включить вкладку для отображения только сообщений сети, с которой вы взаимодействовали" msgstr ""
"Включить вкладку для отображения только сообщений сети, с которой вы "
"взаимодействовали"
#: ../../include/features.php:49 #: include/features.php:91
msgid "Network New Tab" msgid "Network New Tab"
msgstr "Новая вкладка сеть" msgstr "Новая вкладка сеть"
#: ../../include/features.php:49 #: include/features.php:91
msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)" msgstr ""
"Включить вкладку для отображения только новых сообщений сети (за последние "
"12 часов)"
#: ../../include/features.php:50 #: include/features.php:92
msgid "Network Shared Links Tab" msgid "Network Shared Links Tab"
msgstr "Вкладка shared ссылок сети" msgstr "Вкладка shared ссылок сети"
#: ../../include/features.php:50 #: include/features.php:92
msgid "Enable tab to display only Network posts with links in them" msgid "Enable tab to display only Network posts with links in them"
msgstr "Включить вкладку для отображения только сообщений сети со ссылками на них" msgstr ""
"Включить вкладку для отображения только сообщений сети со ссылками на них"
#: ../../include/features.php:55 #: include/features.php:97
msgid "Post/Comment Tools" msgid "Post/Comment Tools"
msgstr "Инструменты пост/комментарий" msgstr "Инструменты пост/комментарий"
#: ../../include/features.php:56 #: include/features.php:98
msgid "Multiple Deletion" msgid "Multiple Deletion"
msgstr "Множественное удаление" msgstr "Множественное удаление"
#: ../../include/features.php:56 #: include/features.php:98
msgid "Select and delete multiple posts/comments at once" msgid "Select and delete multiple posts/comments at once"
msgstr "Выбрать и удалить несколько постов/комментариев одновременно." msgstr "Выбрать и удалить несколько постов/комментариев одновременно."
#: ../../include/features.php:57 #: include/features.php:99
msgid "Edit Sent Posts" msgid "Edit Sent Posts"
msgstr "Редактировать отправленные посты" msgstr "Редактировать отправленные посты"
#: ../../include/features.php:57 #: include/features.php:99
msgid "Edit and correct posts and comments after sending" msgid "Edit and correct posts and comments after sending"
msgstr "Редактировать и править посты и комментарии после отправления" msgstr "Редактировать и править посты и комментарии после отправления"
#: ../../include/features.php:58 #: include/features.php:100
msgid "Tagging" msgid "Tagging"
msgstr "Отмеченное" msgstr "Отмеченное"
#: ../../include/features.php:58 #: include/features.php:100
msgid "Ability to tag existing posts" msgid "Ability to tag existing posts"
msgstr "Возможность отмечать существующие посты" msgstr "Возможность отмечать существующие посты"
#: ../../include/features.php:59 #: include/features.php:101
msgid "Post Categories" msgid "Post Categories"
msgstr "Категории постов" msgstr "Категории постов"
#: ../../include/features.php:59 #: include/features.php:101
msgid "Add categories to your posts" msgid "Add categories to your posts"
msgstr "Добавить категории вашего поста" msgstr "Добавить категории вашего поста"
#: ../../include/features.php:60 #: include/features.php:102
msgid "Ability to file posts under folders" msgid "Ability to file posts under folders"
msgstr "" msgstr ""
#: ../../include/features.php:61 #: include/features.php:103
msgid "Dislike Posts" msgid "Dislike Posts"
msgstr "Посты дизлайк" msgstr "Посты дизлайк"
#: ../../include/features.php:61 #: include/features.php:103
msgid "Ability to dislike posts/comments" msgid "Ability to dislike posts/comments"
msgstr "Возможность дизлайка постов/комментариев" msgstr "Возможность дизлайка постов/комментариев"
#: ../../include/features.php:62 #: include/features.php:104
msgid "Star Posts" msgid "Star Posts"
msgstr "Популярные посты" msgstr "Популярные посты"
#: ../../include/features.php:62 #: include/features.php:104
msgid "Ability to mark special posts with a star indicator" msgid "Ability to mark special posts with a star indicator"
msgstr "Возможность отметить специальные сообщения индикатором популярности" msgstr "Возможность отметить специальные сообщения индикатором популярности"
#: ../../include/features.php:63 #: include/features.php:105
msgid "Mute Post Notifications" msgid "Mute Post Notifications"
msgstr "" msgstr ""
#: ../../include/features.php:63 #: include/features.php:105
msgid "Ability to mute notifications for a thread" msgid "Ability to mute notifications for a thread"
msgstr "" msgstr ""
#: ../../include/follow.php:32 #: include/features.php:110
msgid "Advanced Profile Settings"
msgstr "Расширенные настройки профиля"
#: include/features.php:111
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/follow.php:77
msgid "Connect URL missing." msgid "Connect URL missing."
msgstr "Connect-URL отсутствует." msgstr "Connect-URL отсутствует."
#: ../../include/follow.php:59 #: include/follow.php:104
msgid "" msgid ""
"This site is not configured to allow communications with other networks." "This site is not configured to allow communications with other networks."
msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями." msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
#: ../../include/follow.php:60 ../../include/follow.php:80 #: include/follow.php:105 include/follow.php:125
msgid "No compatible communication protocols or feeds were discovered." msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы." msgstr "Обнаружены несовместимые протоколы связи или каналы."
#: ../../include/follow.php:78 #: include/follow.php:123
msgid "The profile address specified does not provide adequate information." msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации." msgstr "Указанный адрес профиля не дает адекватной информации."
#: ../../include/follow.php:82 #: include/follow.php:127
msgid "An author or name was not found." msgid "An author or name was not found."
msgstr "Автор или имя не найдены." msgstr "Автор или имя не найдены."
#: ../../include/follow.php:84 #: include/follow.php:129
msgid "No browser URL could be matched to this address." msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу." msgstr "Нет URL браузера, который соответствует этому адресу."
#: ../../include/follow.php:86 #: include/follow.php:131
msgid "" msgid ""
"Unable to match @-style Identity Address with a known protocol or email " "Unable to match @-style Identity Address with a known protocol or email "
"contact." "contact."
msgstr "" msgstr ""
#: ../../include/follow.php:87 #: include/follow.php:132
msgid "Use mailto: in front of address to force email check." msgid "Use mailto: in front of address to force email check."
msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."
#: ../../include/follow.php:93 #: include/follow.php:138
msgid "" msgid ""
"The profile address specified belongs to a network which has been disabled " "The profile address specified belongs to a network which has been disabled "
"on this site." "on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: ../../include/follow.php:103 #: include/follow.php:148
msgid "" msgid ""
"Limited profile. This person will be unable to receive direct/personal " "Limited profile. This person will be unable to receive direct/personal "
"notifications from you." "notifications from you."
msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." msgstr ""
"Ограниченный профиль. Этот человек не сможет получить прямые / личные "
"уведомления от вас."
#: ../../include/follow.php:205 #: include/follow.php:249
msgid "Unable to retrieve contact information." msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию." msgstr "Невозможно получить контактную информацию."
#: ../../include/follow.php:258 #: include/follow.php:302
msgid "following" msgid "following"
msgstr "следует" msgstr "следует"
#: ../../include/group.php:25 #: include/group.php:25
msgid "" msgid ""
"A deleted group with this name was revived. Existing item permissions " "A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is " "<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name." "not what you intended, please create another group with a different name."
msgstr "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием." msgstr ""
"Удаленная группа с таким названием была восстановлена. Существующие права "
"доступа <strong>могут</strong> применяться к этой группе и любым будущим "
"участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну "
"группу с другим названием."
#: ../../include/group.php:207 #: include/group.php:209
msgid "Default privacy group for new contacts" msgid "Default privacy group for new contacts"
msgstr "Группа доступа по умолчанию для новых контактов" msgstr "Группа доступа по умолчанию для новых контактов"
#: ../../include/group.php:226 #: include/group.php:239
msgid "Everybody" msgid "Everybody"
msgstr "Каждый" msgstr "Каждый"
#: ../../include/group.php:249 #: include/group.php:262
msgid "edit" msgid "edit"
msgstr "редактировать" msgstr "редактировать"
#: ../../include/group.php:271 #: include/group.php:285
msgid "Edit groups"
msgstr ""
#: include/group.php:287
msgid "Edit group" msgid "Edit group"
msgstr "Редактировать группу" msgstr "Редактировать группу"
#: ../../include/group.php:272 #: include/group.php:288
msgid "Create a new group" msgid "Create a new group"
msgstr "Создать новую группу" msgstr "Создать новую группу"
#: ../../include/group.php:273 #: include/group.php:291
msgid "Contacts not in any group" msgid "Contacts not in any group"
msgstr "Контакты не состоят в группе" msgstr "Контакты не состоят в группе"
#: ../../include/datetime.php:43 ../../include/datetime.php:45 #: include/datetime.php:43 include/datetime.php:45
msgid "Miscellaneous" msgid "Miscellaneous"
msgstr "Разное" msgstr "Разное"
#: ../../include/datetime.php:153 ../../include/datetime.php:290 #: include/datetime.php:141
msgid "year" msgid "YYYY-MM-DD or MM-DD"
msgstr "год" msgstr ""
#: ../../include/datetime.php:158 ../../include/datetime.php:291 #: include/datetime.php:271
msgid "month"
msgstr "мес."
#: ../../include/datetime.php:163 ../../include/datetime.php:293
msgid "day"
msgstr "день"
#: ../../include/datetime.php:276
msgid "never" msgid "never"
msgstr "никогда" msgstr "никогда"
#: ../../include/datetime.php:282 #: include/datetime.php:277
msgid "less than a second ago" msgid "less than a second ago"
msgstr "менее сек. назад" msgstr "менее сек. назад"
#: ../../include/datetime.php:290 #: include/datetime.php:287
msgid "year"
msgstr "год"
#: include/datetime.php:287
msgid "years" msgid "years"
msgstr "лет" msgstr "лет"
#: ../../include/datetime.php:291 #: include/datetime.php:288
msgid "months" msgid "months"
msgstr "мес." msgstr "мес."
#: ../../include/datetime.php:292 #: include/datetime.php:289
msgid "week"
msgstr "неделя"
#: ../../include/datetime.php:292
msgid "weeks" msgid "weeks"
msgstr "недель" msgstr "недель"
#: ../../include/datetime.php:293 #: include/datetime.php:290
msgid "days" msgid "days"
msgstr "дней" msgstr "дней"
#: ../../include/datetime.php:294 #: include/datetime.php:291
msgid "hour" msgid "hour"
msgstr "час" msgstr "час"
#: ../../include/datetime.php:294 #: include/datetime.php:291
msgid "hours" msgid "hours"
msgstr "час." msgstr "час."
#: ../../include/datetime.php:295 #: include/datetime.php:292
msgid "minute" msgid "minute"
msgstr "минута" msgstr "минута"
#: ../../include/datetime.php:295 #: include/datetime.php:292
msgid "minutes" msgid "minutes"
msgstr "мин." msgstr "мин."
#: ../../include/datetime.php:296 #: include/datetime.php:293
msgid "second" msgid "second"
msgstr "секунда" msgstr "секунда"
#: ../../include/datetime.php:296 #: include/datetime.php:293
msgid "seconds" msgid "seconds"
msgstr "сек." msgstr "сек."
#: ../../include/datetime.php:305 #: include/datetime.php:302
#, php-format #, php-format
msgid "%1$d %2$s ago" msgid "%1$d %2$s ago"
msgstr "%1$d %2$s назад" msgstr "%1$d %2$s назад"
#: ../../include/datetime.php:477 ../../include/items.php:2211 #: include/datetime.php:474 include/items.php:2500
#, php-format #, php-format
msgid "%s's birthday" msgid "%s's birthday"
msgstr "день рождения %s" msgstr "день рождения %s"
#: ../../include/datetime.php:478 ../../include/items.php:2212 #: include/datetime.php:475 include/items.php:2501
#, php-format #, php-format
msgid "Happy Birthday %s" msgid "Happy Birthday %s"
msgstr "С днём рождения %s" msgstr "С днём рождения %s"
#: ../../include/acl_selectors.php:333 #: include/identity.php:42
msgid "Visible to everybody" msgid "Requested account is not available."
msgstr "Видимо всем" msgstr "Запрашиваемый профиль недоступен."
#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142 #: include/identity.php:95 include/identity.php:284 include/identity.php:662
#: ../../view/theme/diabook/theme.php:621 msgid "Edit profile"
msgid "show" msgstr "Редактировать профиль"
msgstr "показывать"
#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142 #: include/identity.php:244
#: ../../view/theme/diabook/theme.php:621 msgid "Atom feed"
msgid "don't show"
msgstr "не показывать"
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[без темы]"
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "остановлено следование"
#: ../../include/Contact.php:228 ../../include/conversation.php:882
msgid "Poke"
msgstr "" msgstr ""
#: ../../include/Contact.php:229 ../../include/conversation.php:876 #: include/identity.php:249
msgid "View Status" msgid "Message"
msgstr "Просмотреть статус" msgstr "Сообщение"
#: ../../include/Contact.php:230 ../../include/conversation.php:877 #: include/identity.php:255 include/nav.php:185
msgid "View Profile" msgid "Profiles"
msgstr "Просмотреть профиль" msgstr "Профили"
#: ../../include/Contact.php:231 ../../include/conversation.php:878 #: include/identity.php:255
msgid "View Photos" msgid "Manage/edit profiles"
msgstr "Просмотреть фото" msgstr "Управление / редактирование профилей"
#: ../../include/Contact.php:232 ../../include/Contact.php:255 #: include/identity.php:425 include/identity.php:509
#: ../../include/conversation.php:879 msgid "g A l F d"
msgid "Network Posts" msgstr "g A l F d"
msgstr "Посты сети"
#: ../../include/Contact.php:233 ../../include/Contact.php:255 #: include/identity.php:426 include/identity.php:510
#: ../../include/conversation.php:880 msgid "F d"
msgid "Edit Contact" msgstr "F d"
msgstr "Редактировать контакт"
#: ../../include/Contact.php:234 #: include/identity.php:471 include/identity.php:556
msgid "Drop Contact" msgid "[today]"
msgstr "Удалить контакт" msgstr "[сегодня]"
#: ../../include/Contact.php:235 ../../include/Contact.php:255 #: include/identity.php:483
#: ../../include/conversation.php:881 msgid "Birthday Reminders"
msgid "Send PM" msgstr "Напоминания о днях рождения"
msgstr "Отправить ЛС"
#: ../../include/security.php:22 #: include/identity.php:484
msgid "Welcome " msgid "Birthdays this week:"
msgstr "Добро пожаловать, " msgstr "Дни рождения на этой неделе:"
#: ../../include/security.php:23 #: include/identity.php:543
msgid "Please upload a profile photo." msgid "[No description]"
msgstr "Пожалуйста, загрузите фотографию профиля." msgstr "[без описания]"
#: ../../include/security.php:26 #: include/identity.php:567
msgid "Welcome back " msgid "Event Reminders"
msgstr "Добро пожаловать обратно, " msgstr "Напоминания о мероприятиях"
#: ../../include/security.php:366 #: include/identity.php:568
msgid "" msgid "Events this week:"
"The form security token was not correct. This probably happened because the " msgstr "Мероприятия на этой неделе:"
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."
#: ../../include/conversation.php:118 ../../include/conversation.php:246 #: include/identity.php:595
#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463 msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:596
msgid "j F"
msgstr "j F"
#: include/identity.php:603
msgid "Birthday:"
msgstr "День рождения:"
#: include/identity.php:607
msgid "Age:"
msgstr "Возраст:"
#: include/identity.php:616
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: include/identity.php:629
msgid "Religion:"
msgstr "Религия:"
#: include/identity.php:633
msgid "Hobbies/Interests:"
msgstr "Хобби / Интересы:"
#: include/identity.php:640
msgid "Contact information and Social Networks:"
msgstr "Информация о контакте и социальных сетях:"
#: include/identity.php:642
msgid "Musical interests:"
msgstr "Музыкальные интересы:"
#: include/identity.php:644
msgid "Books, literature:"
msgstr "Книги, литература:"
#: include/identity.php:646
msgid "Television:"
msgstr "Телевидение:"
#: include/identity.php:648
msgid "Film/dance/culture/entertainment:"
msgstr "Кино / Танцы / Культура / Развлечения:"
#: include/identity.php:650
msgid "Love/Romance:"
msgstr "Любовь / Романтика:"
#: include/identity.php:652
msgid "Work/employment:"
msgstr "Работа / Занятость:"
#: include/identity.php:654
msgid "School/education:"
msgstr "Школа / Образование:"
#: include/identity.php:658
msgid "Forums:"
msgstr ""
#: include/identity.php:710 include/identity.php:713 include/nav.php:78
msgid "Videos"
msgstr "Видео"
#: include/identity.php:725 include/nav.php:140
msgid "Events and Calendar"
msgstr "Календарь и события"
#: include/identity.php:733
msgid "Only You Can See This"
msgstr "Только вы можете это видеть"
#: include/like.php:167 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1998
#: view/theme/diabook/theme.php:463
msgid "event" msgid "event"
msgstr "мероприятие" msgstr "мероприятие"
#: ../../include/conversation.php:207 #: include/like.php:184 include/conversation.php:141 include/diaspora.php:2185
#: view/theme/diabook/theme.php:480
#, php-format #, php-format
msgid "%1$s poked %2$s" msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: include/like.php:186 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: include/like.php:188
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr "" msgstr ""
#: ../../include/conversation.php:211 ../../include/text.php:1005 #: include/like.php:190
msgid "poked" #, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr "" msgstr ""
#: ../../include/conversation.php:291 #: include/like.php:192
msgid "post/item"
msgstr "пост/элемент"
#: ../../include/conversation.php:292
#, php-format #, php-format
msgid "%1$s marked %2$s's %3$s as favorite" msgid "%1$s may attend %2$s's %3$s"
msgstr "%1$s пометил %2$s %3$s как Фаворит"
#: ../../include/conversation.php:772
msgid "remove"
msgstr "удалить"
#: ../../include/conversation.php:776
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: ../../include/conversation.php:875
msgid "Follow Thread"
msgstr "" msgstr ""
#: ../../include/conversation.php:944 #: include/acl_selectors.php:325
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: ../../include/conversation.php:944
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:949
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d людям</span> нравится это"
#: ../../include/conversation.php:952
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d людям</span> не нравится это"
#: ../../include/conversation.php:966
msgid "and"
msgstr "и"
#: ../../include/conversation.php:972
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
#: ../../include/conversation.php:974
#, php-format
msgid "%s like this."
msgstr "%s нравится это."
#: ../../include/conversation.php:974
#, php-format
msgid "%s don't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
msgid "Please enter a video link/URL:"
msgstr "Введите ссылку на видео link/URL:"
#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
msgid "Please enter an audio link/URL:"
msgstr "Введите ссылку на аудио link/URL:"
#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: ../../include/conversation.php:1008
msgid "Delete item(s)?"
msgstr "Удалить елемент(ты)?"
#: ../../include/conversation.php:1051
msgid "Post to Email" msgid "Post to Email"
msgstr "Отправить на Email" msgstr "Отправить на Email"
#: ../../include/conversation.php:1056 #: include/acl_selectors.php:330
#, php-format #, php-format
msgid "Connectors disabled, since \"%s\" is enabled." msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "" msgstr ""
#: ../../include/conversation.php:1111 #: include/acl_selectors.php:336
msgid "Visible to everybody"
msgstr "Видимо всем"
#: include/acl_selectors.php:337 view/theme/diabook/config.php:142
#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103
msgid "show"
msgstr "показывать"
#: include/acl_selectors.php:338 view/theme/diabook/config.php:142
#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103
msgid "don't show"
msgstr "не показывать"
#: include/acl_selectors.php:348
msgid "Close"
msgstr "Закрыть"
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[без темы]"
#: include/Contact.php:119
msgid "stopped following"
msgstr "остановлено следование"
#: include/Contact.php:337 include/conversation.php:911
msgid "View Status"
msgstr "Просмотреть статус"
#: include/Contact.php:339 include/conversation.php:913
msgid "View Photos"
msgstr "Просмотреть фото"
#: include/Contact.php:340 include/conversation.php:914
msgid "Network Posts"
msgstr "Посты сети"
#: include/Contact.php:341 include/conversation.php:915
msgid "Edit Contact"
msgstr "Редактировать контакт"
#: include/Contact.php:342
msgid "Drop Contact"
msgstr "Удалить контакт"
#: include/Contact.php:343 include/conversation.php:916
msgid "Send PM"
msgstr "Отправить ЛС"
#: include/Contact.php:344 include/conversation.php:920
msgid "Poke"
msgstr ""
#: include/security.php:22
msgid "Welcome "
msgstr "Добро пожаловать, "
#: include/security.php:23
msgid "Please upload a profile photo."
msgstr "Пожалуйста, загрузите фотографию профиля."
#: include/security.php:26
msgid "Welcome back "
msgstr "Добро пожаловать обратно, "
#: include/security.php:375
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr ""
"Ключ формы безопасности неправильный. Вероятно, это произошло потому, что "
"форма была открыта слишком долго (более 3 часов) до её отправки."
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:303
msgid "post/item"
msgstr "пост/элемент"
#: include/conversation.php:304
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s пометил %2$s %3$s как Фаворит"
#: include/conversation.php:792
msgid "remove"
msgstr "удалить"
#: include/conversation.php:796
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: include/conversation.php:910
msgid "Follow Thread"
msgstr ""
#: include/conversation.php:1034
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: include/conversation.php:1037
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: include/conversation.php:1040
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1043
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1046
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1056
msgid "and"
msgstr "и"
#: include/conversation.php:1062
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
#: include/conversation.php:1071
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d людям</span> нравится это"
#: include/conversation.php:1072
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1075
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d людям</span> не нравится это"
#: include/conversation.php:1076
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1079
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1080
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1083
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1084
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1087
#, php-format
msgid "<span %1$s>%2$d people</span> anttend maybe"
msgstr ""
#: include/conversation.php:1088
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1127 include/conversation.php:1145
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: include/conversation.php:1129 include/conversation.php:1147
msgid "Please enter a video link/URL:"
msgstr "Введите ссылку на видео link/URL:"
#: include/conversation.php:1130 include/conversation.php:1148
msgid "Please enter an audio link/URL:"
msgstr "Введите ссылку на аудио link/URL:"
#: include/conversation.php:1131 include/conversation.php:1149
msgid "Tag term:"
msgstr ""
#: include/conversation.php:1133 include/conversation.php:1151
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: include/conversation.php:1134
msgid "Delete item(s)?"
msgstr "Удалить елемент(ты)?"
#: include/conversation.php:1203
msgid "permissions" msgid "permissions"
msgstr "разрешения" msgstr "разрешения"
#: ../../include/conversation.php:1135 #: include/conversation.php:1226
msgid "Post to Groups" msgid "Post to Groups"
msgstr "Пост для групп" msgstr "Пост для групп"
#: ../../include/conversation.php:1136 #: include/conversation.php:1227
msgid "Post to Contacts" msgid "Post to Contacts"
msgstr "Пост для контактов" msgstr "Пост для контактов"
#: ../../include/conversation.php:1137 #: include/conversation.php:1228
msgid "Private post" msgid "Private post"
msgstr "Личное сообщение" msgstr "Личное сообщение"
#: ../../include/network.php:895 #: include/conversation.php:1385
msgid "View all"
msgstr ""
#: include/conversation.php:1407
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:1410
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:1416
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:1419 include/profile_selectors.php:6
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/forums.php:105 include/text.php:1015 include/nav.php:126
#: view/theme/vier/theme.php:259
msgid "Forums"
msgstr ""
#: include/forums.php:107 view/theme/vier/theme.php:261
msgid "External link to forum"
msgstr ""
#: include/network.php:967
msgid "view full size" msgid "view full size"
msgstr "посмотреть в полный размер" msgstr "посмотреть в полный размер"
#: ../../include/text.php:297 #: include/text.php:303
msgid "newer" msgid "newer"
msgstr "новее" msgstr "новее"
#: ../../include/text.php:299 #: include/text.php:305
msgid "older" msgid "older"
msgstr "старее" msgstr "старее"
#: ../../include/text.php:304 #: include/text.php:310
msgid "prev" msgid "prev"
msgstr "пред." msgstr "пред."
#: ../../include/text.php:306 #: include/text.php:312
msgid "first" msgid "first"
msgstr "первый" msgstr "первый"
#: ../../include/text.php:338 #: include/text.php:344
msgid "last" msgid "last"
msgstr "последний" msgstr "последний"
#: ../../include/text.php:341 #: include/text.php:347
msgid "next" msgid "next"
msgstr "след." msgstr "след."
#: ../../include/text.php:855 #: include/text.php:402
msgid "Loading more entries..."
msgstr ""
#: include/text.php:403
msgid "The end"
msgstr ""
#: include/text.php:894
msgid "No contacts" msgid "No contacts"
msgstr "Нет контактов" msgstr "Нет контактов"
#: ../../include/text.php:864 #: include/text.php:909
#, php-format #, php-format
msgid "%d Contact" msgid "%d Contact"
msgid_plural "%d Contacts" msgid_plural "%d Contacts"
msgstr[0] "%d контакт" msgstr[0] "%d контакт"
msgstr[1] "%d контактов" msgstr[1] "%d контактов"
msgstr[2] "%d контактов" msgstr[2] "%d контактов"
msgstr[3] "%d контактов"
#: ../../include/text.php:1005 #: include/text.php:921
msgid "View Contacts"
msgstr "Просмотр контактов"
#: include/text.php:1010 include/nav.php:121
msgid "Full Text"
msgstr "Контент"
#: include/text.php:1011 include/nav.php:122
msgid "Tags"
msgstr "Тэги"
#: include/text.php:1066
msgid "poke" msgid "poke"
msgstr "poke" msgstr "poke"
#: ../../include/text.php:1006 #: include/text.php:1066
msgid "poked"
msgstr ""
#: include/text.php:1067
msgid "ping" msgid "ping"
msgstr "пинг" msgstr "пинг"
#: ../../include/text.php:1006 #: include/text.php:1067
msgid "pinged" msgid "pinged"
msgstr "пингуется" msgstr "пингуется"
#: ../../include/text.php:1007 #: include/text.php:1068
msgid "prod" msgid "prod"
msgstr "" msgstr ""
#: ../../include/text.php:1007 #: include/text.php:1068
msgid "prodded" msgid "prodded"
msgstr "" msgstr ""
#: ../../include/text.php:1008 #: include/text.php:1069
msgid "slap" msgid "slap"
msgstr "" msgstr ""
#: ../../include/text.php:1008 #: include/text.php:1069
msgid "slapped" msgid "slapped"
msgstr "" msgstr ""
#: ../../include/text.php:1009 #: include/text.php:1070
msgid "finger" msgid "finger"
msgstr "" msgstr ""
#: ../../include/text.php:1009 #: include/text.php:1070
msgid "fingered" msgid "fingered"
msgstr "" msgstr ""
#: ../../include/text.php:1010 #: include/text.php:1071
msgid "rebuff" msgid "rebuff"
msgstr "" msgstr ""
#: ../../include/text.php:1010 #: include/text.php:1071
msgid "rebuffed" msgid "rebuffed"
msgstr "" msgstr ""
#: ../../include/text.php:1024 #: include/text.php:1085
msgid "happy" msgid "happy"
msgstr "" msgstr ""
#: ../../include/text.php:1025 #: include/text.php:1086
msgid "sad" msgid "sad"
msgstr "" msgstr ""
#: ../../include/text.php:1026 #: include/text.php:1087
msgid "mellow" msgid "mellow"
msgstr "" msgstr ""
#: ../../include/text.php:1027 #: include/text.php:1088
msgid "tired" msgid "tired"
msgstr "" msgstr ""
#: ../../include/text.php:1028 #: include/text.php:1089
msgid "perky" msgid "perky"
msgstr "" msgstr ""
#: ../../include/text.php:1029 #: include/text.php:1090
msgid "angry" msgid "angry"
msgstr "" msgstr ""
#: ../../include/text.php:1030 #: include/text.php:1091
msgid "stupified" msgid "stupified"
msgstr "" msgstr ""
#: ../../include/text.php:1031 #: include/text.php:1092
msgid "puzzled" msgid "puzzled"
msgstr "" msgstr ""
#: ../../include/text.php:1032 #: include/text.php:1093
msgid "interested" msgid "interested"
msgstr "" msgstr ""
#: ../../include/text.php:1033 #: include/text.php:1094
msgid "bitter" msgid "bitter"
msgstr "" msgstr ""
#: ../../include/text.php:1034 #: include/text.php:1095
msgid "cheerful" msgid "cheerful"
msgstr "" msgstr ""
#: ../../include/text.php:1035 #: include/text.php:1096
msgid "alive" msgid "alive"
msgstr "" msgstr ""
#: ../../include/text.php:1036 #: include/text.php:1097
msgid "annoyed" msgid "annoyed"
msgstr "" msgstr ""
#: ../../include/text.php:1037 #: include/text.php:1098
msgid "anxious" msgid "anxious"
msgstr "" msgstr ""
#: ../../include/text.php:1038 #: include/text.php:1099
msgid "cranky" msgid "cranky"
msgstr "" msgstr ""
#: ../../include/text.php:1039 #: include/text.php:1100
msgid "disturbed" msgid "disturbed"
msgstr "" msgstr ""
#: ../../include/text.php:1040 #: include/text.php:1101
msgid "frustrated" msgid "frustrated"
msgstr "" msgstr ""
#: ../../include/text.php:1041 #: include/text.php:1102
msgid "motivated" msgid "motivated"
msgstr "" msgstr ""
#: ../../include/text.php:1042 #: include/text.php:1103
msgid "relaxed" msgid "relaxed"
msgstr "" msgstr ""
#: ../../include/text.php:1043 #: include/text.php:1104
msgid "surprised" msgid "surprised"
msgstr "" msgstr ""
#: ../../include/text.php:1213 #: include/text.php:1504
msgid "Monday"
msgstr "Понедельник"
#: ../../include/text.php:1213
msgid "Tuesday"
msgstr "Вторник"
#: ../../include/text.php:1213
msgid "Wednesday"
msgstr "Среда"
#: ../../include/text.php:1213
msgid "Thursday"
msgstr "Четверг"
#: ../../include/text.php:1213
msgid "Friday"
msgstr "Пятница"
#: ../../include/text.php:1213
msgid "Saturday"
msgstr "Суббота"
#: ../../include/text.php:1213
msgid "Sunday"
msgstr "Воскресенье"
#: ../../include/text.php:1217
msgid "January"
msgstr "Январь"
#: ../../include/text.php:1217
msgid "February"
msgstr "Февраль"
#: ../../include/text.php:1217
msgid "March"
msgstr "Март"
#: ../../include/text.php:1217
msgid "April"
msgstr "Апрель"
#: ../../include/text.php:1217
msgid "May"
msgstr "Май"
#: ../../include/text.php:1217
msgid "June"
msgstr "Июнь"
#: ../../include/text.php:1217
msgid "July"
msgstr "Июль"
#: ../../include/text.php:1217
msgid "August"
msgstr "Август"
#: ../../include/text.php:1217
msgid "September"
msgstr "Сентябрь"
#: ../../include/text.php:1217
msgid "October"
msgstr "Октябрь"
#: ../../include/text.php:1217
msgid "November"
msgstr "Ноябрь"
#: ../../include/text.php:1217
msgid "December"
msgstr "Декабрь"
#: ../../include/text.php:1437
msgid "bytes" msgid "bytes"
msgstr "байт" msgstr "байт"
#: ../../include/text.php:1461 ../../include/text.php:1473 #: include/text.php:1536 include/text.php:1548
msgid "Click to open/close" msgid "Click to open/close"
msgstr "Нажмите, чтобы открыть / закрыть" msgstr "Нажмите, чтобы открыть / закрыть"
#: ../../include/text.php:1702 ../../include/user.php:247 #: include/text.php:1722
#: ../../view/theme/duepuntozero/config.php:44 msgid "View on separate page"
msgid "default" msgstr ""
msgstr "значение по умолчанию"
#: ../../include/text.php:1714 #: include/text.php:1723
msgid "Select an alternate language" msgid "view on separate page"
msgstr "Выбор альтернативного языка" msgstr ""
#: ../../include/text.php:1970 #: include/text.php:2002
msgid "activity" msgid "activity"
msgstr "активность" msgstr "активность"
#: ../../include/text.php:1973 #: include/text.php:2005
msgid "post" msgid "post"
msgstr "сообщение" msgstr "сообщение"
#: ../../include/text.php:2141 #: include/text.php:2173
msgid "Item filed" msgid "Item filed"
msgstr "" msgstr ""
#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047 #: include/bbcode.php:482 include/bbcode.php:1157 include/bbcode.php:1158
#: ../../include/bbcode.php:1048
msgid "Image/photo" msgid "Image/photo"
msgstr "Изображение / Фото" msgstr "Изображение / Фото"
#: ../../include/bbcode.php:528 #: include/bbcode.php:595
#, php-format #, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s" msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "" msgstr ""
#: ../../include/bbcode.php:562 #: include/bbcode.php:629
#, php-format #, php-format
msgid "" msgid ""
"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a " "<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
"href=\"%s\" target=\"_blank\">post</a>" "\"%s\" target=\"_blank\">post</a>"
msgstr "" msgstr ""
#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031 #: include/bbcode.php:1117 include/bbcode.php:1137
msgid "$1 wrote:" msgid "$1 wrote:"
msgstr "$1 написал:" msgstr "$1 написал:"
#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057 #: include/bbcode.php:1166 include/bbcode.php:1167
msgid "Encrypted content" msgid "Encrypted content"
msgstr "Зашифрованный контент" msgstr "Зашифрованный контент"
#: ../../include/notifier.php:786 ../../include/delivery.php:456 #: include/dba_pdo.php:72 include/dba.php:55
msgid "(no subject)"
msgstr "(без темы)"
#: ../../include/notifier.php:796 ../../include/delivery.php:467
#: ../../include/enotify.php:33
msgid "noreply"
msgstr "без ответа"
#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
#, php-format #, php-format
msgid "Cannot locate DNS info for database server '%s'" msgid "Cannot locate DNS info for database server '%s'"
msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'" msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
#: ../../include/contact_selectors.php:32 #: include/contact_selectors.php:32
msgid "Unknown | Not categorised" msgid "Unknown | Not categorised"
msgstr "Неизвестно | Не определено" msgstr "Неизвестно | Не определено"
#: ../../include/contact_selectors.php:33 #: include/contact_selectors.php:33
msgid "Block immediately" msgid "Block immediately"
msgstr "Блокировать немедленно" msgstr "Блокировать немедленно"
#: ../../include/contact_selectors.php:34 #: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer" msgid "Shady, spammer, self-marketer"
msgstr "Тролль, спаммер, рассылает рекламу" msgstr "Тролль, спаммер, рассылает рекламу"
#: ../../include/contact_selectors.php:35 #: include/contact_selectors.php:35
msgid "Known to me, but no opinion" msgid "Known to me, but no opinion"
msgstr "Известные мне, но нет определенного мнения" msgstr "Известные мне, но нет определенного мнения"
#: ../../include/contact_selectors.php:36 #: include/contact_selectors.php:36
msgid "OK, probably harmless" msgid "OK, probably harmless"
msgstr "Хорошо, наверное, безвредные" msgstr "Хорошо, наверное, безвредные"
#: ../../include/contact_selectors.php:37 #: include/contact_selectors.php:37
msgid "Reputable, has my trust" msgid "Reputable, has my trust"
msgstr "Уважаемые, есть мое доверие" msgstr "Уважаемые, есть мое доверие"
#: ../../include/contact_selectors.php:60 #: include/contact_selectors.php:60
msgid "Weekly" msgid "Weekly"
msgstr "Еженедельно" msgstr "Еженедельно"
#: ../../include/contact_selectors.php:61 #: include/contact_selectors.php:61
msgid "Monthly" msgid "Monthly"
msgstr "Ежемесячно" msgstr "Ежемесячно"
#: ../../include/contact_selectors.php:77 #: include/contact_selectors.php:77
msgid "OStatus" msgid "OStatus"
msgstr "OStatus" msgstr "OStatus"
#: ../../include/contact_selectors.php:78 #: include/contact_selectors.php:78
msgid "RSS/Atom" msgid "RSS/Atom"
msgstr "RSS/Atom" msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:82 #: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: include/contact_selectors.php:82
msgid "Zot!" msgid "Zot!"
msgstr "Zot!" msgstr "Zot!"
#: ../../include/contact_selectors.php:83 #: include/contact_selectors.php:83
msgid "LinkedIn" msgid "LinkedIn"
msgstr "LinkedIn" msgstr "LinkedIn"
#: ../../include/contact_selectors.php:84 #: include/contact_selectors.php:84
msgid "XMPP/IM" msgid "XMPP/IM"
msgstr "XMPP/IM" msgstr "XMPP/IM"
#: ../../include/contact_selectors.php:85 #: include/contact_selectors.php:85
msgid "MySpace" msgid "MySpace"
msgstr "MySpace" msgstr "MySpace"
#: ../../include/contact_selectors.php:87 #: include/contact_selectors.php:87
msgid "Google+" msgid "Google+"
msgstr "Google+" msgstr "Google+"
#: ../../include/contact_selectors.php:88 #: include/contact_selectors.php:88
msgid "pump.io" msgid "pump.io"
msgstr "pump.io" msgstr "pump.io"
#: ../../include/contact_selectors.php:89 #: include/contact_selectors.php:89
msgid "Twitter" msgid "Twitter"
msgstr "Twitter" msgstr "Twitter"
#: ../../include/contact_selectors.php:90 #: include/contact_selectors.php:90
msgid "Diaspora Connector" msgid "Diaspora Connector"
msgstr "" msgstr ""
#: ../../include/contact_selectors.php:91 #: include/contact_selectors.php:91
msgid "Statusnet" msgid "GNU Social"
msgstr "" msgstr ""
#: ../../include/contact_selectors.php:92 #: include/contact_selectors.php:92
msgid "App.net" msgid "App.net"
msgstr "" msgstr ""
#: ../../include/Scrape.php:614 #: include/contact_selectors.php:103
msgid "Redmatrix"
msgstr ""
#: include/Scrape.php:624
msgid " on Last.fm" msgid " on Last.fm"
msgstr "на Last.fm" msgstr "на Last.fm"
#: ../../include/bb2diaspora.php:154 ../../include/event.php:20 #: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48
msgid "Starts:" msgid "Starts:"
msgstr "Начало:" msgstr "Начало:"
#: ../../include/bb2diaspora.php:162 ../../include/event.php:30 #: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54
msgid "Finishes:" msgid "Finishes:"
msgstr "Окончание:" msgstr "Окончание:"
#: ../../include/profile_advanced.php:22 #: include/plugin.php:522 include/plugin.php:524
msgid "j F, Y"
msgstr "j F, Y"
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr "День рождения:"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Возраст:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr "Ключевые слова: "
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Религия:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Хобби / Интересы:"
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Информация о контакте и социальных сетях:"
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr "Музыкальные интересы:"
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr "Книги, литература:"
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr "Телевидение:"
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr "Кино / Танцы / Культура / Развлечения:"
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr "Любовь / Романтика:"
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr "Работа / Занятость:"
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr "Школа / Образование:"
#: ../../include/plugin.php:455 ../../include/plugin.php:457
msgid "Click here to upgrade." msgid "Click here to upgrade."
msgstr "Нажмите для обновления." msgstr "Нажмите для обновления."
#: ../../include/plugin.php:463 #: include/plugin.php:530
msgid "This action exceeds the limits set by your subscription plan." msgid "This action exceeds the limits set by your subscription plan."
msgstr "Это действие превышает лимиты, установленные вашим тарифным планом." msgstr "Это действие превышает лимиты, установленные вашим тарифным планом."
#: ../../include/plugin.php:468 #: include/plugin.php:535
msgid "This action is not available under your subscription plan." msgid "This action is not available under your subscription plan."
msgstr "Это действие не доступно в соответствии с вашим планом подписки." msgstr "Это действие не доступно в соответствии с вашим планом подписки."
#: ../../include/nav.php:73 #: include/nav.php:72
msgid "End this session" msgid "End this session"
msgstr "Конец этой сессии" msgstr "Завершить эту сессию"
#: ../../include/nav.php:76 ../../include/nav.php:148 #: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123
#: ../../view/theme/diabook/theme.php:123
msgid "Your posts and conversations" msgid "Your posts and conversations"
msgstr "Ваши сообщения и беседы" msgstr "Данные вашей учётной записи"
#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 #: include/nav.php:76 view/theme/diabook/theme.php:124
msgid "Your profile page" msgid "Your profile page"
msgstr "Страница Вашего профиля" msgstr "Информация о вас"
#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 #: include/nav.php:77 view/theme/diabook/theme.php:126
msgid "Your photos" msgid "Your photos"
msgstr "Ваши фотографии" msgstr "Ваши фотографии"
#: ../../include/nav.php:79 #: include/nav.php:78
msgid "Your videos" msgid "Your videos"
msgstr "" msgstr ""
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127 #: include/nav.php:79 view/theme/diabook/theme.php:127
msgid "Your events" msgid "Your events"
msgstr "Ваши события" msgstr "Ваши события"
#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128 #: include/nav.php:80 view/theme/diabook/theme.php:128
msgid "Personal notes" msgid "Personal notes"
msgstr "Личные заметки" msgstr "Личные заметки"
#: ../../include/nav.php:81 #: include/nav.php:80
msgid "Your personal notes" msgid "Your personal notes"
msgstr "" msgstr ""
#: ../../include/nav.php:92 #: include/nav.php:91
msgid "Sign in" msgid "Sign in"
msgstr "Вход" msgstr "Вход"
#: ../../include/nav.php:105 #: include/nav.php:104
msgid "Home Page" msgid "Home Page"
msgstr "Главная страница" msgstr "Главная страница"
#: ../../include/nav.php:109 #: include/nav.php:108
msgid "Create an account" msgid "Create an account"
msgstr "Создать аккаунт" msgstr "Создать аккаунт"
#: ../../include/nav.php:114 #: include/nav.php:113
msgid "Help and documentation" msgid "Help and documentation"
msgstr "Помощь и документация" msgstr "Помощь и документация"
#: ../../include/nav.php:117 #: include/nav.php:116
msgid "Apps" msgid "Apps"
msgstr "Приложения" msgstr "Приложения"
#: ../../include/nav.php:117 #: include/nav.php:116
msgid "Addon applications, utilities, games" msgid "Addon applications, utilities, games"
msgstr "Дополнительные приложения, утилиты, игры" msgstr "Дополнительные приложения, утилиты, игры"
#: ../../include/nav.php:119 #: include/nav.php:118
msgid "Search site content" msgid "Search site content"
msgstr "Поиск по сайту" msgstr "Поиск по сайту"
#: ../../include/nav.php:129 #: include/nav.php:136
msgid "Conversations on this site" msgid "Conversations on this site"
msgstr "Беседы на этом сайте" msgstr "Беседы на этом сайте"
#: ../../include/nav.php:131 #: include/nav.php:138
msgid "Conversations on the network" msgid "Conversations on the network"
msgstr "" msgstr ""
#: ../../include/nav.php:133 #: include/nav.php:142
msgid "Directory" msgid "Directory"
msgstr "Каталог" msgstr "Каталог"
#: ../../include/nav.php:133 #: include/nav.php:142
msgid "People directory" msgid "People directory"
msgstr "Каталог участников" msgstr "Каталог участников"
#: ../../include/nav.php:135 #: include/nav.php:144
msgid "Information" msgid "Information"
msgstr "" msgstr "Информация"
#: ../../include/nav.php:135 #: include/nav.php:144
msgid "Information about this friendica instance" msgid "Information about this friendica instance"
msgstr "" msgstr ""
#: ../../include/nav.php:145 #: include/nav.php:154
msgid "Conversations from your friends" msgid "Conversations from your friends"
msgstr "Беседы с друзьями" msgstr "Посты ваших друзей"
#: ../../include/nav.php:146 #: include/nav.php:155
msgid "Network Reset" msgid "Network Reset"
msgstr "Перезагрузка сети" msgstr "Перезагрузка сети"
#: ../../include/nav.php:146 #: include/nav.php:155
msgid "Load Network page with no filters" msgid "Load Network page with no filters"
msgstr "Загрузить страницу сети без фильтров" msgstr "Загрузить страницу сети без фильтров"
#: ../../include/nav.php:154 #: include/nav.php:162
msgid "Friend Requests" msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей" msgstr "Запросы на добавление в список друзей"
#: ../../include/nav.php:156 #: include/nav.php:166
msgid "See all notifications" msgid "See all notifications"
msgstr "Посмотреть все уведомления" msgstr "Посмотреть все уведомления"
#: ../../include/nav.php:157 #: include/nav.php:167
msgid "Mark all system notifications seen" msgid "Mark all system notifications seen"
msgstr "Отметить все системные уведомления, как прочитанные" msgstr "Отметить все системные уведомления, как прочитанные"
#: ../../include/nav.php:161 #: include/nav.php:171
msgid "Private mail" msgid "Private mail"
msgstr "Личная почта" msgstr "Личная почта"
#: ../../include/nav.php:162 #: include/nav.php:172
msgid "Inbox" msgid "Inbox"
msgstr "Входящие" msgstr "Входящие"
#: ../../include/nav.php:163 #: include/nav.php:173
msgid "Outbox" msgid "Outbox"
msgstr "Исходящие" msgstr "Исходящие"
#: ../../include/nav.php:167 #: include/nav.php:177
msgid "Manage" msgid "Manage"
msgstr "Управлять" msgstr "Управлять"
#: ../../include/nav.php:167 #: include/nav.php:177
msgid "Manage other pages" msgid "Manage other pages"
msgstr "Управление другими страницами" msgstr "Управление другими страницами"
#: ../../include/nav.php:172 #: include/nav.php:182
msgid "Account settings" msgid "Account settings"
msgstr "Настройки аккаунта" msgstr "Настройки аккаунта"
#: ../../include/nav.php:175 #: include/nav.php:185
msgid "Manage/Edit Profiles" msgid "Manage/Edit Profiles"
msgstr "Управление/редактирование профилей" msgstr "Управление/редактирование профилей"
#: ../../include/nav.php:177 #: include/nav.php:187
msgid "Manage/edit friends and contacts" msgid "Manage/edit friends and contacts"
msgstr "Управление / редактирование друзей и контактов" msgstr "Управление / редактирование друзей и контактов"
#: ../../include/nav.php:184 #: include/nav.php:194
msgid "Site setup and configuration" msgid "Site setup and configuration"
msgstr "Установка и конфигурация сайта" msgstr "Конфигурация сайта"
#: ../../include/nav.php:188 #: include/nav.php:198
msgid "Navigation" msgid "Navigation"
msgstr "Навигация" msgstr "Навигация"
#: ../../include/nav.php:188 #: include/nav.php:198
msgid "Site map" msgid "Site map"
msgstr "Карта сайта" msgstr "Карта сайта"
#: ../../include/api.php:304 ../../include/api.php:315 #: include/api.php:878
#: ../../include/api.php:416 ../../include/api.php:1063
#: ../../include/api.php:1065
msgid "User not found."
msgstr "Пользователь не найден."
#: ../../include/api.php:771
#, php-format #, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected." msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr "" msgstr ""
#: ../../include/api.php:790 #: include/api.php:897
#, php-format #, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected." msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr "" msgstr ""
#: ../../include/api.php:809 #: include/api.php:916
#, php-format #, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected." msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr "" msgstr ""
#: ../../include/api.php:1272 #: include/user.php:48
msgid "There is no status with this id."
msgstr "Нет статуса с таким id."
#: ../../include/api.php:1342
msgid "There is no conversation with this id."
msgstr ""
#: ../../include/api.php:1614
msgid "Invalid request."
msgstr ""
#: ../../include/api.php:1625
msgid "Invalid item."
msgstr ""
#: ../../include/api.php:1635
msgid "Invalid action. "
msgstr ""
#: ../../include/api.php:1643
msgid "DB error"
msgstr ""
#: ../../include/user.php:40
msgid "An invitation is required." msgid "An invitation is required."
msgstr "Требуется приглашение." msgstr "Требуется приглашение."
#: ../../include/user.php:45 #: include/user.php:53
msgid "Invitation could not be verified." msgid "Invitation could not be verified."
msgstr "Приглашение не может быть проверено." msgstr "Приглашение не может быть проверено."
#: ../../include/user.php:53 #: include/user.php:61
msgid "Invalid OpenID url" msgid "Invalid OpenID url"
msgstr "Неверный URL OpenID" msgstr "Неверный URL OpenID"
#: ../../include/user.php:74 #: include/user.php:82
msgid "Please enter the required information." msgid "Please enter the required information."
msgstr "Пожалуйста, введите необходимую информацию." msgstr "Пожалуйста, введите необходимую информацию."
#: ../../include/user.php:88 #: include/user.php:96
msgid "Please use a shorter name." msgid "Please use a shorter name."
msgstr "Пожалуйста, используйте более короткое имя." msgstr "Пожалуйста, используйте более короткое имя."
#: ../../include/user.php:90 #: include/user.php:98
msgid "Name too short." msgid "Name too short."
msgstr "Имя слишком короткое." msgstr "Имя слишком короткое."
#: ../../include/user.php:105 #: include/user.php:113
msgid "That doesn't appear to be your full (First Last) name." msgid "That doesn't appear to be your full (First Last) name."
msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
#: ../../include/user.php:110 #: include/user.php:118
msgid "Your email domain is not among those allowed on this site." msgid "Your email domain is not among those allowed on this site."
msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." msgstr ""
"Домен вашего адреса электронной почты не относится к числу разрешенных на "
"этом сайте."
#: ../../include/user.php:113 #: include/user.php:121
msgid "Not a valid email address." msgid "Not a valid email address."
msgstr "Неверный адрес электронной почты." msgstr "Неверный адрес электронной почты."
#: ../../include/user.php:126 #: include/user.php:134
msgid "Cannot use that email." msgid "Cannot use that email."
msgstr "Нельзя использовать этот Email." msgstr "Нельзя использовать этот Email."
#: ../../include/user.php:132 #: include/user.php:140
msgid "" msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " msgstr ""
"must also begin with a letter."
msgstr "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы."
#: ../../include/user.php:138 ../../include/user.php:236 #: include/user.php:147 include/user.php:245
msgid "Nickname is already registered. Please choose another." msgid "Nickname is already registered. Please choose another."
msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."
#: ../../include/user.php:148 #: include/user.php:157
msgid "" msgid ""
"Nickname was once registered here and may not be re-used. Please choose " "Nickname was once registered here and may not be re-used. Please choose "
"another." "another."
msgstr "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник." msgstr ""
"Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, "
"выберите другой ник."
#: ../../include/user.php:164 #: include/user.php:173
msgid "SERIOUS ERROR: Generation of security keys failed." msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
#: ../../include/user.php:222 #: include/user.php:231
msgid "An error occurred during registration. Please try again." msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
#: ../../include/user.php:257 #: include/user.php:256 view/theme/duepuntozero/config.php:44
msgid "default"
msgstr "значение по умолчанию"
#: include/user.php:266
msgid "An error occurred creating your default profile. Please try again." msgid "An error occurred creating your default profile. Please try again."
msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."
#: ../../include/user.php:289 ../../include/user.php:293 #: include/user.php:299 include/user.php:303 include/profile_selectors.php:42
#: ../../include/profile_selectors.php:42
msgid "Friends" msgid "Friends"
msgstr "Друзья" msgstr "Друзья"
#: ../../include/user.php:377 #: include/user.php:387
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -7099,7 +8110,7 @@ msgid ""
"\t" "\t"
msgstr "" msgstr ""
#: ../../include/user.php:381 #: include/user.php:391
#, php-format #, php-format
msgid "" msgid ""
"\n" "\n"
@ -7108,20 +8119,25 @@ msgid ""
"\t\t\tLogin Name:\t%1$s\n" "\t\t\tLogin Name:\t%1$s\n"
"\t\t\tPassword:\t%5$s\n" "\t\t\tPassword:\t%5$s\n"
"\n" "\n"
"\t\tYou may change your password from your account \"Settings\" page after logging\n" "\t\tYou may change your password from your account \"Settings\" page after "
"logging\n"
"\t\tin.\n" "\t\tin.\n"
"\n" "\n"
"\t\tPlease take a few moments to review the other account settings on that page.\n" "\t\tPlease take a few moments to review the other account settings on that "
"page.\n"
"\n" "\n"
"\t\tYou may also wish to add some basic information to your default profile\n" "\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" "\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n" "\n"
"\t\tWe recommend setting your full name, adding a profile photo,\n" "\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" "\t\tadding some profile \"keywords\" (very useful in making new friends) - "
"\t\tperhaps what country you live in; if you do not wish to be more specific\n" "and\n"
"\t\tperhaps what country you live in; if you do not wish to be more "
"specific\n"
"\t\tthan that.\n" "\t\tthan that.\n"
"\n" "\n"
"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" "\t\tWe fully respect your right to privacy, and none of these items are "
"necessary.\n"
"\t\tIf you are new and do not know anybody here, they may help\n" "\t\tIf you are new and do not know anybody here, they may help\n"
"\t\tyou to make some new and interesting friends.\n" "\t\tyou to make some new and interesting friends.\n"
"\n" "\n"
@ -7129,495 +8145,504 @@ msgid ""
"\t\tThank you and welcome to %2$s." "\t\tThank you and welcome to %2$s."
msgstr "" msgstr ""
#: ../../include/diaspora.php:703 #: include/diaspora.php:720
msgid "Sharing notification from Diaspora network" msgid "Sharing notification from Diaspora network"
msgstr "Делиться уведомлениями из сети Diaspora" msgstr "Делиться уведомлениями из сети Diaspora"
#: ../../include/diaspora.php:2520 #: include/diaspora.php:2625
msgid "Attachments:" msgid "Attachments:"
msgstr "Вложения:" msgstr "Вложения:"
#: ../../include/items.php:4555 #: include/delivery.php:533
msgid "(no subject)"
msgstr "(без темы)"
#: include/delivery.php:544 include/enotify.php:37
msgid "noreply"
msgstr "без ответа"
#: include/items.php:4926
msgid "Do you really want to delete this item?" msgid "Do you really want to delete this item?"
msgstr "Вы действительно хотите удалить этот элемент?" msgstr "Вы действительно хотите удалить этот элемент?"
#: ../../include/items.php:4778 #: include/items.php:5201
msgid "Archives" msgid "Archives"
msgstr "Архивы" msgstr "Архивы"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Male" msgid "Male"
msgstr "Мужчина" msgstr "Мужчина"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Female" msgid "Female"
msgstr "Женщина" msgstr "Женщина"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Currently Male" msgid "Currently Male"
msgstr "В данный момент мужчина" msgstr "В данный момент мужчина"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Currently Female" msgid "Currently Female"
msgstr "В настоящее время женщина" msgstr "В настоящее время женщина"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Mostly Male" msgid "Mostly Male"
msgstr "В основном мужчина" msgstr "В основном мужчина"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Mostly Female" msgid "Mostly Female"
msgstr "В основном женщина" msgstr "В основном женщина"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Transgender" msgid "Transgender"
msgstr "Транссексуал" msgstr "Транссексуал"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Intersex" msgid "Intersex"
msgstr "Интерсексуал" msgstr "Интерсексуал"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Transsexual" msgid "Transsexual"
msgstr "Транссексуал" msgstr "Транссексуал"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Hermaphrodite" msgid "Hermaphrodite"
msgstr "Гермафродит" msgstr "Гермафродит"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Neuter" msgid "Neuter"
msgstr "Средний род" msgstr "Средний род"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Non-specific" msgid "Non-specific"
msgstr "Не определен" msgstr "Не определен"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:6
msgid "Other" msgid "Other"
msgstr "Другой" msgstr "Другой"
#: ../../include/profile_selectors.php:6 #: include/profile_selectors.php:23
msgid "Undecided"
msgstr "Не решено"
#: ../../include/profile_selectors.php:23
msgid "Males" msgid "Males"
msgstr "Мужчины" msgstr "Мужчины"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Females" msgid "Females"
msgstr "Женщины" msgstr "Женщины"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Gay" msgid "Gay"
msgstr "Гей" msgstr "Гей"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Lesbian" msgid "Lesbian"
msgstr "Лесбиянка" msgstr "Лесбиянка"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "No Preference" msgid "No Preference"
msgstr "Без предпочтений" msgstr "Без предпочтений"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Bisexual" msgid "Bisexual"
msgstr "Бисексуал" msgstr "Бисексуал"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Autosexual" msgid "Autosexual"
msgstr "Автосексуал" msgstr "Автосексуал"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Abstinent" msgid "Abstinent"
msgstr "Воздержанный" msgstr "Воздержанный"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Virgin" msgid "Virgin"
msgstr "Девственница" msgstr "Девственница"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Deviant" msgid "Deviant"
msgstr "Deviant" msgstr "Deviant"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Fetish" msgid "Fetish"
msgstr "Фетиш" msgstr "Фетиш"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Oodles" msgid "Oodles"
msgstr "Групповой" msgstr "Групповой"
#: ../../include/profile_selectors.php:23 #: include/profile_selectors.php:23
msgid "Nonsexual" msgid "Nonsexual"
msgstr "Нет интереса к сексу" msgstr "Нет интереса к сексу"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Single" msgid "Single"
msgstr "Без пары" msgstr "Без пары"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Lonely" msgid "Lonely"
msgstr "Пока никого нет" msgstr "Пока никого нет"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Available" msgid "Available"
msgstr "Доступный" msgstr "Доступный"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Unavailable" msgid "Unavailable"
msgstr "Не ищу никого" msgstr "Не ищу никого"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Has crush" msgid "Has crush"
msgstr "Имеет ошибку" msgstr "Имеет ошибку"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Infatuated" msgid "Infatuated"
msgstr "Влюблён" msgstr "Влюблён"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Dating" msgid "Dating"
msgstr "Свидания" msgstr "Свидания"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Unfaithful" msgid "Unfaithful"
msgstr "Изменяю супругу" msgstr "Изменяю супругу"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Sex Addict" msgid "Sex Addict"
msgstr "Люблю секс" msgstr "Люблю секс"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Friends/Benefits" msgid "Friends/Benefits"
msgstr "Друзья / Предпочтения" msgstr "Друзья / Предпочтения"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Casual" msgid "Casual"
msgstr "Обычный" msgstr "Обычный"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Engaged" msgid "Engaged"
msgstr "Занят" msgstr "Занят"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Married" msgid "Married"
msgstr "Женат / Замужем" msgstr "Женат / Замужем"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Imaginarily married" msgid "Imaginarily married"
msgstr "" msgstr ""
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Partners" msgid "Partners"
msgstr "Партнеры" msgstr "Партнеры"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Cohabiting" msgid "Cohabiting"
msgstr "Партнерство" msgstr "Партнерство"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Common law" msgid "Common law"
msgstr "" msgstr ""
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Happy" msgid "Happy"
msgstr "Счастлив/а/" msgstr "Счастлив/а/"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Not looking" msgid "Not looking"
msgstr "Не в поиске" msgstr "Не в поиске"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Swinger" msgid "Swinger"
msgstr "Свинг" msgstr "Свинг"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Betrayed" msgid "Betrayed"
msgstr "Преданный" msgstr "Преданный"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Separated" msgid "Separated"
msgstr "Разделенный" msgstr "Разделенный"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Unstable" msgid "Unstable"
msgstr "Нестабильный" msgstr "Нестабильный"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Divorced" msgid "Divorced"
msgstr "Разведен(а)" msgstr "Разведен(а)"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Imaginarily divorced" msgid "Imaginarily divorced"
msgstr "" msgstr ""
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Widowed" msgid "Widowed"
msgstr "Овдовевший" msgstr "Овдовевший"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Uncertain" msgid "Uncertain"
msgstr "Неопределенный" msgstr "Неопределенный"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "It's complicated" msgid "It's complicated"
msgstr "влишком сложно" msgstr "влишком сложно"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Don't care" msgid "Don't care"
msgstr "Не беспокоить" msgstr "Не беспокоить"
#: ../../include/profile_selectors.php:42 #: include/profile_selectors.php:42
msgid "Ask me" msgid "Ask me"
msgstr "Спросите меня" msgstr "Спросите меня"
#: ../../include/enotify.php:18 #: include/enotify.php:18
msgid "Friendica Notification" msgid "Friendica Notification"
msgstr "Friendica уведомления" msgstr "Friendica уведомления"
#: ../../include/enotify.php:21 #: include/enotify.php:21
msgid "Thank You," msgid "Thank You,"
msgstr "Спасибо," msgstr "Спасибо,"
#: ../../include/enotify.php:23 #: include/enotify.php:24
#, php-format #, php-format
msgid "%s Administrator" msgid "%s Administrator"
msgstr "%s администратор" msgstr "%s администратор"
#: ../../include/enotify.php:64 #: include/enotify.php:26
#, php-format
msgid "%1$s, %2$s Administrator"
msgstr ""
#: include/enotify.php:68
#, php-format #, php-format
msgid "%s <!item_type!>" msgid "%s <!item_type!>"
msgstr "%s <!item_type!>" msgstr "%s <!item_type!>"
#: ../../include/enotify.php:68 #: include/enotify.php:82
#, php-format #, php-format
msgid "[Friendica:Notify] New mail received at %s" msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s" msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"
#: ../../include/enotify.php:70 #: include/enotify.php:84
#, php-format #, php-format
msgid "%1$s sent you a new private message at %2$s." msgid "%1$s sent you a new private message at %2$s."
msgstr "%1$s отправил вам новое личное сообщение на %2$s." msgstr "%1$s отправил вам новое личное сообщение на %2$s."
#: ../../include/enotify.php:71 #: include/enotify.php:85
#, php-format #, php-format
msgid "%1$s sent you %2$s." msgid "%1$s sent you %2$s."
msgstr "%1$s послал вам %2$s." msgstr "%1$s послал вам %2$s."
#: ../../include/enotify.php:71 #: include/enotify.php:85
msgid "a private message" msgid "a private message"
msgstr "личное сообщение" msgstr "личное сообщение"
#: ../../include/enotify.php:72 #: include/enotify.php:86
#, php-format #, php-format
msgid "Please visit %s to view and/or reply to your private messages." msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." msgstr ""
"Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."
#: ../../include/enotify.php:124 #: include/enotify.php:138
#, php-format #, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]" msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]"
#: ../../include/enotify.php:131 #: include/enotify.php:145
#, php-format #, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]"
#: ../../include/enotify.php:139 #: include/enotify.php:153
#, php-format #, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]" msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]"
#: ../../include/enotify.php:149 #: include/enotify.php:163
#, php-format #, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:150 #: include/enotify.php:164
#, php-format #, php-format
msgid "%s commented on an item/conversation you have been following." msgid "%s commented on an item/conversation you have been following."
msgstr "" msgstr ""
#: ../../include/enotify.php:153 ../../include/enotify.php:168 #: include/enotify.php:167 include/enotify.php:182 include/enotify.php:195
#: ../../include/enotify.php:181 ../../include/enotify.php:194 #: include/enotify.php:208 include/enotify.php:226 include/enotify.php:239
#: ../../include/enotify.php:212 ../../include/enotify.php:225
#, php-format #, php-format
msgid "Please visit %s to view and/or reply to the conversation." msgid "Please visit %s to view and/or reply to the conversation."
msgstr "" msgstr ""
#: ../../include/enotify.php:160 #: include/enotify.php:174
#, php-format #, php-format
msgid "[Friendica:Notify] %s posted to your profile wall" msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля" msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля"
#: ../../include/enotify.php:162 #: include/enotify.php:176
#, php-format #, php-format
msgid "%1$s posted to your profile wall at %2$s" msgid "%1$s posted to your profile wall at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:164 #: include/enotify.php:178
#, php-format #, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]" msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr "" msgstr ""
#: ../../include/enotify.php:175 #: include/enotify.php:189
#, php-format #, php-format
msgid "[Friendica:Notify] %s tagged you" msgid "[Friendica:Notify] %s tagged you"
msgstr "" msgstr ""
#: ../../include/enotify.php:176 #: include/enotify.php:190
#, php-format #, php-format
msgid "%1$s tagged you at %2$s" msgid "%1$s tagged you at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:177 #: include/enotify.php:191
#, php-format #, php-format
msgid "%1$s [url=%2$s]tagged you[/url]." msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr "" msgstr ""
#: ../../include/enotify.php:188 #: include/enotify.php:202
#, php-format #, php-format
msgid "[Friendica:Notify] %s shared a new post" msgid "[Friendica:Notify] %s shared a new post"
msgstr "" msgstr ""
#: ../../include/enotify.php:189 #: include/enotify.php:203
#, php-format #, php-format
msgid "%1$s shared a new post at %2$s" msgid "%1$s shared a new post at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:190 #: include/enotify.php:204
#, php-format #, php-format
msgid "%1$s [url=%2$s]shared a post[/url]." msgid "%1$s [url=%2$s]shared a post[/url]."
msgstr "" msgstr ""
#: ../../include/enotify.php:202 #: include/enotify.php:216
#, php-format #, php-format
msgid "[Friendica:Notify] %1$s poked you" msgid "[Friendica:Notify] %1$s poked you"
msgstr "" msgstr ""
#: ../../include/enotify.php:203 #: include/enotify.php:217
#, php-format #, php-format
msgid "%1$s poked you at %2$s" msgid "%1$s poked you at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:204 #: include/enotify.php:218
#, php-format #, php-format
msgid "%1$s [url=%2$s]poked you[/url]." msgid "%1$s [url=%2$s]poked you[/url]."
msgstr "" msgstr ""
#: ../../include/enotify.php:219 #: include/enotify.php:233
#, php-format #, php-format
msgid "[Friendica:Notify] %s tagged your post" msgid "[Friendica:Notify] %s tagged your post"
msgstr "" msgstr ""
#: ../../include/enotify.php:220 #: include/enotify.php:234
#, php-format #, php-format
msgid "%1$s tagged your post at %2$s" msgid "%1$s tagged your post at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:221 #: include/enotify.php:235
#, php-format #, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]" msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr "" msgstr ""
#: ../../include/enotify.php:232 #: include/enotify.php:246
msgid "[Friendica:Notify] Introduction received" msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Сообщение] получен запрос" msgstr "[Friendica:Сообщение] получен запрос"
#: ../../include/enotify.php:233 #: include/enotify.php:247
#, php-format #, php-format
msgid "You've received an introduction from '%1$s' at %2$s" msgid "You've received an introduction from '%1$s' at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:234 #: include/enotify.php:248
#, php-format #, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr "" msgstr ""
#: ../../include/enotify.php:237 ../../include/enotify.php:279 #: include/enotify.php:251 include/enotify.php:293
#, php-format #, php-format
msgid "You may visit their profile at %s" msgid "You may visit their profile at %s"
msgstr "Вы можете посмотреть его профиль здесь %s" msgstr "Вы можете посмотреть его профиль здесь %s"
#: ../../include/enotify.php:239 #: include/enotify.php:253
#, php-format #, php-format
msgid "Please visit %s to approve or reject the introduction." msgid "Please visit %s to approve or reject the introduction."
msgstr "Посетите %s для подтверждения или отказа запроса." msgstr "Посетите %s для подтверждения или отказа запроса."
#: ../../include/enotify.php:247 #: include/enotify.php:261
msgid "[Friendica:Notify] A new person is sharing with you" msgid "[Friendica:Notify] A new person is sharing with you"
msgstr "" msgstr ""
#: ../../include/enotify.php:248 ../../include/enotify.php:249 #: include/enotify.php:262 include/enotify.php:263
#, php-format #, php-format
msgid "%1$s is sharing with you at %2$s" msgid "%1$s is sharing with you at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:255 #: include/enotify.php:269
msgid "[Friendica:Notify] You have a new follower" msgid "[Friendica:Notify] You have a new follower"
msgstr "" msgstr ""
#: ../../include/enotify.php:256 ../../include/enotify.php:257 #: include/enotify.php:270 include/enotify.php:271
#, php-format #, php-format
msgid "You have a new follower at %2$s : %1$s" msgid "You have a new follower at %2$s : %1$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:270 #: include/enotify.php:284
msgid "[Friendica:Notify] Friend suggestion received" msgid "[Friendica:Notify] Friend suggestion received"
msgstr "[Friendica: Оповещение] получено предложение дружбы" msgstr "[Friendica: Оповещение] получено предложение дружбы"
#: ../../include/enotify.php:271 #: include/enotify.php:285
#, php-format #, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s" msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" msgstr "Вы получили предложение дружбы от '%1$s' на %2$s"
#: ../../include/enotify.php:272 #: include/enotify.php:286
#, php-format #, php-format
msgid "" msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr "" msgstr ""
#: ../../include/enotify.php:277 #: include/enotify.php:291
msgid "Name:" msgid "Name:"
msgstr "Имя:" msgstr "Имя:"
#: ../../include/enotify.php:278 #: include/enotify.php:292
msgid "Photo:" msgid "Photo:"
msgstr "Фото:" msgstr "Фото:"
#: ../../include/enotify.php:281 #: include/enotify.php:295
#, php-format #, php-format
msgid "Please visit %s to approve or reject the suggestion." msgid "Please visit %s to approve or reject the suggestion."
msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса."
#: ../../include/enotify.php:289 ../../include/enotify.php:302 #: include/enotify.php:303 include/enotify.php:316
msgid "[Friendica:Notify] Connection accepted" msgid "[Friendica:Notify] Connection accepted"
msgstr "" msgstr ""
#: ../../include/enotify.php:290 ../../include/enotify.php:303 #: include/enotify.php:304 include/enotify.php:317
#, php-format #, php-format
msgid "'%1$s' has acepted your connection request at %2$s" msgid "'%1$s' has accepted your connection request at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:291 ../../include/enotify.php:304 #: include/enotify.php:305 include/enotify.php:318
#, php-format #, php-format
msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
msgstr "" msgstr ""
#: ../../include/enotify.php:294 #: include/enotify.php:308
msgid "" msgid ""
"You are now mutual friends and may exchange status updates, photos, and email\n" "You are now mutual friends and may exchange status updates, photos, and "
"email\n"
"\twithout restriction." "\twithout restriction."
msgstr "" msgstr ""
#: ../../include/enotify.php:297 ../../include/enotify.php:311 #: include/enotify.php:311 include/enotify.php:325
#, php-format #, php-format
msgid "Please visit %s if you wish to make any changes to this relationship." msgid "Please visit %s if you wish to make any changes to this relationship."
msgstr "" msgstr ""
#: ../../include/enotify.php:307 #: include/enotify.php:321
#, php-format #, php-format
msgid "" msgid ""
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@ -7626,266 +8651,261 @@ msgid ""
"automatically." "automatically."
msgstr "" msgstr ""
#: ../../include/enotify.php:309 #: include/enotify.php:323
#, php-format #, php-format
msgid "" msgid ""
"'%1$s' may choose to extend this into a two-way or more permissive " "'%1$s' may choose to extend this into a two-way or more permissive "
"relationship in the future. " "relationship in the future. "
msgstr "" msgstr ""
#: ../../include/enotify.php:322 #: include/enotify.php:336
msgid "[Friendica System:Notify] registration request" msgid "[Friendica System:Notify] registration request"
msgstr "" msgstr ""
#: ../../include/enotify.php:323 #: include/enotify.php:337
#, php-format #, php-format
msgid "You've received a registration request from '%1$s' at %2$s" msgid "You've received a registration request from '%1$s' at %2$s"
msgstr "" msgstr ""
#: ../../include/enotify.php:324 #: include/enotify.php:338
#, php-format #, php-format
msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
msgstr "" msgstr ""
#: ../../include/enotify.php:327 #: include/enotify.php:341
#, php-format #, php-format
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
msgstr "" msgstr ""
#: ../../include/enotify.php:330 #: include/enotify.php:344
#, php-format #, php-format
msgid "Please visit %s to approve or reject the request." msgid "Please visit %s to approve or reject the request."
msgstr "" msgstr ""
#: ../../include/oembed.php:212 #: include/oembed.php:226
msgid "Embedded content" msgid "Embedded content"
msgstr "Встроенное содержание" msgstr "Встроенное содержание"
#: ../../include/oembed.php:221 #: include/oembed.php:235
msgid "Embedding disabled" msgid "Embedding disabled"
msgstr "Встраивание отключено" msgstr "Встраивание отключено"
#: ../../include/uimport.php:94 #: include/uimport.php:94
msgid "Error decoding account file" msgid "Error decoding account file"
msgstr "Ошибка расшифровки файла аккаунта" msgstr "Ошибка расшифровки файла аккаунта"
#: ../../include/uimport.php:100 #: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?" msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" msgstr ""
"Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"
#: ../../include/uimport.php:116 ../../include/uimport.php:127 #: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname" msgid "Error! Cannot check nickname"
msgstr "Ошибка! Невозможно проверить никнейм" msgstr "Ошибка! Невозможно проверить никнейм"
#: ../../include/uimport.php:120 ../../include/uimport.php:131 #: include/uimport.php:120 include/uimport.php:131
#, php-format #, php-format
msgid "User '%s' already exists on this server!" msgid "User '%s' already exists on this server!"
msgstr "Пользователь '%s' уже существует на этом сервере!" msgstr "Пользователь '%s' уже существует на этом сервере!"
#: ../../include/uimport.php:153 #: include/uimport.php:153
msgid "User creation error" msgid "User creation error"
msgstr "Ошибка создания пользователя" msgstr "Ошибка создания пользователя"
#: ../../include/uimport.php:171 #: include/uimport.php:173
msgid "User profile creation error" msgid "User profile creation error"
msgstr "Ошибка создания профиля пользователя" msgstr "Ошибка создания профиля пользователя"
#: ../../include/uimport.php:220 #: include/uimport.php:222
#, php-format #, php-format
msgid "%d contact not imported" msgid "%d contact not imported"
msgid_plural "%d contacts not imported" msgid_plural "%d contacts not imported"
msgstr[0] "%d контакт не импортирован" msgstr[0] "%d контакт не импортирован"
msgstr[1] "%d контакты не импортированы" msgstr[1] "%d контакты не импортированы"
msgstr[2] "%d контакты не импортированы" msgstr[2] "%d контакты не импортированы"
msgstr[3] "%d контакты не импортированы"
#: ../../include/uimport.php:290 #: include/uimport.php:292
msgid "Done. You can now login with your username and password" msgid "Done. You can now login with your username and password"
msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем"
#: ../../index.php:428 #: index.php:442
msgid "toggle mobile" msgid "toggle mobile"
msgstr "мобильная версия" msgstr "мобильная версия"
#: ../../view/theme/cleanzero/config.php:82 #: view/theme/cleanzero/config.php:83
#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
#: ../../view/theme/duepuntozero/config.php:61
msgid "Theme settings"
msgstr "Настройки темы"
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)" msgid "Set resize level for images in posts and comments (width and height)"
msgstr "Установить уровень изменения размера изображений в постах и ​​комментариях (ширина и высота)" msgstr ""
"Установить уровень изменения размера изображений в постах и ​​комментариях "
"(ширина и высота)"
#: ../../view/theme/cleanzero/config.php:84 #: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73
#: ../../view/theme/dispy/config.php:73 #: view/theme/diabook/config.php:151
#: ../../view/theme/diabook/config.php:151
msgid "Set font-size for posts and comments" msgid "Set font-size for posts and comments"
msgstr "Установить шрифт-размер для постов и комментариев" msgstr "Установить шрифт-размер для постов и комментариев"
#: ../../view/theme/cleanzero/config.php:85 #: view/theme/cleanzero/config.php:85
msgid "Set theme width" msgid "Set theme width"
msgstr "Установить ширину темы" msgstr "Установить ширину темы"
#: ../../view/theme/cleanzero/config.php:86 #: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
#: ../../view/theme/quattro/config.php:68
msgid "Color scheme" msgid "Color scheme"
msgstr "Цветовая схема" msgstr "Цветовая схема"
#: ../../view/theme/dispy/config.php:74 #: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
#: ../../view/theme/diabook/config.php:152
msgid "Set line-height for posts and comments" msgid "Set line-height for posts and comments"
msgstr "Установить высоту строки для постов и комментариев" msgstr "Установить высоту строки для постов и комментариев"
#: ../../view/theme/dispy/config.php:75 #: view/theme/dispy/config.php:75
msgid "Set colour scheme" msgid "Set colour scheme"
msgstr "Установить цветовую схему" msgstr "Установить цветовую схему"
#: ../../view/theme/quattro/config.php:67 #: view/theme/quattro/config.php:67
msgid "Alignment" msgid "Alignment"
msgstr "Выравнивание" msgstr "Выравнивание"
#: ../../view/theme/quattro/config.php:67 #: view/theme/quattro/config.php:67
msgid "Left" msgid "Left"
msgstr "" msgstr ""
#: ../../view/theme/quattro/config.php:67 #: view/theme/quattro/config.php:67
msgid "Center" msgid "Center"
msgstr "Центр" msgstr "Центр"
#: ../../view/theme/quattro/config.php:69 #: view/theme/quattro/config.php:69
msgid "Posts font size" msgid "Posts font size"
msgstr "Размер шрифта постов" msgstr "Размер шрифта постов"
#: ../../view/theme/quattro/config.php:70 #: view/theme/quattro/config.php:70
msgid "Textareas font size" msgid "Textareas font size"
msgstr "Размер шрифта текстовых полей" msgstr "Размер шрифта текстовых полей"
#: ../../view/theme/diabook/config.php:153 #: view/theme/diabook/config.php:153
msgid "Set resolution for middle column" msgid "Set resolution for middle column"
msgstr "Установить разрешение для средней колонки" msgstr "Установить разрешение для средней колонки"
#: ../../view/theme/diabook/config.php:154 #: view/theme/diabook/config.php:154
msgid "Set color scheme" msgid "Set color scheme"
msgstr "Установить цветовую схему" msgstr "Установить цветовую схему"
#: ../../view/theme/diabook/config.php:155 #: view/theme/diabook/config.php:155
msgid "Set zoomfactor for Earth Layer" msgid "Set zoomfactor for Earth Layer"
msgstr "Установить масштаб карты" msgstr "Установить масштаб карты"
#: ../../view/theme/diabook/config.php:156 #: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585
#: ../../view/theme/diabook/theme.php:585
msgid "Set longitude (X) for Earth Layers" msgid "Set longitude (X) for Earth Layers"
msgstr "Установить длину (X) карты" msgstr "Установить длину (X) карты"
#: ../../view/theme/diabook/config.php:157 #: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586
#: ../../view/theme/diabook/theme.php:586
msgid "Set latitude (Y) for Earth Layers" msgid "Set latitude (Y) for Earth Layers"
msgstr "Установить ширину (Y) карты" msgstr "Установить ширину (Y) карты"
#: ../../view/theme/diabook/config.php:158 #: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130
#: ../../view/theme/diabook/theme.php:130 #: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
#: ../../view/theme/diabook/theme.php:544 #: view/theme/vier/config.php:111
#: ../../view/theme/diabook/theme.php:624
msgid "Community Pages" msgid "Community Pages"
msgstr "Страницы сообщества" msgstr "Страницы сообщества"
#: ../../view/theme/diabook/config.php:159 #: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579
#: ../../view/theme/diabook/theme.php:579 #: view/theme/diabook/theme.php:625
#: ../../view/theme/diabook/theme.php:625
msgid "Earth Layers" msgid "Earth Layers"
msgstr "Карта" msgstr "Карта"
#: ../../view/theme/diabook/config.php:160 #: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391
#: ../../view/theme/diabook/theme.php:391 #: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112
#: ../../view/theme/diabook/theme.php:626 #: view/theme/vier/theme.php:156
msgid "Community Profiles" msgid "Community Profiles"
msgstr "Профили сообщества" msgstr "Профили сообщества"
#: ../../view/theme/diabook/config.php:161 #: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:599 #: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113
#: ../../view/theme/diabook/theme.php:627
msgid "Help or @NewHere ?" msgid "Help or @NewHere ?"
msgstr "Помощь" msgstr "Помощь"
#: ../../view/theme/diabook/config.php:162 #: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:606 #: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114
#: ../../view/theme/diabook/theme.php:628 #: view/theme/vier/theme.php:377
msgid "Connect Services" msgid "Connect Services"
msgstr "Подключить службы" msgstr "Подключить службы"
#: ../../view/theme/diabook/config.php:163 #: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523
#: ../../view/theme/diabook/theme.php:523 #: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115
#: ../../view/theme/diabook/theme.php:629 #: view/theme/vier/theme.php:203
msgid "Find Friends" msgid "Find Friends"
msgstr "Найти друзей" msgstr "Найти друзей"
#: ../../view/theme/diabook/config.php:164 #: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412
#: ../../view/theme/diabook/theme.php:412 #: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116
#: ../../view/theme/diabook/theme.php:630 #: view/theme/vier/theme.php:185
msgid "Last users" msgid "Last users"
msgstr "Последние пользователи" msgstr "Последние пользователи"
#: ../../view/theme/diabook/config.php:165 #: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486
#: ../../view/theme/diabook/theme.php:486 #: view/theme/diabook/theme.php:631
#: ../../view/theme/diabook/theme.php:631
msgid "Last photos" msgid "Last photos"
msgstr "Последние фото" msgstr "Последние фото"
#: ../../view/theme/diabook/config.php:166 #: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441
#: ../../view/theme/diabook/theme.php:441 #: view/theme/diabook/theme.php:632
#: ../../view/theme/diabook/theme.php:632
msgid "Last likes" msgid "Last likes"
msgstr "Последние likes" msgstr "Последние likes"
#: ../../view/theme/diabook/theme.php:125 #: view/theme/diabook/theme.php:125
msgid "Your contacts" msgid "Your contacts"
msgstr "Ваши контакты" msgstr "Ваши контакты"
#: ../../view/theme/diabook/theme.php:128 #: view/theme/diabook/theme.php:128
msgid "Your personal photos" msgid "Your personal photos"
msgstr "Ваши личные фотографии" msgstr "Ваши личные фотографии"
#: ../../view/theme/diabook/theme.php:524 #: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204
msgid "Local Directory" msgid "Local Directory"
msgstr "Локальный каталог" msgstr "Локальный каталог"
#: ../../view/theme/diabook/theme.php:584 #: view/theme/diabook/theme.php:584
msgid "Set zoomfactor for Earth Layers" msgid "Set zoomfactor for Earth Layers"
msgstr "Установить масштаб карты" msgstr "Установить масштаб карты"
#: ../../view/theme/diabook/theme.php:622 #: view/theme/diabook/theme.php:622
msgid "Show/hide boxes at right-hand column:" msgid "Show/hide boxes at right-hand column:"
msgstr "Показать/скрыть блоки в правой колонке:" msgstr "Показать/скрыть блоки в правой колонке:"
#: ../../view/theme/vier/config.php:56 #: view/theme/vier/config.php:64
msgid "Comma separated list of helper forums"
msgstr ""
#: view/theme/vier/config.php:110
msgid "Set style" msgid "Set style"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:45 #: view/theme/vier/theme.php:295
msgid "Quick Start"
msgstr "Быстрый запуск"
#: view/theme/duepuntozero/config.php:45
msgid "greenzero" msgid "greenzero"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:46 #: view/theme/duepuntozero/config.php:46
msgid "purplezero" msgid "purplezero"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:47 #: view/theme/duepuntozero/config.php:47
msgid "easterbunny" msgid "easterbunny"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:48 #: view/theme/duepuntozero/config.php:48
msgid "darkzero" msgid "darkzero"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:49 #: view/theme/duepuntozero/config.php:49
msgid "comix" msgid "comix"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:50 #: view/theme/duepuntozero/config.php:50
msgid "slackr" msgid "slackr"
msgstr "" msgstr ""
#: ../../view/theme/duepuntozero/config.php:62 #: view/theme/duepuntozero/config.php:62
msgid "Variations" msgid "Variations"
msgstr "" msgstr ""

View file

@ -2,13 +2,16 @@
if(! function_exists("string_plural_select_ru")) { if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){ function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; return ;
}} }}
; ;
$a->strings["Network:"] = "Сеть:";
$a->strings["Forum"] = "Форум";
$a->strings["%d contact edited."] = array( $a->strings["%d contact edited."] = array(
0 => "%d контакт изменён.", 0 => "",
1 => "%d контакты изменены", 1 => "",
2 => "%d контакты изменены", 2 => "",
3 => "",
); );
$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; $a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта.";
$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль."; $a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль.";
@ -34,26 +37,12 @@ $a->strings["(Update was successful)"] = "(Обновление было усп
$a->strings["(Update was not successful)"] = "(Обновление не удалось)"; $a->strings["(Update was not successful)"] = "(Обновление не удалось)";
$a->strings["Suggest friends"] = "Предложить друзей"; $a->strings["Suggest friends"] = "Предложить друзей";
$a->strings["Network type: %s"] = "Сеть: %s"; $a->strings["Network type: %s"] = "Сеть: %s";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
);
$a->strings["View all contacts"] = "Показать все контакты";
$a->strings["Unblock"] = "Разблокировать";
$a->strings["Block"] = "Заблокировать";
$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования";
$a->strings["Unarchive"] = "Разархивировать";
$a->strings["Archive"] = "Архивировать";
$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)";
$a->strings["Repair"] = "Восстановить";
$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта";
$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!"; $a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!";
$a->strings["Contact Editor"] = "Редактор контакта"; $a->strings["Fetch further information for feeds"] = "";
$a->strings["Submit"] = "Подтвердить"; $a->strings["Disabled"] = "Отключенный";
$a->strings["Fetch information"] = "";
$a->strings["Fetch information and keywords"] = "";
$a->strings["Submit"] = "Добавить";
$a->strings["Profile Visibility"] = "Видимость профиля"; $a->strings["Profile Visibility"] = "Видимость профиля";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен.";
$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки"; $a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки";
@ -67,6 +56,11 @@ $a->strings["Delete contact"] = "Удалить контакт";
$a->strings["Last update:"] = "Последнее обновление: "; $a->strings["Last update:"] = "Последнее обновление: ";
$a->strings["Update public posts"] = "Обновить публичные сообщения"; $a->strings["Update public posts"] = "Обновить публичные сообщения";
$a->strings["Update now"] = "Обновить сейчас"; $a->strings["Update now"] = "Обновить сейчас";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["Unblock"] = "Разблокировать";
$a->strings["Block"] = "Заблокировать";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Currently blocked"] = "В настоящее время заблокирован"; $a->strings["Currently blocked"] = "В настоящее время заблокирован";
$a->strings["Currently ignored"] = "В настоящее время игнорируется"; $a->strings["Currently ignored"] = "В настоящее время игнорируется";
$a->strings["Currently archived"] = "В данный момент архивирован"; $a->strings["Currently archived"] = "В данный момент архивирован";
@ -74,12 +68,12 @@ $a->strings["Hide this contact from others"] = "Скрыть этот конта
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы."; $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы.";
$a->strings["Notification for new posts"] = ""; $a->strings["Notification for new posts"] = "";
$a->strings["Send a notification of every new post of this contact"] = ""; $a->strings["Send a notification of every new post of this contact"] = "";
$a->strings["Fetch further information for feeds"] = "";
$a->strings["Disabled"] = "";
$a->strings["Fetch information"] = "";
$a->strings["Fetch information and keywords"] = "";
$a->strings["Blacklisted keywords"] = ""; $a->strings["Blacklisted keywords"] = "";
$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = ""; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
$a->strings["Profile URL"] = "URL профиля";
$a->strings["Location:"] = "Откуда:";
$a->strings["About:"] = "О себе:";
$a->strings["Tags:"] = "Ключевые слова: ";
$a->strings["Suggestions"] = "Предложения"; $a->strings["Suggestions"] = "Предложения";
$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого"; $a->strings["Suggest potential friends"] = "Предложить потенциального знакомого";
$a->strings["All Contacts"] = "Все контакты"; $a->strings["All Contacts"] = "Все контакты";
@ -94,16 +88,30 @@ $a->strings["Archived"] = "Архивированные";
$a->strings["Only show archived contacts"] = "Показывать только архивные контакты"; $a->strings["Only show archived contacts"] = "Показывать только архивные контакты";
$a->strings["Hidden"] = "Скрытые"; $a->strings["Hidden"] = "Скрытые";
$a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты"; $a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["Contacts"] = "Контакты"; $a->strings["Contacts"] = "Контакты";
$a->strings["Search your contacts"] = "Поиск ваших контактов"; $a->strings["Search your contacts"] = "Поиск ваших контактов";
$a->strings["Finding: "] = "Результат поиска: "; $a->strings["Finding: "] = "Результат поиска: ";
$a->strings["Find"] = "Найти"; $a->strings["Find"] = "Найти";
$a->strings["Update"] = "Обновление"; $a->strings["Update"] = "Обновление";
$a->strings["Archive"] = "Архивировать";
$a->strings["Unarchive"] = "Разархивировать";
$a->strings["Delete"] = "Удалить"; $a->strings["Delete"] = "Удалить";
$a->strings["Status"] = "Посты";
$a->strings["Status Messages and Posts"] = "Ваши посты";
$a->strings["Profile"] = "Информация";
$a->strings["Profile Details"] = "Информация о вас";
$a->strings["View all contacts"] = "Показать все контакты";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["View all common friends"] = "";
$a->strings["Repair"] = "Восстановить";
$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта";
$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)";
$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования";
$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["No profile"] = "Нет профиля"; $a->strings["No profile"] = "Нет профиля";
$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами"; $a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = ""; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
@ -112,7 +120,6 @@ $a->strings["Post successful."] = "Успешно добавлено.";
$a->strings["Permission denied"] = "Доступ запрещен"; $a->strings["Permission denied"] = "Доступ запрещен";
$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля."; $a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля"; $a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Profile"] = "Профиль";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; $a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["Visible To"] = "Видимый для"; $a->strings["Visible To"] = "Видимый для";
$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)"; $a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
@ -137,9 +144,6 @@ $a->strings["Edit your <strong>default</strong> profile to your liking. Review t
$a->strings["Profile Keywords"] = "Ключевые слова профиля"; $a->strings["Profile Keywords"] = "Ключевые слова профиля";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."; $a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
$a->strings["Connecting"] = "Подключение"; $a->strings["Connecting"] = "Подключение";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Если</em> это ваш личный сервер, установите дополнение Facebook, это может облегчить ваш переход на свободную социальную сеть.";
$a->strings["Importing Emails"] = "Импортирование Email-ов"; $a->strings["Importing Emails"] = "Импортирование Email-ов";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"; $a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты";
$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов"; $a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов";
@ -164,7 +168,7 @@ $a->strings["Profile Photos"] = "Фотографии профиля";
$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось."; $a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
$a->strings["Unable to process image"] = "Не удается обработать изображение"; $a->strings["Unable to process image"] = "Не удается обработать изображение";
$a->strings["Image exceeds size limit of %d"] = "Изображение превышает предельный размер %d"; $a->strings["Image exceeds size limit of %s"] = "";
$a->strings["Unable to process image."] = "Невозможно обработать фото."; $a->strings["Unable to process image."] = "Невозможно обработать фото.";
$a->strings["Upload File:"] = "Загрузить файл:"; $a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Select a profile:"] = "Выбрать этот профиль:"; $a->strings["Select a profile:"] = "Выбрать этот профиль:";
@ -184,9 +188,28 @@ $a->strings["Tag removed"] = "Ключевое слово удалено";
$a->strings["Remove Item Tag"] = "Удалить ключевое слово"; $a->strings["Remove Item Tag"] = "Удалить ключевое слово";
$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: "; $a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
$a->strings["Remove"] = "Удалить"; $a->strings["Remove"] = "Удалить";
$a->strings["Subscribing to OStatus contacts"] = "";
$a->strings["No contact provided."] = "";
$a->strings["Couldn't fetch information for contact."] = "";
$a->strings["Couldn't fetch friends for contact."] = "";
$a->strings["Done"] = "Готово";
$a->strings["success"] = "удачно";
$a->strings["failed"] = "неудача";
$a->strings["ignored"] = "";
$a->strings["Keep this window open until done."] = "";
$a->strings["Save to Folder:"] = "Сохранить в папку:"; $a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["- select -"] = "- выбрать -"; $a->strings["- select -"] = "- выбрать -";
$a->strings["Save"] = "Сохранить"; $a->strings["Save"] = "Сохранить";
$a->strings["Submit Request"] = "Отправить запрос";
$a->strings["You already added this contact."] = "";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
$a->strings["OStatus support is disabled. Contact can't be added."] = "";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
$a->strings["Does %s know you?"] = "%s знает вас?";
$a->strings["No"] = "Нет";
$a->strings["Add a personal note:"] = "Добавить личную заметку:";
$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
$a->strings["Contact added"] = "Контакт добавлен"; $a->strings["Contact added"] = "Контакт добавлен";
$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост."; $a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается."; $a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
@ -207,6 +230,7 @@ $a->strings["Group removed."] = "Группа удалена.";
$a->strings["Unable to remove group."] = "Не удается удалить группу."; $a->strings["Unable to remove group."] = "Не удается удалить группу.";
$a->strings["Group Editor"] = "Редактор групп"; $a->strings["Group Editor"] = "Редактор групп";
$a->strings["Members"] = "Участники"; $a->strings["Members"] = "Участники";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны."; $a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны.";
$a->strings["Applications"] = "Приложения"; $a->strings["Applications"] = "Приложения";
$a->strings["No installed applications."] = "Нет установленных приложений."; $a->strings["No installed applications."] = "Нет установленных приложений.";
@ -233,6 +257,8 @@ $a->strings["[Name Withheld]"] = "[Имя не разглашается]";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s"; $a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s";
$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен."; $a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Tips for New Members"] = "Советы для новых участников"; $a->strings["Tips for New Members"] = "Советы для новых участников";
$a->strings["Do you really want to delete this video?"] = "";
$a->strings["Delete Video"] = "Удалить видео";
$a->strings["No videos selected"] = "Видео не выбрано"; $a->strings["No videos selected"] = "Видео не выбрано";
$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен."; $a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
$a->strings["View Video"] = "Просмотреть видео"; $a->strings["View Video"] = "Просмотреть видео";
@ -243,6 +269,7 @@ $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\
$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено."; $a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
$a->strings["Suggest Friends"] = "Предложить друзей"; $a->strings["Suggest Friends"] = "Предложить друзей";
$a->strings["Suggest a friend for %s"] = "Предложить друга для %s."; $a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
$a->strings["Invalid request."] = "Неверный запрос.";
$a->strings["No valid account found."] = "Не найдено действительного аккаунта."; $a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту."; $a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = ""; $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
@ -262,26 +289,16 @@ $a->strings["Forgot your Password?"] = "Забыли пароль?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Nickname or Email: "] = "Ник или E-mail: "; $a->strings["Nickname or Email: "] = "Ник или E-mail: ";
$a->strings["Reset"] = "Сброс"; $a->strings["Reset"] = "Сброс";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом"; $a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение"; $a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
$a->strings["{0} requested registration"] = "{0} требуемая регистрация"; $a->strings["{0} requested registration"] = "{0} требуемая регистрация";
$a->strings["{0} commented %s's post"] = "{0} прокомментировал сообщение от %s";
$a->strings["{0} liked %s's post"] = "{0} нравится сообщение от %s";
$a->strings["{0} disliked %s's post"] = "{0} не нравится сообщение от %s";
$a->strings["{0} is now friends with %s"] = "{0} теперь друзья с %s";
$a->strings["{0} posted"] = "{0} опубликовано";
$a->strings["{0} tagged %s's post with #%s"] = "{0} пометил сообщение %s с #%s";
$a->strings["{0} mentioned you in a post"] = "{0} упоменул Вас в сообщение";
$a->strings["No contacts."] = "Нет контактов."; $a->strings["No contacts."] = "Нет контактов.";
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса."; $a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
$a->strings["Discard"] = "Отказаться"; $a->strings["Discard"] = "Отказаться";
$a->strings["System"] = "Система"; $a->strings["System"] = "Система";
$a->strings["Network"] = "Сеть"; $a->strings["Network"] = "Новости";
$a->strings["Personal"] = "Персонал"; $a->strings["Personal"] = "Персонал";
$a->strings["Home"] = "Главная"; $a->strings["Home"] = "Мой профиль";
$a->strings["Introductions"] = "Запросы"; $a->strings["Introductions"] = "Запросы";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; $a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; $a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
@ -294,12 +311,14 @@ $a->strings["Approve"] = "Одобрить";
$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: "; $a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
$a->strings["yes"] = "да"; $a->strings["yes"] = "да";
$a->strings["no"] = "нет"; $a->strings["no"] = "нет";
$a->strings["Approve as: "] = "Утвердить как: "; $a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "";
$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "";
$a->strings["Friend"] = "Друг"; $a->strings["Friend"] = "Друг";
$a->strings["Sharer"] = "Участник"; $a->strings["Sharer"] = "Участник";
$a->strings["Fan/Admirer"] = "Фанат / Поклонник"; $a->strings["Fan/Admirer"] = "Фанат / Поклонник";
$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение"; $a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
$a->strings["New Follower"] = "Новый фолловер"; $a->strings["New Follower"] = "Новый фолловер";
$a->strings["Gender:"] = "Пол:";
$a->strings["No introductions."] = "Запросов нет."; $a->strings["No introductions."] = "Запросов нет.";
$a->strings["Notifications"] = "Уведомления"; $a->strings["Notifications"] = "Уведомления";
$a->strings["%s liked %s's post"] = "%s нравится %s сообшение"; $a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
@ -348,30 +367,31 @@ $a->strings["Upload photo"] = "Загрузить фото";
$a->strings["Insert web link"] = "Вставить веб-ссылку"; $a->strings["Insert web link"] = "Вставить веб-ссылку";
$a->strings["Please wait"] = "Пожалуйста, подождите"; $a->strings["Please wait"] = "Пожалуйста, подождите";
$a->strings["No messages."] = "Нет сообщений."; $a->strings["No messages."] = "Нет сообщений.";
$a->strings["Message not available."] = "Сообщение не доступно.";
$a->strings["Delete message"] = "Удалить сообщение";
$a->strings["Delete conversation"] = "Удалить историю общения";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя.";
$a->strings["Send Reply"] = "Отправить ответ";
$a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s"; $a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s";
$a->strings["You and %s"] = "Вы и %s"; $a->strings["You and %s"] = "Вы и %s";
$a->strings["%s and You"] = "%s и Вы"; $a->strings["%s and You"] = "%s и Вы";
$a->strings["Delete conversation"] = "Удалить историю общения";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; $a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array( $a->strings["%d message"] = array(
0 => "%d сообщение", 0 => "%d сообщение",
1 => "%d сообщений", 1 => "%d сообщений",
2 => "%d сообщений", 2 => "%d сообщений",
3 => "%d сообщений",
); );
$a->strings["Message not available."] = "Сообщение не доступно.";
$a->strings["Delete message"] = "Удалить сообщение";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя.";
$a->strings["Send Reply"] = "Отправить ответ";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]"; $a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
$a->strings["Contact settings applied."] = "Установки контакта приняты."; $a->strings["Contact settings applied."] = "Установки контакта приняты.";
$a->strings["Contact update failed."] = "Обновление контакта неудачное."; $a->strings["Contact update failed."] = "Обновление контакта неудачное.";
$a->strings["Repair Contact Settings"] = "Восстановить установки контакта";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."; $a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."; $a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице.";
$a->strings["Return to contact editor"] = "Возврат к редактору контакта";
$a->strings["No mirroring"] = ""; $a->strings["No mirroring"] = "";
$a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as forwarded posting"] = "";
$a->strings["Mirror as my own posting"] = ""; $a->strings["Mirror as my own posting"] = "";
$a->strings["Return to contact editor"] = "Возврат к редактору контакта";
$a->strings["Refetch contact data"] = "";
$a->strings["Name"] = "Имя"; $a->strings["Name"] = "Имя";
$a->strings["Account Nickname"] = "Ник аккаунта"; $a->strings["Account Nickname"] = "Ник аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = ""; $a->strings["@Tagname - overrides Name/Nickname"] = "";
@ -387,9 +407,12 @@ $a->strings["Mark this contact as remote_self, this will cause friendica to repo
$a->strings["Login"] = "Вход"; $a->strings["Login"] = "Вход";
$a->strings["The post was created"] = ""; $a->strings["The post was created"] = "";
$a->strings["Access denied."] = "Доступ запрещен."; $a->strings["Access denied."] = "Доступ запрещен.";
$a->strings["People Search"] = "Поиск людей"; $a->strings["Connect"] = "Подключить";
$a->strings["View Profile"] = "Просмотреть профиль";
$a->strings["People Search - %s"] = "";
$a->strings["No matches"] = "Нет соответствий"; $a->strings["No matches"] = "Нет соответствий";
$a->strings["Photos"] = "Фото"; $a->strings["Photos"] = "Фото";
$a->strings["Contact Photos"] = "Фотографии контакта";
$a->strings["Files"] = "Файлы"; $a->strings["Files"] = "Файлы";
$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы"; $a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы";
$a->strings["Theme settings updated."] = "Настройки темы обновлены."; $a->strings["Theme settings updated."] = "Настройки темы обновлены.";
@ -397,14 +420,28 @@ $a->strings["Site"] = "Сайт";
$a->strings["Users"] = "Пользователи"; $a->strings["Users"] = "Пользователи";
$a->strings["Plugins"] = "Плагины"; $a->strings["Plugins"] = "Плагины";
$a->strings["Themes"] = "Темы"; $a->strings["Themes"] = "Темы";
$a->strings["Additional features"] = "Дополнительные возможности";
$a->strings["DB updates"] = "Обновление БД"; $a->strings["DB updates"] = "Обновление БД";
$a->strings["Inspect Queue"] = "";
$a->strings["Federation Statistics"] = "";
$a->strings["Logs"] = "Журналы"; $a->strings["Logs"] = "Журналы";
$a->strings["View Logs"] = "Просмотр логов";
$a->strings["probe address"] = ""; $a->strings["probe address"] = "";
$a->strings["check webfinger"] = ""; $a->strings["check webfinger"] = "";
$a->strings["Admin"] = "Администратор"; $a->strings["Admin"] = "Администратор";
$a->strings["Plugin Features"] = "Возможности плагина"; $a->strings["Plugin Features"] = "Возможности плагина";
$a->strings["diagnostics"] = ""; $a->strings["diagnostics"] = "Диагностика";
$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения"; $a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "";
$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
$a->strings["Administration"] = "Администрация";
$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "";
$a->strings["ID"] = "";
$a->strings["Recipient Name"] = "";
$a->strings["Recipient Profile"] = "";
$a->strings["Created"] = "";
$a->strings["Last Tried"] = "";
$a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "";
$a->strings["Normal Account"] = "Обычный аккаунт"; $a->strings["Normal Account"] = "Обычный аккаунт";
$a->strings["Soapbox Account"] = "Аккаунт Витрина"; $a->strings["Soapbox Account"] = "Аккаунт Витрина";
$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость"; $a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
@ -412,13 +449,13 @@ $a->strings["Automatic Friend Account"] = "\"Автоматический дру
$a->strings["Blog Account"] = "Аккаунт блога"; $a->strings["Blog Account"] = "Аккаунт блога";
$a->strings["Private Forum"] = "Личный форум"; $a->strings["Private Forum"] = "Личный форум";
$a->strings["Message queues"] = "Очереди сообщений"; $a->strings["Message queues"] = "Очереди сообщений";
$a->strings["Administration"] = "Администрация";
$a->strings["Summary"] = "Резюме"; $a->strings["Summary"] = "Резюме";
$a->strings["Registered users"] = "Зарегистрированные пользователи"; $a->strings["Registered users"] = "Зарегистрированные пользователи";
$a->strings["Pending registrations"] = "Ожидающие регистрации"; $a->strings["Pending registrations"] = "Ожидающие регистрации";
$a->strings["Version"] = "Версия"; $a->strings["Version"] = "Версия";
$a->strings["Active plugins"] = "Активные плагины"; $a->strings["Active plugins"] = "Активные плагины";
$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>"; $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>";
$a->strings["RINO2 needs mcrypt php extension to work."] = "Для функционирования RINO2 необходим пакет php5-mcrypt";
$a->strings["Site settings updated."] = "Установки сайта обновлены."; $a->strings["Site settings updated."] = "Установки сайта обновлены.";
$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; $a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
$a->strings["No community page"] = ""; $a->strings["No community page"] = "";
@ -429,6 +466,12 @@ $a->strings["Frequently"] = "Часто";
$a->strings["Hourly"] = "Раз в час"; $a->strings["Hourly"] = "Раз в час";
$a->strings["Twice daily"] = "Два раза в день"; $a->strings["Twice daily"] = "Два раза в день";
$a->strings["Daily"] = "Ежедневно"; $a->strings["Daily"] = "Ежедневно";
$a->strings["Users, Global Contacts"] = "";
$a->strings["Users, Global Contacts/fallback"] = "";
$a->strings["One month"] = "Один месяц";
$a->strings["Three months"] = "Три месяца";
$a->strings["Half a year"] = "Пол года";
$a->strings["One year"] = "Один год";
$a->strings["Multi user instance"] = "Многопользовательский вид"; $a->strings["Multi user instance"] = "Многопользовательский вид";
$a->strings["Closed"] = "Закрыто"; $a->strings["Closed"] = "Закрыто";
$a->strings["Requires approval"] = "Требуется подтверждение"; $a->strings["Requires approval"] = "Требуется подтверждение";
@ -441,16 +484,20 @@ $a->strings["Registration"] = "Регистрация";
$a->strings["File upload"] = "Загрузка файлов"; $a->strings["File upload"] = "Загрузка файлов";
$a->strings["Policies"] = "Политики"; $a->strings["Policies"] = "Политики";
$a->strings["Advanced"] = "Расширенный"; $a->strings["Advanced"] = "Расширенный";
$a->strings["Auto Discovered Contact Directory"] = "";
$a->strings["Performance"] = "Производительность"; $a->strings["Performance"] = "Производительность";
$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным.";
$a->strings["Site name"] = "Название сайта"; $a->strings["Site name"] = "Название сайта";
$a->strings["Host name"] = ""; $a->strings["Host name"] = "Имя хоста";
$a->strings["Sender Email"] = ""; $a->strings["Sender Email"] = "Системный Email";
$a->strings["The email address your server shall use to send notification emails from."] = "Адрес с которого будут приходить письма пользователям.";
$a->strings["Banner/Logo"] = "Баннер/Логотип"; $a->strings["Banner/Logo"] = "Баннер/Логотип";
$a->strings["Shortcut icon"] = ""; $a->strings["Shortcut icon"] = "";
$a->strings["Link to an icon that will be used for browsers."] = "";
$a->strings["Touch icon"] = ""; $a->strings["Touch icon"] = "";
$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
$a->strings["Additional Info"] = "Дополнительная информация"; $a->strings["Additional Info"] = "Дополнительная информация";
$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Для публичных серверов: вы можете добавить дополнительную информацию, которая будет перечислена в dir.friendica.com/siteinfo."; $a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
$a->strings["System language"] = "Системный язык"; $a->strings["System language"] = "Системный язык";
$a->strings["System theme"] = "Системная тема"; $a->strings["System theme"] = "Системная тема";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>"; $a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>";
@ -458,7 +505,7 @@ $a->strings["Mobile system theme"] = "Мобильная тема системы
$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств"; $a->strings["Theme for mobile devices"] = "Тема для мобильных устройств";
$a->strings["SSL link policy"] = "Политика SSL"; $a->strings["SSL link policy"] = "Политика SSL";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
$a->strings["Force SSL"] = ""; $a->strings["Force SSL"] = "SSL принудительно";
$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = ""; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
$a->strings["Old style 'Share'"] = "Старый стиль 'Share'"; $a->strings["Old style 'Share'"] = "Старый стиль 'Share'";
$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Отключение BBCode элемента 'share' для повторяющихся элементов."; $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Отключение BBCode элемента 'share' для повторяющихся элементов.";
@ -487,8 +534,8 @@ $a->strings["Block public"] = "Блокировать общественный
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт."; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт.";
$a->strings["Force publish"] = "Принудительная публикация"; $a->strings["Force publish"] = "Принудительная публикация";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта.";
$a->strings["Global directory update URL"] = "URL обновления глобального каталога"; $a->strings["Global directory URL"] = "";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL для обновления глобального каталога. Если он не установлен, глобальный каталог полностью недоступен для приложения."; $a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "Разрешить темы в обсуждении"; $a->strings["Allow threaded items"] = "Разрешить темы в обсуждении";
$a->strings["Allow infinite level threading for items on this site."] = "Разрешить бесконечный уровень для тем на этом сайте."; $a->strings["Allow infinite level threading for items on this site."] = "Разрешить бесконечный уровень для тем на этом сайте.";
$a->strings["Private posts by default for new users"] = "Частные сообщения по умолчанию для новых пользователей"; $a->strings["Private posts by default for new users"] = "Частные сообщения по умолчанию для новых пользователей";
@ -517,6 +564,8 @@ $a->strings["Enable OStatus support"] = "Включить поддержку OSt
$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; $a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["OStatus conversation completion interval"] = ""; $a->strings["OStatus conversation completion interval"] = "";
$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей.";
$a->strings["OStatus support can only be enabled if threading is enabled."] = "";
$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora"; $a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
$a->strings["Provide built-in Diaspora network compatibility."] = "Обеспечить встроенную поддержку сети Diaspora."; $a->strings["Provide built-in Diaspora network compatibility."] = "Обеспечить встроенную поддержку сети Diaspora.";
$a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты"; $a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты";
@ -533,6 +582,24 @@ $a->strings["Poll interval"] = "Интервал опроса";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Установить задержку фоновых процессов опросов путем ограничения количества секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал доставки."; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Установить задержку фоновых процессов опросов путем ограничения количества секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал доставки.";
$a->strings["Maximum Load Average"] = "Средняя максимальная нагрузка"; $a->strings["Maximum Load Average"] = "Средняя максимальная нагрузка";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50.";
$a->strings["Maximum Load Average (Frontend)"] = "";
$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
$a->strings["Maximum table size for optimization"] = "";
$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "";
$a->strings["Minimum level of fragmentation"] = "";
$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
$a->strings["Periodical check of global contacts"] = "";
$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
$a->strings["Days between requery"] = "";
$a->strings["Number of days after which a server is requeried for his contacts."] = "";
$a->strings["Discover contacts from other servers"] = "";
$a->strings["Periodically query other servers for contacts. You can choose between 'users': the users on the remote system, 'Global Contacts': active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren't available. The fallback increases the server load, so the recommened setting is 'Users, Global Contacts'."] = "";
$a->strings["Timeframe for fetching global contacts"] = "";
$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "";
$a->strings["Search the local directory"] = "";
$a->strings["Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated."] = "";
$a->strings["Publish server information"] = "";
$a->strings["If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href='http://the-federation.info/'>the-federation.info</a> for details."] = "";
$a->strings["Use MySQL full text engine"] = "Использовать систему полнотексного поиска MySQL"; $a->strings["Use MySQL full text engine"] = "Использовать систему полнотексного поиска MySQL";
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов."; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов.";
$a->strings["Suppress Language"] = ""; $a->strings["Suppress Language"] = "";
@ -540,13 +607,17 @@ $a->strings["Suppress language information in meta information about a posting."
$a->strings["Suppress Tags"] = ""; $a->strings["Suppress Tags"] = "";
$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; $a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
$a->strings["Path to item cache"] = "Путь к элементам кэша"; $a->strings["Path to item cache"] = "Путь к элементам кэша";
$a->strings["The item caches buffers generated bbcode and external images."] = "";
$a->strings["Cache duration in seconds"] = "Время жизни кэша в секундах"; $a->strings["Cache duration in seconds"] = "Время жизни кэша в секундах";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = ""; $a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
$a->strings["Maximum numbers of comments per post"] = ""; $a->strings["Maximum numbers of comments per post"] = "";
$a->strings["How much comments should be shown for each post? Default value is 100."] = ""; $a->strings["How much comments should be shown for each post? Default value is 100."] = "";
$a->strings["Path for lock file"] = "Путь к файлу блокировки"; $a->strings["Path for lock file"] = "Путь к файлу блокировки";
$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "";
$a->strings["Temp path"] = "Временная папка"; $a->strings["Temp path"] = "Временная папка";
$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
$a->strings["Base path to installation"] = "Путь для установки"; $a->strings["Base path to installation"] = "Путь для установки";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = ""; $a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = ""; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["Enable old style pager"] = ""; $a->strings["Enable old style pager"] = "";
@ -554,6 +625,11 @@ $a->strings["The old style pager has page numbers but slows down massively the p
$a->strings["Only search in tags"] = ""; $a->strings["Only search in tags"] = "";
$a->strings["On large systems the text search can slow down the system extremely."] = ""; $a->strings["On large systems the text search can slow down the system extremely."] = "";
$a->strings["New base url"] = "Новый базовый url"; $a->strings["New base url"] = "Новый базовый url";
$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
$a->strings["RINO Encryption"] = "RINO шифрование";
$a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами.";
$a->strings["Embedly API key"] = "";
$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
$a->strings["Update has been marked successful"] = "Обновление было успешно отмечено"; $a->strings["Update has been marked successful"] = "Обновление было успешно отмечено";
$a->strings["Database structure update %s was successfully applied."] = ""; $a->strings["Database structure update %s was successfully applied."] = "";
$a->strings["Executing of database structure update %s failed with error: %s"] = ""; $a->strings["Executing of database structure update %s failed with error: %s"] = "";
@ -574,11 +650,13 @@ $a->strings["%s user blocked/unblocked"] = array(
0 => "%s пользователь заблокирован/разблокирован", 0 => "%s пользователь заблокирован/разблокирован",
1 => "%s пользователей заблокировано/разблокировано", 1 => "%s пользователей заблокировано/разблокировано",
2 => "%s пользователей заблокировано/разблокировано", 2 => "%s пользователей заблокировано/разблокировано",
3 => "%s пользователей заблокировано/разблокировано",
); );
$a->strings["%s user deleted"] = array( $a->strings["%s user deleted"] = array(
0 => "%s человек удален", 0 => "%s человек удален",
1 => "%s чел. удалено", 1 => "%s чел. удалено",
2 => "%s чел. удалено", 2 => "%s чел. удалено",
3 => "%s чел. удалено",
); );
$a->strings["User '%s' deleted"] = "Пользователь '%s' удален"; $a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован"; $a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
@ -612,8 +690,12 @@ $a->strings["Enable"] = "Включить";
$a->strings["Toggle"] = "Переключить"; $a->strings["Toggle"] = "Переключить";
$a->strings["Author: "] = "Автор:"; $a->strings["Author: "] = "Автор:";
$a->strings["Maintainer: "] = "Программа обслуживания: "; $a->strings["Maintainer: "] = "Программа обслуживания: ";
$a->strings["Reload active plugins"] = "";
$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
$a->strings["No themes found."] = "Темы не найдены."; $a->strings["No themes found."] = "Темы не найдены.";
$a->strings["Screenshot"] = "Скриншот"; $a->strings["Screenshot"] = "Скриншот";
$a->strings["Reload active themes"] = "";
$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
$a->strings["[Experimental]"] = "[экспериментально]"; $a->strings["[Experimental]"] = "[экспериментально]";
$a->strings["[Unsupported]"] = "[Неподдерживаемое]"; $a->strings["[Unsupported]"] = "[Неподдерживаемое]";
$a->strings["Log settings updated."] = "Настройки журнала обновлены."; $a->strings["Log settings updated."] = "Настройки журнала обновлены.";
@ -622,18 +704,19 @@ $a->strings["Enable Debugging"] = "Включить отладку";
$a->strings["Log file"] = "Лог-файл"; $a->strings["Log file"] = "Лог-файл";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня.";
$a->strings["Log level"] = "Уровень лога"; $a->strings["Log level"] = "Уровень лога";
$a->strings["Close"] = "Закрыть"; $a->strings["PHP logging"] = "PHP логирование";
$a->strings["FTP Host"] = "FTP хост"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "";
$a->strings["FTP Path"] = "Путь FTP"; $a->strings["Off"] = "Выкл.";
$a->strings["FTP User"] = "FTP пользователь"; $a->strings["On"] = "Вкл.";
$a->strings["FTP Password"] = "FTP пароль"; $a->strings["Lock feature %s"] = "";
$a->strings["Search Results For:"] = "Результаты поиска для:"; $a->strings["Manage Additional Features"] = "";
$a->strings["Search Results For: %s"] = "";
$a->strings["Remove term"] = "Удалить элемент"; $a->strings["Remove term"] = "Удалить элемент";
$a->strings["Saved Searches"] = "запомненные поиски"; $a->strings["Saved Searches"] = "запомненные поиски";
$a->strings["add"] = "добавить"; $a->strings["add"] = "добавить";
$a->strings["Commented Order"] = "Прокомментированный запрос"; $a->strings["Commented Order"] = "Последние комментарии";
$a->strings["Sort by Comment Date"] = "Сортировать по дате комментария"; $a->strings["Sort by Comment Date"] = "Сортировать по дате комментария";
$a->strings["Posted Order"] = "Отправленный запрос"; $a->strings["Posted Order"] = "Лента записей";
$a->strings["Sort by Post Date"] = "Сортировать по дате отправки"; $a->strings["Sort by Post Date"] = "Сортировать по дате отправки";
$a->strings["Posts that mention or involve you"] = ""; $a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "Новый"; $a->strings["New"] = "Новый";
@ -646,36 +729,77 @@ $a->strings["Warning: This group contains %s member from an insecure network."]
0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.", 0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.",
1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.", 1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.", 2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
3 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
); );
$a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования."; $a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования.";
$a->strings["No such group"] = "Нет такой группы"; $a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста"; $a->strings["Group: %s"] = "Группа: %s";
$a->strings["Group: "] = "Группа: ";
$a->strings["Contact: "] = "Контакт: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования."; $a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
$a->strings["Invalid contact."] = "Недопустимый контакт."; $a->strings["Invalid contact."] = "Недопустимый контакт.";
$a->strings["Friends of %s"] = "%s Друзья";
$a->strings["No friends to display."] = "Нет друзей."; $a->strings["No friends to display."] = "Нет друзей.";
$a->strings["Event can not end before it has started."] = "";
$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения."; $a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения.";
$a->strings["Sun"] = "Вс";
$a->strings["Mon"] = "Пн";
$a->strings["Tue"] = "Вт";
$a->strings["Wed"] = "Ср";
$a->strings["Thu"] = "Чт";
$a->strings["Fri"] = "Пт";
$a->strings["Sat"] = "Сб";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["Jan"] = "Янв";
$a->strings["Feb"] = "Фев";
$a->strings["Mar"] = "Мрт";
$a->strings["Apr"] = "Апр";
$a->strings["May"] = "Май";
$a->strings["Jun"] = "Июн";
$a->strings["Jul"] = "Июл";
$a->strings["Aug"] = "Авг";
$a->strings["Sept"] = "Сен";
$a->strings["Oct"] = "Окт";
$a->strings["Nov"] = "Нбр";
$a->strings["Dec"] = "Дек";
$a->strings["January"] = "Январь";
$a->strings["February"] = "Февраль";
$a->strings["March"] = "Март";
$a->strings["April"] = "Апрель";
$a->strings["June"] = "Июнь";
$a->strings["July"] = "Июль";
$a->strings["August"] = "Август";
$a->strings["September"] = "Сентябрь";
$a->strings["October"] = "Октябрь";
$a->strings["November"] = "Ноябрь";
$a->strings["December"] = "Декабрь";
$a->strings["today"] = "сегодня";
$a->strings["month"] = "мес.";
$a->strings["week"] = "неделя";
$a->strings["day"] = "день";
$a->strings["l, F j"] = "l, j F"; $a->strings["l, F j"] = "l, j F";
$a->strings["Edit event"] = "Редактировать мероприятие"; $a->strings["Edit event"] = "Редактировать мероприятие";
$a->strings["link to source"] = "ссылка на источник"; $a->strings["link to source"] = "ссылка на сообщение";
$a->strings["Events"] = "Мероприятия"; $a->strings["Events"] = "Мероприятия";
$a->strings["Create New Event"] = "Создать новое мероприятие"; $a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Previous"] = "Назад"; $a->strings["Previous"] = "Назад";
$a->strings["Next"] = "Далее"; $a->strings["Next"] = "Далее";
$a->strings["hour:minute"] = "час:минута";
$a->strings["Event details"] = "Сведения о мероприятии"; $a->strings["Event details"] = "Сведения о мероприятии";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Формат %s %s. Необхлдима дата старта и заголовок."; $a->strings["Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Начало мероприятия:"; $a->strings["Event Starts:"] = "Начало мероприятия:";
$a->strings["Required"] = "Требуется"; $a->strings["Required"] = "Требуется";
$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны"; $a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
$a->strings["Event Finishes:"] = "Окончание мероприятия:"; $a->strings["Event Finishes:"] = "Окончание мероприятия:";
$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса"; $a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
$a->strings["Description:"] = "Описание:"; $a->strings["Description:"] = "Описание:";
$a->strings["Location:"] = "Откуда:";
$a->strings["Title:"] = "Титул:"; $a->strings["Title:"] = "Титул:";
$a->strings["Share this event"] = "Поделитесь этим мероприятием"; $a->strings["Share this event"] = "Поделитесь этим мероприятием";
$a->strings["Preview"] = "Предварительный просмотр";
$a->strings["Credits"] = "";
$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "";
$a->strings["Select"] = "Выберите"; $a->strings["Select"] = "Выберите";
$a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]"; $a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]";
$a->strings["%s from %s"] = "%s с %s"; $a->strings["%s from %s"] = "%s с %s";
@ -684,11 +808,13 @@ $a->strings["%d comment"] = array(
0 => "%d комментарий", 0 => "%d комментарий",
1 => "%d комментариев", 1 => "%d комментариев",
2 => "%d комментариев", 2 => "%d комментариев",
3 => "%d комментариев",
); );
$a->strings["comment"] = array( $a->strings["comment"] = array(
0 => "", 0 => "",
1 => "", 1 => "",
2 => "комментарий", 2 => "комментарий",
3 => "комментарий",
); );
$a->strings["show more"] = "показать больше"; $a->strings["show more"] = "показать больше";
$a->strings["Private Message"] = "Личное сообщение"; $a->strings["Private Message"] = "Личное сообщение";
@ -699,7 +825,7 @@ $a->strings["dislike"] = "не нравитса";
$a->strings["Share this"] = "Поделитесь этим"; $a->strings["Share this"] = "Поделитесь этим";
$a->strings["share"] = "делиться"; $a->strings["share"] = "делиться";
$a->strings["This is you"] = "Это вы"; $a->strings["This is you"] = "Это вы";
$a->strings["Comment"] = "Комментарий"; $a->strings["Comment"] = "Оставить комментарий";
$a->strings["Bold"] = "Жирный"; $a->strings["Bold"] = "Жирный";
$a->strings["Italic"] = "Kурсивный"; $a->strings["Italic"] = "Kурсивный";
$a->strings["Underline"] = "Подчеркнутый"; $a->strings["Underline"] = "Подчеркнутый";
@ -708,7 +834,6 @@ $a->strings["Code"] = "Код";
$a->strings["Image"] = "Изображение / Фото"; $a->strings["Image"] = "Изображение / Фото";
$a->strings["Link"] = "Ссылка"; $a->strings["Link"] = "Ссылка";
$a->strings["Video"] = "Видео"; $a->strings["Video"] = "Видео";
$a->strings["Preview"] = "предварительный просмотр";
$a->strings["Edit"] = "Редактировать"; $a->strings["Edit"] = "Редактировать";
$a->strings["add star"] = "пометить"; $a->strings["add star"] = "пометить";
$a->strings["remove star"] = "убрать метку"; $a->strings["remove star"] = "убрать метку";
@ -728,6 +853,7 @@ $a->strings["Could not create table."] = "Не удалось создать т
$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена."; $a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\"."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
$a->strings["Database already in use."] = "";
$a->strings["System check"] = "Проверить систему"; $a->strings["System check"] = "Проверить систему";
$a->strings["Check again"] = "Проверить еще раз"; $a->strings["Check again"] = "Проверить еще раз";
$a->strings["Database connection"] = "Подключение к базе данных"; $a->strings["Database connection"] = "Подключение к базе данных";
@ -743,7 +869,7 @@ $a->strings["Your account email address must match this in order to use the web
$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; $a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
$a->strings["Site settings"] = "Настройки сайта"; $a->strings["Site settings"] = "Настройки сайта";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP."; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Если на вашем сервере не установлена версия командной строки PHP, вы не будете иметь возможность запускать фоновые опросы через крон. См. <a href='http://friendica.com/node/27'> 'Активация запланированных задачах' </a>"; $a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
$a->strings["PHP executable path"] = "PHP executable path"; $a->strings["PHP executable path"] = "PHP executable path";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку.";
$a->strings["Command line PHP"] = "Command line PHP"; $a->strings["Command line PHP"] = "Command line PHP";
@ -761,6 +887,7 @@ $a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; $a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
$a->strings["mysqli PHP module"] = "mysqli PHP модуль"; $a->strings["mysqli PHP module"] = "mysqli PHP модуль";
$a->strings["mb_string PHP module"] = "mb_string PHP модуль"; $a->strings["mb_string PHP module"] = "mb_string PHP модуль";
$a->strings["mcrypt PHP module"] = "";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; $a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен."; $a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
@ -768,6 +895,9 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."; $a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен."; $a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен."; $a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "";
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "";
$a->strings["mcrypt_create_iv() function"] = "";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."; $a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."; $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."; $a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica.";
@ -780,6 +910,8 @@ $a->strings["Note: as a security measure, you should give the web server write a
$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи"; $a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера..";
$a->strings["Url rewrite is working"] = "Url rewrite работает"; $a->strings["Url rewrite is working"] = "Url rewrite работает";
$a->strings["ImageMagick PHP extension is installed"] = "";
$a->strings["ImageMagick supports GIF"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
$a->strings["<h1>What next</h1>"] = "<h1>Что далее</h1>"; $a->strings["<h1>What next</h1>"] = "<h1>Что далее</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
@ -795,21 +927,19 @@ $a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\
$a->strings["Welcome to %s"] = "Добро пожаловать на %s!"; $a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = ""; $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
$a->strings["Or - did you try to upload an empty file?"] = ""; $a->strings["Or - did you try to upload an empty file?"] = "";
$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; $a->strings["File exceeds size limit of %s"] = "";
$a->strings["File upload failed."] = "Загрузка файла не удалась."; $a->strings["File upload failed."] = "Загрузка файла не удалась.";
$a->strings["Profile Match"] = "Похожие профили";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
$a->strings["is interested in:"] = "интересуется:"; $a->strings["is interested in:"] = "интересуется:";
$a->strings["Connect"] = "Подключить"; $a->strings["Profile Match"] = "Похожие профили";
$a->strings["link"] = "ссылка"; $a->strings["link"] = "ссылка";
$a->strings["Not available."] = "Недоступно."; $a->strings["Not available."] = "Недоступно.";
$a->strings["Community"] = "Сообщество"; $a->strings["Community"] = "Сообщество";
$a->strings["No results."] = "Нет результатов."; $a->strings["No results."] = "Нет результатов.";
$a->strings["everybody"] = "каждый"; $a->strings["everybody"] = "каждый";
$a->strings["Additional features"] = "Дополнительные возможности"; $a->strings["Display"] = "Внешний вид";
$a->strings["Display"] = ""; $a->strings["Social Networks"] = "Социальные сети";
$a->strings["Social Networks"] = ""; $a->strings["Delegations"] = "Делегирование";
$a->strings["Delegations"] = "";
$a->strings["Connected apps"] = "Подключенные приложения"; $a->strings["Connected apps"] = "Подключенные приложения";
$a->strings["Export personal data"] = "Экспорт личных данных"; $a->strings["Export personal data"] = "Экспорт личных данных";
$a->strings["Remove account"] = "Удалить аккаунт"; $a->strings["Remove account"] = "Удалить аккаунт";
@ -843,14 +973,20 @@ $a->strings["No name"] = "Нет имени";
$a->strings["Remove authorization"] = "Удалить авторизацию"; $a->strings["Remove authorization"] = "Удалить авторизацию";
$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина"; $a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
$a->strings["Plugin Settings"] = "Настройки плагина"; $a->strings["Plugin Settings"] = "Настройки плагина";
$a->strings["Off"] = "";
$a->strings["On"] = "";
$a->strings["Additional Features"] = "Дополнительные возможности"; $a->strings["Additional Features"] = "Дополнительные возможности";
$a->strings["General Social Media Settings"] = "";
$a->strings["Disable intelligent shortening"] = "";
$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "";
$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
$a->strings["Your legacy GNU Social account"] = "";
$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
$a->strings["Repair OStatus subscriptions"] = "";
$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s"; $a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s";
$a->strings["Diaspora"] = "Diaspora"; $a->strings["Diaspora"] = "Diaspora";
$a->strings["enabled"] = "подключено"; $a->strings["enabled"] = "подключено";
$a->strings["disabled"] = "отключено"; $a->strings["disabled"] = "отключено";
$a->strings["StatusNet"] = "StatusNet"; $a->strings["GNU Social (OStatus)"] = "";
$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте."; $a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика"; $a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
@ -871,14 +1007,17 @@ $a->strings["Display Settings"] = "Параметры дисплея";
$a->strings["Display Theme:"] = "Показать тему:"; $a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Mobile Theme:"] = "Мобильная тема:"; $a->strings["Mobile Theme:"] = "Мобильная тема:";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд"; $a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, максимума нет"; $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
$a->strings["Number of items to display per page:"] = "Количество элементов, отображаемых на одной странице:"; $a->strings["Number of items to display per page:"] = "Количество элементов, отображаемых на одной странице:";
$a->strings["Maximum of 100 items"] = "Максимум 100 элементов"; $a->strings["Maximum of 100 items"] = "Максимум 100 элементов";
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:";
$a->strings["Don't show emoticons"] = "не показывать emoticons"; $a->strings["Don't show emoticons"] = "не показывать emoticons";
$a->strings["Calendar"] = "";
$a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = ""; $a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "Бесконечная прокрутка"; $a->strings["Infinite scroll"] = "Бесконечная прокрутка";
$a->strings["Automatic updates only at the top of the network page"] = ""; $a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Theme settings"] = "Настройки темы";
$a->strings["User Types"] = ""; $a->strings["User Types"] = "";
$a->strings["Community Types"] = ""; $a->strings["Community Types"] = "";
$a->strings["Normal Account Page"] = "Стандартная страница аккаунта"; $a->strings["Normal Account Page"] = "Стандартная страница аккаунта";
@ -894,7 +1033,6 @@ $a->strings["Private forum - approved members only"] = "Приватный фо
$a->strings["OpenID:"] = "OpenID:"; $a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"; $a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
$a->strings["No"] = "Нет";
$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"; $a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?"; $a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
@ -904,7 +1042,7 @@ $a->strings["Allow friends to tag your posts?"] = "Разрешить друзь
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?";
$a->strings["Permit unknown people to send you private mail?"] = "Разрешить незнакомым людям отправлять вам личные сообщения?"; $a->strings["Permit unknown people to send you private mail?"] = "Разрешить незнакомым людям отправлять вам личные сообщения?";
$a->strings["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>."; $a->strings["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
$a->strings["Your Identity Address is"] = "Ваш идентификационный адрес"; $a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "";
$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:"; $a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия"; $a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
@ -915,7 +1053,7 @@ $a->strings["Expire starred posts:"] = "Срок хранения усеянны
$a->strings["Expire photos:"] = "Срок хранения фотографий:"; $a->strings["Expire photos:"] = "Срок хранения фотографий:";
$a->strings["Only expire posts by others:"] = "Только устаревшие посты других:"; $a->strings["Only expire posts by others:"] = "Только устаревшие посты других:";
$a->strings["Account Settings"] = "Настройки аккаунта"; $a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Password Settings"] = "Настройка пароля"; $a->strings["Password Settings"] = "Смена пароля";
$a->strings["New Password:"] = "Новый пароль:"; $a->strings["New Password:"] = "Новый пароль:";
$a->strings["Confirm:"] = "Подтвердите:"; $a->strings["Confirm:"] = "Подтвердите:";
$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется"; $a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется";
@ -926,6 +1064,8 @@ $a->strings["Basic Settings"] = "Основные параметры";
$a->strings["Full Name:"] = "Полное имя:"; $a->strings["Full Name:"] = "Полное имя:";
$a->strings["Email Address:"] = "Адрес электронной почты:"; $a->strings["Email Address:"] = "Адрес электронной почты:";
$a->strings["Your Timezone:"] = "Ваш часовой пояс:"; $a->strings["Your Timezone:"] = "Ваш часовой пояс:";
$a->strings["Your Language:"] = "";
$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "";
$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:"; $a->strings["Default Post Location:"] = "Местонахождение по умолчанию:";
$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:"; $a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности"; $a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
@ -953,11 +1093,13 @@ $a->strings["You receive a private message"] = "Вы получаете личн
$a->strings["You receive a friend suggestion"] = "Вы полулили предложение о добавлении в друзья"; $a->strings["You receive a friend suggestion"] = "Вы полулили предложение о добавлении в друзья";
$a->strings["You are tagged in a post"] = "Вы отмечены в посте"; $a->strings["You are tagged in a post"] = "Вы отмечены в посте";
$a->strings["You are poked/prodded/etc. in a post"] = ""; $a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Activate desktop notifications"] = "";
$a->strings["Show desktop popup on new notifications"] = "";
$a->strings["Text-only notification emails"] = ""; $a->strings["Text-only notification emails"] = "";
$a->strings["Send text only notification emails, without the html part"] = ""; $a->strings["Send text only notification emails, without the html part"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "Расширенные настройки типа аккаунта/страницы"; $a->strings["Advanced Account/Page Type Settings"] = "Расширенные настройки учётной записи";
$a->strings["Change the behaviour of this account for special situations"] = "Измените поведение этого аккаунта в специальных ситуациях"; $a->strings["Change the behaviour of this account for special situations"] = "Измените поведение этого аккаунта в специальных ситуациях";
$a->strings["Relocate"] = "Переместить"; $a->strings["Relocate"] = "Перемещение";
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку."; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку.";
$a->strings["Resend relocate message to contacts"] = "Отправить перемещённые сообщения контактам"; $a->strings["Resend relocate message to contacts"] = "Отправить перемещённые сообщения контактам";
$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят."; $a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
@ -968,6 +1110,7 @@ $a->strings["%d required parameter was not found at the given location"] = array
0 => "%d требуемый параметр не был найден в заданном месте", 0 => "%d требуемый параметр не был найден в заданном месте",
1 => "%d требуемых параметров не были найдены в заданном месте", 1 => "%d требуемых параметров не были найдены в заданном месте",
2 => "%d требуемых параметров не были найдены в заданном месте", 2 => "%d требуемых параметров не были найдены в заданном месте",
3 => "%d требуемых параметров не были найдены в заданном месте",
); );
$a->strings["Introduction complete."] = "Запрос создан."; $a->strings["Introduction complete."] = "Запрос создан.";
$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола."; $a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
@ -978,32 +1121,28 @@ $a->strings["Friends are advised to please try again in 24 hours."] = "Друз
$a->strings["Invalid locator"] = "Недопустимый локатор"; $a->strings["Invalid locator"] = "Недопустимый локатор";
$a->strings["Invalid email address."] = "Неверный адрес электронной почты."; $a->strings["Invalid email address."] = "Неверный адрес электронной почты.";
$a->strings["This account has not been configured for email. Request failed."] = "Этот аккаунт не настроен для электронной почты. Запрос не удался."; $a->strings["This account has not been configured for email. Request failed."] = "Этот аккаунт не настроен для электронной почты. Запрос не удался.";
$a->strings["Unable to resolve your name at the provided location."] = "Не удается установить ваше имя на предложенном местоположении.";
$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь."; $a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s."; $a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
$a->strings["Invalid profile URL."] = "Неверный URL профиля."; $a->strings["Invalid profile URL."] = "Неверный URL профиля.";
$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля."; $a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен."; $a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем."; $a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."; $a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
$a->strings["Confirm"] = "Подтвердить";
$a->strings["Hide this contact"] = "Скрыть этот контакт"; $a->strings["Hide this contact"] = "Скрыть этот контакт";
$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!"; $a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."; $a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
$a->strings["Confirm"] = "Подтвердить";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:"; $a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"http://dir.friendica.com/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>."; $a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение"; $a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
$a->strings["Does %s know you?"] = "%s знает вас?";
$a->strings["Add a personal note:"] = "Добавить личную заметку:";
$a->strings["Friendica"] = "Friendica"; $a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora"; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora";
$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
$a->strings["Submit Request"] = "Отправить запрос";
$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."; $a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = ""; $a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
$a->strings["Registration successful."] = "";
$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; $a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта."; $a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.";
@ -1013,24 +1152,27 @@ $a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязатель
$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?"; $a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению."; $a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
$a->strings["Your invitation ID: "] = "ID вашего приглашения:"; $a->strings["Your invitation ID: "] = "ID вашего приглашения:";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ваше полное имя (например, Joe Smith): "; $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: "; $a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
$a->strings["Leave empty for an auto generated password."] = "";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'."; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите псевдоним: "; $a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
$a->strings["Register"] = "Регистрация"; $a->strings["Register"] = "Регистрация";
$a->strings["Import"] = "Импорт"; $a->strings["Import"] = "Импорт";
$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica"; $a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica";
$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание"; $a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание";
$a->strings["Only logged in users are permitted to perform a search."] = "";
$a->strings["Too Many Requests"] = "";
$a->strings["Only one search per minute is permitted for not logged in users."] = "";
$a->strings["Search"] = "Поиск"; $a->strings["Search"] = "Поиск";
$a->strings["Global Directory"] = "Глобальный каталог"; $a->strings["Items tagged with: %s"] = "";
$a->strings["Find on this site"] = "Найти на этом сайте"; $a->strings["Search results for: %s"] = "";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["Age: "] = "Возраст: ";
$a->strings["Gender: "] = "Пол: ";
$a->strings["Gender:"] = "Пол:";
$a->strings["Status:"] = "Статус:"; $a->strings["Status:"] = "Статус:";
$a->strings["Homepage:"] = "Домашняя страничка:"; $a->strings["Homepage:"] = "Домашняя страничка:";
$a->strings["About:"] = "О себе:"; $a->strings["Global Directory"] = "Глобальный каталог";
$a->strings["Find on this site"] = "Найти на этом сайте";
$a->strings["Finding:"] = "";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; $a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
$a->strings["No potential page delegates located."] = ""; $a->strings["No potential page delegates located."] = "";
$a->strings["Delegate Page Management"] = "Делегировать управление страницей"; $a->strings["Delegate Page Management"] = "Делегировать управление страницей";
@ -1040,7 +1182,6 @@ $a->strings["Existing Page Delegates"] = "Существующие уполно
$a->strings["Potential Delegates"] = "Возможные доверенные лица"; $a->strings["Potential Delegates"] = "Возможные доверенные лица";
$a->strings["Add"] = "Добавить"; $a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей."; $a->strings["No entries."] = "Нет записей.";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["No contacts in common."] = "Нет общих контактов."; $a->strings["No contacts in common."] = "Нет общих контактов.";
$a->strings["Export account"] = "Экспорт аккаунта"; $a->strings["Export account"] = "Экспорт аккаунта";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер.";
@ -1050,9 +1191,9 @@ $a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["Mood"] = "Настроение"; $a->strings["Mood"] = "Настроение";
$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям"; $a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям";
$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?"; $a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.";
$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть"; $a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["Profile deleted."] = "Профиль удален."; $a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-"; $a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан."; $a->strings["New profile created."] = "Новый профиль создан.";
@ -1079,6 +1220,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = " - Посетить профиль %1\$
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Hide contacts and friends:"] = ""; $a->strings["Hide contacts and friends:"] = "";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
$a->strings["Show more profile fields:"] = "";
$a->strings["Edit Profile Details"] = "Редактировать детали профиля"; $a->strings["Edit Profile Details"] = "Редактировать детали профиля";
$a->strings["Change Profile Photo"] = "Изменить фото профиля"; $a->strings["Change Profile Photo"] = "Изменить фото профиля";
$a->strings["View this profile"] = "Просмотреть этот профиль"; $a->strings["View this profile"] = "Просмотреть этот профиль";
@ -1094,7 +1236,7 @@ $a->strings["Profile Name:"] = "Имя профиля:";
$a->strings["Your Full Name:"] = "Ваше полное имя:"; $a->strings["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Заголовок / Описание:"; $a->strings["Title/Description:"] = "Заголовок / Описание:";
$a->strings["Your Gender:"] = "Ваш пол:"; $a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["Birthday (%s):"] = "День рождения (%s):"; $a->strings["Birthday :"] = "";
$a->strings["Street Address:"] = "Адрес:"; $a->strings["Street Address:"] = "Адрес:";
$a->strings["Locality/City:"] = "Город / Населенный пункт:"; $a->strings["Locality/City:"] = "Город / Населенный пункт:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:"; $a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
@ -1127,6 +1269,7 @@ $a->strings["Love/romance"] = "Любовь / романтика";
$a->strings["Work/employment"] = "Работа / занятость"; $a->strings["Work/employment"] = "Работа / занятость";
$a->strings["School/education"] = "Школа / образование"; $a->strings["School/education"] = "Школа / образование";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому через Интернет."; $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому через Интернет.";
$a->strings["Age: "] = "Возраст: ";
$a->strings["Edit/Manage Profiles"] = "Редактировать профиль"; $a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
$a->strings["Change profile photo"] = "Изменить фото профиля"; $a->strings["Change profile photo"] = "Изменить фото профиля";
$a->strings["Create New Profile"] = "Создать новый профиль"; $a->strings["Create New Profile"] = "Создать новый профиль";
@ -1136,7 +1279,7 @@ $a->strings["Edit visibility"] = "Редактировать видимость"
$a->strings["Item not found"] = "Элемент не найден"; $a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение"; $a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["upload photo"] = "загрузить фото"; $a->strings["upload photo"] = "загрузить фото";
$a->strings["Attach file"] = "Приложить файл"; $a->strings["Attach file"] = "Прикрепить файл";
$a->strings["attach file"] = "приложить файл"; $a->strings["attach file"] = "приложить файл";
$a->strings["web link"] = "веб-ссылка"; $a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить ссылку видео"; $a->strings["Insert video link"] = "Вставить ссылку видео";
@ -1157,6 +1300,7 @@ $a->strings["This is Friendica, version"] = "Это Friendica, версия";
$a->strings["running at web location"] = "работает на веб-узле"; $a->strings["running at web location"] = "работает на веб-узле";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica."; $a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica.";
$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите"; $a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
$a->strings["the bugtracker at github"] = "";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:"; $a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений"; $a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
@ -1179,6 +1323,8 @@ $a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "Получатель"; $a->strings["Recipient"] = "Получатель";
$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя"; $a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя";
$a->strings["Make this post private"] = "Сделать эту запись личной"; $a->strings["Make this post private"] = "Сделать эту запись личной";
$a->strings["Resubscribing to OStatus contacts"] = "";
$a->strings["Error"] = "Ошибка";
$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений."; $a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений.";
$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты."; $a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica"; $a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica";
@ -1188,6 +1334,7 @@ $a->strings["%d message sent."] = array(
0 => "%d сообщение отправлено.", 0 => "%d сообщение отправлено.",
1 => "%d сообщений отправлено.", 1 => "%d сообщений отправлено.",
2 => "%d сообщений отправлено.", 2 => "%d сообщений отправлено.",
3 => "%d сообщений отправлено.",
); );
$a->strings["You have no more invitations available"] = "У вас нет больше приглашений"; $a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."; $a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей.";
@ -1201,7 +1348,7 @@ $a->strings["You will need to supply this invitation code: \$invite_code"] = "В
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com";
$a->strings["Photo Albums"] = "Фотоальбомы"; $a->strings["Photo Albums"] = "Фотоальбомы";
$a->strings["Contact Photos"] = "Фотографии контакта"; $a->strings["Recent Photos"] = "Последние фото";
$a->strings["Upload New Photos"] = "Загрузить новые фото"; $a->strings["Upload New Photos"] = "Загрузить новые фото";
$a->strings["Contact information unavailable"] = "Информация о контакте недоступна"; $a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
$a->strings["Album not found."] = "Альбом не найден."; $a->strings["Album not found."] = "Альбом не найден.";
@ -1211,7 +1358,6 @@ $a->strings["Delete Photo"] = "Удалить фото";
$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?"; $a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s"; $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s";
$a->strings["a photo"] = "фото"; $a->strings["a photo"] = "фото";
$a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
$a->strings["Image file is empty."] = "Файл изображения пуст."; $a->strings["Image file is empty."] = "Файл изображения пуст.";
$a->strings["No photos selected"] = "Не выбрано фото."; $a->strings["No photos selected"] = "Не выбрано фото.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."; $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий.";
@ -1234,23 +1380,33 @@ $a->strings["Use as profile photo"] = "Использовать как фото
$a->strings["View Full Size"] = "Просмотреть полный размер"; $a->strings["View Full Size"] = "Просмотреть полный размер";
$a->strings["Tags: "] = "Ключевые слова: "; $a->strings["Tags: "] = "Ключевые слова: ";
$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]"; $a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)";
$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)";
$a->strings["New album name"] = "Название нового альбома"; $a->strings["New album name"] = "Название нового альбома";
$a->strings["Caption"] = "Подпись"; $a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)"; $a->strings["Add a Tag"] = "Добавить ключевое слово (таг)";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Do not rotate"] = "";
$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)";
$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)";
$a->strings["Private photo"] = "Личное фото"; $a->strings["Private photo"] = "Личное фото";
$a->strings["Public photo"] = "Публичное фото"; $a->strings["Public photo"] = "Публичное фото";
$a->strings["Share"] = "Поделиться"; $a->strings["Share"] = "Поделиться";
$a->strings["Recent Photos"] = "Последние фото"; $a->strings["Attending"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Not attending"] = "";
$a->strings["Might attend"] = "";
$a->strings["Map"] = "Карта";
$a->strings["Not Extended"] = "";
$a->strings["Account approved."] = "Аккаунт утвержден."; $a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s"; $a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
$a->strings["Please login."] = "Пожалуйста, войдите с паролем."; $a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
$a->strings["Move account"] = "Удалить аккаунт"; $a->strings["Move account"] = "Удалить аккаунт";
$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica."; $a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."; $a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (StatusNet / identi.ca) или из Diaspora"; $a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
$a->strings["Account file"] = "Файл аккаунта"; $a->strings["Account file"] = "Файл аккаунта";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"";
$a->strings["Item not available."] = "Пункт не доступен."; $a->strings["Item not available."] = "Пункт не доступен.";
@ -1269,31 +1425,13 @@ $a->strings["Website Terms of Service"] = "Правила сайта";
$a->strings["terms of service"] = "правила"; $a->strings["terms of service"] = "правила";
$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера"; $a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера";
$a->strings["privacy policy"] = "политика конфиденциальности"; $a->strings["privacy policy"] = "политика конфиденциальности";
$a->strings["Requested account is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Edit profile"] = "Редактировать профиль";
$a->strings["Message"] = "Сообщение";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
$a->strings["Network:"] = "";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "F d";
$a->strings["[today]"] = "[сегодня]";
$a->strings["Birthday Reminders"] = "Напоминания о днях рождения";
$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:";
$a->strings["[No description]"] = "[без описания]";
$a->strings["Event Reminders"] = "Напоминания о мероприятиях";
$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
$a->strings["Status"] = "Статус";
$a->strings["Status Messages and Posts"] = "Сообщение статуса и посты";
$a->strings["Profile Details"] = "Детали профиля";
$a->strings["Videos"] = "Видео";
$a->strings["Events and Calendar"] = "Календарь и события";
$a->strings["Only You Can See This"] = "Только вы можете это видеть";
$a->strings["This entry was edited"] = "Эта запись была отредактирована"; $a->strings["This entry was edited"] = "Эта запись была отредактирована";
$a->strings["I will attend"] = "";
$a->strings["I will not attend"] = "";
$a->strings["I might attend"] = "";
$a->strings["ignore thread"] = ""; $a->strings["ignore thread"] = "";
$a->strings["unignore thread"] = ""; $a->strings["unignore thread"] = "";
$a->strings["toggle ignore status"] = ""; $a->strings["toggle ignore status"] = "";
$a->strings["ignored"] = "";
$a->strings["Categories:"] = "Категории:"; $a->strings["Categories:"] = "Категории:";
$a->strings["Filed under:"] = "В рубрике:"; $a->strings["Filed under:"] = "В рубрике:";
$a->strings["via"] = "через"; $a->strings["via"] = "через";
@ -1311,10 +1449,10 @@ $a->strings["%d invitation available"] = array(
0 => "%d приглашение доступно", 0 => "%d приглашение доступно",
1 => "%d приглашений доступно", 1 => "%d приглашений доступно",
2 => "%d приглашений доступно", 2 => "%d приглашений доступно",
3 => "%d приглашений доступно",
); );
$a->strings["Find People"] = "Поиск людей"; $a->strings["Find People"] = "Поиск людей";
$a->strings["Enter name or interest"] = "Введите имя или интерес"; $a->strings["Enter name or interest"] = "Введите имя или интерес";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка";
$a->strings["Similar Interests"] = "Похожие интересы"; $a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Random Profile"] = "Случайный профиль"; $a->strings["Random Profile"] = "Случайный профиль";
@ -1324,19 +1462,29 @@ $a->strings["All Networks"] = "Все сети";
$a->strings["Saved Folders"] = "Сохранённые папки"; $a->strings["Saved Folders"] = "Сохранённые папки";
$a->strings["Everything"] = "Всё"; $a->strings["Everything"] = "Всё";
$a->strings["Categories"] = "Категории"; $a->strings["Categories"] = "Категории";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
3 => "%d Контактов",
);
$a->strings["General Features"] = "Основные возможности"; $a->strings["General Features"] = "Основные возможности";
$a->strings["Multiple Profiles"] = "Несколько профилей"; $a->strings["Multiple Profiles"] = "Несколько профилей";
$a->strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; $a->strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей";
$a->strings["Post Composition Features"] = ""; $a->strings["Photo Location"] = "";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
$a->strings["Post Composition Features"] = "Составление сообщений";
$a->strings["Richtext Editor"] = "Редактор RTF"; $a->strings["Richtext Editor"] = "Редактор RTF";
$a->strings["Enable richtext editor"] = "Включить редактор RTF"; $a->strings["Enable richtext editor"] = "Включить редактор RTF";
$a->strings["Post Preview"] = "предварительный просмотр"; $a->strings["Post Preview"] = "Предварительный просмотр";
$a->strings["Allow previewing posts and comments before publishing them"] = "Разрешить предпросмотр сообщения и комментария перед их публикацией"; $a->strings["Allow previewing posts and comments before publishing them"] = "Разрешить предпросмотр сообщения и комментария перед их публикацией";
$a->strings["Auto-mention Forums"] = ""; $a->strings["Auto-mention Forums"] = "";
$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = ""; $a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
$a->strings["Network Sidebar Widgets"] = "Виджет боковой панели \"Сеть\""; $a->strings["Network Sidebar Widgets"] = "Виджет боковой панели \"Сеть\"";
$a->strings["Search by Date"] = "Поиск по датам"; $a->strings["Search by Date"] = "Поиск по датам";
$a->strings["Ability to select posts by date ranges"] = "Возможность выбора постов по диапазону дат"; $a->strings["Ability to select posts by date ranges"] = "Возможность выбора постов по диапазону дат";
$a->strings["List Forums"] = "";
$a->strings["Enable widget to display the forums your are connected with"] = "";
$a->strings["Group Filter"] = "Фильтр групп"; $a->strings["Group Filter"] = "Фильтр групп";
$a->strings["Enable widget to display Network posts only from selected group"] = "Включить виджет для отображения сообщений сети только от выбранной группы"; $a->strings["Enable widget to display Network posts only from selected group"] = "Включить виджет для отображения сообщений сети только от выбранной группы";
$a->strings["Network Filter"] = "Фильтр сети"; $a->strings["Network Filter"] = "Фильтр сети";
@ -1365,6 +1513,8 @@ $a->strings["Star Posts"] = "Популярные посты";
$a->strings["Ability to mark special posts with a star indicator"] = "Возможность отметить специальные сообщения индикатором популярности"; $a->strings["Ability to mark special posts with a star indicator"] = "Возможность отметить специальные сообщения индикатором популярности";
$a->strings["Mute Post Notifications"] = ""; $a->strings["Mute Post Notifications"] = "";
$a->strings["Ability to mute notifications for a thread"] = ""; $a->strings["Ability to mute notifications for a thread"] = "";
$a->strings["Advanced Profile Settings"] = "Расширенные настройки профиля";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
$a->strings["Connect URL missing."] = "Connect-URL отсутствует."; $a->strings["Connect URL missing."] = "Connect-URL отсутствует.";
$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями."; $a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
@ -1381,18 +1531,17 @@ $a->strings["A deleted group with this name was revived. Existing item permissio
$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов"; $a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов";
$a->strings["Everybody"] = "Каждый"; $a->strings["Everybody"] = "Каждый";
$a->strings["edit"] = "редактировать"; $a->strings["edit"] = "редактировать";
$a->strings["Edit groups"] = "";
$a->strings["Edit group"] = "Редактировать группу"; $a->strings["Edit group"] = "Редактировать группу";
$a->strings["Create a new group"] = "Создать новую группу"; $a->strings["Create a new group"] = "Создать новую группу";
$a->strings["Contacts not in any group"] = "Контакты не состоят в группе"; $a->strings["Contacts not in any group"] = "Контакты не состоят в группе";
$a->strings["Miscellaneous"] = "Разное"; $a->strings["Miscellaneous"] = "Разное";
$a->strings["year"] = "год"; $a->strings["YYYY-MM-DD or MM-DD"] = "";
$a->strings["month"] = "мес.";
$a->strings["day"] = "день";
$a->strings["never"] = "никогда"; $a->strings["never"] = "никогда";
$a->strings["less than a second ago"] = "менее сек. назад"; $a->strings["less than a second ago"] = "менее сек. назад";
$a->strings["year"] = "год";
$a->strings["years"] = "лет"; $a->strings["years"] = "лет";
$a->strings["months"] = "мес."; $a->strings["months"] = "мес.";
$a->strings["week"] = "неделя";
$a->strings["weeks"] = "недель"; $a->strings["weeks"] = "недель";
$a->strings["days"] = "дней"; $a->strings["days"] = "дней";
$a->strings["hour"] = "час"; $a->strings["hour"] = "час";
@ -1404,26 +1553,68 @@ $a->strings["seconds"] = "сек.";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
$a->strings["%s's birthday"] = "день рождения %s"; $a->strings["%s's birthday"] = "день рождения %s";
$a->strings["Happy Birthday %s"] = "С днём рождения %s"; $a->strings["Happy Birthday %s"] = "С днём рождения %s";
$a->strings["Requested account is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Edit profile"] = "Редактировать профиль";
$a->strings["Atom feed"] = "";
$a->strings["Message"] = "Сообщение";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "F d";
$a->strings["[today]"] = "[сегодня]";
$a->strings["Birthday Reminders"] = "Напоминания о днях рождения";
$a->strings["Birthdays this week:"] = "Дни рождения на этой неделе:";
$a->strings["[No description]"] = "[без описания]";
$a->strings["Event Reminders"] = "Напоминания о мероприятиях";
$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "День рождения:";
$a->strings["Age:"] = "Возраст:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["Religion:"] = "Религия:";
$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:";
$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:";
$a->strings["Musical interests:"] = "Музыкальные интересы:";
$a->strings["Books, literature:"] = "Книги, литература:";
$a->strings["Television:"] = "Телевидение:";
$a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Культура / Развлечения:";
$a->strings["Love/Romance:"] = "Любовь / Романтика:";
$a->strings["Work/employment:"] = "Работа / Занятость:";
$a->strings["School/education:"] = "Школа / Образование:";
$a->strings["Forums:"] = "";
$a->strings["Videos"] = "Видео";
$a->strings["Events and Calendar"] = "Календарь и события";
$a->strings["Only You Can See This"] = "Только вы можете это видеть";
$a->strings["event"] = "мероприятие";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
$a->strings["Visible to everybody"] = "Видимо всем"; $a->strings["Visible to everybody"] = "Видимо всем";
$a->strings["show"] = "показывать"; $a->strings["show"] = "показывать";
$a->strings["don't show"] = "не показывать"; $a->strings["don't show"] = "не показывать";
$a->strings["Close"] = "Закрыть";
$a->strings["[no subject]"] = "[без темы]"; $a->strings["[no subject]"] = "[без темы]";
$a->strings["stopped following"] = "остановлено следование"; $a->strings["stopped following"] = "остановлено следование";
$a->strings["Poke"] = "";
$a->strings["View Status"] = "Просмотреть статус"; $a->strings["View Status"] = "Просмотреть статус";
$a->strings["View Profile"] = "Просмотреть профиль";
$a->strings["View Photos"] = "Просмотреть фото"; $a->strings["View Photos"] = "Просмотреть фото";
$a->strings["Network Posts"] = "Посты сети"; $a->strings["Network Posts"] = "Посты сети";
$a->strings["Edit Contact"] = "Редактировать контакт"; $a->strings["Edit Contact"] = "Редактировать контакт";
$a->strings["Drop Contact"] = "Удалить контакт"; $a->strings["Drop Contact"] = "Удалить контакт";
$a->strings["Send PM"] = "Отправить ЛС"; $a->strings["Send PM"] = "Отправить ЛС";
$a->strings["Poke"] = "";
$a->strings["Welcome "] = "Добро пожаловать, "; $a->strings["Welcome "] = "Добро пожаловать, ";
$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля."; $a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать обратно, "; $a->strings["Welcome back "] = "Добро пожаловать обратно, ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки.";
$a->strings["event"] = "мероприятие"; $a->strings["%1\$s attends %2\$s's %3\$s"] = "";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
$a->strings["%1\$s poked %2\$s"] = ""; $a->strings["%1\$s poked %2\$s"] = "";
$a->strings["poked"] = "";
$a->strings["post/item"] = "пост/элемент"; $a->strings["post/item"] = "пост/элемент";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
$a->strings["remove"] = "удалить"; $a->strings["remove"] = "удалить";
@ -1431,24 +1622,58 @@ $a->strings["Delete Selected Items"] = "Удалить выбранные поз
$a->strings["Follow Thread"] = ""; $a->strings["Follow Thread"] = "";
$a->strings["%s likes this."] = "%s нравится это."; $a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это."; $a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d людям</span> нравится это"; $a->strings["%s attends."] = "";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d людям</span> не нравится это"; $a->strings["%s doesn't attend."] = "";
$a->strings["%s attends maybe."] = "";
$a->strings["and"] = "и"; $a->strings["and"] = "и";
$a->strings[", and %d other people"] = ", и %d других чел."; $a->strings[", and %d other people"] = ", и %d других чел.";
$a->strings["%s like this."] = "%s нравится это."; $a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d людям</span> нравится это";
$a->strings["%s don't like this."] = "%s не нравится это."; $a->strings["%s like this."] = "";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d людям</span> не нравится это";
$a->strings["%s don't like this."] = "";
$a->strings["<span %1\$s>%2\$d people</span> attend"] = "";
$a->strings["%s attend."] = "";
$a->strings["<span %1\$s>%2\$d people</span> don't attend"] = "";
$a->strings["%s don't attend."] = "";
$a->strings["<span %1\$s>%2\$d people</span> anttend maybe"] = "";
$a->strings["%s anttend maybe."] = "";
$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>"; $a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
$a->strings["Please enter a video link/URL:"] = "Введите ссылку на видео link/URL:"; $a->strings["Please enter a video link/URL:"] = "Введите ссылку на видео link/URL:";
$a->strings["Please enter an audio link/URL:"] = "Введите ссылку на аудио link/URL:"; $a->strings["Please enter an audio link/URL:"] = "Введите ссылку на аудио link/URL:";
$a->strings["Tag term:"] = ""; $a->strings["Tag term:"] = "";
$a->strings["Where are you right now?"] = "И где вы сейчас?"; $a->strings["Where are you right now?"] = "И где вы сейчас?";
$a->strings["Delete item(s)?"] = "Удалить елемент(ты)?"; $a->strings["Delete item(s)?"] = "Удалить елемент(ты)?";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
$a->strings["permissions"] = "разрешения"; $a->strings["permissions"] = "разрешения";
$a->strings["Post to Groups"] = "Пост для групп"; $a->strings["Post to Groups"] = "Пост для групп";
$a->strings["Post to Contacts"] = "Пост для контактов"; $a->strings["Post to Contacts"] = "Пост для контактов";
$a->strings["Private post"] = "Личное сообщение"; $a->strings["Private post"] = "Личное сообщение";
$a->strings["View all"] = "";
$a->strings["Like"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Dislike"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Not Attending"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Undecided"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Forums"] = "";
$a->strings["External link to forum"] = "";
$a->strings["view full size"] = "посмотреть в полный размер"; $a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["newer"] = "новее"; $a->strings["newer"] = "новее";
$a->strings["older"] = "старее"; $a->strings["older"] = "старее";
@ -1456,13 +1681,20 @@ $a->strings["prev"] = "пред.";
$a->strings["first"] = "первый"; $a->strings["first"] = "первый";
$a->strings["last"] = "последний"; $a->strings["last"] = "последний";
$a->strings["next"] = "след."; $a->strings["next"] = "след.";
$a->strings["Loading more entries..."] = "";
$a->strings["The end"] = "";
$a->strings["No contacts"] = "Нет контактов"; $a->strings["No contacts"] = "Нет контактов";
$a->strings["%d Contact"] = array( $a->strings["%d Contact"] = array(
0 => "%d контакт", 0 => "%d контакт",
1 => "%d контактов", 1 => "%d контактов",
2 => "%d контактов", 2 => "%d контактов",
3 => "%d контактов",
); );
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["Full Text"] = "Контент";
$a->strings["Tags"] = "Тэги";
$a->strings["poke"] = "poke"; $a->strings["poke"] = "poke";
$a->strings["poked"] = "";
$a->strings["ping"] = "пинг"; $a->strings["ping"] = "пинг";
$a->strings["pinged"] = "пингуется"; $a->strings["pinged"] = "пингуется";
$a->strings["prod"] = ""; $a->strings["prod"] = "";
@ -1493,29 +1725,10 @@ $a->strings["frustrated"] = "";
$a->strings["motivated"] = ""; $a->strings["motivated"] = "";
$a->strings["relaxed"] = ""; $a->strings["relaxed"] = "";
$a->strings["surprised"] = ""; $a->strings["surprised"] = "";
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["January"] = "Январь";
$a->strings["February"] = "Февраль";
$a->strings["March"] = "Март";
$a->strings["April"] = "Апрель";
$a->strings["May"] = "Май";
$a->strings["June"] = "Июнь";
$a->strings["July"] = "Июль";
$a->strings["August"] = "Август";
$a->strings["September"] = "Сентябрь";
$a->strings["October"] = "Октябрь";
$a->strings["November"] = "Ноябрь";
$a->strings["December"] = "Декабрь";
$a->strings["bytes"] = "байт"; $a->strings["bytes"] = "байт";
$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть"; $a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть";
$a->strings["default"] = "значение по умолчанию"; $a->strings["View on separate page"] = "";
$a->strings["Select an alternate language"] = "Выбор альтернативного языка"; $a->strings["view on separate page"] = "";
$a->strings["activity"] = "активность"; $a->strings["activity"] = "активность";
$a->strings["post"] = "сообщение"; $a->strings["post"] = "сообщение";
$a->strings["Item filed"] = ""; $a->strings["Item filed"] = "";
@ -1524,8 +1737,6 @@ $a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = ""; $a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
$a->strings["$1 wrote:"] = "$1 написал:"; $a->strings["$1 wrote:"] = "$1 написал:";
$a->strings["Encrypted content"] = "Зашифрованный контент"; $a->strings["Encrypted content"] = "Зашифрованный контент";
$a->strings["(no subject)"] = "(без темы)";
$a->strings["noreply"] = "без ответа";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено"; $a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено";
$a->strings["Block immediately"] = "Блокировать немедленно"; $a->strings["Block immediately"] = "Блокировать немедленно";
@ -1537,6 +1748,7 @@ $a->strings["Weekly"] = "Еженедельно";
$a->strings["Monthly"] = "Ежемесячно"; $a->strings["Monthly"] = "Ежемесячно";
$a->strings["OStatus"] = "OStatus"; $a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom"; $a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!"; $a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn"; $a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["XMPP/IM"] = "XMPP/IM";
@ -1545,33 +1757,18 @@ $a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io"; $a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter"; $a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = ""; $a->strings["Diaspora Connector"] = "";
$a->strings["Statusnet"] = ""; $a->strings["GNU Social"] = "";
$a->strings["App.net"] = ""; $a->strings["App.net"] = "";
$a->strings["Redmatrix"] = "";
$a->strings[" on Last.fm"] = "на Last.fm"; $a->strings[" on Last.fm"] = "на Last.fm";
$a->strings["Starts:"] = "Начало:"; $a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "Окончание:"; $a->strings["Finishes:"] = "Окончание:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "День рождения:";
$a->strings["Age:"] = "Возраст:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["Tags:"] = "Ключевые слова: ";
$a->strings["Religion:"] = "Религия:";
$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:";
$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:";
$a->strings["Musical interests:"] = "Музыкальные интересы:";
$a->strings["Books, literature:"] = "Книги, литература:";
$a->strings["Television:"] = "Телевидение:";
$a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Культура / Развлечения:";
$a->strings["Love/Romance:"] = "Любовь / Романтика:";
$a->strings["Work/employment:"] = "Работа / Занятость:";
$a->strings["School/education:"] = "Школа / Образование:";
$a->strings["Click here to upgrade."] = "Нажмите для обновления."; $a->strings["Click here to upgrade."] = "Нажмите для обновления.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом."; $a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом.";
$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки."; $a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки.";
$a->strings["End this session"] = "Конец этой сессии"; $a->strings["End this session"] = "Завершить эту сессию";
$a->strings["Your posts and conversations"] = "Ваши сообщения и беседы"; $a->strings["Your posts and conversations"] = "Данные вашей учётной записи";
$a->strings["Your profile page"] = "Страница Вашего профиля"; $a->strings["Your profile page"] = "Информация о вас";
$a->strings["Your photos"] = "Ваши фотографии"; $a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Your videos"] = ""; $a->strings["Your videos"] = "";
$a->strings["Your events"] = "Ваши события"; $a->strings["Your events"] = "Ваши события";
@ -1588,9 +1785,9 @@ $a->strings["Conversations on this site"] = "Беседы на этом сайт
$a->strings["Conversations on the network"] = ""; $a->strings["Conversations on the network"] = "";
$a->strings["Directory"] = "Каталог"; $a->strings["Directory"] = "Каталог";
$a->strings["People directory"] = "Каталог участников"; $a->strings["People directory"] = "Каталог участников";
$a->strings["Information"] = ""; $a->strings["Information"] = "Информация";
$a->strings["Information about this friendica instance"] = ""; $a->strings["Information about this friendica instance"] = "";
$a->strings["Conversations from your friends"] = "Беседы с друзьями"; $a->strings["Conversations from your friends"] = "Посты ваших друзей";
$a->strings["Network Reset"] = "Перезагрузка сети"; $a->strings["Network Reset"] = "Перезагрузка сети";
$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров"; $a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров";
$a->strings["Friend Requests"] = "Запросы на добавление в список друзей"; $a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
@ -1604,19 +1801,12 @@ $a->strings["Manage other pages"] = "Управление другими стр
$a->strings["Account settings"] = "Настройки аккаунта"; $a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей"; $a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей";
$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов"; $a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
$a->strings["Site setup and configuration"] = "Установка и конфигурация сайта"; $a->strings["Site setup and configuration"] = "Конфигурация сайта";
$a->strings["Navigation"] = "Навигация"; $a->strings["Navigation"] = "Навигация";
$a->strings["Site map"] = "Карта сайта"; $a->strings["Site map"] = "Карта сайта";
$a->strings["User not found."] = "Пользователь не найден.";
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = ""; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = ""; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = ""; $a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["There is no status with this id."] = "Нет статуса с таким id.";
$a->strings["There is no conversation with this id."] = "";
$a->strings["Invalid request."] = "";
$a->strings["Invalid item."] = "";
$a->strings["Invalid action. "] = "";
$a->strings["DB error"] = "";
$a->strings["An invitation is required."] = "Требуется приглашение."; $a->strings["An invitation is required."] = "Требуется приглашение.";
$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено."; $a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
$a->strings["Invalid OpenID url"] = "Неверный URL OpenID"; $a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
@ -1627,17 +1817,20 @@ $a->strings["That doesn't appear to be your full (First Last) name."] = "Каж
$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."; $a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
$a->strings["Not a valid email address."] = "Неверный адрес электронной почты."; $a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
$a->strings["Cannot use that email."] = "Нельзя использовать этот Email."; $a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы."; $a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."; $a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."; $a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."; $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."; $a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
$a->strings["default"] = "значение по умолчанию";
$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."; $a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
$a->strings["Friends"] = "Друзья"; $a->strings["Friends"] = "Друзья";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = ""; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = ""; $a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora"; $a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora";
$a->strings["Attachments:"] = "Вложения:"; $a->strings["Attachments:"] = "Вложения:";
$a->strings["(no subject)"] = "(без темы)";
$a->strings["noreply"] = "без ответа";
$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?"; $a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?";
$a->strings["Archives"] = "Архивы"; $a->strings["Archives"] = "Архивы";
$a->strings["Male"] = "Мужчина"; $a->strings["Male"] = "Мужчина";
@ -1653,7 +1846,6 @@ $a->strings["Hermaphrodite"] = "Гермафродит";
$a->strings["Neuter"] = "Средний род"; $a->strings["Neuter"] = "Средний род";
$a->strings["Non-specific"] = "Не определен"; $a->strings["Non-specific"] = "Не определен";
$a->strings["Other"] = "Другой"; $a->strings["Other"] = "Другой";
$a->strings["Undecided"] = "Не решено";
$a->strings["Males"] = "Мужчины"; $a->strings["Males"] = "Мужчины";
$a->strings["Females"] = "Женщины"; $a->strings["Females"] = "Женщины";
$a->strings["Gay"] = "Гей"; $a->strings["Gay"] = "Гей";
@ -1700,6 +1892,7 @@ $a->strings["Ask me"] = "Спросите меня";
$a->strings["Friendica Notification"] = "Friendica уведомления"; $a->strings["Friendica Notification"] = "Friendica уведомления";
$a->strings["Thank You,"] = "Спасибо,"; $a->strings["Thank You,"] = "Спасибо,";
$a->strings["%s Administrator"] = "%s администратор"; $a->strings["%s Administrator"] = "%s администратор";
$a->strings["%1\$s, %2\$s Administrator"] = "";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; $a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Оповещение] Новое сообщение, пришедшее на %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение на %2\$s."; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение на %2\$s.";
@ -1743,7 +1936,7 @@ $a->strings["Name:"] = "Имя:";
$a->strings["Photo:"] = "Фото:"; $a->strings["Photo:"] = "Фото:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s для подтверждения, или отказа запроса."; $a->strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s для подтверждения, или отказа запроса.";
$a->strings["[Friendica:Notify] Connection accepted"] = ""; $a->strings["[Friendica:Notify] Connection accepted"] = "";
$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = ""; $a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "";
$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = ""; $a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = ""; $a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = ""; $a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
@ -1766,10 +1959,10 @@ $a->strings["%d contact not imported"] = array(
0 => "%d контакт не импортирован", 0 => "%d контакт не импортирован",
1 => "%d контакты не импортированы", 1 => "%d контакты не импортированы",
2 => "%d контакты не импортированы", 2 => "%d контакты не импортированы",
3 => "%d контакты не импортированы",
); );
$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем"; $a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем";
$a->strings["toggle mobile"] = "мобильная версия"; $a->strings["toggle mobile"] = "мобильная версия";
$a->strings["Theme settings"] = "Настройки темы";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Установить уровень изменения размера изображений в постах и ​​комментариях (ширина и высота)"; $a->strings["Set resize level for images in posts and comments (width and height)"] = "Установить уровень изменения размера изображений в постах и ​​комментариях (ширина и высота)";
$a->strings["Set font-size for posts and comments"] = "Установить шрифт-размер для постов и комментариев"; $a->strings["Set font-size for posts and comments"] = "Установить шрифт-размер для постов и комментариев";
$a->strings["Set theme width"] = "Установить ширину темы"; $a->strings["Set theme width"] = "Установить ширину темы";
@ -1800,7 +1993,9 @@ $a->strings["Your personal photos"] = "Ваши личные фотографи
$a->strings["Local Directory"] = "Локальный каталог"; $a->strings["Local Directory"] = "Локальный каталог";
$a->strings["Set zoomfactor for Earth Layers"] = "Установить масштаб карты"; $a->strings["Set zoomfactor for Earth Layers"] = "Установить масштаб карты";
$a->strings["Show/hide boxes at right-hand column:"] = "Показать/скрыть блоки в правой колонке:"; $a->strings["Show/hide boxes at right-hand column:"] = "Показать/скрыть блоки в правой колонке:";
$a->strings["Comma separated list of helper forums"] = "";
$a->strings["Set style"] = ""; $a->strings["Set style"] = "";
$a->strings["Quick Start"] = "Быстрый запуск";
$a->strings["greenzero"] = ""; $a->strings["greenzero"] = "";
$a->strings["purplezero"] = ""; $a->strings["purplezero"] = "";
$a->strings["easterbunny"] = ""; $a->strings["easterbunny"] = "";