1
0
Fork 0

Merge remote-tracking branch 'upstream/develop' into issue-3326

This commit is contained in:
Michael 2017-04-14 22:30:48 +00:00
commit e7783e2018
40 changed files with 8412 additions and 8405 deletions

View file

@ -38,7 +38,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_CODENAME', 'Asparagus');
define ( 'FRIENDICA_VERSION', '3.5.2-dev' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1216 );
define ( 'DB_UPDATE_VERSION', 1217 );
/**
* @brief Constant with a HTML line break.
@ -382,6 +382,7 @@ define ( 'ACTIVITY_UPDATE', NAMESPACE_ACTIVITY_SCHEMA . 'update' );
define ( 'ACTIVITY_TAG', NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
define ( 'ACTIVITY_SHARE', NAMESPACE_ACTIVITY_SCHEMA . 'share' );
define ( 'ACTIVITY_DELETE', NAMESPACE_ACTIVITY_SCHEMA . 'delete' );
define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' );
define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' );

View file

@ -159,7 +159,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
`writable` tinyint(1) NOT NULL DEFAULT 0,
`forum` tinyint(1) NOT NULL DEFAULT 0,
`prv` tinyint(1) NOT NULL DEFAULT 0,
`contact-type` int(11) unsigned NOT NULL DEFAULT 0,
`contact-type` int(11) NOT NULL DEFAULT 0,
`hidden` tinyint(1) NOT NULL DEFAULT 0,
`archive` tinyint(1) NOT NULL DEFAULT 0,
`pending` tinyint(1) NOT NULL DEFAULT 1,

10
doc/KeyboardShortcuts.md Normal file
View file

@ -0,0 +1,10 @@
Keyboard shortcuts in Friendica
=======================
* [Home](help)
General
-------
* j: Scroll to next thread
* k: Scroll to previous thread

View file

@ -6,12 +6,10 @@ If you are the admin of a Friendica node, you have access to the so called **Adm
On the front page of the admin panel you will see a summary of information about your node.
These information include the amount of messages currently being processed in the queues.
The first number is the number of messages being actively sent.
This number should decrease quickly.
The second is the messages which could for various reasons not being delivered.
The first number is the number of messages which could not been delivered for various reasons.
They will be resend later.
You can have a quick glance into that second queus in the "Inspect Queue" section of the admin panel.
If you have activated the background workers, there is a third number representing the count of jobs queued for the workers.
The second number represents the current number of jobs for the background workers.
These worker tasks are prioritised and are done accordingly.
Then you get an overview of the accounts on your node, which can be moderated in the "Users" section of the panel.

View file

@ -14,7 +14,6 @@ Database Tables
| [config](help/database/db_config) | main configuration storage |
| [contact](help/database/db_contact) | contact table |
| [conv](help/database/db_conv) | private messages |
| [deliverq](help/database/db_deliverq) | |
| [event](help/database/db_event) | Events |
| [fcontact](help/database/db_fcontact) | friend suggestion stuff |
| [ffinder](help/database/db_ffinder) | friend suggestion stuff |

View file

@ -1,12 +0,0 @@
Table deliverq
==============
| Field | Description | Type | Null | Key | Default | Extra |
|---------|------------------|------------------|------|-----|---------|----------------|
| id | sequential ID | int(10) unsigned | NO | PRI | NULL | auto_increment |
| cmd | | varchar(32) | NO | | | |
| item | | int(11) | NO | | 0 | |
| contact | | int(11) | NO | | 0 | |
Return to [database documentation](help/database)

View file

@ -5,17 +5,14 @@
Wenn du der Administrator einer Friendica Instanz bist, hast du Zugriff auf das so genannte **Admin Panel** in dem du die Friendica Instanz konfigurieren kannst,
Auf der Startseite des Admin Panels werden die Informationen zu der Instanz zusammengefasst.
Diese Informationen beinhalten die Anzahl der Nachrichten, die sich aktuell in den Warteschlangen befinden.
Hierbei ist die erste Zahl die Zahl der Nachrichten die gerade aktiv verteilt werden.
Diese Zahl sollte sich relativ schnell sinken.
Die zweite Zahl gibt die Anzahl von Nachrichten an, die nicht zugestellt werden konnten.
Die erste Zahl gibt die Anzahl von Nachrichten an, die nicht zugestellt werden konnten.
Die Zustellung wird zu einem späteren Zeitpunkt noch einmal versucht.
Unter dem Punkt "Warteschlange Inspizieren" kannst du einen schnellen Blick auf die zweite Warteschlange werfen.
Solltest du für die Hintergrundprozesse die Worker aktiviert haben, wird eine dritte Zahl angezeigt.
Diese repräsentiert die Anzahl der Aufgaben, die die Worker noch vor sich haben.
Die zweite Zahl steht für die Anzahl der Aufgaben, die die Worker noch vor sich haben.
Die Worker arbeiten Hintergrundprozesse ab.
Die Aufgaben der Worker sind priorisiert und werden anhand dieser Prioritäten abgearbeitet.
Des weiteren findest du eine Übersicht über die Accounts auf dem Friendica Knoten, die unter dem Punkt "Nutzer" moderiert werden können.
Desweiteren findest du eine Übersicht über die Accounts auf dem Friendica Knoten, die unter dem Punkt "Nutzer" moderiert werden können.
Sowie eine Liste der derzeit aktivierten Addons.
Diese Liste ist verlinkt, so dass du schnellen Zugriff auf die Informationsseiten der einzelnen Addons hast.
Abschließend findest du auf der Startseite des Admin Panels die installierte Version von Friendica.

View file

@ -364,9 +364,9 @@ class Probe {
return self::mail($uri, $uid);
}
if ($network == NETWORK_MAIL)
if ($network == NETWORK_MAIL) {
return self::mail($uri, $uid);
}
// Remove "acct:" from the URI
$uri = str_replace('acct:', '', $uri);
@ -391,37 +391,37 @@ class Probe {
/// @todo Do we need the prefix "acct:" or "acct://"?
foreach ($lrdd AS $key => $link) {
if ($webfinger)
if ($webfinger) {
continue;
}
if (!in_array($key, array("lrdd", "lrdd-xml", "lrdd-json"))) {
continue;
}
// At first try it with the given uri
$path = str_replace('{uri}', urlencode($uri), $link);
$webfinger = self::webfinger($path);
if (!in_array($key, array("lrdd", "lrdd-xml", "lrdd-json")))
continue;
// We cannot be sure that the detected address was correct, so we don't use the values
if ($webfinger AND ($uri != $addr)) {
$nick = "";
$addr = "";
}
// Try webfinger with the address (user@domain.tld)
$path = str_replace('{uri}', urlencode($addr), $link);
$webfinger = self::webfinger($path);
if (!$webfinger) {
$path = str_replace('{uri}', urlencode($addr), $link);
$webfinger = self::webfinger($path);
}
// Mastodon needs to have it with "acct:"
if (!$webfinger) {
$path = str_replace('{uri}', urlencode("acct:".$addr), $link);
$webfinger = self::webfinger($path);
}
// If webfinger wasn't successful then try it with the URL - possibly in the format https://...
if (!$webfinger AND ($uri != $addr)) {
$path = str_replace('{uri}', urlencode($uri), $link);
$webfinger = self::webfinger($path);
// Since the detection with the address wasn't successful, we delete it.
if ($webfinger) {
$nick = "";
$addr = "";
}
}
}
if (!$webfinger)
if (!$webfinger) {
return self::feed($uri);
}
$result = false;

View file

@ -610,12 +610,18 @@ function acl_lookup(App $a, $out_type = 'json') {
$items = array_merge($groups, $contacts);
if ($conv_id) {
/* if $conv_id is set, get unknow contacts in thread */
/* but first get know contacts url to filter them out */
function _contact_link($i){ return dbesc($i['link']); }
$known_contacts = array_map(_contact_link, $contacts);
$unknow_contacts=array();
$r = q("SELECT `author-avatar`,`author-name`,`author-link`
/*
* if $conv_id is set, get unknown contacts in thread
* but first get known contacts url to filter them out
*/
$known_contacts = array_map(
function ($i) {
return dbesc($i['link']);
}
, $contacts);
$unknown_contacts = array();
$r = q("SELECT `author-link`
FROM `item` WHERE `parent` = %d
AND (`author-name` LIKE '%%%s%%' OR `author-link` LIKE '%%%s%%')
AND `author-link` NOT IN ('%s')
@ -625,31 +631,29 @@ function acl_lookup(App $a, $out_type = 'json') {
intval($conv_id),
dbesc($search),
dbesc($search),
implode("','", $known_contacts)
implode("', '", $known_contacts)
);
if (dbm::is_result($r)){
if (dbm::is_result($r)) {
foreach ($r as $row) {
// nickname..
$up = parse_url($row['author-link']);
$nick = explode("/",$up['path']);
$nick = $nick[count($nick)-1];
$nick .= "@".$up['host'];
// /nickname
$unknow_contacts[] = array(
'type' => 'c',
'photo' => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO),
'name' => htmlentities($row['author-name']),
'id' => '',
'network' => 'unknown',
'link' => $row['author-link'],
'nick' => htmlentities($nick),
'forum' => false
);
$contact = get_contact_details_by_url($row['author-link']);
if (count($contact) > 0) {
$unknown_contacts[] = array(
'type' => 'c',
'photo' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO),
'name' => htmlentities($contact['name']),
'id' => intval($contact['cid']),
'network' => $contact['network'],
'link' => $contact['url'],
'nick' => htmlentities($contact['nick'] ? : $contact['addr']),
'forum' => $contact['forum']
);
}
}
}
$items = array_merge($items, $unknow_contacts);
$tot += count($unknow_contacts);
$items = array_merge($items, $unknown_contacts);
$tot += count($unknown_contacts);
}
$results = array(

View file

@ -698,7 +698,7 @@ function db_definition() {
"writable" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"forum" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"prv" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"contact-type" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
"contact-type" => array("type" => "int(11)", "not null" => "1", "default" => "0"),
"hidden" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"archive" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
"pending" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),

View file

@ -355,6 +355,14 @@ class ostatus {
$item["body"] = add_page_info_to_body(html2bbcode($xpath->query('atom:content/text()', $entry)->item(0)->nodeValue));
$item["object-type"] = $xpath->query('activity:object-type/text()', $entry)->item(0)->nodeValue;
$item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
// Mastodon Content Warning
if (($item["verb"] == ACTIVITY_POST) AND $xpath->evaluate('boolean(atom:summary)', $entry)) {
$clear_text = $xpath->query('atom:summary/text()', $entry)->item(0)->nodeValue;
$item["body"] = html2bbcode($clear_text) . '[spoiler]' . $item["body"] . '[/spoiler]';
}
if (($item["object-type"] == ACTIVITY_OBJ_BOOKMARK) OR ($item["object-type"] == ACTIVITY_OBJ_EVENT)) {
$item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
@ -363,11 +371,10 @@ class ostatus {
$item["title"] = $xpath->query('atom:title/text()', $entry)->item(0)->nodeValue;
}
$item["object"] = $xml;
$item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
/// @TODO
/// Delete a message
if ($item["verb"] == "qvitter-delete-notice") {
if ($item["verb"] == "qvitter-delete-notice" || $item["verb"] == ACTIVITY_DELETE) {
// ignore "Delete" messages (by now)
logger("Ignore delete message ".print_r($item, true));
continue;
@ -2052,7 +2059,7 @@ class ostatus {
$mentioned = array();
if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) {
if (($item['parent'] != $item['id']) OR ($item['parent-uri'] !== $item['uri']) OR (($item['thr-parent'] !== '') AND ($item['thr-parent'] !== $item['uri']))) {
$parent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `id` = %d", intval($item["parent"]));
$parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']);

View file

@ -59,9 +59,8 @@ function photo_albums($uid, $update = false) {
} else {
// This query doesn't do the count and is much faster
$albums = qu("SELECT DISTINCT(`album`), '' AS `total`
FROM `photo`
WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra
GROUP BY `album` ORDER BY `created` DESC",
FROM `photo` USE INDEX (`uid_album_scale_created`)
WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' $sql_extra",
intval($uid),
dbesc('Contact Photos'),
dbesc(t('Contact Photos'))

View file

@ -2096,7 +2096,7 @@ function update_gcontact($contact) {
fix_alternate_contact_address($contact);
if (!isset($contact["updated"]))
$contact["updated"] = datetime_convert();
$contact["updated"] = dbm::date();
if ($contact["server_url"] == "") {
$server_url = $contact["url"];
@ -2151,7 +2151,7 @@ function update_gcontact($contact) {
dbesc($contact["gender"]), dbesc($contact["keywords"]), intval($contact["hide"]),
intval($contact["nsfw"]), intval($contact["contact-type"]), dbesc($contact["alias"]),
dbesc($contact["notify"]), dbesc($contact["url"]), dbesc($contact["location"]),
dbesc($contact["about"]), intval($contact["generation"]), dbesc($contact["updated"]),
dbesc($contact["about"]), intval($contact["generation"]), dbesc(dbm::date($contact["updated"])),
dbesc($contact["server_url"]), dbesc($contact["connect"]),
dbesc(normalise_link($contact["url"])), intval($contact["generation"]));

View file

@ -223,8 +223,11 @@
var nnm = $("#nav-notifications-menu");
nnm.html(notifications_all + notifications_mark);
var notification_lastitem = parseInt(localStorage.getItem("notification-lastitem"));
var lastItemStorageKey = "notification-lastitem:" + localUser;
var notification_lastitem = parseInt(localStorage.getItem(lastItemStorageKey));
var notification_id = 0;
// Insert notifs into the notifications-menu
$(data.notifications).each(function(key, notif){
var text = notif.message.format('<span class="contactname">' + notif.name + '</span>');
var contact = ('<a href="' + notif.url + '"><span class="contactname">' + notif.name + '</span></a>');
@ -232,19 +235,21 @@
var html = notifications_tpl.format(
notif.href, // {0} // link to the source
notif.photo, // {1} // photo of the contact
text, // {2} // preformatted text (autor + text)
text, // {2} // preformatted text (autor + text)
notif.date, // {3} // date of notification (time ago)
seenclass, // {4} // visited status of the notification
seenclass, // {4} // visited status of the notification
new Date(notif.timestamp*1000), // {5} // date of notification
notif.url, // {6} // profile url of the contact
notif.message.format(contact), // {7} // preformatted html (text including author profile url)
'' // {8} // Deprecated
'' // {8} // Deprecated
);
nnm.append(html);
});
// Desktop Notifications
$(data.notifications.reverse()).each(function(key, e){
notification_id = parseInt(e.timestamp);
if (notification_lastitem !== null && notification_id > notification_lastitem) {
if (notification_lastitem !== null && notification_id > notification_lastitem && Number(e.seen) === 0) {
if (getNotificationPermission() === "granted") {
var notification = new Notification(document.title, {
body: decodeHtml(e.message.replace('&rarr; ', '').format(e.name)),
@ -259,7 +264,7 @@
});
notification_lastitem = notification_id;
localStorage.setItem("notification-lastitem", notification_lastitem)
localStorage.setItem(lastItemStorageKey, notification_lastitem)
$("img[data-src]", nnm).each(function(i, el){
// Add src attribute for images with a data-src attribute
@ -285,7 +290,7 @@
$.jGrowl(message, {sticky: false, theme: 'info', life: 5000});
});
/* update the js scrollbars */
// Update the js scrollbars
$('#nav-notifications-menu').perfectScrollbar('update');
});
@ -317,6 +322,30 @@
}
});
// Scroll to the next/previous thread when pressing J and K
$(document).keydown(function (event) {
var threads = $('.thread_level_1');
if ((event.keyCode === 74 || event.keyCode === 75) && !$(event.target).is('textarea, input')) {
var scrollTop = $(window).scrollTop();
if (event.keyCode === 75) {
threads = $(threads.get().reverse());
}
threads.each(function(key, item) {
var comparison;
var top = $(item).offset().top - 100;
if (event.keyCode === 74) {
comparison = top > scrollTop + 1;
} else if (event.keyCode === 75) {
comparison = top < scrollTop - 1;
}
if (comparison) {
$('html, body').animate({ scrollTop: top }, 200);
return false;
}
});
}
});
// Set an event listener for infinite scroll
if(typeof infinite_scroll !== 'undefined') {
$(window).scroll(function(e){

View file

@ -1,7 +1,7 @@
<?php
/* ACL selector json backend */
require_once("include/acl_selectors.php");
require_once 'include/acl_selectors.php';
function acl_init(App $a) {
acl_lookup($a);

View file

@ -474,9 +474,6 @@ function admin_page_summary(App $a) {
$r = qu("SELECT COUNT(`id`) AS `count` FROM `register`");
$pending = $r[0]['count'];
$r = qu("SELECT COUNT(*) AS `total` FROM `deliverq` WHERE 1");
$deliverq = (($r) ? $r[0]['total'] : 0);
$r = qu("SELECT COUNT(*) AS `total` FROM `queue` WHERE 1");
$queue = (($r) ? $r[0]['total'] : 0);
@ -485,7 +482,7 @@ function admin_page_summary(App $a) {
// We can do better, but this is a quick queue status
$queues = array('label' => t('Message queues'), 'deliverq' => $deliverq, 'queue' => $queue, 'workerq' => $workerqueue);
$queues = array('label' => t('Message queues'), 'queue' => $queue, 'workerq' => $workerqueue);
$t = get_markup_template("admin_summary.tpl");
@ -971,7 +968,7 @@ function admin_page_site(App $a) {
'$banner' => array('banner', t("Banner/Logo"), $banner, ""),
'$shortcut_icon' => array('shortcut_icon', t("Shortcut icon"), get_config('system','shortcut_icon'), t("Link to an icon that will be used for browsers.")),
'$touch_icon' => array('touch_icon', t("Touch icon"), get_config('system','touch_icon'), t("Link to an icon that will be used for tablets and mobiles.")),
'$info' => array('info',t('Additional Info'), $info, sprintf(t('For public servers: you can add additional information here that will be listed at %s/siteinfo.'), get_server())),
'$info' => array('info', t('Additional Info'), $info, sprintf(t('For public servers: you can add additional information here that will be listed at %s/siteinfo.'), get_server())),
'$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
'$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices),
'$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
@ -2058,8 +2055,8 @@ function admin_page_features(App $a) {
$set = $f[3];
}
$arr[$fname][1][] = array(
array('feature_' .$f[0],$f[1],$set,$f[2],array(t('Off'),t('On'))),
array('featurelock_' .$f[0],sprintf(t('Lock feature %s'),$f[1]),(($f[4] !== false) ? "1" : ''),'',array(t('Off'),t('On')))
array('feature_' .$f[0],$f[1],$set,$f[2],array(t('Off'), t('On'))),
array('featurelock_' .$f[0],sprintf(t('Lock feature %s'),$f[1]),(($f[4] !== false) ? "1" : ''),'',array(t('Off'), t('On')))
);
}
}

View file

@ -269,8 +269,8 @@ function cal_content(App $a) {
'$tabs' => $tabs,
'$title' => t('Events'),
'$view' => t('View'),
'$previous' => array(App::get_baseurl()."/events/$prevyear/$prevmonth",t('Previous'),'',''),
'$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth",t('Next'),'',''),
'$previous' => array(App::get_baseurl()."/events/$prevyear/$prevmonth", t('Previous'),'',''),
'$next' => array(App::get_baseurl()."/events/$nextyear/$nextmonth", t('Next'),'',''),
'$calendar' => cal($y,$m,$links, ' eventcal'),
'$events' => $events,

View file

@ -872,7 +872,7 @@ function dfrn_request_content(App $a) {
'$header' => t('Friend/Connection Request'),
'$desc' => t('Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'),
'$pls_answer' => t('Please answer the following:'),
'$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$a->profile['name']), false, '', array(t('No'),t('Yes'))),
'$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$a->profile['name']), false, '', array(t('No'), t('Yes'))),
/*'$does_know' => sprintf( t('Does %s know you?'),$a->profile['name']),
'$yes' => t('Yes'),
'$no' => t('No'), */

View file

@ -110,7 +110,7 @@ function follow_content(App $a) {
//'$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL),
'$desc' => "",
'$pls_answer' => t('Please answer the following:'),
'$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
'$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'), t('Yes'))),
'$add_note' => t('Add a personal note:'),
'$page_desc' => "",
'$friendica' => "",

View file

@ -95,7 +95,7 @@ function group_content(App $a) {
return replace_macros($tpl, $context + array(
'$title' => t('Create a group of contacts/friends.'),
'$gname' => array('groupname',t('Group Name: '), '', ''),
'$gname' => array('groupname', t('Group Name: '), '', ''),
'$gid' => 'new',
'$form_security_token' => get_form_security_token("group_edit"),
));
@ -185,7 +185,7 @@ function group_content(App $a) {
$context = $context + array(
'$title' => t('Group Editor'),
'$gname' => array('groupname',t('Group Name: '),$group['name'], ''),
'$gname' => array('groupname', t('Group Name: '),$group['name'], ''),
'$gid' => $group['id'],
'$drop' => $drop_txt,
'$form_security_token' => get_form_security_token('group_edit'),

26
mod/manifest.php Normal file
View file

@ -0,0 +1,26 @@
<?php
use Friendica\Core\Config;
function manifest_content(App $a) {
$tpl = get_markup_template('manifest.tpl');
header('Content-type: application/manifest+json');
$touch_icon = Config::get('system', 'touch_icon', 'images/friendica-128.png');
if ($touch_icon == '') {
$touch_icon = 'images/friendica-128.png';
}
$o = replace_macros($tpl, array(
'$baseurl' => App::get_baseurl(),
'$touch_icon' => $touch_icon,
'$title' => Config::get('config', 'sitename', 'Friendica'),
));
echo $o;
killme();
}
?>

View file

@ -1581,9 +1581,9 @@ function photos_content(App $a) {
'$album' => array('albname', t('New album name'), $album_e,''),
'$caption' => array('desc', t('Caption'), $caption_e, ''),
'$tags' => array('newtag', t('Add a Tag'), "", t('Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping')),
'$rotate_none' => array('rotate',t('Do not rotate'),0,'', true),
'$rotate_cw' => array('rotate',t('Rotate CW (right)'),1,''),
'$rotate_ccw' => array('rotate',t('Rotate CCW (left)'),2,''),
'$rotate_none' => array('rotate', t('Do not rotate'),0,'', true),
'$rotate_cw' => array('rotate', t('Rotate CW (right)'),1,''),
'$rotate_ccw' => array('rotate', t('Rotate CCW (left)'),2,''),
'$nickname' => $a->data['user']['nickname'],
'$resource_id' => $ph[0]['resource-id'],

View file

@ -4,6 +4,13 @@ require_once('include/Scrape.php');
function probe_content(App $a) {
if (!local_user()) {
http_status_exit(403,
array("title" => t("Public access denied."),
"description" => t("Only logged in users are permitted to perform a probing.")));
killme();
}
$o .= '<h3>Probe Diagnostic</h3>';
$o .= '<form action="probe" method="get">';

View file

@ -637,7 +637,7 @@ function profiles_content(App $a) {
t('Hide contacts and friends:'), //Label
!!$r[0]['hide-friends'], //Value
'', //Help string
array(t('No'),t('Yes')) //Off - On strings
array(t('No'), t('Yes')) //Off - On strings
),
'$desc' => t('Hide your contact/friend list from viewers of this profile?'),
'$yes_str' => t('Yes'),
@ -739,7 +739,7 @@ function profiles_content(App $a) {
'$tv' => array('tv', t('Television'), $r[0]['tv']),
'$film' => array('film', t('Film/dance/culture/entertainment'), $r[0]['film']),
'$interest' => array('interest', t('Hobbies/Interests'), $r[0]['interest']),
'$romance' => array('romance',t('Love/romance'), $r[0]['romance']),
'$romance' => array('romance', t('Love/romance'), $r[0]['romance']),
'$work' => array('work', t('Work/employment'), $r[0]['work']),
'$education' => array('education', t('School/education'), $r[0]['education']),
'$contact' => array('contact', t('Contact information and Social Networks'), $r[0]['contact']),

View file

@ -282,7 +282,7 @@ function register_content(App $a) {
'$passwords' => $passwords,
'$password1' => array('password1', t('New Password:'), '', t('Leave empty for an auto generated password.')),
'$password2' => array('confirm', t('Confirm:'), '', ''),
'$nickdesc' => str_replace('$sitename',$a->get_hostname(),t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.')),
'$nickdesc' => str_replace('$sitename',$a->get_hostname(), t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.')),
'$nicklabel' => t('Choose a nickname: '),
'$photo' => $photo,
'$publish' => $profile_publish,

View file

@ -779,7 +779,7 @@ function settings_content(App $a) {
$arr[$fname] = array();
$arr[$fname][0] = $fdata[0];
foreach (array_slice($fdata,1) as $f) {
$arr[$fname][1][] = array('feature_' .$f[0],$f[1],((intval(feature_enabled(local_user(),$f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On')));
$arr[$fname][1][] = array('feature_' .$f[0],$f[1],((intval(feature_enabled(local_user(),$f[0]))) ? "1" : ''),$f[2],array(t('Off'), t('On')));
}
}
@ -1164,48 +1164,48 @@ function settings_content(App $a) {
}
$opt_tpl = get_markup_template("field_yesno.tpl");
if(get_config('system','publish_all')) {
if (get_config('system','publish_all')) {
$profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
} else {
$profile_in_dir = replace_macros($opt_tpl,array(
'$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
$profile_in_dir = replace_macros($opt_tpl, array(
'$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], t("Your profile may be visible in public."), array(t('No'), t('Yes')))
));
}
if (strlen(get_config('system','directory'))) {
$profile_in_net_dir = replace_macros($opt_tpl,array(
'$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
$profile_in_net_dir = replace_macros($opt_tpl, array(
'$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'), t('Yes')))
));
} else {
$profile_in_net_dir = '';
}
$hide_friends = replace_macros($opt_tpl,array(
'$field' => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
'$field' => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'), t('Yes'))),
));
$hide_wall = replace_macros($opt_tpl,array(
'$field' => array('hidewall', t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], t("If enabled, posting public messages to Diaspora and other networks isn't possible."), array(t('No'),t('Yes'))),
'$field' => array('hidewall', t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], t("If enabled, posting public messages to Diaspora and other networks isn't possible."), array(t('No'), t('Yes'))),
));
$blockwall = replace_macros($opt_tpl,array(
'$field' => array('blockwall', t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
'$field' => array('blockwall', t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'), t('Yes'))),
));
$blocktags = replace_macros($opt_tpl,array(
'$field' => array('blocktags', t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
'$field' => array('blocktags', t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'), t('Yes'))),
));
$suggestme = replace_macros($opt_tpl,array(
'$field' => array('suggestme', t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
'$field' => array('suggestme', t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'), t('Yes'))),
));
$unkmail = replace_macros($opt_tpl,array(
'$field' => array('unkmail', t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
'$field' => array('unkmail', t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'), t('Yes'))),
));
@ -1231,11 +1231,11 @@ function settings_content(App $a) {
'days' => array('expire', t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
'advanced' => t('Advanced expiration settings'),
'label' => t('Advanced Expiration'),
'items' => array('expire_items', t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
'notes' => array('expire_notes', t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
'starred' => array('expire_starred', t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
'photos' => array('expire_photos', t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),
'network_only' => array('expire_network_only', t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))),
'items' => array('expire_items', t("Expire posts:"), $expire_items, '', array(t('No'), t('Yes'))),
'notes' => array('expire_notes', t("Expire personal notes:"), $expire_notes, '', array(t('No'), t('Yes'))),
'starred' => array('expire_starred', t("Expire starred posts:"), $expire_starred, '', array(t('No'), t('Yes'))),
'photos' => array('expire_photos', t("Expire photos:"), $expire_photos, '', array(t('No'), t('Yes'))),
'network_only' => array('expire_network_only', t("Only expire posts by others:"), $expire_network_only, '', array(t('No'), t('Yes'))),
);
require_once('include/group.php');
@ -1293,7 +1293,7 @@ function settings_content(App $a) {
'$h_prv' => t('Security and Privacy Settings'),
'$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
'$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq , t("\x28to prevent spam abuse\x29")),
'$permissions' => t('Default Post Permissions'),
'$permdesc' => t("\x28click to open/close\x29"),
'$visibility' => $profile['net-publish'],
@ -1323,7 +1323,7 @@ function settings_content(App $a) {
'$hide_friends' => $hide_friends,
'$hide_wall' => $hide_wall,
'$unkmail' => $unkmail,
'$cntunkmail' => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
'$cntunkmail' => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail , t("\x28to prevent spam abuse\x29")),
'$h_not' => t('Notification Settings'),

View file

@ -34,8 +34,8 @@ function uexport_content(App $a) {
* list of array( 'link url', 'link text', 'help text' )
*/
$options = array(
array('uexport/account',t('Export account'),t('Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.')),
array('uexport/backup',t('Export all'),t('Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)')),
array('uexport/account', t('Export account'), t('Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.')),
array('uexport/backup', t('Export all'), t('Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)')),
);
call_hooks('uexport_options', $options);

View file

@ -3,6 +3,13 @@ require_once("include/Probe.php");
function webfinger_content(App $a) {
if (!local_user()) {
http_status_exit(403,
array("title" => t("Public access denied."),
"description" => t("Only logged in users are permitted to perform a probing.")));
killme();
}
$o .= '<h3>Webfinger Diagnostic</h3>';
$o .= '<form action="webfinger" method="get">';

View file

@ -1,6 +1,6 @@
<?php
define('UPDATE_VERSION' , 1216);
define('UPDATE_VERSION' , 1217);
/**
*

View file

@ -11,6 +11,7 @@
# Pavel Morozov <mobilpress@gmail.com>, 2011
# Pavel Morozov <mobilpress@gmail.com>, 2011
# Stanislav N. <pztrn@pztrn.name>, 2012
# Stanislav N. <pztrn@pztrn.name>, 2017
# Stanislav N. <pztrn@pztrn.name>, 2012
# vislav <bizadmin@list.ru>, 2014
# Михаил <muhas@muhas.ru>, 2013
@ -18,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-19 07:46+0100\n"
"PO-Revision-Date: 2016-12-19 10:01+0000\n"
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
"POT-Creation-Date: 2017-03-20 08:24+0100\n"
"PO-Revision-Date: 2017-04-08 16:49+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -28,6 +29,466 @@ msgstr ""
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: boot.php:976
msgid "Delete this item?"
msgstr "Удалить этот элемент?"
#: boot.php:977 include/ForumManager.php:119 include/contact_widgets.php:253
#: include/items.php:2254 mod/content.php:624 object/Item.php:420
#: view/theme/vier/theme.php:255
msgid "show more"
msgstr "показать больше"
#: boot.php:978
msgid "show fewer"
msgstr "показать меньше"
#: boot.php:1667
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Обновление %s не удалось. Смотрите журнал ошибок."
#: boot.php:1779
msgid "Create a New Account"
msgstr "Создать новый аккаунт"
#: boot.php:1780 include/nav.php:109 mod/register.php:289
msgid "Register"
msgstr "Регистрация"
#: boot.php:1804 include/nav.php:78 view/theme/frio/theme.php:243
msgid "Logout"
msgstr "Выход"
#: boot.php:1805 include/nav.php:95 mod/bookmarklet.php:12
msgid "Login"
msgstr "Вход"
#: boot.php:1807 mod/lostpass.php:161
msgid "Nickname or Email: "
msgstr "Ник или E-mail: "
#: boot.php:1808
msgid "Password: "
msgstr "Пароль: "
#: boot.php:1809
msgid "Remember me"
msgstr "Запомнить"
#: boot.php:1812
msgid "Or login using OpenID: "
msgstr "Или зайти с OpenID: "
#: boot.php:1818
msgid "Forgot your password?"
msgstr "Забыли пароль?"
#: boot.php:1819 mod/lostpass.php:110
msgid "Password Reset"
msgstr "Сброс пароля"
#: boot.php:1821
msgid "Website Terms of Service"
msgstr "Правила сайта"
#: boot.php:1822
msgid "terms of service"
msgstr "правила"
#: boot.php:1824
msgid "Website Privacy Policy"
msgstr "Политика конфиденциальности сервера"
#: boot.php:1825
msgid "privacy policy"
msgstr "политика конфиденциальности"
#: include/Contact.php:387 include/Contact.php:400 include/Contact.php:445
#: include/conversation.php:970 include/conversation.php:986
#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209
#: mod/match.php:73 mod/suggest.php:82
msgid "View Profile"
msgstr "Просмотреть профиль"
#: include/Contact.php:401 include/contact_widgets.php:32
#: include/conversation.php:983 mod/allfriends.php:69 mod/contacts.php:610
#: mod/dirfind.php:210 mod/follow.php:106 mod/match.php:74 mod/suggest.php:83
msgid "Connect/Follow"
msgstr "Подключиться/Следовать"
#: include/Contact.php:444 include/conversation.php:969
msgid "View Status"
msgstr "Просмотреть статус"
#: include/Contact.php:446 include/conversation.php:971
msgid "View Photos"
msgstr "Просмотреть фото"
#: include/Contact.php:447 include/conversation.php:972
msgid "Network Posts"
msgstr "Посты сети"
#: include/Contact.php:448 include/conversation.php:973
msgid "View Contact"
msgstr "Просмотреть контакт"
#: include/Contact.php:449
msgid "Drop Contact"
msgstr "Удалить контакт"
#: include/Contact.php:450 include/conversation.php:974
msgid "Send PM"
msgstr "Отправить ЛС"
#: include/Contact.php:451 include/conversation.php:978
msgid "Poke"
msgstr "потыкать"
#: include/Contact.php:828
msgid "Organisation"
msgstr "Организация"
#: include/Contact.php:831
msgid "News"
msgstr "Новости"
#: include/Contact.php:834
msgid "Forum"
msgstr "Форум"
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
#: view/theme/vier/theme.php:250
msgid "Forums"
msgstr "Форумы"
#: include/ForumManager.php:116 view/theme/vier/theme.php:252
msgid "External link to forum"
msgstr "Внешняя ссылка на форум"
#: include/NotificationsManager.php:153
msgid "System"
msgstr "Система"
#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:421
#: view/theme/frio/theme.php:253
msgid "Network"
msgstr "Новости"
#: include/NotificationsManager.php:167 mod/network.php:829
#: mod/profiles.php:695
msgid "Personal"
msgstr "Персонал"
#: include/NotificationsManager.php:174 include/nav.php:105
#: include/nav.php:161
msgid "Home"
msgstr "Мой профиль"
#: include/NotificationsManager.php:181 include/nav.php:166
msgid "Introductions"
msgstr "Запросы"
#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
#, php-format
msgid "%s commented on %s's post"
msgstr "%s прокомментировал %s сообщение"
#: include/NotificationsManager.php:250
#, php-format
msgid "%s created a new post"
msgstr "%s написал новое сообщение"
#: include/NotificationsManager.php:265
#, php-format
msgid "%s liked %s's post"
msgstr "%s нравится %s сообшение"
#: include/NotificationsManager.php:278
#, php-format
msgid "%s disliked %s's post"
msgstr "%s не нравится сообщение %s"
#: include/NotificationsManager.php:291
#, php-format
msgid "%s is attending %s's event"
msgstr ""
#: include/NotificationsManager.php:304
#, php-format
msgid "%s is not attending %s's event"
msgstr ""
#: include/NotificationsManager.php:317
#, php-format
msgid "%s may attend %s's event"
msgstr ""
#: include/NotificationsManager.php:334
#, php-format
msgid "%s is now friends with %s"
msgstr "%s теперь друзья с %s"
#: include/NotificationsManager.php:770
msgid "Friend Suggestion"
msgstr "Предложение в друзья"
#: include/NotificationsManager.php:803
msgid "Friend/Connect Request"
msgstr "Запрос в друзья / на подключение"
#: include/NotificationsManager.php:803
msgid "New Follower"
msgstr "Новый фолловер"
#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
#: include/Photo.php:1087 include/message.php:146 mod/item.php:462
#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237
msgid "Wall Photos"
msgstr "Фото стены"
#: include/acl_selectors.php:341
msgid "Post to Email"
msgstr "Отправить на Email"
#: include/acl_selectors.php:346
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr "Коннекторы отключены так как \"%s\" включен."
#: include/acl_selectors.php:347 mod/settings.php:1188
msgid "Hide your profile details from unknown viewers?"
msgstr "Скрыть данные профиля из неизвестных зрителей?"
#: include/acl_selectors.php:352
msgid "Visible to everybody"
msgstr "Видимо всем"
#: include/acl_selectors.php:353 view/theme/vier/config.php:108
msgid "show"
msgstr "показывать"
#: include/acl_selectors.php:354 view/theme/vier/config.php:108
msgid "don't show"
msgstr "не показывать"
#: include/acl_selectors.php:360 mod/editpost.php:123
msgid "CC: email addresses"
msgstr "Копии на email адреса"
#: include/acl_selectors.php:361 mod/editpost.php:130
msgid "Example: bob@example.com, mary@example.com"
msgstr "Пример: bob@example.com, mary@example.com"
#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176
#: mod/photos.php:1558
msgid "Permissions"
msgstr "Разрешения"
#: include/acl_selectors.php:364
msgid "Close"
msgstr "Закрыть"
#: include/api.php:1021
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr "Дневной лимит в %d постов достигнут. Пост отклонен."
#: include/api.php:1041
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr "Недельный лимит в %d постов достигнут. Пост отклонен."
#: include/api.php:1062
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr "Месячный лимит в %d постов достигнут. Пост отклонен."
#: include/auth.php:45
msgid "Logged out."
msgstr "Выход из системы."
#: include/auth.php:116 include/auth.php:178 mod/openid.php:110
msgid "Login failed."
msgstr "Войти не удалось."
#: include/auth.php:132 include/user.php:75
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."
#: include/auth.php:132 include/user.php:75
msgid "The error message was:"
msgstr "Сообщение об ошибке было:"
#: include/bb2diaspora.php:199 include/event.php:16 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: include/bb2diaspora.php:205 include/event.php:33 include/event.php:51
#: include/event.php:488
msgid "Starts:"
msgstr "Начало:"
#: include/bb2diaspora.php:213 include/event.php:36 include/event.php:57
#: include/event.php:489
msgid "Finishes:"
msgstr "Окончание:"
#: include/bb2diaspora.php:221 include/event.php:39 include/event.php:63
#: include/event.php:490 include/identity.php:331 mod/contacts.php:636
#: mod/directory.php:139 mod/events.php:501 mod/notifications.php:238
msgid "Location:"
msgstr "Откуда:"
#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056
msgid "Image/photo"
msgstr "Изображение / Фото"
#: include/bbcode.php:467
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
#: include/bbcode.php:1015 include/bbcode.php:1035
msgid "$1 wrote:"
msgstr "$1 написал:"
#: include/bbcode.php:1064 include/bbcode.php:1065
msgid "Encrypted content"
msgstr "Зашифрованный контент"
#: include/bbcode.php:1169
msgid "Invalid source protocol"
msgstr "Неправильный протокол источника"
#: include/bbcode.php:1179
msgid "Invalid link protocol"
msgstr "Неправильная протокольная ссылка"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Неизвестно | Не определено"
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Блокировать немедленно"
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Тролль, спаммер, рассылает рекламу"
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Известные мне, но нет определенного мнения"
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "Хорошо, наверное, безвредные"
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Уважаемые, есть мое доверие"
#: include/contact_selectors.php:56 mod/admin.php:893
msgid "Frequently"
msgstr "Часто"
#: include/contact_selectors.php:57 mod/admin.php:894
msgid "Hourly"
msgstr "Раз в час"
#: include/contact_selectors.php:58 mod/admin.php:895
msgid "Twice daily"
msgstr "Два раза в день"
#: include/contact_selectors.php:59 mod/admin.php:896
msgid "Daily"
msgstr "Ежедневно"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Еженедельно"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Ежемесячно"
#: include/contact_selectors.php:76 mod/dfrn_request.php:881
msgid "Friendica"
msgstr "Friendica"
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1449
msgid "Email"
msgstr "Эл. почта"
#: include/contact_selectors.php:80 mod/dfrn_request.php:883
#: mod/settings.php:848
msgid "Diaspora"
msgstr "Diaspora"
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zot!"
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/IM"
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr "pump.io"
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr "Twitter"
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr "Коннектор Diaspora"
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr "GNU Social"
#: include/contact_selectors.php:92
msgid "pnut"
msgstr "pnut"
#: include/contact_selectors.php:93
msgid "App.net"
msgstr "App.net"
#: include/contact_selectors.php:104
msgid "Hubzilla/Redmatrix"
msgstr "Hubzilla/Redmatrix"
#: include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Добавить контакт"
@ -40,8 +501,8 @@ msgstr "Введите адрес или веб-местонахождение"
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Пример: bob@example.com, http://example.com/barbara"
#: include/contact_widgets.php:10 include/identity.php:218
#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
#: include/contact_widgets.php:10 include/identity.php:219
#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89
#: mod/suggest.php:101
msgid "Connect"
msgstr "Подключить"
@ -63,26 +524,20 @@ msgstr "Поиск людей"
msgid "Enter name or interest"
msgstr "Введите имя или интерес"
#: include/contact_widgets.php:32 include/Contact.php:354
#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
msgid "Connect/Follow"
msgstr "Подключиться/Следовать"
#: include/contact_widgets.php:33
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Примеры: Роберт Morgenstein, Рыбалка"
#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
msgid "Find"
msgstr "Найти"
#: include/contact_widgets.php:35 mod/suggest.php:114
#: view/theme/vier/theme.php:203
#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Предложения друзей"
#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
#: include/contact_widgets.php:36 view/theme/vier/theme.php:197
msgid "Similar Interests"
msgstr "Похожие интересы"
@ -90,31 +545,31 @@ msgstr "Похожие интересы"
msgid "Random Profile"
msgstr "Случайный профиль"
#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
#: include/contact_widgets.php:38 view/theme/vier/theme.php:199
msgid "Invite Friends"
msgstr "Пригласить друзей"
#: include/contact_widgets.php:108
#: include/contact_widgets.php:115
msgid "Networks"
msgstr "Сети"
#: include/contact_widgets.php:111
#: include/contact_widgets.php:118
msgid "All Networks"
msgstr "Все сети"
#: include/contact_widgets.php:141 include/features.php:110
#: include/contact_widgets.php:150 include/features.php:104
msgid "Saved Folders"
msgstr "Сохранённые папки"
#: include/contact_widgets.php:144 include/contact_widgets.php:176
#: include/contact_widgets.php:153 include/contact_widgets.php:187
msgid "Everything"
msgstr "Всё"
#: include/contact_widgets.php:173
#: include/contact_widgets.php:184
msgid "Categories"
msgstr "Категории"
#: include/contact_widgets.php:237
#: include/contact_widgets.php:248
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@ -123,21 +578,1951 @@ msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
msgstr[3] "%d Контактов"
#: include/contact_widgets.php:242 include/ForumManager.php:119
#: include/items.php:2245 mod/content.php:624 object/Item.php:432
#: view/theme/vier/theme.php:260 boot.php:972
msgid "show more"
msgstr "показать больше"
#: include/conversation.php:122 include/conversation.php:258
#: include/like.php:180 include/text.php:1804
msgid "event"
msgstr "мероприятие"
#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
#: view/theme/vier/theme.php:255
msgid "Forums"
#: include/conversation.php:125 include/conversation.php:134
#: include/conversation.php:261 include/conversation.php:270
#: include/diaspora.php:1530 include/like.php:178 mod/subthread.php:88
#: mod/tagger.php:62
msgid "status"
msgstr "статус"
#: include/conversation.php:130 include/conversation.php:266
#: include/like.php:178 include/text.php:1806 mod/subthread.php:88
#: mod/tagger.php:62
msgid "photo"
msgstr "фото"
#: include/conversation.php:141 include/diaspora.php:1526 include/like.php:27
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: include/conversation.php:144 include/like.php:31 include/like.php:36
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr "%1$s уделил внимание %2$s's %3$s"
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/ForumManager.php:116 view/theme/vier/theme.php:257
msgid "External link to forum"
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:185 mod/dfrn_confirm.php:478
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s и %2$s теперь друзья"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:239 mod/mood.php:63
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s tagged %2$s's %3$s в %4$s"
#: 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:587 mod/content.php:372 mod/photos.php:1629
#: mod/profiles.php:346
msgid "Likes"
msgstr "Лайки"
#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
#: mod/profiles.php:350
msgid "Dislikes"
msgstr "Не нравится"
#: include/conversation.php:588 include/conversation.php:1473
#: mod/content.php:373 mod/photos.php:1630
msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
msgid "Not attending"
msgstr ""
#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
msgid "Might attend"
msgstr ""
#: include/conversation.php:710 mod/content.php:453 mod/content.php:759
#: mod/photos.php:1703 object/Item.php:137
msgid "Select"
msgstr "Выберите"
#: include/conversation.php:711 mod/admin.php:1423 mod/contacts.php:816
#: mod/contacts.php:1015 mod/content.php:454 mod/content.php:760
#: mod/group.php:181 mod/photos.php:1704 mod/settings.php:744
#: object/Item.php:138
msgid "Delete"
msgstr "Удалить"
#: include/conversation.php:755 mod/content.php:487 mod/content.php:915
#: mod/content.php:916 object/Item.php:356 object/Item.php:357
#, php-format
msgid "View %s's profile @ %s"
msgstr "Просмотреть профиль %s [@ %s]"
#: include/conversation.php:767 object/Item.php:344
msgid "Categories:"
msgstr "Категории:"
#: include/conversation.php:768 object/Item.php:345
msgid "Filed under:"
msgstr "В рубрике:"
#: include/conversation.php:775 mod/content.php:497 mod/content.php:928
#: object/Item.php:370
#, php-format
msgid "%s from %s"
msgstr "%s с %s"
#: include/conversation.php:791 mod/content.php:513
msgid "View in context"
msgstr "Смотреть в контексте"
#: include/conversation.php:793 include/conversation.php:1256
#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
#: mod/message.php:337 mod/message.php:522 mod/photos.php:1592
#: mod/wallmessage.php:140 object/Item.php:395
msgid "Please wait"
msgstr "Пожалуйста, подождите"
#: include/conversation.php:872
msgid "remove"
msgstr "удалить"
#: include/conversation.php:876
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: include/conversation.php:968
msgid "Follow Thread"
msgstr "Подписаться на тему"
#: include/conversation.php:1100
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: include/conversation.php:1103
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: include/conversation.php:1106
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1109
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1112
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1122
msgid "and"
msgstr "и"
#: include/conversation.php:1128
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
#: include/conversation.php:1137
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d людям</span> нравится это"
#: include/conversation.php:1138
#, php-format
msgid "%s like this."
msgstr "%s нравится это."
#: include/conversation.php:1141
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d людям</span> не нравится это"
#: include/conversation.php:1142
#, php-format
msgid "%s don't like this."
msgstr "%s не нравится это"
#: include/conversation.php:1145
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1146
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1149
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1150
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1153
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr ""
#: include/conversation.php:1154
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1184 include/conversation.php:1200
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: include/conversation.php:1185 include/conversation.php:1201
#: mod/message.php:271 mod/message.php:278 mod/message.php:418
#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121
msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:"
#: include/conversation.php:1186 include/conversation.php:1202
msgid "Please enter a video link/URL:"
msgstr "Введите ссылку на видео link/URL:"
#: include/conversation.php:1187 include/conversation.php:1203
msgid "Please enter an audio link/URL:"
msgstr "Введите ссылку на аудио link/URL:"
#: include/conversation.php:1188 include/conversation.php:1204
msgid "Tag term:"
msgstr "Тег:"
#: include/conversation.php:1189 include/conversation.php:1205
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "Сохранить в папку:"
#: include/conversation.php:1190 include/conversation.php:1206
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: include/conversation.php:1191
msgid "Delete item(s)?"
msgstr "Удалить елемент(ты)?"
#: include/conversation.php:1237
msgid "Share"
msgstr "Поделиться"
#: include/conversation.php:1238 mod/editpost.php:100 mod/message.php:335
#: mod/message.php:519 mod/wallmessage.php:138
msgid "Upload photo"
msgstr "Загрузить фото"
#: include/conversation.php:1239 mod/editpost.php:101
msgid "upload photo"
msgstr "загрузить фото"
#: include/conversation.php:1240 mod/editpost.php:102
msgid "Attach file"
msgstr "Прикрепить файл"
#: include/conversation.php:1241 mod/editpost.php:103
msgid "attach file"
msgstr "приложить файл"
#: include/conversation.php:1242 mod/editpost.php:104 mod/message.php:336
#: mod/message.php:520 mod/wallmessage.php:139
msgid "Insert web link"
msgstr "Вставить веб-ссылку"
#: include/conversation.php:1243 mod/editpost.php:105
msgid "web link"
msgstr "веб-ссылка"
#: include/conversation.php:1244 mod/editpost.php:106
msgid "Insert video link"
msgstr "Вставить ссылку видео"
#: include/conversation.php:1245 mod/editpost.php:107
msgid "video link"
msgstr "видео-ссылка"
#: include/conversation.php:1246 mod/editpost.php:108
msgid "Insert audio link"
msgstr "Вставить ссылку аудио"
#: include/conversation.php:1247 mod/editpost.php:109
msgid "audio link"
msgstr "аудио-ссылка"
#: include/conversation.php:1248 mod/editpost.php:110
msgid "Set your location"
msgstr "Задать ваше местоположение"
#: include/conversation.php:1249 mod/editpost.php:111
msgid "set location"
msgstr "установить местонахождение"
#: include/conversation.php:1250 mod/editpost.php:112
msgid "Clear browser location"
msgstr "Очистить местонахождение браузера"
#: include/conversation.php:1251 mod/editpost.php:113
msgid "clear location"
msgstr "убрать местонахождение"
#: include/conversation.php:1253 mod/editpost.php:127
msgid "Set title"
msgstr "Установить заголовок"
#: include/conversation.php:1255 mod/editpost.php:129
msgid "Categories (comma-separated list)"
msgstr "Категории (список через запятую)"
#: include/conversation.php:1257 mod/editpost.php:115
msgid "Permission settings"
msgstr "Настройки разрешений"
#: include/conversation.php:1258 mod/editpost.php:144
msgid "permissions"
msgstr "разрешения"
#: include/conversation.php:1266 mod/editpost.php:124
msgid "Public post"
msgstr "Публичное сообщение"
#: include/conversation.php:1271 mod/content.php:737 mod/editpost.php:135
#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661
#: mod/photos.php:1747 object/Item.php:714
msgid "Preview"
msgstr "Предварительный просмотр"
#: include/conversation.php:1275 include/items.php:1983 mod/contacts.php:455
#: mod/dfrn_request.php:889 mod/editpost.php:138 mod/fbrowser.php:100
#: mod/fbrowser.php:135 mod/follow.php:124 mod/message.php:209
#: mod/photos.php:240 mod/photos.php:331 mod/settings.php:682
#: mod/settings.php:708 mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
#: mod/videos.php:132
msgid "Cancel"
msgstr "Отмена"
#: include/conversation.php:1281
msgid "Post to Groups"
msgstr "Пост для групп"
#: include/conversation.php:1282
msgid "Post to Contacts"
msgstr "Пост для контактов"
#: include/conversation.php:1283
msgid "Private post"
msgstr "Личное сообщение"
#: include/conversation.php:1288 include/identity.php:259 mod/editpost.php:142
msgid "Message"
msgstr "Сообщение"
#: include/conversation.php:1289 mod/editpost.php:143
msgid "Browser"
msgstr "Браузер"
#: include/conversation.php:1445
msgid "View all"
msgstr "Посмотреть все"
#: include/conversation.php:1467
msgid "Like"
msgid_plural "Likes"
msgstr[0] "Нравится"
msgstr[1] "Нравится"
msgstr[2] "Нравится"
msgstr[3] "Нравится"
#: include/conversation.php:1470
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] "Не нравится"
msgstr[1] "Не нравится"
msgstr[2] "Не нравится"
msgstr[3] "Не нравится"
#: include/conversation.php:1476
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:1479 include/profile_selectors.php:6
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697
msgid "Miscellaneous"
msgstr "Разное"
#: include/datetime.php:184 include/identity.php:641
msgid "Birthday:"
msgstr "День рождения:"
#: include/datetime.php:186 mod/profiles.php:720
msgid "Age: "
msgstr "Возраст: "
#: include/datetime.php:188
msgid "YYYY-MM-DD or MM-DD"
msgstr "YYYY-MM-DD или MM-DD"
#: include/datetime.php:343
msgid "never"
msgstr "никогда"
#: include/datetime.php:349
msgid "less than a second ago"
msgstr "менее сек. назад"
#: include/datetime.php:352
msgid "year"
msgstr "год"
#: include/datetime.php:352
msgid "years"
msgstr "лет"
#: include/datetime.php:353 include/event.php:481 mod/cal.php:279
#: mod/events.php:396
msgid "month"
msgstr "мес."
#: include/datetime.php:353
msgid "months"
msgstr "мес."
#: include/datetime.php:354 include/event.php:482 mod/cal.php:280
#: mod/events.php:397
msgid "week"
msgstr "неделя"
#: include/datetime.php:354
msgid "weeks"
msgstr "недель"
#: include/datetime.php:355 include/event.php:483 mod/cal.php:281
#: mod/events.php:398
msgid "day"
msgstr "день"
#: include/datetime.php:355
msgid "days"
msgstr "дней"
#: include/datetime.php:356
msgid "hour"
msgstr "час"
#: include/datetime.php:356
msgid "hours"
msgstr "час."
#: include/datetime.php:357
msgid "minute"
msgstr "минута"
#: include/datetime.php:357
msgid "minutes"
msgstr "мин."
#: include/datetime.php:358
msgid "second"
msgstr "секунда"
#: include/datetime.php:358
msgid "seconds"
msgstr "сек."
#: include/datetime.php:367
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s назад"
#: include/datetime.php:585
#, php-format
msgid "%s's birthday"
msgstr "день рождения %s"
#: include/datetime.php:586 include/dfrn.php:1131
#, php-format
msgid "Happy Birthday %s"
msgstr "С днём рождения %s"
#: include/dba.php:43 include/dba_pdo.php:72
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
#: include/dbstructure.php:36
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
#: include/dbstructure.php:41
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr "Сообщение об ошибке:\n[pre]%s[/pre]"
#: include/dbstructure.php:199
msgid "Errors encountered creating database tables."
msgstr "Обнаружены ошибки при создании таблиц базы данных."
#: include/dbstructure.php:333 include/dbstructure.php:341
#: include/dbstructure.php:349 include/dbstructure.php:354
#: include/dbstructure.php:359
msgid "Errors encountered performing database changes."
msgstr "Обнаружены ошибки при изменении базы данных."
#: include/delivery.php:427
msgid "(no subject)"
msgstr "(без темы)"
#: include/delivery.php:439 include/enotify.php:43
msgid "noreply"
msgstr "без ответа"
#: include/dfrn.php:1130
#, php-format
msgid "%s\\'s birthday"
msgstr "День рождения %s"
#: include/diaspora.php:2087
msgid "Sharing notification from Diaspora network"
msgstr "Уведомление о шаре из сети Diaspora"
#: include/diaspora.php:3096
msgid "Attachments:"
msgstr "Вложения:"
#: include/enotify.php:24
msgid "Friendica Notification"
msgstr "Уведомления Friendica"
#: include/enotify.php:27
msgid "Thank You,"
msgstr "Спасибо,"
#: include/enotify.php:30
#, php-format
msgid "%s Administrator"
msgstr "%s администратор"
#: include/enotify.php:32
#, php-format
msgid "%1$s, %2$s Administrator"
msgstr "%1$s, администратор %2$s"
#: include/enotify.php:70
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
#: include/enotify.php:83
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"
#: include/enotify.php:85
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr "%1$s отправил вам новое личное сообщение на %2$s."
#: include/enotify.php:86
#, php-format
msgid "%1$s sent you %2$s."
msgstr "%1$s послал вам %2$s."
#: include/enotify.php:86
msgid "a private message"
msgstr "личное сообщение"
#: include/enotify.php:88
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."
#: include/enotify.php:134
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]"
#: include/enotify.php:141
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]"
#: include/enotify.php:149
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]"
#: include/enotify.php:159
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr "[Friendica:Notify] Комментарий к #%1$d от %2$s"
#: include/enotify.php:161
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите."
#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу."
#: include/enotify.php:171
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля"
#: include/enotify.php:173
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr "%1$s написал на вашей стене на %2$s"
#: include/enotify.php:174
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr "%1$s написал на [url=%2$s]вашей стене[/url]"
#: include/enotify.php:185
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr "[Friendica:Notify] %s отметил вас"
#: include/enotify.php:187
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr "%1$s отметил вас в %2$s"
#: include/enotify.php:188
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr "%1$s [url=%2$s]поставил тег[/url]."
#: include/enotify.php:199
#, php-format
msgid "[Friendica:Notify] %s shared a new post"
msgstr "[Friendica:Notify] %s поделился новым постом"
#: include/enotify.php:201
#, php-format
msgid "%1$s shared a new post at %2$s"
msgstr "%1$s поделился новым постом на %2$s"
#: include/enotify.php:202
#, php-format
msgid "%1$s [url=%2$s]shared a post[/url]."
msgstr "%1$s [url=%2$s]поделился постом[/url]."
#: include/enotify.php:213
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr "[Friendica:Notify] %1$s потыкал вас"
#: include/enotify.php:215
#, php-format
msgid "%1$s poked you at %2$s"
msgstr "%1$s потыкал вас на %2$s"
#: include/enotify.php:216
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr "%1$s [url=%2$s]потыкал вас[/url]."
#: include/enotify.php:231
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr "[Friendica:Notify] %s поставил тег вашему посту"
#: include/enotify.php:233
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr "%1$s поставил тег вашему посту на %2$s"
#: include/enotify.php:234
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr "%1$s поставил тег [url=%2$s]вашему посту[/url]"
#: include/enotify.php:245
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Сообщение] получен запрос"
#: include/enotify.php:247
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr "Вы получили запрос от '%1$s' на %2$s"
#: include/enotify.php:248
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s."
#: include/enotify.php:252 include/enotify.php:295
#, php-format
msgid "You may visit their profile at %s"
msgstr "Вы можете посмотреть его профиль здесь %s"
#: include/enotify.php:254
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Посетите %s для подтверждения или отказа запроса."
#: include/enotify.php:262
msgid "[Friendica:Notify] A new person is sharing with you"
msgstr "[Friendica:Notify] Новый человек делится с вами"
#: include/enotify.php:264 include/enotify.php:265
#, php-format
msgid "%1$s is sharing with you at %2$s"
msgstr "%1$s делится с вами на %2$s"
#: include/enotify.php:271
msgid "[Friendica:Notify] You have a new follower"
msgstr "[Friendica:Notify] У вас новый подписчик"
#: include/enotify.php:273 include/enotify.php:274
#, php-format
msgid "You have a new follower at %2$s : %1$s"
msgstr "У вас новый подписчик на %2$s : %1$s"
#: include/enotify.php:285
msgid "[Friendica:Notify] Friend suggestion received"
msgstr "[Friendica: Оповещение] получено предложение дружбы"
#: include/enotify.php:287
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr "Вы получили предложение дружбы от '%1$s' на %2$s"
#: include/enotify.php:288
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s."
#: include/enotify.php:293
msgid "Name:"
msgstr "Имя:"
#: include/enotify.php:294
msgid "Photo:"
msgstr "Фото:"
#: include/enotify.php:297
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса."
#: include/enotify.php:305 include/enotify.php:319
msgid "[Friendica:Notify] Connection accepted"
msgstr "[Friendica:Notify] Соединение принято"
#: include/enotify.php:307 include/enotify.php:321
#, php-format
msgid "'%1$s' has accepted your connection request at %2$s"
msgstr "'%1$s' принял соединение с вами на %2$s"
#: include/enotify.php:308 include/enotify.php:322
#, php-format
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]."
#: include/enotify.php:312
msgid ""
"You are now mutual friends and may exchange status updates, photos, and "
"email without restriction."
msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений."
#: include/enotify.php:314
#, php-format
msgid "Please visit %s if you wish to make any changes to this relationship."
msgstr "Посетите %s если вы хотите сделать изменения в этом отношении."
#: include/enotify.php:326
#, php-format
msgid ""
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
"communication - such as private messaging and some profile interactions. If "
"this is a celebrity or community page, these settings were applied "
"automatically."
msgstr ""
#: include/enotify.php:328
#, php-format
msgid ""
"'%1$s' may choose to extend this into a two-way or more permissive "
"relationship in the future."
msgstr ""
#: include/enotify.php:330
#, php-format
msgid "Please visit %s if you wish to make any changes to this relationship."
msgstr "Посетите %s если вы хотите сделать изменения в этом отношении."
#: include/enotify.php:340
msgid "[Friendica System:Notify] registration request"
msgstr "[Friendica System:Notify] Запрос на регистрацию"
#: include/enotify.php:342
#, php-format
msgid "You've received a registration request from '%1$s' at %2$s"
msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s"
#: include/enotify.php:343
#, php-format
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s."
#: include/enotify.php:347
#, php-format
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
msgstr "Полное имя:⇥%1$s\\nСайт:⇥%2$s\\nЛогин:⇥%3$s (%4$s)"
#: include/enotify.php:350
#, php-format
msgid "Please visit %s to approve or reject the request."
msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос."
#: include/event.php:442
msgid "Sun"
msgstr "Вс"
#: include/event.php:443
msgid "Mon"
msgstr "Пн"
#: include/event.php:444
msgid "Tue"
msgstr "Вт"
#: include/event.php:445
msgid "Wed"
msgstr "Ср"
#: include/event.php:446
msgid "Thu"
msgstr "Чт"
#: include/event.php:447
msgid "Fri"
msgstr "Пт"
#: include/event.php:448
msgid "Sat"
msgstr "Сб"
#: include/event.php:449 include/text.php:1132 mod/settings.php:981
msgid "Sunday"
msgstr "Воскресенье"
#: include/event.php:450 include/text.php:1132 mod/settings.php:981
msgid "Monday"
msgstr "Понедельник"
#: include/event.php:451 include/text.php:1132
msgid "Tuesday"
msgstr "Вторник"
#: include/event.php:452 include/text.php:1132
msgid "Wednesday"
msgstr "Среда"
#: include/event.php:453 include/text.php:1132
msgid "Thursday"
msgstr "Четверг"
#: include/event.php:454 include/text.php:1132
msgid "Friday"
msgstr "Пятница"
#: include/event.php:455 include/text.php:1132
msgid "Saturday"
msgstr "Суббота"
#: include/event.php:456
msgid "Jan"
msgstr "Янв"
#: include/event.php:457
msgid "Feb"
msgstr "Фев"
#: include/event.php:458
msgid "Mar"
msgstr "Мрт"
#: include/event.php:459
msgid "Apr"
msgstr "Апр"
#: include/event.php:460 include/event.php:472 include/text.php:1136
msgid "May"
msgstr "Май"
#: include/event.php:461
msgid "Jun"
msgstr "Июн"
#: include/event.php:462
msgid "Jul"
msgstr "Июл"
#: include/event.php:463
msgid "Aug"
msgstr "Авг"
#: include/event.php:464
msgid "Sept"
msgstr "Сен"
#: include/event.php:465
msgid "Oct"
msgstr "Окт"
#: include/event.php:466
msgid "Nov"
msgstr "Нбр"
#: include/event.php:467
msgid "Dec"
msgstr "Дек"
#: include/event.php:468 include/text.php:1136
msgid "January"
msgstr "Январь"
#: include/event.php:469 include/text.php:1136
msgid "February"
msgstr "Февраль"
#: include/event.php:470 include/text.php:1136
msgid "March"
msgstr "Март"
#: include/event.php:471 include/text.php:1136
msgid "April"
msgstr "Апрель"
#: include/event.php:473 include/text.php:1136
msgid "June"
msgstr "Июнь"
#: include/event.php:474 include/text.php:1136
msgid "July"
msgstr "Июль"
#: include/event.php:475 include/text.php:1136
msgid "August"
msgstr "Август"
#: include/event.php:476 include/text.php:1136
msgid "September"
msgstr "Сентябрь"
#: include/event.php:477 include/text.php:1136
msgid "October"
msgstr "Октябрь"
#: include/event.php:478 include/text.php:1136
msgid "November"
msgstr "Ноябрь"
#: include/event.php:479 include/text.php:1136
msgid "December"
msgstr "Декабрь"
#: include/event.php:480 mod/cal.php:278 mod/events.php:395
msgid "today"
msgstr "сегодня"
#: include/event.php:484
msgid "all-day"
msgstr ""
#: include/event.php:486
msgid "No events to display"
msgstr "Нет событий для показа"
#: include/event.php:596
msgid "l, F j"
msgstr "l, j F"
#: include/event.php:615
msgid "Edit event"
msgstr "Редактировать мероприятие"
#: include/event.php:637 include/text.php:1534 include/text.php:1541
msgid "link to source"
msgstr "ссылка на сообщение"
#: include/event.php:872
msgid "Export"
msgstr "Экспорт"
#: include/event.php:873
msgid "Export calendar as ical"
msgstr "Экспортировать календарь в формат ical"
#: include/event.php:874
msgid "Export calendar as csv"
msgstr "Экспортировать календарь в формат csv"
#: include/features.php:65
msgid "General Features"
msgstr "Основные возможности"
#: include/features.php:67
msgid "Multiple Profiles"
msgstr "Несколько профилей"
#: include/features.php:67
msgid "Ability to create multiple profiles"
msgstr "Возможность создания нескольких профилей"
#: include/features.php:68
msgid "Photo Location"
msgstr "Место фотографирования"
#: include/features.php:68
msgid ""
"Photo metadata is normally stripped. This extracts the location (if present)"
" prior to stripping metadata and links it to a map."
msgstr "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте."
#: include/features.php:69
msgid "Export Public Calendar"
msgstr "Экспортировать публичный календарь"
#: include/features.php:69
msgid "Ability for visitors to download the public calendar"
msgstr "Возможность скачивать публичный календарь посетителями"
#: include/features.php:74
msgid "Post Composition Features"
msgstr "Составление сообщений"
#: include/features.php:75
msgid "Post Preview"
msgstr "Предварительный просмотр"
#: include/features.php:75
msgid "Allow previewing posts and comments before publishing them"
msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией"
#: include/features.php:76
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:76
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:81
msgid "Network Sidebar Widgets"
msgstr "Виджет боковой панели \"Сеть\""
#: include/features.php:82
msgid "Search by Date"
msgstr "Поиск по датам"
#: include/features.php:82
msgid "Ability to select posts by date ranges"
msgstr "Возможность выбора постов по диапазону дат"
#: include/features.php:83 include/features.php:113
msgid "List Forums"
msgstr "Список форумов"
#: include/features.php:83
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:84
msgid "Group Filter"
msgstr "Фильтр групп"
#: include/features.php:84
msgid "Enable widget to display Network posts only from selected group"
msgstr "Включить виджет для отображения сообщений сети только от выбранной группы"
#: include/features.php:85
msgid "Network Filter"
msgstr "Фильтр сети"
#: include/features.php:85
msgid "Enable widget to display Network posts only from selected network"
msgstr "Включить виджет для отображения сообщений сети только от выбранной сети"
#: include/features.php:86 mod/network.php:199 mod/search.php:34
msgid "Saved Searches"
msgstr "запомненные поиски"
#: include/features.php:86
msgid "Save search terms for re-use"
msgstr "Сохранить условия поиска для повторного использования"
#: include/features.php:91
msgid "Network Tabs"
msgstr "Сетевые вкладки"
#: include/features.php:92
msgid "Network Personal Tab"
msgstr "Персональные сетевые вкладки"
#: include/features.php:92
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Включить вкладку для отображения только сообщений сети, с которой вы взаимодействовали"
#: include/features.php:93
msgid "Network New Tab"
msgstr "Новая вкладка сеть"
#: include/features.php:93
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)"
#: include/features.php:94
msgid "Network Shared Links Tab"
msgstr "Вкладка shared ссылок сети"
#: include/features.php:94
msgid "Enable tab to display only Network posts with links in them"
msgstr "Включить вкладку для отображения только сообщений сети со ссылками на них"
#: include/features.php:99
msgid "Post/Comment Tools"
msgstr "Инструменты пост/комментарий"
#: include/features.php:100
msgid "Multiple Deletion"
msgstr "Множественное удаление"
#: include/features.php:100
msgid "Select and delete multiple posts/comments at once"
msgstr "Выбрать и удалить несколько постов/комментариев одновременно."
#: include/features.php:101
msgid "Edit Sent Posts"
msgstr "Редактировать отправленные посты"
#: include/features.php:101
msgid "Edit and correct posts and comments after sending"
msgstr "Редактировать и править посты и комментарии после отправления"
#: include/features.php:102
msgid "Tagging"
msgstr "Отмеченное"
#: include/features.php:102
msgid "Ability to tag existing posts"
msgstr "Возможность отмечать существующие посты"
#: include/features.php:103
msgid "Post Categories"
msgstr "Категории постов"
#: include/features.php:103
msgid "Add categories to your posts"
msgstr "Добавить категории вашего поста"
#: include/features.php:104
msgid "Ability to file posts under folders"
msgstr ""
#: include/features.php:105
msgid "Dislike Posts"
msgstr "Посты, которые не нравятся"
#: include/features.php:105
msgid "Ability to dislike posts/comments"
msgstr "Возможность поставить \"Не нравится\" посту или комментарию"
#: include/features.php:106
msgid "Star Posts"
msgstr "Популярные посты"
#: include/features.php:106
msgid "Ability to mark special posts with a star indicator"
msgstr "Возможность отметить специальные сообщения индикатором популярности"
#: include/features.php:107
msgid "Mute Post Notifications"
msgstr "Отключить уведомления для поста"
#: include/features.php:107
msgid "Ability to mute notifications for a thread"
msgstr "Возможность отключить уведомления для отдельно взятого обсуждения"
#: include/features.php:112
msgid "Advanced Profile Settings"
msgstr "Расширенные настройки профиля"
#: include/features.php:113
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/follow.php:81 mod/dfrn_request.php:512
msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля."
#: include/follow.php:86
msgid "Connect URL missing."
msgstr "Connect-URL отсутствует."
#: include/follow.php:114
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
#: include/follow.php:115 include/follow.php:129
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы."
#: include/follow.php:127
msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации."
#: include/follow.php:132
msgid "An author or name was not found."
msgstr "Автор или имя не найдены."
#: include/follow.php:135
msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу."
#: include/follow.php:138
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: include/follow.php:139
msgid "Use mailto: in front of address to force email check."
msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."
#: include/follow.php:145
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: include/follow.php:150
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
#: include/follow.php:251
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
#: include/group.php:25
msgid ""
"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 "
"not what you intended, please create another group with a different name."
msgstr "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."
#: include/group.php:210
msgid "Default privacy group for new contacts"
msgstr "Группа доступа по умолчанию для новых контактов"
#: include/group.php:243
msgid "Everybody"
msgstr "Каждый"
#: include/group.php:266
msgid "edit"
msgstr "редактировать"
#: include/group.php:287 mod/newmember.php:61
msgid "Groups"
msgstr "Группы"
#: include/group.php:289
msgid "Edit groups"
msgstr "Редактировать группы"
#: include/group.php:291
msgid "Edit group"
msgstr "Редактировать группу"
#: include/group.php:292
msgid "Create a new group"
msgstr "Создать новую группу"
#: include/group.php:293 mod/group.php:98 mod/group.php:188
msgid "Group Name: "
msgstr "Название группы: "
#: include/group.php:295
msgid "Contacts not in any group"
msgstr "Контакты не состоят в группе"
#: include/group.php:297 mod/network.php:200
msgid "add"
msgstr "добавить"
#: include/identity.php:43
msgid "Requested account is not available."
msgstr "Запрашиваемый профиль недоступен."
#: include/identity.php:52 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "Запрашиваемый профиль недоступен."
#: include/identity.php:96 include/identity.php:314 include/identity.php:737
msgid "Edit profile"
msgstr "Редактировать профиль"
#: include/identity.php:254
msgid "Atom feed"
msgstr "Фид Atom"
#: include/identity.php:285 include/nav.php:189
msgid "Profiles"
msgstr "Профили"
#: include/identity.php:285
msgid "Manage/edit profiles"
msgstr "Управление / редактирование профилей"
#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789
msgid "Change profile photo"
msgstr "Изменить фото профиля"
#: include/identity.php:291 mod/profiles.php:790
msgid "Create New Profile"
msgstr "Создать новый профиль"
#: include/identity.php:301 mod/profiles.php:779
msgid "Profile Image"
msgstr "Фото профиля"
#: include/identity.php:304 mod/profiles.php:781
msgid "visible to everybody"
msgstr "видимый всем"
#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782
msgid "Edit visibility"
msgstr "Редактировать видимость"
#: include/identity.php:333 include/identity.php:628 mod/directory.php:141
#: mod/notifications.php:244
msgid "Gender:"
msgstr "Пол:"
#: include/identity.php:336 include/identity.php:648 mod/directory.php:143
msgid "Status:"
msgstr "Статус:"
#: include/identity.php:338 include/identity.php:664 mod/directory.php:145
msgid "Homepage:"
msgstr "Домашняя страничка:"
#: include/identity.php:340 include/identity.php:684 mod/contacts.php:640
#: mod/directory.php:147 mod/notifications.php:240
msgid "About:"
msgstr "О себе:"
#: include/identity.php:342 mod/contacts.php:638
msgid "XMPP:"
msgstr "XMPP:"
#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252
msgid "Network:"
msgstr "Сеть:"
#: include/identity.php:457 include/identity.php:547
msgid "g A l F d"
msgstr "g A l F d"
#: include/identity.php:458 include/identity.php:548
msgid "F d"
msgstr "F d"
#: include/identity.php:509 include/identity.php:594
msgid "[today]"
msgstr "[сегодня]"
#: include/identity.php:521
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
#: include/identity.php:522
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
#: include/identity.php:581
msgid "[No description]"
msgstr "[без описания]"
#: include/identity.php:605
msgid "Event Reminders"
msgstr "Напоминания о мероприятиях"
#: include/identity.php:606
msgid "Events this week:"
msgstr "Мероприятия на этой неделе:"
#: include/identity.php:617 include/identity.php:741 include/identity.php:774
#: include/nav.php:82 mod/contacts.php:647 mod/contacts.php:849
#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
msgid "Profile"
msgstr "Информация"
#: include/identity.php:626 mod/settings.php:1286
msgid "Full Name:"
msgstr "Полное имя:"
#: include/identity.php:633
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:634
msgid "j F"
msgstr "j F"
#: include/identity.php:645
msgid "Age:"
msgstr "Возраст:"
#: include/identity.php:656
#, php-format
msgid "for %1$d %2$s"
msgstr "для %1$d %2$s"
#: include/identity.php:660 mod/profiles.php:702
msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:"
#: include/identity.php:668 mod/profiles.php:729
msgid "Hometown:"
msgstr "Родной город:"
#: include/identity.php:672 mod/contacts.php:642 mod/follow.php:137
#: mod/notifications.php:242
msgid "Tags:"
msgstr "Ключевые слова: "
#: include/identity.php:676 mod/profiles.php:730
msgid "Political Views:"
msgstr "Политические взгляды:"
#: include/identity.php:680
msgid "Religion:"
msgstr "Религия:"
#: include/identity.php:688
msgid "Hobbies/Interests:"
msgstr "Хобби / Интересы:"
#: include/identity.php:692 mod/profiles.php:734
msgid "Likes:"
msgstr "Нравится:"
#: include/identity.php:696 mod/profiles.php:735
msgid "Dislikes:"
msgstr "Не нравится:"
#: include/identity.php:700
msgid "Contact information and Social Networks:"
msgstr "Информация о контакте и социальных сетях:"
#: include/identity.php:704
msgid "Musical interests:"
msgstr "Музыкальные интересы:"
#: include/identity.php:708
msgid "Books, literature:"
msgstr "Книги, литература:"
#: include/identity.php:712
msgid "Television:"
msgstr "Телевидение:"
#: include/identity.php:716
msgid "Film/dance/culture/entertainment:"
msgstr "Кино / Танцы / Культура / Развлечения:"
#: include/identity.php:720
msgid "Love/Romance:"
msgstr "Любовь / Романтика:"
#: include/identity.php:724
msgid "Work/employment:"
msgstr "Работа / Занятость:"
#: include/identity.php:728
msgid "School/education:"
msgstr "Школа / Образование:"
#: include/identity.php:733
msgid "Forums:"
msgstr "Форумы:"
#: include/identity.php:742 mod/events.php:514
msgid "Basic"
msgstr "Базовый"
#: include/identity.php:743 mod/admin.php:972 mod/contacts.php:878
#: mod/events.php:515
msgid "Advanced"
msgstr "Расширенный"
#: include/identity.php:766 include/nav.php:81 mod/contacts.php:645
#: mod/contacts.php:841 view/theme/frio/theme.php:246
msgid "Status"
msgstr "Посты"
#: include/identity.php:769 mod/contacts.php:844 mod/follow.php:145
msgid "Status Messages and Posts"
msgstr "Ваши посты"
#: include/identity.php:777 mod/contacts.php:852
msgid "Profile Details"
msgstr "Информация о вас"
#: include/identity.php:782 include/nav.php:83 mod/fbrowser.php:31
#: view/theme/frio/theme.php:248
msgid "Photos"
msgstr "Фото"
#: include/identity.php:785 mod/photos.php:89
msgid "Photo Albums"
msgstr "Фотоальбомы"
#: include/identity.php:790 include/identity.php:793 include/nav.php:84
#: view/theme/frio/theme.php:249
msgid "Videos"
msgstr "Видео"
#: include/identity.php:802 include/identity.php:813 include/nav.php:85
#: include/nav.php:149 mod/cal.php:270 mod/events.php:386
#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
msgid "Events"
msgstr "Мероприятия"
#: include/identity.php:805 include/identity.php:816 include/nav.php:149
#: view/theme/frio/theme.php:254
msgid "Events and Calendar"
msgstr "Календарь и события"
#: include/identity.php:824 mod/notes.php:47
msgid "Personal Notes"
msgstr "Личные заметки"
#: include/identity.php:827
msgid "Only You Can See This"
msgstr "Только вы можете это видеть"
#: include/identity.php:835 include/identity.php:838 include/nav.php:128
#: include/nav.php:192 include/text.php:1024 mod/contacts.php:800
#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
msgid "Contacts"
msgstr "Контакты"
#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754
msgid "[Name Withheld]"
msgstr "[Имя не разглашается]"
#: include/items.php:1939 mod/admin.php:240 mod/admin.php:1480
#: mod/admin.php:1731 mod/display.php:103 mod/display.php:279
#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15
msgid "Item not found."
msgstr "Пункт не найден."
#: include/items.php:1978
msgid "Do you really want to delete this item?"
msgstr "Вы действительно хотите удалить этот элемент?"
#: include/items.php:1980 mod/api.php:105 mod/contacts.php:452
#: mod/dfrn_request.php:875 mod/follow.php:113 mod/message.php:206
#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669
#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177
#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29
msgid "Yes"
msgstr "Да"
#: include/items.php:2143 index.php:407 mod/allfriends.php:12 mod/api.php:26
#: mod/api.php:31 mod/attach.php:33 mod/cal.php:299 mod/common.php:18
#: mod/contacts.php:360 mod/crepair.php:102 mod/delegate.php:12
#: mod/dfrn_confirm.php:61 mod/dirfind.php:11 mod/display.php:481
#: mod/editpost.php:10 mod/events.php:195 mod/follow.php:11 mod/follow.php:74
#: mod/follow.php:158 mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15
#: mod/invite.php:103 mod/item.php:193 mod/item.php:205 mod/manage.php:98
#: mod/message.php:46 mod/message.php:171 mod/mood.php:115 mod/network.php:4
#: mod/nogroup.php:27 mod/notes.php:23 mod/notifications.php:71
#: mod/ostatus_subscribe.php:9 mod/photos.php:161 mod/photos.php:1092
#: mod/poke.php:154 mod/profile_photo.php:19 mod/profile_photo.php:180
#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/profiles.php:166
#: mod/profiles.php:607 mod/register.php:42 mod/regmod.php:113
#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130
#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24
#: mod/viewcontacts.php:46 mod/wall_attach.php:67 mod/wall_attach.php:70
#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/wallmessage.php:9
#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
msgid "Permission denied."
msgstr "Нет разрешения."
#: include/items.php:2248
msgid "Archives"
msgstr "Архивы"
#: include/like.php:41
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: include/like.php:46
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: include/like.php:51
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: include/message.php:15 include/message.php:169
msgid "[no subject]"
msgstr "[без темы]"
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr "Ничего нового здесь"
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr "Стереть уведомления"
#: include/nav.php:40 include/text.php:1017
msgid "@name, !forum, #tags, content"
msgstr "@имя, !форум, #тег, контент"
#: include/nav.php:78 view/theme/frio/theme.php:243
msgid "End this session"
msgstr "Завершить эту сессию"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
msgid "Your posts and conversations"
msgstr "Данные вашей учётной записи"
#: include/nav.php:82 view/theme/frio/theme.php:247
msgid "Your profile page"
msgstr "Информация о вас"
#: include/nav.php:83 view/theme/frio/theme.php:248
msgid "Your photos"
msgstr "Ваши фотографии"
#: include/nav.php:84 view/theme/frio/theme.php:249
msgid "Your videos"
msgstr "Ваши видео"
#: include/nav.php:85 view/theme/frio/theme.php:250
msgid "Your events"
msgstr "Ваши события"
#: include/nav.php:86
msgid "Personal notes"
msgstr "Личные заметки"
#: include/nav.php:86
msgid "Your personal notes"
msgstr "Ваши личные заметки"
#: include/nav.php:95
msgid "Sign in"
msgstr "Вход"
#: include/nav.php:105
msgid "Home Page"
msgstr "Главная страница"
#: include/nav.php:109
msgid "Create an account"
msgstr "Создать аккаунт"
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293
msgid "Help"
msgstr "Помощь"
#: include/nav.php:115
msgid "Help and documentation"
msgstr "Помощь и документация"
#: include/nav.php:119
msgid "Apps"
msgstr "Приложения"
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr "Дополнительные приложения, утилиты, игры"
#: include/nav.php:123 include/text.php:1014 mod/search.php:149
msgid "Search"
msgstr "Поиск"
#: include/nav.php:123
msgid "Search site content"
msgstr "Поиск по сайту"
#: include/nav.php:126 include/text.php:1022
msgid "Full Text"
msgstr "Контент"
#: include/nav.php:127 include/text.php:1023
msgid "Tags"
msgstr "Тэги"
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
msgid "Community"
msgstr "Сообщество"
#: include/nav.php:143
msgid "Conversations on this site"
msgstr "Беседы на этом сайте"
#: include/nav.php:145
msgid "Conversations on the network"
msgstr "Беседы в сети"
#: include/nav.php:152
msgid "Directory"
msgstr "Каталог"
#: include/nav.php:152
msgid "People directory"
msgstr "Каталог участников"
#: include/nav.php:154
msgid "Information"
msgstr "Информация"
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr "Информация об этом экземпляре Friendica"
#: include/nav.php:158 view/theme/frio/theme.php:253
msgid "Conversations from your friends"
msgstr "Посты ваших друзей"
#: include/nav.php:159
msgid "Network Reset"
msgstr "Перезагрузка сети"
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr "Загрузить страницу сети без фильтров"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей"
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr "Уведомления"
#: include/nav.php:170
msgid "See all notifications"
msgstr "Посмотреть все уведомления"
#: include/nav.php:171 mod/settings.php:906
msgid "Mark as seen"
msgstr "Отметить, как прочитанное"
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr "Отметить все системные уведомления, как прочитанные"
#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
msgid "Messages"
msgstr "Сообщения"
#: include/nav.php:175 view/theme/frio/theme.php:255
msgid "Private mail"
msgstr "Личная почта"
#: include/nav.php:176
msgid "Inbox"
msgstr "Входящие"
#: include/nav.php:177
msgid "Outbox"
msgstr "Исходящие"
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr "Новое сообщение"
#: include/nav.php:181
msgid "Manage"
msgstr "Управлять"
#: include/nav.php:181
msgid "Manage other pages"
msgstr "Управление другими страницами"
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr "Делегирование"
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr "Делегировать управление страницей"
#: include/nav.php:186 mod/admin.php:1533 mod/admin.php:1809
#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:256
msgid "Settings"
msgstr "Настройки"
#: include/nav.php:186 view/theme/frio/theme.php:256
msgid "Account settings"
msgstr "Настройки аккаунта"
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr "Управление/редактирование профилей"
#: include/nav.php:192 view/theme/frio/theme.php:257
msgid "Manage/edit friends and contacts"
msgstr "Управление / редактирование друзей и контактов"
#: include/nav.php:197 mod/admin.php:192
msgid "Admin"
msgstr "Администратор"
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr "Конфигурация сайта"
#: include/nav.php:200
msgid "Navigation"
msgstr "Навигация"
#: include/nav.php:200
msgid "Site map"
msgstr "Карта сайта"
#: include/network.php:622
msgid "view full size"
msgstr "посмотреть в полный размер"
#: include/oembed.php:266
msgid "Embedded content"
msgstr "Встроенное содержание"
#: include/oembed.php:274
msgid "Embedding disabled"
msgstr "Встраивание отключено"
#: include/ostatus.php:1832
#, php-format
msgid "%s is now following %s."
msgstr "%s теперь подписан на %s."
#: include/ostatus.php:1833
msgid "following"
msgstr "следует"
#: include/ostatus.php:1836
#, php-format
msgid "%s stopped following %s."
msgstr "%s отписался от %s."
#: include/ostatus.php:1837
msgid "stopped following"
msgstr "остановлено следование"
#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40
#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106
#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817
#: mod/photos.php:1829
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: include/plugin.php:530 include/plugin.php:532
msgid "Click here to upgrade."
msgstr "Нажмите для обновления."
#: include/plugin.php:538
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Это действие превышает лимиты, установленные вашим тарифным планом."
#: include/plugin.php:543
msgid "This action is not available under your subscription plan."
msgstr "Это действие не доступно в соответствии с вашим планом подписки."
#: include/profile_selectors.php:6
msgid "Male"
msgstr "Мужчина"
@ -190,14 +2575,6 @@ msgstr "Не определен"
msgid "Other"
msgstr "Другой"
#: include/profile_selectors.php:6 include/conversation.php:1487
msgid "Undecided"
msgid_plural "Undecided"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/profile_selectors.php:23
msgid "Males"
msgstr "Мужчины"
@ -308,7 +2685,7 @@ msgstr "Женат / Замужем"
#: include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
msgstr "Воображаемо женат (замужем)"
#: include/profile_selectors.php:42
msgid "Partners"
@ -352,7 +2729,7 @@ msgstr "Разведен(а)"
#: include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
msgstr "Воображаемо разведен(а)"
#: include/profile_selectors.php:42
msgid "Widowed"
@ -374,2420 +2751,61 @@ msgstr "Не беспокоить"
msgid "Ask me"
msgstr "Спросите меня"
#: include/dba_pdo.php:72 include/dba.php:56
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
#: include/auth.php:45
msgid "Logged out."
msgstr "Выход из системы."
#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
msgid "Login failed."
msgstr "Войти не удалось."
#: include/auth.php:132 include/user.php:75
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."
#: include/auth.php:132 include/user.php:75
msgid "The error message was:"
msgstr "Сообщение об ошибке было:"
#: include/group.php:25
msgid ""
"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 "
"not what you intended, please create another group with a different name."
msgstr "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."
#: include/group.php:209
msgid "Default privacy group for new contacts"
msgstr "Группа доступа по умолчанию для новых контактов"
#: include/group.php:242
msgid "Everybody"
msgstr "Каждый"
#: include/group.php:265
msgid "edit"
msgstr "редактировать"
#: include/group.php:286 mod/newmember.php:61
msgid "Groups"
msgstr "Группы"
#: include/group.php:288
msgid "Edit groups"
msgstr ""
#: include/group.php:290
msgid "Edit group"
msgstr "Редактировать группу"
#: include/group.php:291
msgid "Create a new group"
msgstr "Создать новую группу"
#: include/group.php:292 mod/group.php:94 mod/group.php:178
msgid "Group Name: "
msgstr "Название группы: "
#: include/group.php:294
msgid "Contacts not in any group"
msgstr "Контакты не состоят в группе"
#: include/group.php:296 mod/network.php:201
msgid "add"
msgstr "добавить"
#: include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Неизвестно | Не определено"
#: include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Блокировать немедленно"
#: include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Тролль, спаммер, рассылает рекламу"
#: include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Известные мне, но нет определенного мнения"
#: include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "Хорошо, наверное, безвредные"
#: include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Уважаемые, есть мое доверие"
#: include/contact_selectors.php:56 mod/admin.php:890
msgid "Frequently"
msgstr "Часто"
#: include/contact_selectors.php:57 mod/admin.php:891
msgid "Hourly"
msgstr "Раз в час"
#: include/contact_selectors.php:58 mod/admin.php:892
msgid "Twice daily"
msgstr "Два раза в день"
#: include/contact_selectors.php:59 mod/admin.php:893
msgid "Daily"
msgstr "Ежедневно"
#: include/contact_selectors.php:60
msgid "Weekly"
msgstr "Еженедельно"
#: include/contact_selectors.php:61
msgid "Monthly"
msgstr "Ежемесячно"
#: include/contact_selectors.php:76 mod/dfrn_request.php:868
msgid "Friendica"
msgstr "Friendica"
#: include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: include/contact_selectors.php:79 include/contact_selectors.php:86
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
msgid "Email"
msgstr "Эл. почта"
#: include/contact_selectors.php:80 mod/settings.php:842
#: mod/dfrn_request.php:870
msgid "Diaspora"
msgstr "Diaspora"
#: include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zot!"
#: include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/IM"
#: include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: include/contact_selectors.php:88
msgid "pump.io"
msgstr "pump.io"
#: include/contact_selectors.php:89
msgid "Twitter"
msgstr "Twitter"
#: include/contact_selectors.php:90
msgid "Diaspora Connector"
msgstr ""
#: include/contact_selectors.php:91
msgid "GNU Social"
msgstr ""
#: include/contact_selectors.php:92
msgid "App.net"
msgstr ""
#: include/contact_selectors.php:103
msgid "Hubzilla/Redmatrix"
msgstr ""
#: include/acl_selectors.php:327
msgid "Post to Email"
msgstr "Отправить на Email"
#: include/acl_selectors.php:332
#, php-format
msgid "Connectors disabled, since \"%s\" is enabled."
msgstr ""
#: include/acl_selectors.php:333 mod/settings.php:1181
msgid "Hide your profile details from unknown viewers?"
msgstr "Скрыть данные профиля из неизвестных зрителей?"
#: include/acl_selectors.php:338
msgid "Visible to everybody"
msgstr "Видимо всем"
#: include/acl_selectors.php:339 view/theme/vier/config.php:103
msgid "show"
msgstr "показывать"
#: include/acl_selectors.php:340 view/theme/vier/config.php:103
msgid "don't show"
msgstr "не показывать"
#: include/acl_selectors.php:346 mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Копии на email адреса"
#: include/acl_selectors.php:347 mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Пример: bob@example.com, mary@example.com"
#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
#: mod/photos.php:1535
msgid "Permissions"
msgstr "Разрешения"
#: include/acl_selectors.php:350
msgid "Close"
msgstr "Закрыть"
#: include/like.php:163 include/conversation.php:130
#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
#: mod/tagger.php:62
msgid "photo"
msgstr "фото"
#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
#: include/conversation.php:134 include/conversation.php:261
#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
msgid "status"
msgstr "статус"
#: include/like.php:165 include/conversation.php:122
#: include/conversation.php:258 include/text.php:1802
msgid "event"
msgstr "мероприятие"
#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: include/like.php:184 include/conversation.php:144
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: include/like.php:186
#, php-format
msgid "%1$s is attending %2$s's %3$s"
msgstr ""
#: include/like.php:188
#, php-format
msgid "%1$s is not attending %2$s's %3$s"
msgstr ""
#: include/like.php:190
#, php-format
msgid "%1$s may attend %2$s's %3$s"
msgstr ""
#: include/message.php:15 include/message.php:173
msgid "[no subject]"
msgstr "[без темы]"
#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
msgid "Wall Photos"
msgstr "Фото стены"
#: include/plugin.php:526 include/plugin.php:528
msgid "Click here to upgrade."
msgstr "Нажмите для обновления."
#: include/plugin.php:534
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Это действие превышает лимиты, установленные вашим тарифным планом."
#: include/plugin.php:539
msgid "This action is not available under your subscription plan."
msgstr "Это действие не доступно в соответствии с вашим планом подписки."
#: include/uimport.php:94
msgid "Error decoding account file"
msgstr "Ошибка расшифровки файла аккаунта"
#: include/uimport.php:100
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"
#: include/uimport.php:116 include/uimport.php:127
msgid "Error! Cannot check nickname"
msgstr "Ошибка! Невозможно проверить никнейм"
#: include/uimport.php:120 include/uimport.php:131
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "Пользователь '%s' уже существует на этом сервере!"
#: include/uimport.php:153
msgid "User creation error"
msgstr "Ошибка создания пользователя"
#: include/uimport.php:173
msgid "User profile creation error"
msgstr "Ошибка создания профиля пользователя"
#: include/uimport.php:222
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d контакт не импортирован"
msgstr[1] "%d контакты не импортированы"
msgstr[2] "%d контакты не импортированы"
msgstr[3] "%d контакты не импортированы"
#: include/uimport.php:292
msgid "Done. You can now login with your username and password"
msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем"
#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
msgid "Miscellaneous"
msgstr "Разное"
#: include/datetime.php:183 include/identity.php:629
msgid "Birthday:"
msgstr "День рождения:"
#: include/datetime.php:185 mod/profiles.php:728
msgid "Age: "
msgstr "Возраст: "
#: include/datetime.php:187
msgid "YYYY-MM-DD or MM-DD"
msgstr ""
#: include/datetime.php:341
msgid "never"
msgstr "никогда"
#: include/datetime.php:347
msgid "less than a second ago"
msgstr "менее сек. назад"
#: include/datetime.php:350
msgid "year"
msgstr "год"
#: include/datetime.php:350
msgid "years"
msgstr "лет"
#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
#: mod/events.php:389
msgid "month"
msgstr "мес."
#: include/datetime.php:351
msgid "months"
msgstr "мес."
#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
#: mod/events.php:390
msgid "week"
msgstr "неделя"
#: include/datetime.php:352
msgid "weeks"
msgstr "недель"
#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
#: mod/events.php:391
msgid "day"
msgstr "день"
#: include/datetime.php:353
msgid "days"
msgstr "дней"
#: include/datetime.php:354
msgid "hour"
msgstr "час"
#: include/datetime.php:354
msgid "hours"
msgstr "час."
#: include/datetime.php:355
msgid "minute"
msgstr "минута"
#: include/datetime.php:355
msgid "minutes"
msgstr "мин."
#: include/datetime.php:356
msgid "second"
msgstr "секунда"
#: include/datetime.php:356
msgid "seconds"
msgstr "сек."
#: include/datetime.php:365
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s назад"
#: include/datetime.php:572
#, php-format
msgid "%s's birthday"
msgstr "день рождения %s"
#: include/datetime.php:573 include/dfrn.php:1109
#, php-format
msgid "Happy Birthday %s"
msgstr "С днём рождения %s"
#: include/enotify.php:24
msgid "Friendica Notification"
msgstr "Friendica уведомления"
#: include/enotify.php:27
msgid "Thank You,"
msgstr "Спасибо,"
#: include/enotify.php:30
#, php-format
msgid "%s Administrator"
msgstr "%s администратор"
#: include/enotify.php:32
#, php-format
msgid "%1$s, %2$s Administrator"
msgstr ""
#: include/enotify.php:43 include/delivery.php:457
msgid "noreply"
msgstr "без ответа"
#: include/enotify.php:70
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
#: include/enotify.php:83
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"
#: include/enotify.php:85
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr "%1$s отправил вам новое личное сообщение на %2$s."
#: include/enotify.php:86
#, php-format
msgid "%1$s sent you %2$s."
msgstr "%1$s послал вам %2$s."
#: include/enotify.php:86
msgid "a private message"
msgstr "личное сообщение"
#: include/enotify.php:88
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."
#: include/enotify.php:134
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]"
#: include/enotify.php:141
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]"
#: include/enotify.php:149
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]"
#: include/enotify.php:159
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: include/enotify.php:161
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr ""
#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
#: include/enotify.php:171
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля"
#: include/enotify.php:173
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: include/enotify.php:174
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: include/enotify.php:185
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: include/enotify.php:187
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: include/enotify.php:188
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: include/enotify.php:199
#, php-format
msgid "[Friendica:Notify] %s shared a new post"
msgstr ""
#: include/enotify.php:201
#, php-format
msgid "%1$s shared a new post at %2$s"
msgstr ""
#: include/enotify.php:202
#, php-format
msgid "%1$s [url=%2$s]shared a post[/url]."
msgstr ""
#: include/enotify.php:213
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: include/enotify.php:215
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: include/enotify.php:216
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: include/enotify.php:231
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: include/enotify.php:233
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: include/enotify.php:234
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: include/enotify.php:245
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Сообщение] получен запрос"
#: include/enotify.php:247
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: include/enotify.php:248
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: include/enotify.php:252 include/enotify.php:295
#, php-format
msgid "You may visit their profile at %s"
msgstr "Вы можете посмотреть его профиль здесь %s"
#: include/enotify.php:254
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Посетите %s для подтверждения или отказа запроса."
#: include/enotify.php:262
msgid "[Friendica:Notify] A new person is sharing with you"
msgstr ""
#: include/enotify.php:264 include/enotify.php:265
#, php-format
msgid "%1$s is sharing with you at %2$s"
msgstr ""
#: include/enotify.php:271
msgid "[Friendica:Notify] You have a new follower"
msgstr ""
#: include/enotify.php:273 include/enotify.php:274
#, php-format
msgid "You have a new follower at %2$s : %1$s"
msgstr ""
#: include/enotify.php:285
msgid "[Friendica:Notify] Friend suggestion received"
msgstr "[Friendica: Оповещение] получено предложение дружбы"
#: include/enotify.php:287
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr "Вы получили предложение дружбы от '%1$s' на %2$s"
#: include/enotify.php:288
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: include/enotify.php:293
msgid "Name:"
msgstr "Имя:"
#: include/enotify.php:294
msgid "Photo:"
msgstr "Фото:"
#: include/enotify.php:297
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса."
#: include/enotify.php:305 include/enotify.php:319
msgid "[Friendica:Notify] Connection accepted"
msgstr ""
#: include/enotify.php:307 include/enotify.php:321
#, php-format
msgid "'%1$s' has accepted your connection request at %2$s"
msgstr ""
#: include/enotify.php:308 include/enotify.php:322
#, php-format
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
msgstr ""
#: include/enotify.php:312
msgid ""
"You are now mutual friends and may exchange status updates, photos, and "
"email without restriction."
msgstr ""
#: include/enotify.php:314
#, php-format
msgid "Please visit %s if you wish to make any changes to this relationship."
msgstr ""
#: include/enotify.php:326
#, php-format
msgid ""
"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
"communication - such as private messaging and some profile interactions. If "
"this is a celebrity or community page, these settings were applied "
"automatically."
msgstr ""
#: include/enotify.php:328
#, php-format
msgid ""
"'%1$s' may choose to extend this into a two-way or more permissive "
"relationship in the future."
msgstr ""
#: include/enotify.php:330
#, php-format
msgid "Please visit %s if you wish to make any changes to this relationship."
msgstr ""
#: include/enotify.php:340
msgid "[Friendica System:Notify] registration request"
msgstr ""
#: include/enotify.php:342
#, php-format
msgid "You've received a registration request from '%1$s' at %2$s"
msgstr ""
#: include/enotify.php:343
#, php-format
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
msgstr ""
#: include/enotify.php:347
#, php-format
msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
msgstr ""
#: include/enotify.php:350
#, php-format
msgid "Please visit %s to approve or reject the request."
msgstr ""
#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: include/event.php:33 include/event.php:51 include/event.php:487
#: include/bb2diaspora.php:158
msgid "Starts:"
msgstr "Начало:"
#: include/event.php:36 include/event.php:57 include/event.php:488
#: include/bb2diaspora.php:166
msgid "Finishes:"
msgstr "Окончание:"
#: include/event.php:39 include/event.php:63 include/event.php:489
#: include/bb2diaspora.php:174 include/identity.php:328
#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
#: mod/contacts.php:628
msgid "Location:"
msgstr "Откуда:"
#: include/event.php:441
msgid "Sun"
msgstr "Вс"
#: include/event.php:442
msgid "Mon"
msgstr "Пн"
#: include/event.php:443
msgid "Tue"
msgstr "Вт"
#: include/event.php:444
msgid "Wed"
msgstr "Ср"
#: include/event.php:445
msgid "Thu"
msgstr "Чт"
#: include/event.php:446
msgid "Fri"
msgstr "Пт"
#: include/event.php:447
msgid "Sat"
msgstr "Сб"
#: include/event.php:448 include/text.php:1130 mod/settings.php:972
msgid "Sunday"
msgstr "Воскресенье"
#: include/event.php:449 include/text.php:1130 mod/settings.php:972
msgid "Monday"
msgstr "Понедельник"
#: include/event.php:450 include/text.php:1130
msgid "Tuesday"
msgstr "Вторник"
#: include/event.php:451 include/text.php:1130
msgid "Wednesday"
msgstr "Среда"
#: include/event.php:452 include/text.php:1130
msgid "Thursday"
msgstr "Четверг"
#: include/event.php:453 include/text.php:1130
msgid "Friday"
msgstr "Пятница"
#: include/event.php:454 include/text.php:1130
msgid "Saturday"
msgstr "Суббота"
#: include/event.php:455
msgid "Jan"
msgstr "Янв"
#: include/event.php:456
msgid "Feb"
msgstr "Фев"
#: include/event.php:457
msgid "Mar"
msgstr "Мрт"
#: include/event.php:458
msgid "Apr"
msgstr "Апр"
#: include/event.php:459 include/event.php:471 include/text.php:1134
msgid "May"
msgstr "Май"
#: include/event.php:460
msgid "Jun"
msgstr "Июн"
#: include/event.php:461
msgid "Jul"
msgstr "Июл"
#: include/event.php:462
msgid "Aug"
msgstr "Авг"
#: include/event.php:463
msgid "Sept"
msgstr "Сен"
#: include/event.php:464
msgid "Oct"
msgstr "Окт"
#: include/event.php:465
msgid "Nov"
msgstr "Нбр"
#: include/event.php:466
msgid "Dec"
msgstr "Дек"
#: include/event.php:467 include/text.php:1134
msgid "January"
msgstr "Январь"
#: include/event.php:468 include/text.php:1134
msgid "February"
msgstr "Февраль"
#: include/event.php:469 include/text.php:1134
msgid "March"
msgstr "Март"
#: include/event.php:470 include/text.php:1134
msgid "April"
msgstr "Апрель"
#: include/event.php:472 include/text.php:1134
msgid "June"
msgstr "Июнь"
#: include/event.php:473 include/text.php:1134
msgid "July"
msgstr "Июль"
#: include/event.php:474 include/text.php:1134
msgid "August"
msgstr "Август"
#: include/event.php:475 include/text.php:1134
msgid "September"
msgstr "Сентябрь"
#: include/event.php:476 include/text.php:1134
msgid "October"
msgstr "Октябрь"
#: include/event.php:477 include/text.php:1134
msgid "November"
msgstr "Ноябрь"
#: include/event.php:478 include/text.php:1134
msgid "December"
msgstr "Декабрь"
#: include/event.php:479 mod/cal.php:283 mod/events.php:388
msgid "today"
msgstr "сегодня"
#: include/event.php:483
msgid "all-day"
msgstr ""
#: include/event.php:485
msgid "No events to display"
msgstr ""
#: include/event.php:574
msgid "l, F j"
msgstr "l, j F"
#: include/event.php:593
msgid "Edit event"
msgstr "Редактировать мероприятие"
#: include/event.php:615 include/text.php:1532 include/text.php:1539
msgid "link to source"
msgstr "ссылка на сообщение"
#: include/event.php:850
msgid "Export"
msgstr ""
#: include/event.php:851
msgid "Export calendar as ical"
msgstr ""
#: include/event.php:852
msgid "Export calendar as csv"
msgstr ""
#: include/nav.php:35 mod/navigation.php:19
msgid "Nothing new here"
msgstr "Ничего нового здесь"
#: include/nav.php:39 mod/navigation.php:23
msgid "Clear notifications"
msgstr "Стереть уведомления"
#: include/nav.php:40 include/text.php:1015
msgid "@name, !forum, #tags, content"
msgstr ""
#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
msgid "Logout"
msgstr "Выход"
#: include/nav.php:78 view/theme/frio/theme.php:246
msgid "End this session"
msgstr "Завершить эту сессию"
#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
#: mod/contacts.php:833 view/theme/frio/theme.php:249
msgid "Status"
msgstr "Посты"
#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
msgid "Your posts and conversations"
msgstr "Данные вашей учётной записи"
#: include/nav.php:82 include/identity.php:605 include/identity.php:691
#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
msgid "Profile"
msgstr "Информация"
#: include/nav.php:82 view/theme/frio/theme.php:250
msgid "Your profile page"
msgstr "Информация о вас"
#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
#: view/theme/frio/theme.php:251
msgid "Photos"
msgstr "Фото"
#: include/nav.php:83 view/theme/frio/theme.php:251
msgid "Your photos"
msgstr "Ваши фотографии"
#: include/nav.php:84 include/identity.php:738 include/identity.php:741
#: view/theme/frio/theme.php:252
msgid "Videos"
msgstr "Видео"
#: include/nav.php:84 view/theme/frio/theme.php:252
msgid "Your videos"
msgstr ""
#: include/nav.php:85 include/nav.php:149 include/identity.php:750
#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
msgid "Events"
msgstr "Мероприятия"
#: include/nav.php:85 view/theme/frio/theme.php:253
msgid "Your events"
msgstr "Ваши события"
#: include/nav.php:86
msgid "Personal notes"
msgstr "Личные заметки"
#: include/nav.php:86
msgid "Your personal notes"
msgstr ""
#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
msgid "Login"
msgstr "Вход"
#: include/nav.php:95
msgid "Sign in"
msgstr "Вход"
#: include/nav.php:105 include/nav.php:161
#: include/NotificationsManager.php:174
msgid "Home"
msgstr "Мой профиль"
#: include/nav.php:105
msgid "Home Page"
msgstr "Главная страница"
#: include/nav.php:109 mod/register.php:289 boot.php:1768
msgid "Register"
msgstr "Регистрация"
#: include/nav.php:109
msgid "Create an account"
msgstr "Создать аккаунт"
#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
msgid "Help"
msgstr "Помощь"
#: include/nav.php:115
msgid "Help and documentation"
msgstr "Помощь и документация"
#: include/nav.php:119
msgid "Apps"
msgstr "Приложения"
#: include/nav.php:119
msgid "Addon applications, utilities, games"
msgstr "Дополнительные приложения, утилиты, игры"
#: include/nav.php:123 include/text.php:1012 mod/search.php:149
msgid "Search"
msgstr "Поиск"
#: include/nav.php:123
msgid "Search site content"
msgstr "Поиск по сайту"
#: include/nav.php:126 include/text.php:1020
msgid "Full Text"
msgstr "Контент"
#: include/nav.php:127 include/text.php:1021
msgid "Tags"
msgstr "Тэги"
#: include/nav.php:128 include/nav.php:192 include/identity.php:783
#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
msgid "Contacts"
msgstr "Контакты"
#: include/nav.php:143 include/nav.php:145 mod/community.php:36
msgid "Community"
msgstr "Сообщество"
#: include/nav.php:143
msgid "Conversations on this site"
msgstr "Беседы на этом сайте"
#: include/nav.php:145
msgid "Conversations on the network"
msgstr ""
#: include/nav.php:149 include/identity.php:753 include/identity.php:764
#: view/theme/frio/theme.php:257
msgid "Events and Calendar"
msgstr "Календарь и события"
#: include/nav.php:152
msgid "Directory"
msgstr "Каталог"
#: include/nav.php:152
msgid "People directory"
msgstr "Каталог участников"
#: include/nav.php:154
msgid "Information"
msgstr "Информация"
#: include/nav.php:154
msgid "Information about this friendica instance"
msgstr ""
#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
#: view/theme/frio/theme.php:256
msgid "Network"
msgstr "Новости"
#: include/nav.php:158 view/theme/frio/theme.php:256
msgid "Conversations from your friends"
msgstr "Посты ваших друзей"
#: include/nav.php:159
msgid "Network Reset"
msgstr "Перезагрузка сети"
#: include/nav.php:159
msgid "Load Network page with no filters"
msgstr "Загрузить страницу сети без фильтров"
#: include/nav.php:166 include/NotificationsManager.php:181
msgid "Introductions"
msgstr "Запросы"
#: include/nav.php:166
msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей"
#: include/nav.php:169 mod/notifications.php:96
msgid "Notifications"
msgstr "Уведомления"
#: include/nav.php:170
msgid "See all notifications"
msgstr "Посмотреть все уведомления"
#: include/nav.php:171 mod/settings.php:902
msgid "Mark as seen"
msgstr "Отметить, как прочитанное"
#: include/nav.php:171
msgid "Mark all system notifications seen"
msgstr "Отметить все системные уведомления, как прочитанные"
#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
msgid "Messages"
msgstr "Сообщения"
#: include/nav.php:175 view/theme/frio/theme.php:258
msgid "Private mail"
msgstr "Личная почта"
#: include/nav.php:176
msgid "Inbox"
msgstr "Входящие"
#: include/nav.php:177
msgid "Outbox"
msgstr "Исходящие"
#: include/nav.php:178 mod/message.php:16
msgid "New Message"
msgstr "Новое сообщение"
#: include/nav.php:181
msgid "Manage"
msgstr "Управлять"
#: include/nav.php:181
msgid "Manage other pages"
msgstr "Управление другими страницами"
#: include/nav.php:184 mod/settings.php:81
msgid "Delegations"
msgstr "Делегирование"
#: include/nav.php:184 mod/delegate.php:130
msgid "Delegate Page Management"
msgstr "Делегировать управление страницей"
#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
msgid "Settings"
msgstr "Настройки"
#: include/nav.php:186 view/theme/frio/theme.php:259
msgid "Account settings"
msgstr "Настройки аккаунта"
#: include/nav.php:189 include/identity.php:282
msgid "Profiles"
msgstr "Профили"
#: include/nav.php:189
msgid "Manage/Edit Profiles"
msgstr "Управление/редактирование профилей"
#: include/nav.php:192 view/theme/frio/theme.php:260
msgid "Manage/edit friends and contacts"
msgstr "Управление / редактирование друзей и контактов"
#: include/nav.php:197 mod/admin.php:186
msgid "Admin"
msgstr "Администратор"
#: include/nav.php:197
msgid "Site setup and configuration"
msgstr "Конфигурация сайта"
#: include/nav.php:200
msgid "Navigation"
msgstr "Навигация"
#: include/nav.php:200
msgid "Site map"
msgstr "Карта сайта"
#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: include/security.php:22
#: include/security.php:61
msgid "Welcome "
msgstr "Добро пожаловать, "
#: include/security.php:23
#: include/security.php:62
msgid "Please upload a profile photo."
msgstr "Пожалуйста, загрузите фотографию профиля."
#: include/security.php:26
#: include/security.php:65
msgid "Welcome back "
msgstr "Добро пожаловать обратно, "
#: include/security.php:373
#: include/security.php:429
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."
#: include/NotificationsManager.php:153
msgid "System"
msgstr "Система"
#: include/NotificationsManager.php:167 mod/profiles.php:703
#: mod/network.php:845
msgid "Personal"
msgstr "Персонал"
#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
#, php-format
msgid "%s commented on %s's post"
msgstr "%s прокомментировал %s сообщение"
#: include/NotificationsManager.php:243
#, php-format
msgid "%s created a new post"
msgstr "%s написал новое сообщение"
#: include/NotificationsManager.php:256
#, php-format
msgid "%s liked %s's post"
msgstr "%s нравится %s сообшение"
#: include/NotificationsManager.php:267
#, php-format
msgid "%s disliked %s's post"
msgstr "%s не нравится %s сообшение"
#: include/NotificationsManager.php:278
#, php-format
msgid "%s is attending %s's event"
msgstr ""
#: include/NotificationsManager.php:289
#, php-format
msgid "%s is not attending %s's event"
msgstr ""
#: include/NotificationsManager.php:300
#, php-format
msgid "%s may attend %s's event"
msgstr ""
#: include/NotificationsManager.php:315
#, php-format
msgid "%s is now friends with %s"
msgstr "%s теперь друзья с %s"
#: include/NotificationsManager.php:748
msgid "Friend Suggestion"
msgstr "Предложение в друзья"
#: include/NotificationsManager.php:781
msgid "Friend/Connect Request"
msgstr "Запрос в друзья / на подключение"
#: include/NotificationsManager.php:781
msgid "New Follower"
msgstr "Новый фолловер"
#: include/dbstructure.php:26
#, php-format
msgid ""
"\n"
"\t\t\tThe friendica developers released update %s recently,\n"
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
#: include/dbstructure.php:31
#, php-format
msgid ""
"The error message is\n"
"[pre]%s[/pre]"
msgstr ""
#: include/dbstructure.php:183
msgid "Errors encountered creating database tables."
msgstr "Обнаружены ошибки при создании таблиц базы данных."
#: include/dbstructure.php:260
msgid "Errors encountered performing database changes."
msgstr ""
#: include/delivery.php:446
msgid "(no subject)"
msgstr "(без темы)"
#: include/diaspora.php:1958
msgid "Sharing notification from Diaspora network"
msgstr "Делиться уведомлениями из сети Diaspora"
#: include/diaspora.php:2864
msgid "Attachments:"
msgstr "Вложения:"
#: include/network.php:595
msgid "view full size"
msgstr "посмотреть в полный размер"
#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
#: include/conversation.php:968 include/conversation.php:984
#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
#: mod/match.php:71 mod/suggest.php:82
msgid "View Profile"
msgstr "Просмотреть профиль"
#: include/Contact.php:397 include/conversation.php:967
msgid "View Status"
msgstr "Просмотреть статус"
#: include/Contact.php:399 include/conversation.php:969
msgid "View Photos"
msgstr "Просмотреть фото"
#: include/Contact.php:400 include/conversation.php:970
msgid "Network Posts"
msgstr "Посты сети"
#: include/Contact.php:401 include/conversation.php:971
msgid "View Contact"
msgstr ""
#: include/Contact.php:402
msgid "Drop Contact"
msgstr "Удалить контакт"
#: include/Contact.php:403 include/conversation.php:972
msgid "Send PM"
msgstr "Отправить ЛС"
#: include/Contact.php:404 include/conversation.php:976
msgid "Poke"
msgstr ""
#: include/Contact.php:775
msgid "Organisation"
msgstr ""
#: include/Contact.php:778
msgid "News"
msgstr ""
#: include/Contact.php:781
msgid "Forum"
msgstr "Форум"
#: include/api.php:1018
#, php-format
msgid "Daily posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1038
#, php-format
msgid "Weekly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/api.php:1059
#, php-format
msgid "Monthly posting limit of %d posts reached. The post was rejected."
msgstr ""
#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
msgid "Image/photo"
msgstr "Изображение / Фото"
#: include/bbcode.php:467
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
msgstr ""
#: include/bbcode.php:1017 include/bbcode.php:1037
msgid "$1 wrote:"
msgstr "$1 написал:"
#: include/bbcode.php:1066 include/bbcode.php:1067
msgid "Encrypted content"
msgstr "Зашифрованный контент"
#: include/bbcode.php:1169
msgid "Invalid source protocol"
msgstr ""
#: include/bbcode.php:1179
msgid "Invalid link protocol"
msgstr ""
#: include/conversation.php:147
#, php-format
msgid "%1$s attends %2$s's %3$s"
msgstr ""
#: include/conversation.php:150
#, php-format
msgid "%1$s doesn't attend %2$s's %3$s"
msgstr ""
#: include/conversation.php:153
#, php-format
msgid "%1$s attends maybe %2$s's %3$s"
msgstr ""
#: include/conversation.php:185 mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s и %2$s теперь друзья"
#: include/conversation.php:219
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: include/conversation.php:239 mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: include/conversation.php:278 mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s tagged %2$s's %3$s в %4$s"
#: 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:585 mod/content.php:372 mod/profiles.php:346
#: mod/photos.php:1607
msgid "Likes"
msgstr "Лайки"
#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
#: mod/photos.php:1607
msgid "Dislikes"
msgstr "Дизлайк"
#: include/conversation.php:586 include/conversation.php:1481
#: mod/content.php:373 mod/photos.php:1608
msgid "Attending"
msgid_plural "Attending"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Not attending"
msgstr ""
#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
msgid "Might attend"
msgstr ""
#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
#: mod/photos.php:1681 object/Item.php:133
msgid "Select"
msgstr "Выберите"
#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
#: object/Item.php:134
msgid "Delete"
msgstr "Удалить"
#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
#: mod/content.php:911 object/Item.php:367 object/Item.php:368
#, php-format
msgid "View %s's profile @ %s"
msgstr "Просмотреть профиль %s [@ %s]"
#: include/conversation.php:765 object/Item.php:355
msgid "Categories:"
msgstr "Категории:"
#: include/conversation.php:766 object/Item.php:356
msgid "Filed under:"
msgstr "В рубрике:"
#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
#: object/Item.php:381
#, php-format
msgid "%s from %s"
msgstr "%s с %s"
#: include/conversation.php:789 mod/content.php:513
msgid "View in context"
msgstr "Смотреть в контексте"
#: include/conversation.php:791 include/conversation.php:1264
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
#: mod/message.php:548 mod/content.php:515 mod/content.php:948
#: mod/photos.php:1570 object/Item.php:406
msgid "Please wait"
msgstr "Пожалуйста, подождите"
#: include/conversation.php:870
msgid "remove"
msgstr "удалить"
#: include/conversation.php:874
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: include/conversation.php:966
msgid "Follow Thread"
msgstr ""
#: include/conversation.php:1097
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: include/conversation.php:1100
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: include/conversation.php:1103
#, php-format
msgid "%s attends."
msgstr ""
#: include/conversation.php:1106
#, php-format
msgid "%s doesn't attend."
msgstr ""
#: include/conversation.php:1109
#, php-format
msgid "%s attends maybe."
msgstr ""
#: include/conversation.php:1119
msgid "and"
msgstr "и"
#: include/conversation.php:1125
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
#: include/conversation.php:1134
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d людям</span> нравится это"
#: include/conversation.php:1135
#, php-format
msgid "%s like this."
msgstr ""
#: include/conversation.php:1138
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d людям</span> не нравится это"
#: include/conversation.php:1139
#, php-format
msgid "%s don't like this."
msgstr ""
#: include/conversation.php:1142
#, php-format
msgid "<span %1$s>%2$d people</span> attend"
msgstr ""
#: include/conversation.php:1143
#, php-format
msgid "%s attend."
msgstr ""
#: include/conversation.php:1146
#, php-format
msgid "<span %1$s>%2$d people</span> don't attend"
msgstr ""
#: include/conversation.php:1147
#, php-format
msgid "%s don't attend."
msgstr ""
#: include/conversation.php:1150
#, php-format
msgid "<span %1$s>%2$d people</span> attend maybe"
msgstr ""
#: include/conversation.php:1151
#, php-format
msgid "%s anttend maybe."
msgstr ""
#: include/conversation.php:1190 include/conversation.php:1208
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: include/conversation.php:1191 include/conversation.php:1209
#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
#: mod/message.php:299 mod/message.php:442 mod/message.php:450
msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:"
#: include/conversation.php:1192 include/conversation.php:1210
msgid "Please enter a video link/URL:"
msgstr "Введите ссылку на видео link/URL:"
#: include/conversation.php:1193 include/conversation.php:1211
msgid "Please enter an audio link/URL:"
msgstr "Введите ссылку на аудио link/URL:"
#: include/conversation.php:1194 include/conversation.php:1212
msgid "Tag term:"
msgstr ""
#: include/conversation.php:1195 include/conversation.php:1213
#: mod/filer.php:30
msgid "Save to Folder:"
msgstr "Сохранить в папку:"
#: include/conversation.php:1196 include/conversation.php:1214
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: include/conversation.php:1197
msgid "Delete item(s)?"
msgstr "Удалить елемент(ты)?"
#: include/conversation.php:1245 mod/photos.php:1569
msgid "Share"
msgstr "Поделиться"
#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
#: mod/message.php:354 mod/message.php:545
msgid "Upload photo"
msgstr "Загрузить фото"
#: include/conversation.php:1247 mod/editpost.php:111
msgid "upload photo"
msgstr "загрузить фото"
#: include/conversation.php:1248 mod/editpost.php:112
msgid "Attach file"
msgstr "Прикрепить файл"
#: include/conversation.php:1249 mod/editpost.php:113
msgid "attach file"
msgstr "приложить файл"
#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
#: mod/message.php:355 mod/message.php:546
msgid "Insert web link"
msgstr "Вставить веб-ссылку"
#: include/conversation.php:1251 mod/editpost.php:115
msgid "web link"
msgstr "веб-ссылка"
#: include/conversation.php:1252 mod/editpost.php:116
msgid "Insert video link"
msgstr "Вставить ссылку видео"
#: include/conversation.php:1253 mod/editpost.php:117
msgid "video link"
msgstr "видео-ссылка"
#: include/conversation.php:1254 mod/editpost.php:118
msgid "Insert audio link"
msgstr "Вставить ссылку аудио"
#: include/conversation.php:1255 mod/editpost.php:119
msgid "audio link"
msgstr "аудио-ссылка"
#: include/conversation.php:1256 mod/editpost.php:120
msgid "Set your location"
msgstr "Задать ваше местоположение"
#: include/conversation.php:1257 mod/editpost.php:121
msgid "set location"
msgstr "установить местонахождение"
#: include/conversation.php:1258 mod/editpost.php:122
msgid "Clear browser location"
msgstr "Очистить местонахождение браузера"
#: include/conversation.php:1259 mod/editpost.php:123
msgid "clear location"
msgstr "убрать местонахождение"
#: include/conversation.php:1261 mod/editpost.php:137
msgid "Set title"
msgstr "Установить заголовок"
#: include/conversation.php:1263 mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Категории (список через запятую)"
#: include/conversation.php:1265 mod/editpost.php:125
msgid "Permission settings"
msgstr "Настройки разрешений"
#: include/conversation.php:1266 mod/editpost.php:154
msgid "permissions"
msgstr "разрешения"
#: include/conversation.php:1274 mod/editpost.php:134
msgid "Public post"
msgstr "Публичное сообщение"
#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
#: mod/photos.php:1725 object/Item.php:729
msgid "Preview"
msgstr "Предварительный просмотр"
#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
#: mod/follow.php:121
msgid "Cancel"
msgstr "Отмена"
#: include/conversation.php:1289
msgid "Post to Groups"
msgstr "Пост для групп"
#: include/conversation.php:1290
msgid "Post to Contacts"
msgstr "Пост для контактов"
#: include/conversation.php:1291
msgid "Private post"
msgstr "Личное сообщение"
#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
msgid "Message"
msgstr "Сообщение"
#: include/conversation.php:1297 mod/editpost.php:153
msgid "Browser"
msgstr ""
#: include/conversation.php:1453
msgid "View all"
msgstr ""
#: include/conversation.php:1475
msgid "Like"
msgid_plural "Likes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:1478
msgid "Dislike"
msgid_plural "Dislikes"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/conversation.php:1484
msgid "Not Attending"
msgid_plural "Not Attending"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: include/dfrn.php:1108
#, php-format
msgid "%s\\'s birthday"
msgstr ""
#: include/features.php:70
msgid "General Features"
msgstr "Основные возможности"
#: include/features.php:72
msgid "Multiple Profiles"
msgstr "Несколько профилей"
#: include/features.php:72
msgid "Ability to create multiple profiles"
msgstr "Возможность создания нескольких профилей"
#: include/features.php:73
msgid "Photo Location"
msgstr ""
#: include/features.php:73
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:74
msgid "Export Public Calendar"
msgstr ""
#: include/features.php:74
msgid "Ability for visitors to download the public calendar"
msgstr ""
#: include/features.php:79
msgid "Post Composition Features"
msgstr "Составление сообщений"
#: include/features.php:80
msgid "Richtext Editor"
msgstr "Редактор RTF"
#: include/features.php:80
msgid "Enable richtext editor"
msgstr "Включить редактор RTF"
#: include/features.php:81
msgid "Post Preview"
msgstr "Предварительный просмотр"
#: include/features.php:81
msgid "Allow previewing posts and comments before publishing them"
msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией"
#: include/features.php:82
msgid "Auto-mention Forums"
msgstr ""
#: include/features.php:82
msgid ""
"Add/remove mention when a forum page is selected/deselected in ACL window."
msgstr ""
#: include/features.php:87
msgid "Network Sidebar Widgets"
msgstr "Виджет боковой панели \"Сеть\""
#: include/features.php:88
msgid "Search by Date"
msgstr "Поиск по датам"
#: include/features.php:88
msgid "Ability to select posts by date ranges"
msgstr "Возможность выбора постов по диапазону дат"
#: include/features.php:89 include/features.php:119
msgid "List Forums"
msgstr ""
#: include/features.php:89
msgid "Enable widget to display the forums your are connected with"
msgstr ""
#: include/features.php:90
msgid "Group Filter"
msgstr "Фильтр групп"
#: include/features.php:90
msgid "Enable widget to display Network posts only from selected group"
msgstr "Включить виджет для отображения сообщений сети только от выбранной группы"
#: include/features.php:91
msgid "Network Filter"
msgstr "Фильтр сети"
#: include/features.php:91
msgid "Enable widget to display Network posts only from selected network"
msgstr "Включить виджет для отображения сообщений сети только от выбранной сети"
#: include/features.php:92 mod/search.php:34 mod/network.php:200
msgid "Saved Searches"
msgstr "запомненные поиски"
#: include/features.php:92
msgid "Save search terms for re-use"
msgstr "Сохранить условия поиска для повторного использования"
#: include/features.php:97
msgid "Network Tabs"
msgstr "Сетевые вкладки"
#: include/features.php:98
msgid "Network Personal Tab"
msgstr "Персональные сетевые вкладки"
#: include/features.php:98
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Включить вкладку для отображения только сообщений сети, с которой вы взаимодействовали"
#: include/features.php:99
msgid "Network New Tab"
msgstr "Новая вкладка сеть"
#: include/features.php:99
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)"
#: include/features.php:100
msgid "Network Shared Links Tab"
msgstr "Вкладка shared ссылок сети"
#: include/features.php:100
msgid "Enable tab to display only Network posts with links in them"
msgstr "Включить вкладку для отображения только сообщений сети со ссылками на них"
#: include/features.php:105
msgid "Post/Comment Tools"
msgstr "Инструменты пост/комментарий"
#: include/features.php:106
msgid "Multiple Deletion"
msgstr "Множественное удаление"
#: include/features.php:106
msgid "Select and delete multiple posts/comments at once"
msgstr "Выбрать и удалить несколько постов/комментариев одновременно."
#: include/features.php:107
msgid "Edit Sent Posts"
msgstr "Редактировать отправленные посты"
#: include/features.php:107
msgid "Edit and correct posts and comments after sending"
msgstr "Редактировать и править посты и комментарии после отправления"
#: include/features.php:108
msgid "Tagging"
msgstr "Отмеченное"
#: include/features.php:108
msgid "Ability to tag existing posts"
msgstr "Возможность отмечать существующие посты"
#: include/features.php:109
msgid "Post Categories"
msgstr "Категории постов"
#: include/features.php:109
msgid "Add categories to your posts"
msgstr "Добавить категории вашего поста"
#: include/features.php:110
msgid "Ability to file posts under folders"
msgstr ""
#: include/features.php:111
msgid "Dislike Posts"
msgstr "Посты дизлайк"
#: include/features.php:111
msgid "Ability to dislike posts/comments"
msgstr "Возможность дизлайка постов/комментариев"
#: include/features.php:112
msgid "Star Posts"
msgstr "Популярные посты"
#: include/features.php:112
msgid "Ability to mark special posts with a star indicator"
msgstr "Возможность отметить специальные сообщения индикатором популярности"
#: include/features.php:113
msgid "Mute Post Notifications"
msgstr ""
#: include/features.php:113
msgid "Ability to mute notifications for a thread"
msgstr ""
#: include/features.php:118
msgid "Advanced Profile Settings"
msgstr "Расширенные настройки профиля"
#: include/features.php:119
msgid "Show visitors public community forums at the Advanced Profile Page"
msgstr ""
#: include/follow.php:81 mod/dfrn_request.php:509
msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля."
#: include/follow.php:86
msgid "Connect URL missing."
msgstr "Connect-URL отсутствует."
#: include/follow.php:113
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
#: include/follow.php:114 include/follow.php:134
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы."
#: include/follow.php:132
msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации."
#: include/follow.php:136
msgid "An author or name was not found."
msgstr "Автор или имя не найдены."
#: include/follow.php:138
msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу."
#: include/follow.php:140
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: include/follow.php:141
msgid "Use mailto: in front of address to force email check."
msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."
#: include/follow.php:147
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: include/follow.php:157
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
#: include/follow.php:258
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
#: include/identity.php:42
msgid "Requested account is not available."
msgstr "Запрашиваемый профиль недоступен."
#: include/identity.php:51 mod/profile.php:21
msgid "Requested profile is not available."
msgstr "Запрашиваемый профиль недоступен."
#: include/identity.php:95 include/identity.php:311 include/identity.php:688
msgid "Edit profile"
msgstr "Редактировать профиль"
#: include/identity.php:251
msgid "Atom feed"
msgstr ""
#: include/identity.php:282
msgid "Manage/edit profiles"
msgstr "Управление / редактирование профилей"
#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
msgid "Change profile photo"
msgstr "Изменить фото профиля"
#: include/identity.php:288 mod/profiles.php:796
msgid "Create New Profile"
msgstr "Создать новый профиль"
#: include/identity.php:298 mod/profiles.php:785
msgid "Profile Image"
msgstr "Фото профиля"
#: include/identity.php:301 mod/profiles.php:787
msgid "visible to everybody"
msgstr "видимый всем"
#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
msgid "Edit visibility"
msgstr "Редактировать видимость"
#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
#: mod/directory.php:139
msgid "Gender:"
msgstr "Пол:"
#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
msgid "Status:"
msgstr "Статус:"
#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
msgid "Homepage:"
msgstr "Домашняя страничка:"
#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
#: mod/directory.php:145 mod/contacts.php:632
msgid "About:"
msgstr "О себе:"
#: include/identity.php:339 mod/contacts.php:630
msgid "XMPP:"
msgstr ""
#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
msgid "Network:"
msgstr "Сеть:"
#: include/identity.php:451 include/identity.php:535
msgid "g A l F d"
msgstr "g A l F d"
#: include/identity.php:452 include/identity.php:536
msgid "F d"
msgstr "F d"
#: include/identity.php:497 include/identity.php:582
msgid "[today]"
msgstr "[сегодня]"
#: include/identity.php:509
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
#: include/identity.php:510
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
#: include/identity.php:569
msgid "[No description]"
msgstr "[без описания]"
#: include/identity.php:593
msgid "Event Reminders"
msgstr "Напоминания о мероприятиях"
#: include/identity.php:594
msgid "Events this week:"
msgstr "Мероприятия на этой неделе:"
#: include/identity.php:614 mod/settings.php:1279
msgid "Full Name:"
msgstr "Полное имя:"
#: include/identity.php:621
msgid "j F, Y"
msgstr "j F, Y"
#: include/identity.php:622
msgid "j F"
msgstr "j F"
#: include/identity.php:633
msgid "Age:"
msgstr "Возраст:"
#: include/identity.php:642
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: include/identity.php:645 mod/profiles.php:710
msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:"
#: include/identity.php:649 mod/profiles.php:737
msgid "Hometown:"
msgstr "Родной город:"
#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
#: mod/follow.php:134
msgid "Tags:"
msgstr "Ключевые слова: "
#: include/identity.php:653 mod/profiles.php:738
msgid "Political Views:"
msgstr "Политические взгляды:"
#: include/identity.php:655
msgid "Religion:"
msgstr "Религия:"
#: include/identity.php:659
msgid "Hobbies/Interests:"
msgstr "Хобби / Интересы:"
#: include/identity.php:661 mod/profiles.php:742
msgid "Likes:"
msgstr "Нравится:"
#: include/identity.php:663 mod/profiles.php:743
msgid "Dislikes:"
msgstr "Не нравится:"
#: include/identity.php:666
msgid "Contact information and Social Networks:"
msgstr "Информация о контакте и социальных сетях:"
#: include/identity.php:668
msgid "Musical interests:"
msgstr "Музыкальные интересы:"
#: include/identity.php:670
msgid "Books, literature:"
msgstr "Книги, литература:"
#: include/identity.php:672
msgid "Television:"
msgstr "Телевидение:"
#: include/identity.php:674
msgid "Film/dance/culture/entertainment:"
msgstr "Кино / Танцы / Культура / Развлечения:"
#: include/identity.php:676
msgid "Love/Romance:"
msgstr "Любовь / Романтика:"
#: include/identity.php:678
msgid "Work/employment:"
msgstr "Работа / Занятость:"
#: include/identity.php:680
msgid "School/education:"
msgstr "Школа / Образование:"
#: include/identity.php:684
msgid "Forums:"
msgstr ""
#: include/identity.php:692 mod/events.php:507
msgid "Basic"
msgstr ""
#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
#: mod/contacts.php:870
msgid "Advanced"
msgstr "Расширенный"
#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
msgid "Status Messages and Posts"
msgstr "Ваши посты"
#: include/identity.php:725 mod/contacts.php:844
msgid "Profile Details"
msgstr "Информация о вас"
#: include/identity.php:733 mod/photos.php:87
msgid "Photo Albums"
msgstr "Фотоальбомы"
#: include/identity.php:772 mod/notes.php:46
msgid "Personal Notes"
msgstr "Личные заметки"
#: include/identity.php:775
msgid "Only You Can See This"
msgstr "Только вы можете это видеть"
#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
msgid "[Name Withheld]"
msgstr "[Имя не разглашается]"
#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
#: mod/display.php:103 mod/display.php:279 mod/display.php:478
#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
msgid "Item not found."
msgstr "Пункт не найден."
#: include/items.php:1969
msgid "Do you really want to delete this item?"
msgstr "Вы действительно хотите удалить этот элемент?"
#: include/items.php:1971 mod/api.php:105 mod/message.php:217
#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
msgid "Yes"
msgstr "Да"
#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
#: mod/profile_photo.php:19 mod/profile_photo.php:175
#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
msgid "Permission denied."
msgstr "Нет разрешения."
#: include/items.php:2239
msgid "Archives"
msgstr "Архивы"
#: include/oembed.php:264
msgid "Embedded content"
msgstr "Встроенное содержание"
#: include/oembed.php:272
msgid "Embedding disabled"
msgstr "Встраивание отключено"
#: include/ostatus.php:1825
#, php-format
msgid "%s is now following %s."
msgstr ""
#: include/ostatus.php:1826
msgid "following"
msgstr "следует"
#: include/ostatus.php:1829
#, php-format
msgid "%s stopped following %s."
msgstr ""
#: include/ostatus.php:1830
msgid "stopped following"
msgstr "остановлено следование"
#: include/text.php:304
#: include/text.php:307
msgid "newer"
msgstr "новее"
#: include/text.php:306
#: include/text.php:308
msgid "older"
msgstr "старее"
#: include/text.php:311
msgid "prev"
msgstr "пред."
#: include/text.php:313
msgid "first"
msgstr "первый"
#: include/text.php:345
msgid "last"
msgstr "последний"
#: include/text.php:314
msgid "prev"
msgstr "пред."
#: include/text.php:348
msgid "next"
msgstr "след."
#: include/text.php:349
msgid "last"
msgstr "последний"
#: include/text.php:403
msgid "Loading more entries..."
msgstr ""
msgstr "Загружаю больше сообщений..."
#: include/text.php:404
msgid "The end"
msgstr ""
msgstr "Конец"
#: include/text.php:889
msgid "No contacts"
msgstr "Нет контактов"
#: include/text.php:912
#: include/text.php:914
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
@ -2796,169 +2814,168 @@ msgstr[1] "%d контактов"
msgstr[2] "%d контактов"
msgstr[3] "%d контактов"
#: include/text.php:925
#: include/text.php:927
msgid "View Contacts"
msgstr "Просмотр контактов"
#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
#: mod/editpost.php:109
#: include/text.php:1015 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
msgid "Save"
msgstr "Сохранить"
#: include/text.php:1076
#: include/text.php:1078
msgid "poke"
msgstr "poke"
#: include/text.php:1076
#: include/text.php:1078
msgid "poked"
msgstr ""
msgstr "ткнут"
#: include/text.php:1077
#: include/text.php:1079
msgid "ping"
msgstr "пинг"
#: include/text.php:1077
#: include/text.php:1079
msgid "pinged"
msgstr "пингуется"
#: include/text.php:1078
#: include/text.php:1080
msgid "prod"
msgstr ""
#: include/text.php:1078
msgid "prodded"
msgstr ""
#: include/text.php:1079
msgid "slap"
msgstr ""
#: include/text.php:1079
msgid "slapped"
msgstr ""
msgstr "толкать"
#: include/text.php:1080
msgid "prodded"
msgstr "толкнут"
#: include/text.php:1081
msgid "slap"
msgstr "шлепнуть"
#: include/text.php:1081
msgid "slapped"
msgstr "шлепнут"
#: include/text.php:1082
msgid "finger"
msgstr ""
#: include/text.php:1080
#: include/text.php:1082
msgid "fingered"
msgstr ""
#: include/text.php:1081
#: include/text.php:1083
msgid "rebuff"
msgstr ""
#: include/text.php:1081
#: include/text.php:1083
msgid "rebuffed"
msgstr ""
#: include/text.php:1095
#: include/text.php:1097
msgid "happy"
msgstr ""
#: include/text.php:1096
#: include/text.php:1098
msgid "sad"
msgstr ""
#: include/text.php:1097
#: include/text.php:1099
msgid "mellow"
msgstr ""
#: include/text.php:1098
#: include/text.php:1100
msgid "tired"
msgstr ""
#: include/text.php:1099
#: include/text.php:1101
msgid "perky"
msgstr ""
#: include/text.php:1100
#: include/text.php:1102
msgid "angry"
msgstr ""
#: include/text.php:1101
#: include/text.php:1103
msgid "stupified"
msgstr ""
#: include/text.php:1102
#: include/text.php:1104
msgid "puzzled"
msgstr ""
#: include/text.php:1103
#: include/text.php:1105
msgid "interested"
msgstr ""
#: include/text.php:1104
#: include/text.php:1106
msgid "bitter"
msgstr ""
#: include/text.php:1105
#: include/text.php:1107
msgid "cheerful"
msgstr ""
#: include/text.php:1106
#: include/text.php:1108
msgid "alive"
msgstr ""
#: include/text.php:1107
#: include/text.php:1109
msgid "annoyed"
msgstr ""
#: include/text.php:1108
#: include/text.php:1110
msgid "anxious"
msgstr ""
#: include/text.php:1109
#: include/text.php:1111
msgid "cranky"
msgstr ""
#: include/text.php:1110
#: include/text.php:1112
msgid "disturbed"
msgstr ""
#: include/text.php:1111
#: include/text.php:1113
msgid "frustrated"
msgstr ""
#: include/text.php:1112
#: include/text.php:1114
msgid "motivated"
msgstr ""
#: include/text.php:1113
#: include/text.php:1115
msgid "relaxed"
msgstr ""
#: include/text.php:1114
#: include/text.php:1116
msgid "surprised"
msgstr ""
#: include/text.php:1324 mod/videos.php:380
#: include/text.php:1326 mod/videos.php:384
msgid "View Video"
msgstr "Просмотреть видео"
#: include/text.php:1356
#: include/text.php:1358
msgid "bytes"
msgstr "байт"
#: include/text.php:1388 include/text.php:1400
#: include/text.php:1390 include/text.php:1402
msgid "Click to open/close"
msgstr "Нажмите, чтобы открыть / закрыть"
#: include/text.php:1526
#: include/text.php:1528
msgid "View on separate page"
msgstr ""
#: include/text.php:1527
#: include/text.php:1529
msgid "view on separate page"
msgstr ""
#: include/text.php:1806
#: include/text.php:1808
msgid "activity"
msgstr "активность"
#: include/text.php:1808 mod/content.php:623 object/Item.php:431
#: object/Item.php:444
#: include/text.php:1810 mod/content.php:623 object/Item.php:419
#: object/Item.php:431
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
@ -2966,15 +2983,53 @@ msgstr[1] ""
msgstr[2] "комментарий"
msgstr[3] "комментарий"
#: include/text.php:1809
#: include/text.php:1811
msgid "post"
msgstr "сообщение"
#: include/text.php:1977
#: include/text.php:1979
msgid "Item filed"
msgstr ""
#: include/user.php:39 mod/settings.php:373
#: include/uimport.php:91
msgid "Error decoding account file"
msgstr "Ошибка расшифровки файла аккаунта"
#: include/uimport.php:97
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?"
#: include/uimport.php:113 include/uimport.php:124
msgid "Error! Cannot check nickname"
msgstr "Ошибка! Невозможно проверить никнейм"
#: include/uimport.php:117 include/uimport.php:128
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "Пользователь '%s' уже существует на этом сервере!"
#: include/uimport.php:150
msgid "User creation error"
msgstr "Ошибка создания пользователя"
#: include/uimport.php:170
msgid "User profile creation error"
msgstr "Ошибка создания профиля пользователя"
#: include/uimport.php:219
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d контакт не импортирован"
msgstr[1] "%d контакты не импортированы"
msgstr[2] "%d контакты не импортированы"
msgstr[3] "%d контакты не импортированы"
#: include/uimport.php:289
msgid "Done. You can now login with your username and password"
msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем"
#: include/user.php:39 mod/settings.php:375
msgid "Passwords do not match. Password unchanged."
msgstr "Пароли не совпадают. Пароль не изменен."
@ -3040,7 +3095,7 @@ msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей без
msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
#: include/user.php:256 view/theme/duepuntozero/config.php:44
#: include/user.php:256 view/theme/duepuntozero/config.php:43
msgid "default"
msgstr "значение по умолчанию"
@ -3048,16 +3103,15 @@ msgstr "значение по умолчанию"
msgid "An error occurred creating your default profile. Please try again."
msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."
#: include/user.php:326 include/user.php:333 include/user.php:340
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
#: mod/profile_photo.php:210 mod/profile_photo.php:302
#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
#: mod/photos.php:1819
#: include/user.php:326 include/user.php:334 include/user.php:342
#: mod/photos.php:68 mod/photos.php:182 mod/photos.php:768 mod/photos.php:1231
#: mod/photos.php:1252 mod/photos.php:1839 mod/profile_photo.php:74
#: mod/profile_photo.php:82 mod/profile_photo.php:90 mod/profile_photo.php:215
#: mod/profile_photo.php:310 mod/profile_photo.php:320
msgid "Profile Photos"
msgstr "Фотографии профиля"
#: include/user.php:414
#: include/user.php:417
#, php-format
msgid ""
"\n"
@ -3066,12 +3120,12 @@ msgid ""
"\t"
msgstr ""
#: include/user.php:424
#: include/user.php:427
#, php-format
msgid "Registration at %s"
msgstr ""
#: include/user.php:434
#: include/user.php:437
#, php-format
msgid ""
"\n"
@ -3080,7 +3134,7 @@ msgid ""
"\t"
msgstr ""
#: include/user.php:438
#: include/user.php:441
#, php-format
msgid ""
"\n"
@ -3110,104 +3164,3242 @@ msgid ""
"\t\tThank you and welcome to %2$s."
msgstr ""
#: include/user.php:470 mod/admin.php:1213
#: include/user.php:473 mod/admin.php:1223
#, php-format
msgid "Registration details for %s"
msgstr "Подробности регистрации для %s"
#: mod/oexchange.php:25
msgid "Post successful."
msgstr "Успешно добавлено."
#: index.php:248 mod/apps.php:7
msgid "You must be logged in to use addons. "
msgstr "Вы должны войти в систему, чтобы использовать аддоны."
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr "Доступ запрещен."
#: index.php:292 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
msgid "Not Found"
msgstr "Не найдено"
#: mod/home.php:35
#: index.php:295 mod/help.php:56
msgid "Page not found."
msgstr "Страница не найдена."
#: index.php:406 mod/group.php:76 mod/profperm.php:20
msgid "Permission denied"
msgstr "Доступ запрещен"
#: index.php:457
msgid "toggle mobile"
msgstr "мобильная версия"
#: mod/admin.php:96
msgid "Theme settings updated."
msgstr "Настройки темы обновлены."
#: mod/admin.php:162 mod/admin.php:967
msgid "Site"
msgstr "Сайт"
#: mod/admin.php:163 mod/admin.php:901 mod/admin.php:1413 mod/admin.php:1429
msgid "Users"
msgstr "Пользователи"
#: mod/admin.php:164 mod/admin.php:1531 mod/admin.php:1594 mod/settings.php:74
msgid "Plugins"
msgstr "Плагины"
#: mod/admin.php:165 mod/admin.php:1807 mod/admin.php:1857
msgid "Themes"
msgstr "Темы"
#: mod/admin.php:166 mod/settings.php:52
msgid "Additional features"
msgstr "Дополнительные возможности"
#: mod/admin.php:167
msgid "DB updates"
msgstr "Обновление БД"
#: mod/admin.php:168 mod/admin.php:416
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:169 mod/admin.php:382
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:183 mod/admin.php:194 mod/admin.php:1931
msgid "Logs"
msgstr "Журналы"
#: mod/admin.php:184 mod/admin.php:1999
msgid "View Logs"
msgstr "Просмотр логов"
#: mod/admin.php:185
msgid "probe address"
msgstr ""
#: mod/admin.php:186
msgid "check webfinger"
msgstr ""
#: mod/admin.php:193
msgid "Plugin Features"
msgstr "Возможности плагина"
#: mod/admin.php:195
msgid "diagnostics"
msgstr "Диагностика"
#: mod/admin.php:196
msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: mod/admin.php:312
msgid "unknown"
msgstr ""
#: mod/admin.php:375
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr ""
#: mod/admin.php:376
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr ""
#: mod/admin.php:381 mod/admin.php:415 mod/admin.php:493 mod/admin.php:966
#: mod/admin.php:1412 mod/admin.php:1530 mod/admin.php:1593 mod/admin.php:1806
#: mod/admin.php:1856 mod/admin.php:1930 mod/admin.php:1998
msgid "Administration"
msgstr "Администрация"
#: mod/admin.php:388
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать на %s!"
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr ""
#: mod/notify.php:60
msgid "No more system notifications."
msgstr "Системных уведомлений больше нет."
#: mod/admin.php:418
msgid "ID"
msgstr ""
#: mod/notify.php:64 mod/notifications.php:111
msgid "System Notifications"
msgstr "Уведомления системы"
#: mod/admin.php:419
msgid "Recipient Name"
msgstr ""
#: mod/search.php:25 mod/network.php:191
msgid "Remove term"
msgstr "Удалить элемент"
#: mod/admin.php:420
msgid "Recipient Profile"
msgstr ""
#: mod/search.php:93 mod/search.php:99 mod/community.php:22
#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
#: mod/admin.php:422
msgid "Created"
msgstr ""
#: mod/admin.php:423
msgid "Last Tried"
msgstr ""
#: mod/admin.php:424
msgid ""
"This page lists the content of the queue for outgoing postings. These are "
"postings the initial delivery failed for. They will be resend later and "
"eventually deleted if the delivery fails permanently."
msgstr ""
#: mod/admin.php:449
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
"InnoDB. As Friendica will use InnoDB only features in the future, you should"
" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
"converting the table engines. You may also use the "
"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
"Friendica installation.<br />"
msgstr ""
#: mod/admin.php:454
msgid ""
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr ""
#: mod/admin.php:458 mod/admin.php:1362
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: mod/admin.php:459 mod/admin.php:1363
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: mod/admin.php:460 mod/admin.php:1364
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: mod/admin.php:461 mod/admin.php:1365
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: mod/admin.php:462
msgid "Blog Account"
msgstr "Аккаунт блога"
#: mod/admin.php:463
msgid "Private Forum"
msgstr "Личный форум"
#: mod/admin.php:488
msgid "Message queues"
msgstr "Очереди сообщений"
#: mod/admin.php:494
msgid "Summary"
msgstr "Резюме"
#: mod/admin.php:496
msgid "Registered users"
msgstr "Зарегистрированные пользователи"
#: mod/admin.php:498
msgid "Pending registrations"
msgstr "Ожидающие регистрации"
#: mod/admin.php:499
msgid "Version"
msgstr "Версия"
#: mod/admin.php:504
msgid "Active plugins"
msgstr "Активные плагины"
#: mod/admin.php:529
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>"
#: mod/admin.php:819
msgid "RINO2 needs mcrypt php extension to work."
msgstr "Для функционирования RINO2 необходим пакет php5-mcrypt"
#: mod/admin.php:827
msgid "Site settings updated."
msgstr "Установки сайта обновлены."
#: mod/admin.php:855 mod/settings.php:943
msgid "No special theme for mobile devices"
msgstr "Нет специальной темы для мобильных устройств"
#: mod/admin.php:884
msgid "No community page"
msgstr ""
#: mod/admin.php:885
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:886
msgid "Global community page"
msgstr ""
#: mod/admin.php:891 mod/contacts.php:538
msgid "Never"
msgstr "Никогда"
#: mod/admin.php:892
msgid "At post arrival"
msgstr ""
#: mod/admin.php:900 mod/contacts.php:565
msgid "Disabled"
msgstr "Отключенный"
#: mod/admin.php:902
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:903
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:907
msgid "One month"
msgstr "Один месяц"
#: mod/admin.php:908
msgid "Three months"
msgstr "Три месяца"
#: mod/admin.php:909
msgid "Half a year"
msgstr "Пол года"
#: mod/admin.php:910
msgid "One year"
msgstr "Один год"
#: mod/admin.php:915
msgid "Multi user instance"
msgstr "Многопользовательский вид"
#: mod/admin.php:938
msgid "Closed"
msgstr "Закрыто"
#: mod/admin.php:939
msgid "Requires approval"
msgstr "Требуется подтверждение"
#: mod/admin.php:940
msgid "Open"
msgstr "Открыто"
#: mod/admin.php:944
msgid "No SSL policy, links will track page SSL state"
msgstr "Нет режима SSL, состояние SSL не будет отслеживаться"
#: mod/admin.php:945
msgid "Force all links to use SSL"
msgstr "Заставить все ссылки использовать SSL"
#: mod/admin.php:946
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"
#: mod/admin.php:968 mod/admin.php:1595 mod/admin.php:1858 mod/admin.php:1932
#: mod/admin.php:2085 mod/settings.php:681 mod/settings.php:792
#: mod/settings.php:841 mod/settings.php:908 mod/settings.php:1005
#: mod/settings.php:1271
msgid "Save Settings"
msgstr "Сохранить настройки"
#: mod/admin.php:969 mod/register.php:272
msgid "Registration"
msgstr "Регистрация"
#: mod/admin.php:970
msgid "File upload"
msgstr "Загрузка файлов"
#: mod/admin.php:971
msgid "Policies"
msgstr "Политики"
#: mod/admin.php:973
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:974
msgid "Performance"
msgstr "Производительность"
#: mod/admin.php:975
msgid "Worker"
msgstr ""
#: mod/admin.php:976
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."
#: mod/admin.php:979
msgid "Site name"
msgstr "Название сайта"
#: mod/admin.php:980
msgid "Host name"
msgstr "Имя хоста"
#: mod/admin.php:981
msgid "Sender Email"
msgstr "Системный Email"
#: mod/admin.php:981
msgid ""
"The email address your server shall use to send notification emails from."
msgstr "Адрес с которого будут приходить письма пользователям."
#: mod/admin.php:982
msgid "Banner/Logo"
msgstr "Баннер/Логотип"
#: mod/admin.php:983
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:983
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:984
msgid "Touch icon"
msgstr ""
#: mod/admin.php:984
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:985
msgid "Additional Info"
msgstr "Дополнительная информация"
#: mod/admin.php:985
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr ""
#: mod/admin.php:986
msgid "System language"
msgstr "Системный язык"
#: mod/admin.php:987
msgid "System theme"
msgstr "Системная тема"
#: mod/admin.php:987
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>"
#: mod/admin.php:988
msgid "Mobile system theme"
msgstr "Мобильная тема системы"
#: mod/admin.php:988
msgid "Theme for mobile devices"
msgstr "Тема для мобильных устройств"
#: mod/admin.php:989
msgid "SSL link policy"
msgstr "Политика SSL"
#: mod/admin.php:989
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Ссылки должны быть вынуждены использовать SSL"
#: mod/admin.php:990
msgid "Force SSL"
msgstr "SSL принудительно"
#: mod/admin.php:990
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr ""
#: mod/admin.php:991
msgid "Hide help entry from navigation menu"
msgstr "Скрыть пункт \"помощь\" в меню навигации"
#: mod/admin.php:991
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую."
#: mod/admin.php:992
msgid "Single user instance"
msgstr "Однопользовательский режим"
#: mod/admin.php:992
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя"
#: mod/admin.php:993
msgid "Maximum image size"
msgstr "Максимальный размер изображения"
#: mod/admin.php:993
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений."
#: mod/admin.php:994
msgid "Maximum image length"
msgstr "Максимальная длина картинки"
#: mod/admin.php:994
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."
#: mod/admin.php:995
msgid "JPEG image quality"
msgstr "Качество JPEG изображения"
#: mod/admin.php:995
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."
#: mod/admin.php:997
msgid "Register policy"
msgstr "Политика регистрация"
#: mod/admin.php:998
msgid "Maximum Daily Registrations"
msgstr "Максимальное число регистраций в день"
#: mod/admin.php:998
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта."
#: mod/admin.php:999
msgid "Register text"
msgstr "Текст регистрации"
#: mod/admin.php:999
msgid "Will be displayed prominently on the registration page."
msgstr "Будет находиться на видном месте на странице регистрации."
#: mod/admin.php:1000
msgid "Accounts abandoned after x days"
msgstr "Аккаунт считается после x дней не воспользованным"
#: mod/admin.php:1000
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
#: mod/admin.php:1001
msgid "Allowed friend domains"
msgstr "Разрешенные домены друзей"
#: mod/admin.php:1001
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
#: mod/admin.php:1002
msgid "Allowed email domains"
msgstr "Разрешенные почтовые домены"
#: mod/admin.php:1002
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
#: mod/admin.php:1003
msgid "Block public"
msgstr "Блокировать общественный доступ"
#: mod/admin.php:1003
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт."
#: mod/admin.php:1004
msgid "Force publish"
msgstr "Принудительная публикация"
#: mod/admin.php:1004
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."
#: mod/admin.php:1005
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:1005
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:1006
msgid "Allow threaded items"
msgstr "Разрешить темы в обсуждении"
#: mod/admin.php:1006
msgid "Allow infinite level threading for items on this site."
msgstr "Разрешить бесконечный уровень для тем на этом сайте."
#: mod/admin.php:1007
msgid "Private posts by default for new users"
msgstr "Частные сообщения по умолчанию для новых пользователей"
#: mod/admin.php:1007
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников."
#: mod/admin.php:1008
msgid "Don't include post content in email notifications"
msgstr "Не включать текст сообщения в email-оповещение."
#: mod/admin.php:1008
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности."
#: mod/admin.php:1009
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений."
#: mod/admin.php:1009
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."
#: mod/admin.php:1010
msgid "Don't embed private images in posts"
msgstr "Не вставлять личные картинки в постах"
#: mod/admin.php:1010
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a "
"while."
msgstr "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время."
#: mod/admin.php:1011
msgid "Allow Users to set remote_self"
msgstr "Разрешить пользователям установить remote_self"
#: mod/admin.php:1011
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
#: mod/admin.php:1012
msgid "Block multiple registrations"
msgstr "Блокировать множественные регистрации"
#: mod/admin.php:1012
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
#: mod/admin.php:1013
msgid "OpenID support"
msgstr "Поддержка OpenID"
#: mod/admin.php:1013
msgid "OpenID support for registration and logins."
msgstr "OpenID поддержка для регистрации и входа в систему."
#: mod/admin.php:1014
msgid "Fullname check"
msgstr "Проверка полного имени"
#: mod/admin.php:1014
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера."
#: mod/admin.php:1015
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 регулярные выражения"
#: mod/admin.php:1015
msgid "Use PHP UTF8 regular expressions"
msgstr "Используйте PHP UTF-8 для регулярных выражений"
#: mod/admin.php:1016
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:1016
msgid ""
"Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server."
msgstr ""
#: mod/admin.php:1017
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:1017
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:1018
msgid "Enable OStatus support"
msgstr "Включить поддержку OStatus"
#: mod/admin.php:1018
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: mod/admin.php:1019
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:1019
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."
#: mod/admin.php:1020
msgid "Only import OStatus threads from our contacts"
msgstr ""
#: mod/admin.php:1020
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr ""
#: mod/admin.php:1021
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:1023
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
#: mod/admin.php:1024
msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora"
#: mod/admin.php:1024
msgid "Provide built-in Diaspora network compatibility."
msgstr "Обеспечить встроенную поддержку сети Diaspora."
#: mod/admin.php:1025
msgid "Only allow Friendica contacts"
msgstr "Позвольть только Friendica контакты"
#: mod/admin.php:1025
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
#: mod/admin.php:1026
msgid "Verify SSL"
msgstr "Проверка SSL"
#: mod/admin.php:1026
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."
#: mod/admin.php:1027
msgid "Proxy user"
msgstr "Прокси пользователь"
#: mod/admin.php:1028
msgid "Proxy URL"
msgstr "Прокси URL"
#: mod/admin.php:1029
msgid "Network timeout"
msgstr "Тайм-аут сети"
#: mod/admin.php:1029
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."
#: mod/admin.php:1030
msgid "Maximum Load Average"
msgstr "Средняя максимальная нагрузка"
#: mod/admin.php:1030
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."
#: mod/admin.php:1031
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:1031
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:1032
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:1032
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:1033
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:1033
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:1035
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:1035
msgid ""
"If enabled, the global contacts are checked periodically for missing or "
"outdated data and the vitality of the contacts and servers."
msgstr ""
#: mod/admin.php:1036
msgid "Days between requery"
msgstr ""
#: mod/admin.php:1036
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:1037
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:1037
msgid ""
"Periodically query other servers for contacts. You can choose between "
"'users': the users on the remote system, 'Global Contacts': active contacts "
"that are known on the system. The fallback is meant for Redmatrix servers "
"and older friendica servers, where global contacts weren't available. The "
"fallback increases the server load, so the recommened setting is 'Users, "
"Global Contacts'."
msgstr ""
#: mod/admin.php:1038
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:1038
msgid ""
"When the discovery is activated, this value defines the timeframe for the "
"activity of the global contacts that are fetched from other servers."
msgstr ""
#: mod/admin.php:1039
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:1039
msgid ""
"Search the local directory instead of the global directory. When searching "
"locally, every search will be executed on the global directory in the "
"background. This improves the search results when the search is repeated."
msgstr ""
#: mod/admin.php:1041
msgid "Publish server information"
msgstr ""
#: mod/admin.php:1041
msgid ""
"If enabled, general server and usage data will be published. The data "
"contains the name and version of the server, number of users with public "
"profiles, number of posts and the activated protocols and connectors. See <a"
" href='http://the-federation.info/'>the-federation.info</a> for details."
msgstr ""
#: mod/admin.php:1043
msgid "Use MySQL full text engine"
msgstr "Использовать систему полнотексного поиска MySQL"
#: mod/admin.php:1043
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов."
#: mod/admin.php:1044
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:1044
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:1045
msgid "Path to item cache"
msgstr "Путь к элементам кэша"
#: mod/admin.php:1045
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:1046
msgid "Cache duration in seconds"
msgstr "Время жизни кэша в секундах"
#: mod/admin.php:1046
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day). To disable the item cache, set the value to -1."
msgstr ""
#: mod/admin.php:1047
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:1047
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:1048
msgid "Temp path"
msgstr "Временная папка"
#: mod/admin.php:1048
msgid ""
"If you have a restricted system where the webserver can't access the system "
"temp path, enter another path here."
msgstr ""
#: mod/admin.php:1049
msgid "Base path to installation"
msgstr "Путь для установки"
#: mod/admin.php:1049
msgid ""
"If the system cannot detect the correct path to your installation, enter the"
" correct path here. This setting should only be set if you are using a "
"restricted system and symbolic links to your webroot."
msgstr ""
#: mod/admin.php:1050
msgid "Disable picture proxy"
msgstr "Отключить проксирование картинок"
#: mod/admin.php:1050
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
msgstr "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью."
#: mod/admin.php:1051
msgid "Only search in tags"
msgstr "Искать только в тегах"
#: mod/admin.php:1051
msgid "On large systems the text search can slow down the system extremely."
msgstr "На больших системах текстовый поиск может сильно замедлить систему."
#: mod/admin.php:1053
msgid "New base url"
msgstr "Новый базовый url"
#: mod/admin.php:1053
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts"
" of all users."
msgstr "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей."
#: mod/admin.php:1055
msgid "RINO Encryption"
msgstr "RINO шифрование"
#: mod/admin.php:1055
msgid "Encryption layer between nodes."
msgstr "Слой шифрования между узлами."
#: mod/admin.php:1056
msgid "Embedly API key"
msgstr "Ключ API для Embedly"
#: mod/admin.php:1056
msgid ""
"<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:1058
msgid "Maximum number of parallel workers"
msgstr "Максимальное число параллельно работающих worker'ов"
#: mod/admin.php:1058
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4."
#: mod/admin.php:1059
msgid "Don't use 'proc_open' with the worker"
msgstr "Не использовать 'proc_open' с worker'ом"
#: mod/admin.php:1059
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr ""
#: mod/admin.php:1060
msgid "Enable fastlane"
msgstr "Включить fastlane"
#: mod/admin.php:1060
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
#: mod/admin.php:1061
msgid "Enable frontend worker"
msgstr "Включить frontend worker"
#: mod/admin.php:1061
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
"to call yourdomain.tld/worker on a regular basis via an external cron job. "
"You should only enable this option if you cannot utilize cron/scheduled jobs"
" on your server. The worker background process needs to be activated for "
"this."
msgstr ""
#: mod/admin.php:1091
msgid "Update has been marked successful"
msgstr "Обновление было успешно отмечено"
#: mod/admin.php:1099
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr "Обновление базы данных %s успешно применено."
#: mod/admin.php:1102
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s"
#: mod/admin.php:1116
#, php-format
msgid "Executing %s failed with error: %s"
msgstr "Выполнение %s завершено с ошибкой: %s"
#: mod/admin.php:1119
#, php-format
msgid "Update %s was successfully applied."
msgstr "Обновление %s успешно применено."
#: mod/admin.php:1122
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."
#: mod/admin.php:1125
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:1145
msgid "No failed updates."
msgstr "Неудавшихся обновлений нет."
#: mod/admin.php:1146
msgid "Check database structure"
msgstr "Проверить структуру базы данных"
#: mod/admin.php:1151
msgid "Failed Updates"
msgstr "Неудавшиеся обновления"
#: mod/admin.php:1152
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус."
#: mod/admin.php:1153
msgid "Mark success (if update was manually applied)"
msgstr "Отмечено успешно (если обновление было применено вручную)"
#: mod/admin.php:1154
msgid "Attempt to execute this update step automatically"
msgstr "Попытаться выполнить этот шаг обновления автоматически"
#: mod/admin.php:1188
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:1191
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:1235
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s пользователь заблокирован/разблокирован"
msgstr[1] "%s пользователей заблокировано/разблокировано"
msgstr[2] "%s пользователей заблокировано/разблокировано"
msgstr[3] "%s пользователей заблокировано/разблокировано"
#: mod/admin.php:1242
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s человек удален"
msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено"
msgstr[3] "%s чел. удалено"
#: mod/admin.php:1289
#, php-format
msgid "User '%s' deleted"
msgstr "Пользователь '%s' удален"
#: mod/admin.php:1297
#, php-format
msgid "User '%s' unblocked"
msgstr "Пользователь '%s' разблокирован"
#: mod/admin.php:1297
#, php-format
msgid "User '%s' blocked"
msgstr "Пользователь '%s' блокирован"
#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1447
#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
msgid "Name"
msgstr "Имя"
#: mod/admin.php:1405 mod/admin.php:1431
msgid "Register date"
msgstr "Дата регистрации"
#: mod/admin.php:1405 mod/admin.php:1431
msgid "Last login"
msgstr "Последний вход"
#: mod/admin.php:1405 mod/admin.php:1431
msgid "Last item"
msgstr "Последний пункт"
#: mod/admin.php:1405 mod/settings.php:43
msgid "Account"
msgstr "Аккаунт"
#: mod/admin.php:1414
msgid "Add User"
msgstr "Добавить пользователя"
#: mod/admin.php:1415
msgid "select all"
msgstr "выбрать все"
#: mod/admin.php:1416
msgid "User registrations waiting for confirm"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: mod/admin.php:1417
msgid "User waiting for permanent deletion"
msgstr "Пользователь ожидает окончательного удаления"
#: mod/admin.php:1418
msgid "Request date"
msgstr "Запрос даты"
#: mod/admin.php:1419
msgid "No registrations."
msgstr "Нет регистраций."
#: mod/admin.php:1420
msgid "Note from the user"
msgstr "Сообщение от пользователя"
#: mod/admin.php:1421 mod/notifications.php:176 mod/notifications.php:255
msgid "Approve"
msgstr "Одобрить"
#: mod/admin.php:1422
msgid "Deny"
msgstr "Отклонить"
#: mod/admin.php:1424 mod/contacts.php:613 mod/contacts.php:813
#: mod/contacts.php:991
msgid "Block"
msgstr "Заблокировать"
#: mod/admin.php:1425 mod/contacts.php:613 mod/contacts.php:813
#: mod/contacts.php:991
msgid "Unblock"
msgstr "Разблокировать"
#: mod/admin.php:1426
msgid "Site admin"
msgstr "Админ сайта"
#: mod/admin.php:1427
msgid "Account expired"
msgstr "Аккаунт просрочен"
#: mod/admin.php:1430
msgid "New User"
msgstr "Новый пользователь"
#: mod/admin.php:1431
msgid "Deleted since"
msgstr "Удалён с"
#: mod/admin.php:1436
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: mod/admin.php:1437
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: mod/admin.php:1447
msgid "Name of the new user."
msgstr "Имя нового пользователя."
#: mod/admin.php:1448
msgid "Nickname"
msgstr "Ник"
#: mod/admin.php:1448
msgid "Nickname of the new user."
msgstr "Ник нового пользователя."
#: mod/admin.php:1449
msgid "Email address of the new user."
msgstr "Email адрес нового пользователя."
#: mod/admin.php:1492
#, php-format
msgid "Plugin %s disabled."
msgstr "Плагин %s отключен."
#: mod/admin.php:1496
#, php-format
msgid "Plugin %s enabled."
msgstr "Плагин %s включен."
#: mod/admin.php:1507 mod/admin.php:1759
msgid "Disable"
msgstr "Отключить"
#: mod/admin.php:1509 mod/admin.php:1761
msgid "Enable"
msgstr "Включить"
#: mod/admin.php:1532 mod/admin.php:1808
msgid "Toggle"
msgstr "Переключить"
#: mod/admin.php:1540 mod/admin.php:1817
msgid "Author: "
msgstr "Автор:"
#: mod/admin.php:1541 mod/admin.php:1818
msgid "Maintainer: "
msgstr "Программа обслуживания: "
#: mod/admin.php:1596
msgid "Reload active plugins"
msgstr "Перезагрузить активные плагины"
#: mod/admin.php:1601
#, php-format
msgid ""
"There are currently no plugins available on your node. You can find the "
"official plugin repository at %1$s and might find other interesting plugins "
"in the open plugin registry at %2$s"
msgstr ""
#: mod/admin.php:1720
msgid "No themes found."
msgstr "Темы не найдены."
#: mod/admin.php:1799
msgid "Screenshot"
msgstr "Скриншот"
#: mod/admin.php:1859
msgid "Reload active themes"
msgstr "Перезагрузить активные темы"
#: mod/admin.php:1864
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr "Не найдено тем. Они должны быть расположены в %1$s"
#: mod/admin.php:1865
msgid "[Experimental]"
msgstr "[экспериментально]"
#: mod/admin.php:1866
msgid "[Unsupported]"
msgstr "[Неподдерживаемое]"
#: mod/admin.php:1890
msgid "Log settings updated."
msgstr "Настройки журнала обновлены."
#: mod/admin.php:1922
msgid "PHP log currently enabled."
msgstr "Лог PHP включен."
#: mod/admin.php:1924
msgid "PHP log currently disabled."
msgstr "Лог PHP выключен."
#: mod/admin.php:1933
msgid "Clear"
msgstr "Очистить"
#: mod/admin.php:1938
msgid "Enable Debugging"
msgstr "Включить отладку"
#: mod/admin.php:1939
msgid "Log file"
msgstr "Лог-файл"
#: mod/admin.php:1939
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."
#: mod/admin.php:1940
msgid "Log level"
msgstr "Уровень лога"
#: mod/admin.php:1943
msgid "PHP logging"
msgstr "PHP логирование"
#: mod/admin.php:1944
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782
msgid "Off"
msgstr "Выкл."
#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782
msgid "On"
msgstr "Вкл."
#: mod/admin.php:2075
#, php-format
msgid "Lock feature %s"
msgstr "Заблокировать %s"
#: mod/admin.php:2083
msgid "Manage Additional Features"
msgstr "Управление дополнительными возможностями"
#: mod/allfriends.php:46
msgid "No friends to display."
msgstr "Нет друзей."
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr "Разрешить связь с приложением"
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Вернитесь в ваше приложение и задайте этот код:"
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Пожалуйста, войдите для продолжения."
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"
#: mod/api.php:106 mod/dfrn_request.php:875 mod/follow.php:113
#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:669
#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
#: mod/settings.php:1237 mod/settings.php:1238
msgid "No"
msgstr "Нет"
#: mod/apps.php:11
msgid "Applications"
msgstr "Приложения"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Нет установленных приложений."
#: mod/attach.php:8
msgid "Item not available."
msgstr "Пункт не доступен."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Пункт не был найден."
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Код (bbcode):"
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Код (Diaspora) для конвертации в BBcode:"
#: mod/babel.php:31
msgid "Source input: "
msgstr "Ввести код:"
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (raw HTML): "
#: mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Ввод кода (формат Diaspora):"
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr "Пост был создан"
#: mod/cal.php:143 mod/display.php:328 mod/profile.php:154
msgid "Access to this profile has been restricted."
msgstr "Доступ к этому профилю ограничен."
#: mod/cal.php:271 mod/events.php:387
msgid "View"
msgstr "Смотреть"
#: mod/cal.php:272 mod/events.php:389
msgid "Previous"
msgstr "Назад"
#: mod/cal.php:273 mod/events.php:390 mod/install.php:235
msgid "Next"
msgstr "Далее"
#: mod/cal.php:282 mod/events.php:399
msgid "list"
msgstr "список"
#: mod/cal.php:292
msgid "User not found"
msgstr "Пользователь не найден"
#: mod/cal.php:308
msgid "This calendar format is not supported"
msgstr "Этот формат календарей не поддерживается"
#: mod/cal.php:310
msgid "No exportable data found"
msgstr "Нет данных для экспорта"
#: mod/cal.php:325
msgid "calendar"
msgstr "календарь"
#: mod/common.php:91
msgid "No contacts in common."
msgstr "Нет общих контактов."
#: mod/common.php:141 mod/contacts.php:871
msgid "Common Friends"
msgstr "Общие друзья"
#: mod/community.php:22 mod/dfrn_request.php:799 mod/directory.php:37
#: mod/display.php:200 mod/photos.php:964 mod/search.php:93 mod/search.php:99
#: mod/videos.php:198 mod/viewcontacts.php:36
msgid "Public access denied."
msgstr "Свободный доступ закрыт."
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr ""
#: mod/community.php:27
msgid "Not available."
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:224 mod/community.php:66 mod/community.php:75
#: mod/community.php:54 mod/search.php:224
msgid "No results."
msgstr "Нет результатов."
#: mod/search.php:230
#: mod/contacts.php:134
#, php-format
msgid "Items tagged with: %s"
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: mod/contacts.php:169 mod/contacts.php:378
msgid "Could not access contact record."
msgstr "Не удалось получить доступ к записи контакта."
#: mod/contacts.php:183
msgid "Could not locate selected profile."
msgstr "Не удалось найти выбранный профиль."
#: mod/contacts.php:216
msgid "Contact updated."
msgstr "Контакт обновлен."
#: mod/contacts.php:218 mod/dfrn_request.php:588
msgid "Failed to update contact record."
msgstr "Не удалось обновить запись контакта."
#: mod/contacts.php:399
msgid "Contact has been blocked"
msgstr "Контакт заблокирован"
#: mod/contacts.php:399
msgid "Contact has been unblocked"
msgstr "Контакт разблокирован"
#: mod/contacts.php:410
msgid "Contact has been ignored"
msgstr "Контакт проигнорирован"
#: mod/contacts.php:410
msgid "Contact has been unignored"
msgstr "У контакта отменено игнорирование"
#: mod/contacts.php:422
msgid "Contact has been archived"
msgstr "Контакт заархивирован"
#: mod/contacts.php:422
msgid "Contact has been unarchived"
msgstr "Контакт разархивирован"
#: mod/contacts.php:447
msgid "Drop contact"
msgstr "Удалить контакт"
#: mod/contacts.php:450 mod/contacts.php:809
msgid "Do you really want to delete this contact?"
msgstr "Вы действительно хотите удалить этот контакт?"
#: mod/contacts.php:469
msgid "Contact has been removed."
msgstr "Контакт удален."
#: mod/contacts.php:506
#, php-format
msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s"
#: mod/contacts.php:510
#, php-format
msgid "You are sharing with %s"
msgstr "Вы делитесь с %s"
#: mod/contacts.php:515
#, php-format
msgid "%s is sharing with you"
msgstr "%s делитса с Вами"
#: mod/contacts.php:535
msgid "Private communications are not available for this contact."
msgstr "Личные коммуникации недоступны для этого контакта."
#: mod/contacts.php:542
msgid "(Update was successful)"
msgstr "(Обновление было успешно)"
#: mod/contacts.php:542
msgid "(Update was not successful)"
msgstr "(Обновление не удалось)"
#: mod/contacts.php:544 mod/contacts.php:972
msgid "Suggest friends"
msgstr "Предложить друзей"
#: mod/contacts.php:548
#, php-format
msgid "Network type: %s"
msgstr "Сеть: %s"
#: mod/contacts.php:561
msgid "Communications lost with this contact!"
msgstr "Связь с контактом утеряна!"
#: mod/contacts.php:564
msgid "Fetch further information for feeds"
msgstr "Получить подробную информацию о фидах"
#: mod/contacts.php:565
msgid "Fetch information"
msgstr "Получить информацию"
#: mod/contacts.php:565
msgid "Fetch information and keywords"
msgstr "Получить информацию и ключевые слова"
#: mod/contacts.php:583
msgid "Contact"
msgstr "Контакт"
#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
#: mod/events.php:513 mod/fsuggest.php:108 mod/install.php:276
#: mod/install.php:316 mod/invite.php:142 mod/localtime.php:45
#: mod/manage.php:145 mod/message.php:338 mod/message.php:521 mod/mood.php:138
#: mod/photos.php:1124 mod/photos.php:1246 mod/photos.php:1562
#: mod/photos.php:1612 mod/photos.php:1660 mod/photos.php:1746
#: mod/poke.php:203 mod/profiles.php:680 object/Item.php:705
#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
msgid "Submit"
msgstr "Добавить"
#: mod/contacts.php:586
msgid "Profile Visibility"
msgstr "Видимость профиля"
#: mod/contacts.php:587
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
#: mod/contacts.php:588
msgid "Contact Information / Notes"
msgstr "Информация о контакте / Заметки"
#: mod/contacts.php:589
msgid "Edit contact notes"
msgstr "Редактировать заметки контакта"
#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
#: mod/viewcontacts.php:102
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Посетить профиль %s [%s]"
#: mod/contacts.php:595
msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт"
#: mod/contacts.php:596
msgid "Ignore contact"
msgstr "Игнорировать контакт"
#: mod/contacts.php:597
msgid "Repair URL settings"
msgstr "Восстановить настройки URL"
#: mod/contacts.php:598
msgid "View conversations"
msgstr "Просмотр бесед"
#: mod/contacts.php:604
msgid "Last update:"
msgstr "Последнее обновление: "
#: mod/contacts.php:606
msgid "Update public posts"
msgstr "Обновить публичные сообщения"
#: mod/contacts.php:608 mod/contacts.php:982
msgid "Update now"
msgstr "Обновить сейчас"
#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
msgid "Unignore"
msgstr "Не игнорировать"
#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:257
msgid "Ignore"
msgstr "Игнорировать"
#: mod/contacts.php:618
msgid "Currently blocked"
msgstr "В настоящее время заблокирован"
#: mod/contacts.php:619
msgid "Currently ignored"
msgstr "В настоящее время игнорируется"
#: mod/contacts.php:620
msgid "Currently archived"
msgstr "В данный момент архивирован"
#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
msgid "Hide this contact from others"
msgstr "Скрыть этот контакт от других"
#: mod/contacts.php:621
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы."
#: mod/contacts.php:622
msgid "Notification for new posts"
msgstr "Уведомление о новых постах"
#: mod/contacts.php:622
msgid "Send a notification of every new post of this contact"
msgstr "Отправлять уведомление о каждом новом посте контакта"
#: mod/contacts.php:625
msgid "Blacklisted keywords"
msgstr "Черный список ключевых слов"
#: mod/contacts.php:625
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:249
msgid "Profile URL"
msgstr "URL профиля"
#: mod/contacts.php:643
msgid "Actions"
msgstr "Действия"
#: mod/contacts.php:646
msgid "Contact Settings"
msgstr "Настройки контакта"
#: mod/contacts.php:692
msgid "Suggestions"
msgstr "Предложения"
#: mod/contacts.php:695
msgid "Suggest potential friends"
msgstr "Предложить потенциального знакомого"
#: mod/contacts.php:700 mod/group.php:202
msgid "All Contacts"
msgstr "Все контакты"
#: mod/contacts.php:703
msgid "Show all contacts"
msgstr "Показать все контакты"
#: mod/contacts.php:708
msgid "Unblocked"
msgstr "Не блокирован"
#: mod/contacts.php:711
msgid "Only show unblocked contacts"
msgstr "Показать только не блокированные контакты"
#: mod/contacts.php:717
msgid "Blocked"
msgstr "Заблокирован"
#: mod/contacts.php:720
msgid "Only show blocked contacts"
msgstr "Показать только блокированные контакты"
#: mod/contacts.php:726
msgid "Ignored"
msgstr "Игнорирован"
#: mod/contacts.php:729
msgid "Only show ignored contacts"
msgstr "Показать только игнорируемые контакты"
#: mod/contacts.php:735
msgid "Archived"
msgstr "Архивированные"
#: mod/contacts.php:738
msgid "Only show archived contacts"
msgstr "Показывать только архивные контакты"
#: mod/contacts.php:744
msgid "Hidden"
msgstr "Скрытые"
#: mod/contacts.php:747
msgid "Only show hidden contacts"
msgstr "Показывать только скрытые контакты"
#: mod/contacts.php:804
msgid "Search your contacts"
msgstr "Поиск ваших контактов"
#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232
#, php-format
msgid "Results for: %s"
msgstr "Результаты для: %s"
#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
msgid "Update"
msgstr "Обновление"
#: mod/contacts.php:815 mod/contacts.php:1007
msgid "Archive"
msgstr "Архивировать"
#: mod/contacts.php:815 mod/contacts.php:1007
msgid "Unarchive"
msgstr "Разархивировать"
#: mod/contacts.php:818
msgid "Batch Actions"
msgstr "Пакетные действия"
#: mod/contacts.php:864
msgid "View all contacts"
msgstr "Показать все контакты"
#: mod/contacts.php:874
msgid "View all common friends"
msgstr "Показать все общие поля"
#: mod/contacts.php:881
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
#: mod/contacts.php:915
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: mod/contacts.php:919
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: mod/contacts.php:923
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: mod/contacts.php:939 mod/nogroup.php:44
msgid "Edit contact"
msgstr "Редактировать контакт"
#: mod/contacts.php:993
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
#: mod/contacts.php:1001
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
#: mod/contacts.php:1009
msgid "Toggle Archive status"
msgstr "Сменить статус архивации (архивирова/не архивировать)"
#: mod/contacts.php:1017
msgid "Delete contact"
msgstr "Удалить контакт"
#: mod/content.php:119 mod/network.php:468
msgid "No such group"
msgstr "Нет такой группы"
#: mod/content.php:130 mod/group.php:203 mod/network.php:495
msgid "Group is empty"
msgstr "Группа пуста"
#: mod/content.php:135 mod/network.php:499
#, php-format
msgid "Group: %s"
msgstr "Группа: %s"
#: mod/content.php:325 object/Item.php:96
msgid "This entry was edited"
msgstr "Эта запись была отредактирована"
#: mod/content.php:621 object/Item.php:417
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d комментарий"
msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев"
msgstr[3] "%d комментариев"
#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117
msgid "Private Message"
msgstr "Личное сообщение"
#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274
msgid "I like this (toggle)"
msgstr "Нравится"
#: mod/content.php:702 object/Item.php:274
msgid "like"
msgstr "нравится"
#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275
msgid "I don't like this (toggle)"
msgstr "Не нравится"
#: mod/content.php:703 object/Item.php:275
msgid "dislike"
msgstr "не нравится"
#: mod/content.php:705 object/Item.php:278
msgid "Share this"
msgstr "Поделитесь этим"
#: mod/content.php:705 object/Item.php:278
msgid "share"
msgstr "поделиться"
#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657
#: mod/photos.php:1743 object/Item.php:702
msgid "This is you"
msgstr "Это вы"
#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611
#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:392
#: object/Item.php:704
msgid "Comment"
msgstr "Оставить комментарий"
#: mod/content.php:729 object/Item.php:706
msgid "Bold"
msgstr "Жирный"
#: mod/content.php:730 object/Item.php:707
msgid "Italic"
msgstr "Kурсивный"
#: mod/content.php:731 object/Item.php:708
msgid "Underline"
msgstr "Подчеркнутый"
#: mod/content.php:732 object/Item.php:709
msgid "Quote"
msgstr "Цитата"
#: mod/content.php:733 object/Item.php:710
msgid "Code"
msgstr "Код"
#: mod/content.php:734 object/Item.php:711
msgid "Image"
msgstr "Изображение / Фото"
#: mod/content.php:735 object/Item.php:712
msgid "Link"
msgstr "Ссылка"
#: mod/content.php:736 object/Item.php:713
msgid "Video"
msgstr "Видео"
#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Редактировать"
#: mod/content.php:772 object/Item.php:238
msgid "add star"
msgstr "пометить"
#: mod/content.php:773 object/Item.php:239
msgid "remove star"
msgstr "убрать метку"
#: mod/content.php:774 object/Item.php:240
msgid "toggle star status"
msgstr "переключить статус"
#: mod/content.php:777 object/Item.php:243
msgid "starred"
msgstr "помечено"
#: mod/content.php:778 mod/content.php:800 object/Item.php:263
msgid "add tag"
msgstr "добавить ключевое слово (тег)"
#: mod/content.php:789 object/Item.php:251
msgid "ignore thread"
msgstr "игнорировать тему"
#: mod/content.php:790 object/Item.php:252
msgid "unignore thread"
msgstr "не игнорировать тему"
#: mod/content.php:791 object/Item.php:253
msgid "toggle ignore status"
msgstr "изменить статус игнорирования"
#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
msgid "ignored"
msgstr ""
#: mod/friendica.php:70
#: mod/content.php:805 object/Item.php:141
msgid "save to folder"
msgstr "сохранить в папке"
#: mod/content.php:853 object/Item.php:212
msgid "I will attend"
msgstr ""
#: mod/content.php:853 object/Item.php:212
msgid "I will not attend"
msgstr ""
#: mod/content.php:853 object/Item.php:212
msgid "I might attend"
msgstr ""
#: mod/content.php:917 object/Item.php:358
msgid "to"
msgstr "к"
#: mod/content.php:918 object/Item.php:360
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
#: mod/content.php:919 object/Item.php:361
msgid "via Wall-To-Wall:"
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 "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!"
#: mod/crepair.php:89
msgid "Contact settings applied."
msgstr "Установки контакта приняты."
#: mod/crepair.php:91
msgid "Contact update failed."
msgstr "Обновление контакта неудачное."
#: mod/crepair.php:116 mod/dfrn_confirm.php:126 mod/fsuggest.php:21
#: mod/fsuggest.php:93
msgid "Contact not found."
msgstr "Контакт не найден."
#: mod/crepair.php:122
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
#: mod/crepair.php:123
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
#: mod/crepair.php:136 mod/crepair.php:138
msgid "No mirroring"
msgstr "Не зеркалировать"
#: mod/crepair.php:136
msgid "Mirror as forwarded posting"
msgstr "Зеркалировать как переадресованные сообщения"
#: mod/crepair.php:136 mod/crepair.php:138
msgid "Mirror as my own posting"
msgstr "Зеркалировать как мои сообщения"
#: mod/crepair.php:152
msgid "Return to contact editor"
msgstr "Возврат к редактору контакта"
#: mod/crepair.php:154
msgid "Refetch contact data"
msgstr "Обновить данные контакта"
#: mod/crepair.php:158
msgid "Remote Self"
msgstr "Remote Self"
#: mod/crepair.php:161
msgid "Mirror postings from this contact"
msgstr "Зекралировать сообщения от этого контакта"
#: mod/crepair.php:163
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr "Пометить этот контакт как remote_self, что заставит Friendica постить сообщения от этого контакта."
#: mod/crepair.php:168
msgid "Account Nickname"
msgstr "Ник аккаунта"
#: mod/crepair.php:169
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Tagname - перезаписывает Имя/Ник"
#: mod/crepair.php:170
msgid "Account URL"
msgstr "URL аккаунта"
#: mod/crepair.php:171
msgid "Friend Request URL"
msgstr "URL запроса в друзья"
#: mod/crepair.php:172
msgid "Friend Confirm URL"
msgstr "URL подтверждения друга"
#: mod/crepair.php:173
msgid "Notification Endpoint URL"
msgstr "URL эндпоинта уведомления"
#: mod/crepair.php:174
msgid "Poll/Feed URL"
msgstr "URL опроса/ленты"
#: mod/crepair.php:175
msgid "New photo from this URL"
msgstr "Новое фото из этой URL"
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr "Не найдено возможных доверенных лиц."
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr "Существующие менеджеры страницы"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Возможные доверенные лица"
#: mod/delegate.php:139 mod/tagrm.php:95
msgid "Remove"
msgstr "Удалить"
#: mod/delegate.php:140
msgid "Add"
msgstr "Добавить"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Нет записей."
#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
#: mod/profiles.php:180 mod/profiles.php:619
msgid "Profile not found."
msgstr "Профиль не найден."
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."
#: mod/dfrn_confirm.php:244
msgid "Response from remote site was not understood."
msgstr "Ответ от удаленного сайта не был понят."
#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
msgid "Unexpected response from remote site: "
msgstr "Неожиданный ответ от удаленного сайта: "
#: mod/dfrn_confirm.php:267
msgid "Confirmation completed successfully."
msgstr "Подтверждение успешно завершено."
#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
msgid "Remote site reported: "
msgstr "Удаленный сайт сообщил: "
#: mod/dfrn_confirm.php:281
msgid "Temporary failure. Please wait and try again."
msgstr "Временные неудачи. Подождите и попробуйте еще раз."
#: mod/dfrn_confirm.php:288
msgid "Introduction failed or was revoked."
msgstr "Запрос ошибочен или был отозван."
#: mod/dfrn_confirm.php:418
msgid "Unable to set contact photo."
msgstr "Не удается установить фото контакта."
#: mod/dfrn_confirm.php:559
#, php-format
msgid "No user record found for '%s' "
msgstr "Не найдено записи пользователя для '%s' "
#: mod/dfrn_confirm.php:569
msgid "Our site encryption key is apparently messed up."
msgstr "Наш ключ шифрования сайта, по-видимому, перепутался."
#: mod/dfrn_confirm.php:580
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
#: mod/dfrn_confirm.php:601
msgid "Contact record was not found for you on our site."
msgstr "Запись контакта не найдена для вас на нашем сайте."
#: mod/dfrn_confirm.php:615
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s"
#: mod/dfrn_confirm.php:635
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
#: mod/dfrn_confirm.php:646
msgid "Unable to set your contact credentials on our system."
msgstr "Не удалось установить ваши учетные данные контакта в нашей системе."
#: mod/dfrn_confirm.php:708
msgid "Unable to update your contact profile details on our system"
msgstr "Не удается обновить ваши контактные детали профиля в нашей системе"
#: mod/dfrn_confirm.php:780
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s присоединился %2$s"
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s добро пожаловать %2$s"
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr "Этот запрос был уже принят."
#: mod/dfrn_request.php:124 mod/dfrn_request.php:523
msgid "Profile location is not valid or does not contain profile information."
msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле."
#: mod/dfrn_request.php:129 mod/dfrn_request.php:528
msgid "Warning: profile location has no identifiable owner name."
msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
#: mod/dfrn_request.php:132 mod/dfrn_request.php:531
msgid "Warning: profile location has no profile photo."
msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
#: mod/dfrn_request.php:136 mod/dfrn_request.php:535
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d требуемый параметр не был найден в заданном месте"
msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
msgstr[3] "%d требуемых параметров не были найдены в заданном месте"
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr "Запрос создан."
#: mod/dfrn_request.php:225
msgid "Unrecoverable protocol error."
msgstr "Неисправимая ошибка протокола."
#: mod/dfrn_request.php:253
msgid "Profile unavailable."
msgstr "Профиль недоступен."
#: mod/dfrn_request.php:280
#, php-format
msgid "%s has received too many connection requests today."
msgstr "К %s пришло сегодня слишком много запросов на подключение."
#: mod/dfrn_request.php:281
msgid "Spam protection measures have been invoked."
msgstr "Были применены меры защиты от спама."
#: mod/dfrn_request.php:282
msgid "Friends are advised to please try again in 24 hours."
msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
#: mod/dfrn_request.php:344
msgid "Invalid locator"
msgstr "Недопустимый локатор"
#: mod/dfrn_request.php:353
msgid "Invalid email address."
msgstr "Неверный адрес электронной почты."
#: mod/dfrn_request.php:378
msgid "This account has not been configured for email. Request failed."
msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался."
#: mod/dfrn_request.php:481
msgid "You have already introduced yourself here."
msgstr "Вы уже ввели информацию о себе здесь."
#: mod/dfrn_request.php:485
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Похоже, что вы уже друзья с %s."
#: mod/dfrn_request.php:506
msgid "Invalid profile URL."
msgstr "Неверный URL профиля."
#: mod/dfrn_request.php:609
msgid "Your introduction has been sent."
msgstr "Ваш запрос отправлен."
#: mod/dfrn_request.php:651
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе."
#: mod/dfrn_request.php:672
msgid "Please login to confirm introduction."
msgstr "Для подтверждения запроса войдите пожалуйста с паролем."
#: mod/dfrn_request.php:682
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
#: mod/dfrn_request.php:696 mod/dfrn_request.php:713
msgid "Confirm"
msgstr "Подтвердить"
#: mod/dfrn_request.php:708
msgid "Hide this contact"
msgstr "Скрыть этот контакт"
#: mod/dfrn_request.php:711
#, php-format
msgid "Welcome home %s."
msgstr "Добро пожаловать домой, %s!"
#: mod/dfrn_request.php:712
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
#: mod/dfrn_request.php:843
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:"
#: mod/dfrn_request.php:867
#, php-format
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
"join us today</a>."
msgstr "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"%s/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>."
#: mod/dfrn_request.php:872
msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение"
#: mod/dfrn_request.php:873
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: mod/dfrn_request.php:874 mod/follow.php:112
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: mod/dfrn_request.php:875 mod/follow.php:113
#, php-format
msgid "Does %s know you?"
msgstr "%s знает вас?"
#: mod/dfrn_request.php:879 mod/follow.php:114
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: mod/dfrn_request.php:882
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet / Federated Social Web"
#: mod/dfrn_request.php:884
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora"
#: mod/dfrn_request.php:885 mod/follow.php:120
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: mod/dfrn_request.php:888 mod/follow.php:19
msgid "Submit Request"
msgstr "Отправить запрос"
#: mod/directory.php:199 view/theme/vier/theme.php:196
msgid "Global Directory"
msgstr "Глобальный каталог"
#: mod/directory.php:201
msgid "Find on this site"
msgstr "Найти на этом сайте"
#: mod/directory.php:203
msgid "Results for:"
msgstr "Результаты для:"
#: mod/directory.php:205
msgid "Site Directory"
msgstr "Каталог сайта"
#: mod/directory.php:212
msgid "No entries (some entries may be hidden)."
msgstr "Нет записей (некоторые записи могут быть скрыты)."
#: mod/dirfind.php:37
#, php-format
msgid "People Search - %s"
msgstr "Поиск по людям - %s"
#: mod/dirfind.php:48
#, php-format
msgid "Forum Search - %s"
msgstr "Поиск по форумам - %s"
#: mod/dirfind.php:245 mod/match.php:109
msgid "No matches"
msgstr "Нет соответствий"
#: mod/display.php:479
msgid "Item has been removed."
msgstr "Пункт был удален."
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Элемент не найден"
#: mod/editpost.php:32
msgid "Edit post"
msgstr "Редактировать сообщение"
#: mod/events.php:100 mod/events.php:102
msgid "Event can not end before it has started."
msgstr "Эвент не может закончится до старта."
#: mod/events.php:109 mod/events.php:111
msgid "Event title and start time are required."
msgstr "Название мероприятия и время начала обязательны для заполнения."
#: mod/events.php:388
msgid "Create New Event"
msgstr "Создать новое мероприятие"
#: mod/events.php:489
msgid "Event details"
msgstr "Сведения о мероприятии"
#: mod/events.php:490
msgid "Starting date and Title are required."
msgstr "Необходима дата старта и заголовок."
#: mod/events.php:491 mod/events.php:492
msgid "Event Starts:"
msgstr "Начало мероприятия:"
#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708
msgid "Required"
msgstr "Требуется"
#: mod/events.php:493 mod/events.php:509
msgid "Finish date/time is not known or not relevant"
msgstr "Дата/время окончания не известны, или не указаны"
#: mod/events.php:495 mod/events.php:496
msgid "Event Finishes:"
msgstr "Окончание мероприятия:"
#: mod/events.php:497 mod/events.php:510
msgid "Adjust for viewer timezone"
msgstr "Настройка часового пояса"
#: mod/events.php:499
msgid "Description:"
msgstr "Описание:"
#: mod/events.php:503 mod/events.php:505
msgid "Title:"
msgstr "Титул:"
#: mod/events.php:506 mod/events.php:507
msgid "Share this event"
msgstr "Поделитесь этим мероприятием"
#: mod/fbrowser.php:132
msgid "Files"
msgstr "Файлы"
#: mod/filer.php:30
msgid "- select -"
msgstr "- выбрать -"
#: mod/follow.php:30
msgid "You already added this contact."
msgstr "Вы уже добавили этот контакт."
#: mod/follow.php:39
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен."
#: mod/follow.php:46
msgid "OStatus support is disabled. Contact can't be added."
msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен."
#: mod/follow.php:53
msgid "The network type couldn't be detected. Contact can't be added."
msgstr "Тип сети не может быть определен. Контакт не может быть добавлен."
#: mod/follow.php:186
msgid "Contact added"
msgstr "Контакт добавлен"
#: mod/friendica.php:72
msgid "This is Friendica, version"
msgstr "Это Friendica, версия"
#: mod/friendica.php:71
#: mod/friendica.php:73
msgid "running at web location"
msgstr "работает на веб-узле"
#: mod/friendica.php:73
#: mod/friendica.php:75
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica."
#: mod/friendica.php:75
#: mod/friendica.php:77
msgid "Bug reports and issues: please visit"
msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
#: mod/friendica.php:75
#: mod/friendica.php:77
msgid "the bugtracker at github"
msgstr ""
msgstr "багтрекер на github"
#: mod/friendica.php:76
#: mod/friendica.php:78
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"
#: mod/friendica.php:90
#: mod/friendica.php:92
msgid "Installed plugins/addons/apps:"
msgstr "Установленные плагины / добавки / приложения:"
#: mod/friendica.php:103
#: mod/friendica.php:105
msgid "No installed plugins/addons/apps"
msgstr "Нет установленных плагинов / добавок / приложений"
#: mod/fsuggest.php:64
msgid "Friend suggestion sent."
msgstr "Приглашение в друзья отправлено."
#: mod/fsuggest.php:98
msgid "Suggest Friends"
msgstr "Предложить друзей"
#: mod/fsuggest.php:100
#, php-format
msgid "Suggest a friend for %s"
msgstr "Предложить друга для %s."
#: mod/group.php:29
msgid "Group created."
msgstr "Группа создана."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Не удалось создать группу."
#: mod/group.php:49 mod/group.php:150
msgid "Group not found."
msgstr "Группа не найдена."
#: mod/group.php:63
msgid "Group name changed."
msgstr "Название группы изменено."
#: mod/group.php:91
msgid "Save Group"
msgstr "Сохранить группу"
#: mod/group.php:97
msgid "Create a group of contacts/friends."
msgstr "Создать группу контактов / друзей."
#: mod/group.php:122
msgid "Group removed."
msgstr "Группа удалена."
#: mod/group.php:124
msgid "Unable to remove group."
msgstr "Не удается удалить группу."
#: mod/group.php:187
msgid "Group Editor"
msgstr "Редактор групп"
#: mod/group.php:200
msgid "Members"
msgstr "Участники"
#: mod/group.php:233 mod/profperm.php:107
msgid "Click on a contact to add or remove."
msgstr "Нажмите на контакт, чтобы добавить или удалить."
#: mod/hcard.php:11
msgid "No profile"
msgstr "Нет профиля"
#: mod/help.php:41
msgid "Help:"
msgstr "Помощь:"
#: mod/home.php:39
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать на %s!"
#: mod/install.php:140
msgid "Friendica Communications Server - Setup"
msgstr "Коммуникационный сервер Friendica - Доступ"
#: mod/install.php:146
msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных."
#: mod/install.php:150
msgid "Could not create table."
msgstr "Не удалось создать таблицу."
#: mod/install.php:156
msgid "Your Friendica site database has been installed."
msgstr "База данных сайта установлена."
#: mod/install.php:161
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
#: mod/install.php:162 mod/install.php:234 mod/install.php:609
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: mod/install.php:174
msgid "Database already in use."
msgstr "База данных уже используется."
#: mod/install.php:231
msgid "System check"
msgstr "Проверить систему"
#: mod/install.php:236
msgid "Check again"
msgstr "Проверить еще раз"
#: mod/install.php:255
msgid "Database connection"
msgstr "Подключение к базе данных"
#: mod/install.php:256
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."
#: mod/install.php:257
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
#: mod/install.php:258
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
#: mod/install.php:262
msgid "Database Server Name"
msgstr "Имя сервера базы данных"
#: mod/install.php:263
msgid "Database Login Name"
msgstr "Логин базы данных"
#: mod/install.php:264
msgid "Database Login Password"
msgstr "Пароль базы данных"
#: mod/install.php:264
msgid "For security reasons the password must not be empty"
msgstr "Для безопасности пароль не должен быть пустым"
#: mod/install.php:265
msgid "Database Name"
msgstr "Имя базы данных"
#: mod/install.php:266 mod/install.php:307
msgid "Site administrator email address"
msgstr "Адрес электронной почты администратора сайта"
#: mod/install.php:266 mod/install.php:307
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."
#: mod/install.php:270 mod/install.php:310
msgid "Please select a default timezone for your website"
msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
#: mod/install.php:297
msgid "Site settings"
msgstr "Настройки сайта"
#: mod/install.php:311
msgid "System Language:"
msgstr "Язык системы:"
#: mod/install.php:311
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем."
#: mod/install.php:351
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Не удалось найти PATH веб-сервера в установках PHP."
#: mod/install.php:352
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
"up-the-poller'>'Setup the poller'</a>"
msgstr "У вас не установлена CLI версия PHP, вы не сможете выполнять cron-задания на сервере. Смотрите раздел <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a> в документации."
#: mod/install.php:356
msgid "PHP executable path"
msgstr "PHP executable path"
#: mod/install.php:356
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."
#: mod/install.php:361
msgid "Command line PHP"
msgstr "Command line PHP"
#: mod/install.php:370
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)"
#: mod/install.php:371
msgid "Found PHP version: "
msgstr "Найденная PHP версия: "
#: mod/install.php:373
msgid "PHP cli binary"
msgstr "PHP cli binary"
#: mod/install.php:384
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Не включено \"register_argc_argv\" в установках PHP."
#: mod/install.php:385
msgid "This is required for message delivery to work."
msgstr "Это необходимо для работы доставки сообщений."
#: mod/install.php:387
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: mod/install.php:410
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
#: mod/install.php:411
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
#: mod/install.php:413
msgid "Generate encryption keys"
msgstr "Генерация шифрованых ключей"
#: mod/install.php:420
msgid "libCurl PHP module"
msgstr "libCurl PHP модуль"
#: mod/install.php:421
msgid "GD graphics PHP module"
msgstr "GD graphics PHP модуль"
#: mod/install.php:422
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP модуль"
#: mod/install.php:423
msgid "mysqli PHP module"
msgstr "mysqli PHP модуль"
#: mod/install.php:424
msgid "mb_string PHP module"
msgstr "mb_string PHP модуль"
#: mod/install.php:425
msgid "mcrypt PHP module"
msgstr "mcrypt PHP модуль"
#: mod/install.php:426
msgid "XML PHP module"
msgstr "XML PHP модуль"
#: mod/install.php:427
msgid "iconv module"
msgstr "Модуль iconv"
#: mod/install.php:431 mod/install.php:433
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: mod/install.php:431
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
#: mod/install.php:439
msgid "Error: libCURL PHP module required but not installed."
msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен."
#: mod/install.php:443
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
#: mod/install.php:447
msgid "Error: openssl PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."
#: mod/install.php:451
msgid "Error: mysqli PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен."
#: mod/install.php:455
msgid "Error: mb_string PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен."
#: mod/install.php:459
msgid "Error: mcrypt PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль mcrypt, но он не установлен."
#: mod/install.php:463
msgid "Error: iconv PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль iconv, но он не установлен."
#: mod/install.php:472
msgid ""
"If you are using php_cli, please make sure that mcrypt module is enabled in "
"its config file"
msgstr "Если вы используете php_cli, то убедитесь, что модуль mcrypt подключен в файле конфигурации"
#: mod/install.php:475
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr "Функция mcrypt_create_iv() не объявлена. Она необходима для шифрования RINO2."
#: mod/install.php:477
msgid "mcrypt_create_iv() function"
msgstr "Функция mcrypt_create_iv()"
#: mod/install.php:485
msgid "Error, XML PHP module required but not installed."
msgstr "Ошибка, необходим PHP модуль XML, но он не установлен"
#: mod/install.php:500
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
#: mod/install.php:501
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
#: mod/install.php:502
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."
#: mod/install.php:503
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."
#: mod/install.php:506
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
#: mod/install.php:516
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."
#: mod/install.php:517
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."
#: mod/install.php:518
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."
#: mod/install.php:519
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."
#: mod/install.php:522
msgid "view/smarty3 is writable"
msgstr "view/smarty3 доступен для записи"
#: mod/install.php:538
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."
#: mod/install.php:540
msgid "Url rewrite is working"
msgstr "Url rewrite работает"
#: mod/install.php:559
msgid "ImageMagick PHP extension is not installed"
msgstr "Модуль PHP ImageMagick не установлен"
#: mod/install.php:561
msgid "ImageMagick PHP extension is installed"
msgstr "Модуль PHP ImageMagick установлен"
#: mod/install.php:563
msgid "ImageMagick supports GIF"
msgstr "ImageMagick поддерживает GIF"
#: mod/install.php:570
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
#: mod/install.php:607
msgid "<h1>What next</h1>"
msgstr "<h1>Что далее</h1>"
#: mod/install.php:608
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
#: mod/invite.php:28
msgid "Total invitation limit exceeded."
msgstr "Превышен общий лимит приглашений."
#: mod/invite.php:51
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Неверный адрес электронной почты."
#: mod/invite.php:76
msgid "Please join us on Friendica"
msgstr "Пожалуйста, присоединяйтесь к нам на Friendica"
#: mod/invite.php:87
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."
#: mod/invite.php:91
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Доставка сообщения не удалась."
#: mod/invite.php:95
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d сообщение отправлено."
msgstr[1] "%d сообщений отправлено."
msgstr[2] "%d сообщений отправлено."
msgstr[3] "%d сообщений отправлено."
#: mod/invite.php:114
msgid "You have no more invitations available"
msgstr "У вас нет больше приглашений"
#: mod/invite.php:122
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."
#: mod/invite.php:124
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"
#: mod/invite.php:125
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."
#: mod/invite.php:128
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."
#: mod/invite.php:134
msgid "Send invitations"
msgstr "Отправить приглашения"
#: mod/invite.php:135
msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:"
#: mod/invite.php:136 mod/message.php:332 mod/message.php:515
#: mod/wallmessage.php:135
msgid "Your message:"
msgstr "Ваше сообщение:"
#: mod/invite.php:137
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."
#: mod/invite.php:139
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
#: mod/invite.php:139
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
#: mod/invite.php:141
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"
#: mod/item.php:118
msgid "Unable to locate original post."
msgstr "Не удалось найти оригинальный пост."
#: mod/item.php:336
msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается."
#: mod/item.php:889
msgid "System error. Post not saved."
msgstr "Системная ошибка. Сообщение не сохранено."
#: mod/item.php:979
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica."
#: mod/item.php:981
#, php-format
msgid "You may visit them online at %s"
msgstr "Вы можете посетить их в онлайне на %s"
#: mod/item.php:982
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
#: mod/item.php:986
#, php-format
msgid "%s posted an update."
msgstr "%s отправил/а/ обновление."
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "История общения"
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC время: %s"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Ваш часовой пояс: %s"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Ваше изменённое время: %s"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Выберите пожалуйста ваш часовой пояс:"
#: mod/lockview.php:32 mod/lockview.php:40
msgid "Remote privacy information not available."
msgstr "Личная информация удаленно недоступна."
#: mod/lockview.php:49
msgid "Visible to:"
msgstr "Кто может видеть:"
#: mod/lostpass.php:19
msgid "No valid account found."
msgstr "Не найдено действительного аккаунта."
@ -3216,7 +6408,7 @@ msgstr "Не найдено действительного аккаунта."
msgid "Password reset request issued. Check your email."
msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту."
#: mod/lostpass.php:42
#: mod/lostpass.php:41
#, php-format
msgid ""
"\n"
@ -3232,7 +6424,7 @@ msgid ""
"\t\tissued this request."
msgstr ""
#: mod/lostpass.php:53
#: mod/lostpass.php:52
#, php-format
msgid ""
"\n"
@ -3249,38 +6441,34 @@ msgid ""
"\t\tLogin Name:\t%3$s"
msgstr ""
#: mod/lostpass.php:72
#: mod/lostpass.php:71
#, php-format
msgid "Password reset requested at %s"
msgstr "Запрос на сброс пароля получен %s"
#: mod/lostpass.php:92
#: mod/lostpass.php:91
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."
#: mod/lostpass.php:109 boot.php:1807
msgid "Password Reset"
msgstr "Сброс пароля"
#: mod/lostpass.php:110
#: mod/lostpass.php:111
msgid "Your password has been reset as requested."
msgstr "Ваш пароль был сброшен по требованию."
#: mod/lostpass.php:111
#: mod/lostpass.php:112
msgid "Your new password is"
msgstr "Ваш новый пароль"
#: mod/lostpass.php:112
#: mod/lostpass.php:113
msgid "Save or copy your new password - and then"
msgstr "Сохраните или скопируйте новый пароль - и затем"
#: mod/lostpass.php:113
#: mod/lostpass.php:114
msgid "click here to login"
msgstr "нажмите здесь для входа"
#: mod/lostpass.php:114
#: mod/lostpass.php:115
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
@ -3326,373 +6514,218 @@ msgid ""
"your email for further instructions."
msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."
#: mod/lostpass.php:161 boot.php:1795
msgid "Nickname or Email: "
msgstr "Ник или E-mail: "
#: mod/lostpass.php:162
msgid "Reset"
msgstr "Сброс"
#: mod/hcard.php:10
msgid "No profile"
msgstr "Нет профиля"
#: mod/maintenance.php:20
msgid "System down for maintenance"
msgstr "Система закрыта на техническое обслуживание"
#: mod/help.php:41
msgid "Help:"
msgstr "Помощь:"
#: mod/manage.php:141
msgid "Manage Identities and/or Pages"
msgstr "Управление идентификацией и / или страницами"
#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
msgid "Not Found"
msgstr "Не найдено"
#: mod/help.php:56 index.php:291
msgid "Page not found."
msgstr "Страница не найдена."
#: mod/lockview.php:31 mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Личная информация удаленно недоступна."
#: mod/lockview.php:48
msgid "Visible to:"
msgstr "Кто может видеть:"
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "Ошибка протокола OpenID. Не возвращён ID."
#: mod/openid.php:60
#: mod/manage.php:142
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
#: mod/uimport.php:50 mod/register.php:198
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."
#: mod/uimport.php:64 mod/register.php:295
msgid "Import"
msgstr "Импорт"
#: mod/uimport.php:66
msgid "Move account"
msgstr "Удалить аккаунт"
#: mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Вы можете импортировать учетную запись с другого сервера Friendica."
#: mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."
#: mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: mod/uimport.php:70
msgid "Account file"
msgstr "Файл аккаунта"
#: mod/manage.php:143
msgid "Select an identity to manage: "
msgstr "Выберите идентификацию для управления: "
#: mod/uimport.php:70
#: mod/match.php:35
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."
#: mod/match.php:88
msgid "is interested in:"
msgstr "интересуется:"
#: mod/match.php:102
msgid "Profile Match"
msgstr "Похожие профили"
#: mod/message.php:60 mod/wallmessage.php:50
msgid "No recipient selected."
msgstr "Не выбран получатель."
#: mod/message.php:64
msgid "Unable to locate contact information."
msgstr "Не удалось найти контактную информацию."
#: mod/message.php:67 mod/wallmessage.php:56
msgid "Message could not be sent."
msgstr "Сообщение не может быть отправлено."
#: mod/message.php:70 mod/wallmessage.php:59
msgid "Message collection failure."
msgstr "Неудача коллекции сообщения."
#: mod/message.php:73 mod/wallmessage.php:62
msgid "Message sent."
msgstr "Сообщение отправлено."
#: mod/message.php:204
msgid "Do you really want to delete this message?"
msgstr "Вы действительно хотите удалить это сообщение?"
#: mod/message.php:224
msgid "Message deleted."
msgstr "Сообщение удалено."
#: mod/message.php:255
msgid "Conversation removed."
msgstr "Беседа удалена."
#: mod/message.php:322 mod/wallmessage.php:126
msgid "Send Private Message"
msgstr "Отправить личное сообщение"
#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128
msgid "To:"
msgstr "Кому:"
#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129
msgid "Subject:"
msgstr "Тема:"
#: mod/message.php:364
msgid "No messages."
msgstr "Нет сообщений."
#: mod/message.php:403
msgid "Message not available."
msgstr "Сообщение не доступно."
#: mod/message.php:477
msgid "Delete message"
msgstr "Удалить сообщение"
#: mod/message.php:503 mod/message.php:583
msgid "Delete conversation"
msgstr "Удалить историю общения"
#: mod/message.php:505
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя."
#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
#: mod/viewcontacts.php:97
#: mod/message.php:509
msgid "Send Reply"
msgstr "Отправить ответ"
#: mod/message.php:553
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Посетить профиль %s [%s]"
msgid "Unknown sender - %s"
msgstr "Неизвестный отправитель - %s"
#: mod/nogroup.php:42 mod/contacts.php:931
msgid "Edit contact"
msgstr "Редактировать контакт"
#: mod/nogroup.php:63
msgid "Contacts who are not members of a group"
msgstr "Контакты, которые не являются членами группы"
#: mod/uexport.php:29
msgid "Export account"
msgstr "Экспорт аккаунта"
#: mod/uexport.php:29
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."
#: mod/uexport.php:30
msgid "Export all"
msgstr "Экспорт всего"
#: mod/uexport.php:30
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"
#: mod/uexport.php:37 mod/settings.php:95
msgid "Export personal data"
msgstr "Экспорт личных данных"
#: mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr "Превышен общий лимит приглашений."
#: mod/invite.php:49
#: mod/message.php:555
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Неверный адрес электронной почты."
msgid "You and %s"
msgstr "Вы и %s"
#: mod/invite.php:73
msgid "Please join us on Friendica"
msgstr "Пожалуйста, присоединяйтесь к нам на Friendica"
#: mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."
#: mod/invite.php:89
#: mod/message.php:557
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Доставка сообщения не удалась."
msgid "%s and You"
msgstr "%s и Вы"
#: mod/invite.php:93
#: mod/message.php:586
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: mod/message.php:589
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d сообщение отправлено."
msgstr[1] "%d сообщений отправлено."
msgstr[2] "%d сообщений отправлено."
msgstr[3] "%d сообщений отправлено."
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d сообщение"
msgstr[1] "%d сообщений"
msgstr[2] "%d сообщений"
msgstr[3] "%d сообщений"
#: mod/invite.php:112
msgid "You have no more invitations available"
msgstr "У вас нет больше приглашений"
#: mod/mood.php:134
msgid "Mood"
msgstr "Настроение"
#: mod/invite.php:120
#: mod/mood.php:135
msgid "Set your current mood and tell your friends"
msgstr "Напишите о вашем настроении и расскажите своим друзьям"
#: mod/network.php:190 mod/search.php:25
msgid "Remove term"
msgstr "Удалить элемент"
#: mod/network.php:397
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."
"Warning: This group contains %s member from a network that doesn't allow non"
" public messages."
msgid_plural ""
"Warning: This group contains %s members from a network that doesn't allow "
"non public messages."
msgstr[0] "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения."
msgstr[1] "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения."
msgstr[2] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения."
msgstr[3] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения."
#: mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"
#: mod/network.php:400
msgid "Messages in this group won't be send to these receivers."
msgstr "Сообщения в этой группе не будут отправлены следующим получателям."
#: mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."
#: mod/network.php:528
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
#: mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."
#: mod/network.php:533
msgid "Invalid contact."
msgstr "Недопустимый контакт."
#: mod/invite.php:132
msgid "Send invitations"
msgstr "Отправить приглашения"
#: mod/network.php:810
msgid "Commented Order"
msgstr "Последние комментарии"
#: mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:"
#: mod/network.php:813
msgid "Sort by Comment Date"
msgstr "Сортировать по дате комментария"
#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
#: mod/message.php:541
msgid "Your message:"
msgstr "Ваше сообщение:"
#: mod/network.php:818
msgid "Posted Order"
msgstr "Лента записей"
#: mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."
#: mod/network.php:821
msgid "Sort by Post Date"
msgstr "Сортировать по дате отправки"
#: mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
#: mod/network.php:832
msgid "Posts that mention or involve you"
msgstr "Посты которые упоминают вас или в которых вы участвуете"
#: mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
#: mod/network.php:840
msgid "New"
msgstr "Новый"
#: mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"
#: mod/network.php:843
msgid "Activity Stream - by date"
msgstr "Лента активности - по дате"
#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
#: mod/install.php:272 mod/install.php:312 object/Item.php:720
#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
msgid "Submit"
msgstr "Добавить"
#: mod/network.php:851
msgid "Shared Links"
msgstr "Ссылки, которыми поделились"
#: mod/fbrowser.php:133
msgid "Files"
msgstr "Файлы"
#: mod/network.php:854
msgid "Interesting Links"
msgstr "Интересные ссылки"
#: mod/profperm.php:19 mod/group.php:72 index.php:400
msgid "Permission denied"
msgstr "Доступ запрещен"
#: mod/network.php:862
msgid "Starred"
msgstr "Помеченный"
#: mod/profperm.php:25 mod/profperm.php:56
msgid "Invalid profile identifier."
msgstr "Недопустимый идентификатор профиля."
#: mod/profperm.php:102
msgid "Profile Visibility Editor"
msgstr "Редактор видимости профиля"
#: mod/profperm.php:106 mod/group.php:223
msgid "Click on a contact to add or remove."
msgstr "Нажмите на контакт, чтобы добавить или удалить."
#: mod/profperm.php:115
msgid "Visible To"
msgstr "Видимый для"
#: mod/profperm.php:131
msgid "All Contacts (with secure profile access)"
msgstr "Все контакты (с безопасным доступом к профилю)"
#: mod/tagrm.php:41
msgid "Tag removed"
msgstr "Ключевое слово удалено"
#: mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Удалить ключевое слово"
#: mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Выберите ключевое слово для удаления: "
#: mod/tagrm.php:93 mod/delegate.php:139
msgid "Remove"
msgstr "Удалить"
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr ""
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Ошибка"
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
msgid "Done"
msgstr "Готово"
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
msgid "Keep this window open until done."
msgstr ""
#: mod/delegate.php:101
msgid "No potential page delegates located."
msgstr ""
#: mod/delegate.php:132
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."
#: mod/delegate.php:133
msgid "Existing Page Managers"
msgstr "Существующие менеджеры страницы"
#: mod/delegate.php:135
msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы"
#: mod/delegate.php:137
msgid "Potential Delegates"
msgstr "Возможные доверенные лица"
#: mod/delegate.php:140
msgid "Add"
msgstr "Добавить"
#: mod/delegate.php:141
msgid "No entries."
msgstr "Нет записей."
#: mod/credits.php:16
msgid "Credits"
msgstr ""
#: mod/credits.php:17
msgid ""
"Friendica is a community project, that would not be possible without the "
"help of many people. Here is a list of those who have contributed to the "
"code or the translation of Friendica. Thank you all!"
msgstr ""
#: mod/filer.php:30
msgid "- select -"
msgstr "- выбрать -"
#: mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: mod/attach.php:8
msgid "Item not available."
msgstr "Пункт не доступен."
#: mod/attach.php:20
msgid "Item was not found."
msgstr "Пункт не был найден."
#: mod/apps.php:7 index.php:244
msgid "You must be logged in to use addons. "
msgstr "Вы должны войти в систему, чтобы использовать аддоны."
#: mod/apps.php:11
msgid "Applications"
msgstr "Приложения"
#: mod/apps.php:14
msgid "No installed applications."
msgstr "Нет установленных приложений."
#: mod/p.php:9
msgid "Not Extended"
msgstr ""
#: mod/network.php:865
msgid "Favourite Posts"
msgstr "Избранные посты"
#: mod/newmember.php:6
msgid "Welcome to Friendica"
@ -3744,7 +6777,7 @@ msgid ""
"potential friends know exactly how to find you."
msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699
msgid "Upload Profile Photo"
msgstr "Загрузить фото профиля"
@ -3863,754 +6896,27 @@ msgid ""
" features and resources."
msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса."
#: mod/removeme.php:46 mod/removeme.php:49
msgid "Remove My Account"
msgstr "Удалить мой аккаунт"
#: mod/removeme.php:47
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
#: mod/removeme.php:48
msgid "Please enter your password for verification:"
msgstr "Пожалуйста, введите свой пароль для проверки:"
#: mod/editpost.php:17 mod/editpost.php:27
msgid "Item not found"
msgstr "Элемент не найден"
#: mod/editpost.php:40
msgid "Edit post"
msgstr "Редактировать сообщение"
#: mod/localtime.php:24
msgid "Time Conversion"
msgstr "История общения"
#: mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."
#: mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC время: %s"
#: mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Ваш часовой пояс: %s"
#: mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Ваше изменённое время: %s"
#: mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Выберите пожалуйста ваш часовой пояс:"
#: mod/bookmarklet.php:41
msgid "The post was created"
msgstr ""
#: mod/group.php:29
msgid "Group created."
msgstr "Группа создана."
#: mod/group.php:35
msgid "Could not create group."
msgstr "Не удалось создать группу."
#: mod/group.php:47 mod/group.php:140
msgid "Group not found."
msgstr "Группа не найдена."
#: mod/group.php:60
msgid "Group name changed."
msgstr "Название группы изменено."
#: mod/group.php:87
msgid "Save Group"
msgstr "Сохранить группу"
#: mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Создать группу контактов / друзей."
#: mod/group.php:113
msgid "Group removed."
msgstr "Группа удалена."
#: mod/group.php:115
msgid "Unable to remove group."
msgstr "Не удается удалить группу."
#: mod/group.php:177
msgid "Group Editor"
msgstr "Редактор групп"
#: mod/group.php:190
msgid "Members"
msgstr "Участники"
#: mod/group.php:192 mod/contacts.php:692
msgid "All Contacts"
msgstr "Все контакты"
#: mod/group.php:193 mod/content.php:130 mod/network.php:496
msgid "Group is empty"
msgstr "Группа пуста"
#: mod/wallmessage.php:42 mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."
#: mod/wallmessage.php:56 mod/message.php:71
msgid "No recipient selected."
msgstr "Не выбран получатель."
#: mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Невозможно проверить местоположение."
#: mod/wallmessage.php:62 mod/message.php:78
msgid "Message could not be sent."
msgstr "Сообщение не может быть отправлено."
#: mod/wallmessage.php:65 mod/message.php:81
msgid "Message collection failure."
msgstr "Неудача коллекции сообщения."
#: mod/wallmessage.php:68 mod/message.php:84
msgid "Message sent."
msgstr "Сообщение отправлено."
#: mod/wallmessage.php:86 mod/wallmessage.php:95
msgid "No recipient."
msgstr "Без адресата."
#: mod/wallmessage.php:142 mod/message.php:341
msgid "Send Private Message"
msgstr "Отправить личное сообщение"
#: mod/wallmessage.php:143
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей."
#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
msgid "To:"
msgstr "Кому:"
#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
msgid "Subject:"
msgstr "Тема:"
#: mod/share.php:38
msgid "link"
msgstr "ссылка"
#: mod/api.php:76 mod/api.php:102
msgid "Authorize application connection"
msgstr "Разрешить связь с приложением"
#: mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Вернитесь в ваше приложение и задайте этот код:"
#: mod/api.php:89
msgid "Please login to continue."
msgstr "Пожалуйста, войдите для продолжения."
#: mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"
#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
#: mod/dfrn_request.php:862 mod/follow.php:110
msgid "No"
msgstr "Нет"
#: mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Код (bbcode):"
#: mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Код (Diaspora) для конвертации в BBcode:"
#: mod/babel.php:31
msgid "Source input: "
msgstr "Ввести код:"
#: mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (raw HTML): "
#: mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Ввод кода (формат Diaspora):"
#: mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: mod/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
msgstr ""
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr ""
#: mod/ostatus_subscribe.php:30
msgid "Couldn't fetch information for contact."
msgstr ""
#: mod/ostatus_subscribe.php:38
msgid "Couldn't fetch friends for contact."
msgstr ""
#: mod/ostatus_subscribe.php:65
msgid "success"
msgstr "удачно"
#: mod/ostatus_subscribe.php:67
msgid "failed"
msgstr "неудача"
#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
msgid "ignored"
msgstr ""
#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s добро пожаловать %2$s"
#: mod/message.php:75
msgid "Unable to locate contact information."
msgstr "Не удалось найти контактную информацию."
#: mod/message.php:215
msgid "Do you really want to delete this message?"
msgstr "Вы действительно хотите удалить это сообщение?"
#: mod/message.php:235
msgid "Message deleted."
msgstr "Сообщение удалено."
#: mod/message.php:266
msgid "Conversation removed."
msgstr "Беседа удалена."
#: mod/message.php:383
msgid "No messages."
msgstr "Нет сообщений."
#: mod/message.php:426
msgid "Message not available."
msgstr "Сообщение не доступно."
#: mod/message.php:503
msgid "Delete message"
msgstr "Удалить сообщение"
#: mod/message.php:529 mod/message.php:609
msgid "Delete conversation"
msgstr "Удалить историю общения"
#: mod/message.php:531
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:535
msgid "Send Reply"
msgstr "Отправить ответ"
#: mod/message.php:579
#, php-format
msgid "Unknown sender - %s"
msgstr "Неизвестный отправитель - %s"
#: mod/message.php:581
#, php-format
msgid "You and %s"
msgstr "Вы и %s"
#: mod/message.php:583
#, php-format
msgid "%s and You"
msgstr "%s и Вы"
#: mod/message.php:612
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: mod/message.php:615
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d сообщение"
msgstr[1] "%d сообщений"
msgstr[2] "%d сообщений"
msgstr[3] "%d сообщений"
#: mod/manage.php:139
msgid "Manage Identities and/or Pages"
msgstr "Управление идентификацией и / или страницами"
#: mod/manage.php:140
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: mod/manage.php:141
msgid "Select an identity to manage: "
msgstr "Выберите идентификацию для управления: "
#: mod/crepair.php:87
msgid "Contact settings applied."
msgstr "Установки контакта приняты."
#: mod/crepair.php:89
msgid "Contact update failed."
msgstr "Обновление контакта неудачное."
#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
#: mod/dfrn_confirm.php:126
msgid "Contact not found."
msgstr "Контакт не найден."
#: mod/crepair.php:120
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
#: mod/crepair.php:121
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
#: mod/crepair.php:134 mod/crepair.php:136
msgid "No mirroring"
msgstr ""
#: mod/crepair.php:134
msgid "Mirror as forwarded posting"
msgstr ""
#: mod/crepair.php:134 mod/crepair.php:136
msgid "Mirror as my own posting"
msgstr ""
#: mod/crepair.php:150
msgid "Return to contact editor"
msgstr "Возврат к редактору контакта"
#: mod/crepair.php:152
msgid "Refetch contact data"
msgstr ""
#: mod/crepair.php:156
msgid "Remote Self"
msgstr ""
#: mod/crepair.php:159
msgid "Mirror postings from this contact"
msgstr ""
#: mod/crepair.php:161
msgid ""
"Mark this contact as remote_self, this will cause friendica to repost new "
"entries from this contact."
msgstr ""
#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
msgid "Name"
msgstr "Имя"
#: mod/crepair.php:166
msgid "Account Nickname"
msgstr "Ник аккаунта"
#: mod/crepair.php:167
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: mod/crepair.php:168
msgid "Account URL"
msgstr "URL аккаунта"
#: mod/crepair.php:169
msgid "Friend Request URL"
msgstr "URL запроса в друзья"
#: mod/crepair.php:170
msgid "Friend Confirm URL"
msgstr "URL подтверждения друга"
#: mod/crepair.php:171
msgid "Notification Endpoint URL"
msgstr "URL эндпоинта уведомления"
#: mod/crepair.php:172
msgid "Poll/Feed URL"
msgstr "URL опроса/ленты"
#: mod/crepair.php:173
msgid "New photo from this URL"
msgstr "Новое фото из этой URL"
#: mod/content.php:119 mod/network.php:469
msgid "No such group"
msgstr "Нет такой группы"
#: mod/content.php:135 mod/network.php:500
#, php-format
msgid "Group: %s"
msgstr "Группа: %s"
#: mod/content.php:325 object/Item.php:95
msgid "This entry was edited"
msgstr "Эта запись была отредактирована"
#: mod/content.php:621 object/Item.php:429
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d комментарий"
msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев"
msgstr[3] "%d комментариев"
#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
msgid "Private Message"
msgstr "Личное сообщение"
#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
msgid "I like this (toggle)"
msgstr "Нравится"
#: mod/content.php:702 object/Item.php:263
msgid "like"
msgstr "нравится"
#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
msgid "I don't like this (toggle)"
msgstr "Не нравится"
#: mod/content.php:703 object/Item.php:264
msgid "dislike"
msgstr "не нравитса"
#: mod/content.php:705 object/Item.php:266
msgid "Share this"
msgstr "Поделитесь этим"
#: mod/content.php:705 object/Item.php:266
msgid "share"
msgstr "делиться"
#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
#: mod/photos.php:1721 object/Item.php:717
msgid "This is you"
msgstr "Это вы"
#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
#: object/Item.php:719 boot.php:971
msgid "Comment"
msgstr "Оставить комментарий"
#: mod/content.php:729 object/Item.php:721
msgid "Bold"
msgstr "Жирный"
#: mod/content.php:730 object/Item.php:722
msgid "Italic"
msgstr "Kурсивный"
#: mod/content.php:731 object/Item.php:723
msgid "Underline"
msgstr "Подчеркнутый"
#: mod/content.php:732 object/Item.php:724
msgid "Quote"
msgstr "Цитата"
#: mod/content.php:733 object/Item.php:725
msgid "Code"
msgstr "Код"
#: mod/content.php:734 object/Item.php:726
msgid "Image"
msgstr "Изображение / Фото"
#: mod/content.php:735 object/Item.php:727
msgid "Link"
msgstr "Ссылка"
#: mod/content.php:736 object/Item.php:728
msgid "Video"
msgstr "Видео"
#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
#: object/Item.php:124
msgid "Edit"
msgstr "Редактировать"
#: mod/content.php:771 object/Item.php:227
msgid "add star"
msgstr "пометить"
#: mod/content.php:772 object/Item.php:228
msgid "remove star"
msgstr "убрать метку"
#: mod/content.php:773 object/Item.php:229
msgid "toggle star status"
msgstr "переключить статус"
#: mod/content.php:776 object/Item.php:232
msgid "starred"
msgstr "помечено"
#: mod/content.php:777 mod/content.php:798 object/Item.php:252
msgid "add tag"
msgstr "добавить ключевое слово (таг)"
#: mod/content.php:787 object/Item.php:240
msgid "ignore thread"
msgstr ""
#: mod/content.php:788 object/Item.php:241
msgid "unignore thread"
msgstr ""
#: mod/content.php:789 object/Item.php:242
msgid "toggle ignore status"
msgstr ""
#: mod/content.php:803 object/Item.php:137
msgid "save to folder"
msgstr "сохранить в папке"
#: mod/content.php:848 object/Item.php:201
msgid "I will attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I will not attend"
msgstr ""
#: mod/content.php:848 object/Item.php:201
msgid "I might attend"
msgstr ""
#: mod/content.php:912 object/Item.php:369
msgid "to"
msgstr "к"
#: mod/content.php:913 object/Item.php:371
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
#: mod/content.php:914 object/Item.php:372
msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:"
#: mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Приглашение в друзья отправлено."
#: mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Предложить друзей"
#: mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Предложить друга для %s."
#: mod/mood.php:133
msgid "Mood"
msgstr "Настроение"
#: mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Напишите о вашем настроении и расскажите своим друзьям"
#: mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: mod/poke.php:194
msgid "Recipient"
msgstr "Получатель"
#: mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr "Выберите действия для получателя"
#: mod/poke.php:198
msgid "Make this post private"
msgstr "Сделать эту запись личной"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Изображение загружено, но обрезка изображения не удалась."
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
#: mod/profile_photo.php:314
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Уменьшение размера изображения [%s] не удалось."
#: mod/profile_photo.php:124
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."
#: mod/profile_photo.php:134
msgid "Unable to process image"
msgstr "Не удается обработать изображение"
#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
msgid "Unable to process image."
msgstr "Невозможно обработать фото."
#: mod/profile_photo.php:248
msgid "Upload File:"
msgstr "Загрузить файл:"
#: mod/profile_photo.php:249
msgid "Select a profile:"
msgstr "Выбрать этот профиль:"
#: mod/profile_photo.php:251
msgid "Upload"
msgstr "Загрузить"
#: mod/profile_photo.php:254
msgid "or"
msgstr "или"
#: mod/profile_photo.php:254
msgid "skip this step"
msgstr "пропустить этот шаг"
#: mod/profile_photo.php:254
msgid "select a photo from your photo albums"
msgstr "выберите фото из ваших фотоальбомов"
#: mod/profile_photo.php:268
msgid "Crop Image"
msgstr "Обрезать изображение"
#: mod/profile_photo.php:269
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра."
#: mod/profile_photo.php:271
msgid "Done Editing"
msgstr "Редактирование выполнено"
#: mod/profile_photo.php:305
msgid "Image uploaded successfully."
msgstr "Изображение загружено успешно."
#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
msgid "Image upload failed."
msgstr "Загрузка фото неудачная."
#: mod/regmod.php:55
msgid "Account approved."
msgstr "Аккаунт утвержден."
#: mod/regmod.php:92
#, php-format
msgid "Registration revoked for %s"
msgstr "Регистрация отменена для %s"
#: mod/regmod.php:104
msgid "Please login."
msgstr "Пожалуйста, войдите с паролем."
#: mod/nogroup.php:65
msgid "Contacts who are not members of a group"
msgstr "Контакты, которые не являются членами группы"
#: mod/notifications.php:35
msgid "Invalid request identifier."
msgstr "Неверный идентификатор запроса."
#: mod/notifications.php:44 mod/notifications.php:180
#: mod/notifications.php:252
#: mod/notifications.php:258
msgid "Discard"
msgstr "Отказаться"
#: mod/notifications.php:60 mod/notifications.php:179
#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
#: mod/contacts.php:991
msgid "Ignore"
msgstr "Игнорировать"
#: mod/notifications.php:105
msgid "Network Notifications"
msgstr "Уведомления сети"
#: mod/notifications.php:111 mod/notify.php:69
msgid "System Notifications"
msgstr "Уведомления системы"
#: mod/notifications.php:117
msgid "Personal Notifications"
msgstr "Личные уведомления"
@ -4627,7 +6933,7 @@ msgstr "Показать проигнорированные запросы"
msgid "Hide Ignored Requests"
msgstr "Скрыть проигнорированные запросы"
#: mod/notifications.php:164 mod/notifications.php:222
#: mod/notifications.php:164 mod/notifications.php:228
msgid "Notification type: "
msgstr "Тип уведомления: "
@ -4636,22 +6942,14 @@ msgstr "Тип уведомления: "
msgid "suggested by %s"
msgstr "предложено юзером %s"
#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
msgid "Hide this contact from others"
msgstr "Скрыть этот контакт от других"
#: mod/notifications.php:173 mod/notifications.php:240
#: mod/notifications.php:173 mod/notifications.php:246
msgid "Post a new friend activity"
msgstr "Настроение"
#: mod/notifications.php:173 mod/notifications.php:240
#: mod/notifications.php:173 mod/notifications.php:246
msgid "if applicable"
msgstr "если требуется"
#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
msgid "Approve"
msgstr "Одобрить"
#: mod/notifications.php:195
msgid "Claims to be known to you: "
msgstr "Утверждения, о которых должно быть вам известно: "
@ -4664,57 +6962,408 @@ msgstr "да"
msgid "no"
msgstr "нет"
#: mod/notifications.php:197
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
"you allow to read but you do not want to read theirs. Approve as: "
msgstr ""
#: mod/notifications.php:197 mod/notifications.php:202
msgid "Shall your connection be bidirectional or not?"
msgstr "Должно ли ваше соединение быть двухсторонним или нет?"
#: mod/notifications.php:200
#: mod/notifications.php:198 mod/notifications.php:203
#, php-format
msgid ""
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
"allow to read but you do not want to read theirs. Approve as: "
msgstr ""
"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
"also receive updates from them in your news feed."
msgstr "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него."
#: mod/notifications.php:209
#: mod/notifications.php:199
#, php-format
msgid ""
"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
" will not receive updates from them in your news feed."
msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."
#: mod/notifications.php:204
#, php-format
msgid ""
"Accepting %s as a sharer allows them to subscribe to your posts, but you "
"will not receive updates from them in your news feed."
msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."
#: mod/notifications.php:215
msgid "Friend"
msgstr "Друг"
#: mod/notifications.php:210
#: mod/notifications.php:216
msgid "Sharer"
msgstr "Участник"
#: mod/notifications.php:210
msgid "Fan/Admirer"
msgstr "Фанат / Поклонник"
#: mod/notifications.php:216
msgid "Subscriber"
msgstr "Подписант"
#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
msgid "Profile URL"
msgstr "URL профиля"
#: mod/notifications.php:260
#: mod/notifications.php:266
msgid "No introductions."
msgstr "Запросов нет."
#: mod/notifications.php:299
#: mod/notifications.php:307
msgid "Show unread"
msgstr ""
msgstr "Показать непрочитанные"
#: mod/notifications.php:299
#: mod/notifications.php:307
msgid "Show all"
msgstr ""
msgstr "Показать все"
#: mod/notifications.php:305
#: mod/notifications.php:313
#, php-format
msgid "No more %s notifications."
msgstr ""
msgstr "Больше нет уведомлений о %s."
#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
#: mod/profiles.php:617 mod/dfrn_confirm.php:70
msgid "Profile not found."
msgstr "Профиль не найден."
#: mod/notify.php:65
msgid "No more system notifications."
msgstr "Системных уведомлений больше нет."
#: mod/oexchange.php:21
msgid "Post successful."
msgstr "Успешно добавлено."
#: mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "Ошибка протокола OpenID. Не возвращён ID."
#: mod/openid.php:60
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
#: mod/ostatus_subscribe.php:14
msgid "Subscribing to OStatus contacts"
msgstr "Подписка на OStatus-контакты"
#: mod/ostatus_subscribe.php:25
msgid "No contact provided."
msgstr "Не указан контакт."
#: mod/ostatus_subscribe.php:31
msgid "Couldn't fetch information for contact."
msgstr "Невозможно получить информацию о контакте."
#: mod/ostatus_subscribe.php:40
msgid "Couldn't fetch friends for contact."
msgstr "Невозможно получить друзей для контакта."
#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
msgid "Done"
msgstr "Готово"
#: mod/ostatus_subscribe.php:68
msgid "success"
msgstr "удачно"
#: mod/ostatus_subscribe.php:70
msgid "failed"
msgstr "неудача"
#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
msgid "Keep this window open until done."
msgstr "Держать окно открытым до завершения."
#: mod/p.php:9
msgid "Not Extended"
msgstr "Не расширенный"
#: mod/photos.php:90 mod/photos.php:1876
msgid "Recent Photos"
msgstr "Последние фото"
#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878
msgid "Upload New Photos"
msgstr "Загрузить новые фото"
#: mod/photos.php:107 mod/settings.php:36
msgid "everybody"
msgstr "каждый"
#: mod/photos.php:171
msgid "Contact information unavailable"
msgstr "Информация о контакте недоступна"
#: mod/photos.php:192
msgid "Album not found."
msgstr "Альбом не найден."
#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247
msgid "Delete Album"
msgstr "Удалить альбом"
#: mod/photos.php:235
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?"
#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563
msgid "Delete Photo"
msgstr "Удалить фото"
#: mod/photos.php:326
msgid "Do you really want to delete this photo?"
msgstr "Вы действительно хотите удалить эту фотографию?"
#: mod/photos.php:705
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s отмечен/а/ в %2$s by %3$s"
#: mod/photos.php:705
msgid "a photo"
msgstr "фото"
#: mod/photos.php:803 mod/profile_photo.php:156 mod/wall_upload.php:151
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "Изображение превышает лимит размера в %s"
#: mod/photos.php:811
msgid "Image file is empty."
msgstr "Файл изображения пуст."
#: mod/photos.php:844 mod/profile_photo.php:165 mod/wall_upload.php:186
msgid "Unable to process image."
msgstr "Невозможно обработать фото."
#: mod/photos.php:871 mod/profile_photo.php:315 mod/wall_upload.php:219
msgid "Image upload failed."
msgstr "Загрузка фото неудачная."
#: mod/photos.php:974
msgid "No photos selected"
msgstr "Не выбрано фото."
#: mod/photos.php:1074 mod/videos.php:309
msgid "Access to this item is restricted."
msgstr "Доступ к этому пункту ограничен."
#: mod/photos.php:1134
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."
#: mod/photos.php:1168
msgid "Upload Photos"
msgstr "Загрузить фото"
#: mod/photos.php:1172 mod/photos.php:1242
msgid "New album name: "
msgstr "Название нового альбома: "
#: mod/photos.php:1173
msgid "or existing album name: "
msgstr "или название существующего альбома: "
#: mod/photos.php:1174
msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки"
#: mod/photos.php:1185 mod/photos.php:1567 mod/settings.php:1307
msgid "Show to Groups"
msgstr "Показать в группах"
#: mod/photos.php:1186 mod/photos.php:1568 mod/settings.php:1308
msgid "Show to Contacts"
msgstr "Показывать контактам"
#: mod/photos.php:1187
msgid "Private Photo"
msgstr "Личное фото"
#: mod/photos.php:1188
msgid "Public Photo"
msgstr "Публичное фото"
#: mod/photos.php:1254
msgid "Edit Album"
msgstr "Редактировать альбом"
#: mod/photos.php:1260
msgid "Show Newest First"
msgstr "Показать новые первыми"
#: mod/photos.php:1262
msgid "Show Oldest First"
msgstr "Показать старые первыми"
#: mod/photos.php:1289 mod/photos.php:1861
msgid "View Photo"
msgstr "Просмотр фото"
#: mod/photos.php:1335
msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен."
#: mod/photos.php:1337
msgid "Photo not available"
msgstr "Фото недоступно"
#: mod/photos.php:1395
msgid "View photo"
msgstr "Просмотр фото"
#: mod/photos.php:1395
msgid "Edit photo"
msgstr "Редактировать фото"
#: mod/photos.php:1396
msgid "Use as profile photo"
msgstr "Использовать как фото профиля"
#: mod/photos.php:1421
msgid "View Full Size"
msgstr "Просмотреть полный размер"
#: mod/photos.php:1507
msgid "Tags: "
msgstr "Ключевые слова: "
#: mod/photos.php:1510
msgid "[Remove any tag]"
msgstr "[Удалить любое ключевое слово]"
#: mod/photos.php:1549
msgid "New album name"
msgstr "Название нового альбома"
#: mod/photos.php:1550
msgid "Caption"
msgstr "Подпись"
#: mod/photos.php:1551
msgid "Add a Tag"
msgstr "Добавить ключевое слово (тег)"
#: mod/photos.php:1551
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: mod/photos.php:1552
msgid "Do not rotate"
msgstr "Не поворачивать"
#: mod/photos.php:1553
msgid "Rotate CW (right)"
msgstr "Поворот по часовой стрелке (направо)"
#: mod/photos.php:1554
msgid "Rotate CCW (left)"
msgstr "Поворот против часовой стрелки (налево)"
#: mod/photos.php:1569
msgid "Private photo"
msgstr "Личное фото"
#: mod/photos.php:1570
msgid "Public photo"
msgstr "Публичное фото"
#: mod/photos.php:1792
msgid "Map"
msgstr "Карта"
#: mod/photos.php:1867 mod/videos.php:391
msgid "View Album"
msgstr "Просмотреть альбом"
#: mod/ping.php:270
msgid "{0} wants to be your friend"
msgstr "{0} хочет стать Вашим другом"
#: mod/ping.php:285
msgid "{0} sent you a message"
msgstr "{0} отправил Вам сообщение"
#: mod/ping.php:300
msgid "{0} requested registration"
msgstr "{0} требуемая регистрация"
#: mod/poke.php:196
msgid "Poke/Prod"
msgstr "Потыкать/Потолкать"
#: mod/poke.php:197
msgid "poke, prod or do other things to somebody"
msgstr "Потыкать, потолкать или сделать что-то еще с кем-то"
#: mod/poke.php:198
msgid "Recipient"
msgstr "Получатель"
#: mod/poke.php:199
msgid "Choose what you wish to do to recipient"
msgstr "Выберите действия для получателя"
#: mod/poke.php:202
msgid "Make this post private"
msgstr "Сделать эту запись личной"
#: mod/profile.php:174
msgid "Tips for New Members"
msgstr "Советы для новых участников"
#: mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Изображение загружено, но обрезка изображения не удалась."
#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
#: mod/profile_photo.php:323
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Уменьшение размера изображения [%s] не удалось."
#: mod/profile_photo.php:127
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."
#: mod/profile_photo.php:137
msgid "Unable to process image"
msgstr "Не удается обработать изображение"
#: mod/profile_photo.php:254
msgid "Upload File:"
msgstr "Загрузить файл:"
#: mod/profile_photo.php:255
msgid "Select a profile:"
msgstr "Выбрать этот профиль:"
#: mod/profile_photo.php:257
msgid "Upload"
msgstr "Загрузить"
#: mod/profile_photo.php:260
msgid "or"
msgstr "или"
#: mod/profile_photo.php:260
msgid "skip this step"
msgstr "пропустить этот шаг"
#: mod/profile_photo.php:260
msgid "select a photo from your photo albums"
msgstr "выберите фото из ваших фотоальбомов"
#: mod/profile_photo.php:274
msgid "Crop Image"
msgstr "Обрезать изображение"
#: mod/profile_photo.php:275
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра."
#: mod/profile_photo.php:277
msgid "Done Editing"
msgstr "Редактирование выполнено"
#: mod/profile_photo.php:313
msgid "Image uploaded successfully."
msgstr "Изображение загружено успешно."
#: mod/profiles.php:38
msgid "Profile deleted."
@ -4766,13 +7415,13 @@ msgstr "Сексуальные предпочтения"
#: mod/profiles.php:373
msgid "XMPP"
msgstr ""
msgstr "XMPP"
#: mod/profiles.php:377
msgid "Homepage"
msgstr "Домашняя страница"
#: mod/profiles.php:381 mod/profiles.php:702
#: mod/profiles.php:381 mod/profiles.php:694
msgid "Interests"
msgstr "Хобби / Интересы"
@ -4780,7 +7429,7 @@ msgstr "Хобби / Интересы"
msgid "Address"
msgstr "Адрес"
#: mod/profiles.php:392 mod/profiles.php:698
#: mod/profiles.php:392 mod/profiles.php:690
msgid "Location"
msgstr "Местонахождение"
@ -4788,600 +7437,248 @@ msgstr "Местонахождение"
msgid "Profile updated."
msgstr "Профиль обновлен."
#: mod/profiles.php:564
#: mod/profiles.php:565
msgid " and "
msgstr "и"
#: mod/profiles.php:572
#: mod/profiles.php:573
msgid "public profile"
msgstr "публичный профиль"
#: mod/profiles.php:575
#: mod/profiles.php:576
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s изменились с %2$s на &ldquo;%3$s&rdquo;"
#: mod/profiles.php:576
#: mod/profiles.php:577
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " - Посетить профиль %1$s [%2$s]"
#: mod/profiles.php:579
#: mod/profiles.php:580
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
msgstr "%1$s обновил %2$s, изменив %3$s."
#: mod/profiles.php:645
#: mod/profiles.php:637
msgid "Hide contacts and friends:"
msgstr ""
msgstr "Скрыть контакты и друзей:"
#: mod/profiles.php:650
#: mod/profiles.php:642
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
#: mod/profiles.php:674
#: mod/profiles.php:666
msgid "Show more profile fields:"
msgstr ""
msgstr "Показать больше полей в профиле:"
#: mod/profiles.php:686
#: mod/profiles.php:678
msgid "Profile Actions"
msgstr ""
msgstr "Действия профиля"
#: mod/profiles.php:687
#: mod/profiles.php:679
msgid "Edit Profile Details"
msgstr "Редактировать детали профиля"
#: mod/profiles.php:689
#: mod/profiles.php:681
msgid "Change Profile Photo"
msgstr "Изменить фото профиля"
#: mod/profiles.php:690
#: mod/profiles.php:682
msgid "View this profile"
msgstr "Просмотреть этот профиль"
#: mod/profiles.php:692
#: mod/profiles.php:684
msgid "Create a new profile using these settings"
msgstr "Создать новый профиль, используя эти настройки"
#: mod/profiles.php:693
#: mod/profiles.php:685
msgid "Clone this profile"
msgstr "Клонировать этот профиль"
#: mod/profiles.php:694
#: mod/profiles.php:686
msgid "Delete this profile"
msgstr "Удалить этот профиль"
#: mod/profiles.php:696
#: mod/profiles.php:688
msgid "Basic information"
msgstr ""
msgstr "Основная информация"
#: mod/profiles.php:697
#: mod/profiles.php:689
msgid "Profile picture"
msgstr ""
msgstr "Картинка профиля"
#: mod/profiles.php:699
#: mod/profiles.php:691
msgid "Preferences"
msgstr ""
msgstr "Настройки"
#: mod/profiles.php:692
msgid "Status information"
msgstr "Статус"
#: mod/profiles.php:693
msgid "Additional information"
msgstr "Дополнительная информация"
#: mod/profiles.php:696
msgid "Relation"
msgstr "Отношения"
#: mod/profiles.php:700
msgid "Status information"
msgstr ""
#: mod/profiles.php:701
msgid "Additional information"
msgstr ""
#: mod/profiles.php:704
msgid "Relation"
msgstr ""
#: mod/profiles.php:708
msgid "Your Gender:"
msgstr "Ваш пол:"
#: mod/profiles.php:709
#: mod/profiles.php:701
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
#: mod/profiles.php:711
#: mod/profiles.php:703
msgid "Example: fishing photography software"
msgstr "Пример: рыбалка фотографии программное обеспечение"
#: mod/profiles.php:716
#: mod/profiles.php:708
msgid "Profile Name:"
msgstr "Имя профиля:"
#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
msgid "Required"
msgstr "Требуется"
#: mod/profiles.php:718
#: mod/profiles.php:710
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому через Интернет."
#: mod/profiles.php:719
#: mod/profiles.php:711
msgid "Your Full Name:"
msgstr "Ваше полное имя:"
#: mod/profiles.php:720
#: mod/profiles.php:712
msgid "Title/Description:"
msgstr "Заголовок / Описание:"
#: mod/profiles.php:723
#: mod/profiles.php:715
msgid "Street Address:"
msgstr "Адрес:"
#: mod/profiles.php:724
#: mod/profiles.php:716
msgid "Locality/City:"
msgstr "Город / Населенный пункт:"
#: mod/profiles.php:725
#: mod/profiles.php:717
msgid "Region/State:"
msgstr "Район / Область:"
#: mod/profiles.php:726
#: mod/profiles.php:718
msgid "Postal/Zip Code:"
msgstr "Почтовый индекс:"
#: mod/profiles.php:727
#: mod/profiles.php:719
msgid "Country:"
msgstr "Страна:"
#: mod/profiles.php:731
#: mod/profiles.php:723
msgid "Who: (if applicable)"
msgstr "Кто: (если требуется)"
#: mod/profiles.php:731
#: mod/profiles.php:723
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
#: mod/profiles.php:732
#: mod/profiles.php:724
msgid "Since [date]:"
msgstr "С какого времени [дата]:"
#: mod/profiles.php:734
#: mod/profiles.php:726
msgid "Tell us about yourself..."
msgstr "Расскажите нам о себе ..."
#: mod/profiles.php:735
#: mod/profiles.php:727
msgid "XMPP (Jabber) address:"
msgstr ""
msgstr "Адрес XMPP (Jabber):"
#: mod/profiles.php:735
#: mod/profiles.php:727
msgid ""
"The XMPP address will be propagated to your contacts so that they can follow"
" you."
msgstr ""
msgstr "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить."
#: mod/profiles.php:736
#: mod/profiles.php:728
msgid "Homepage URL:"
msgstr "Адрес домашней странички:"
#: mod/profiles.php:739
#: mod/profiles.php:731
msgid "Religious Views:"
msgstr "Религиозные взгляды:"
#: mod/profiles.php:740
#: mod/profiles.php:732
msgid "Public Keywords:"
msgstr "Общественные ключевые слова:"
#: mod/profiles.php:740
#: mod/profiles.php:732
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
#: mod/profiles.php:741
#: mod/profiles.php:733
msgid "Private Keywords:"
msgstr "Личные ключевые слова:"
#: mod/profiles.php:741
#: mod/profiles.php:733
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Используется для поиска профилей, никогда не показывается другим)"
#: mod/profiles.php:744
#: mod/profiles.php:736
msgid "Musical interests"
msgstr "Музыкальные интересы"
#: mod/profiles.php:745
#: mod/profiles.php:737
msgid "Books, literature"
msgstr "Книги, литература"
#: mod/profiles.php:746
#: mod/profiles.php:738
msgid "Television"
msgstr "Телевидение"
#: mod/profiles.php:747
#: mod/profiles.php:739
msgid "Film/dance/culture/entertainment"
msgstr "Кино / танцы / культура / развлечения"
#: mod/profiles.php:748
#: mod/profiles.php:740
msgid "Hobbies/Interests"
msgstr "Хобби / Интересы"
#: mod/profiles.php:749
#: mod/profiles.php:741
msgid "Love/romance"
msgstr "Любовь / романтика"
#: mod/profiles.php:750
#: mod/profiles.php:742
msgid "Work/employment"
msgstr "Работа / занятость"
#: mod/profiles.php:751
#: mod/profiles.php:743
msgid "School/education"
msgstr "Школа / образование"
#: mod/profiles.php:752
#: mod/profiles.php:744
msgid "Contact information and Social Networks"
msgstr "Контактная информация и социальные сети"
#: mod/profiles.php:794
#: mod/profiles.php:788
msgid "Edit/Manage Profiles"
msgstr "Редактировать профиль"
#: mod/allfriends.php:43
msgid "No friends to display."
msgstr "Нет друзей."
#: mod/profperm.php:26 mod/profperm.php:57
msgid "Invalid profile identifier."
msgstr "Недопустимый идентификатор профиля."
#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Доступ к этому профилю ограничен."
#: mod/profperm.php:103
msgid "Profile Visibility Editor"
msgstr "Редактор видимости профиля"
#: mod/cal.php:276 mod/events.php:380
msgid "View"
msgstr ""
#: mod/profperm.php:116
msgid "Visible To"
msgstr "Видимый для"
#: mod/cal.php:277 mod/events.php:382
msgid "Previous"
msgstr "Назад"
#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
msgid "Next"
msgstr "Далее"
#: mod/cal.php:287 mod/events.php:392
msgid "list"
msgstr ""
#: mod/cal.php:297
msgid "User not found"
msgstr ""
#: mod/cal.php:313
msgid "This calendar format is not supported"
msgstr ""
#: mod/cal.php:315
msgid "No exportable data found"
msgstr ""
#: mod/cal.php:330
msgid "calendar"
msgstr ""
#: mod/common.php:86
msgid "No contacts in common."
msgstr "Нет общих контактов."
#: mod/common.php:134 mod/contacts.php:863
msgid "Common Friends"
msgstr "Общие друзья"
#: mod/community.php:27
msgid "Not available."
msgstr "Недоступно."
#: mod/directory.php:197 view/theme/vier/theme.php:201
msgid "Global Directory"
msgstr "Глобальный каталог"
#: mod/directory.php:199
msgid "Find on this site"
msgstr "Найти на этом сайте"
#: mod/directory.php:201
msgid "Results for:"
msgstr ""
#: mod/directory.php:203
msgid "Site Directory"
msgstr "Каталог сайта"
#: mod/directory.php:210
msgid "No entries (some entries may be hidden)."
msgstr "Нет записей (некоторые записи могут быть скрыты)."
#: mod/dirfind.php:36
#, php-format
msgid "People Search - %s"
msgstr ""
#: mod/dirfind.php:47
#, php-format
msgid "Forum Search - %s"
msgstr ""
#: mod/dirfind.php:240 mod/match.php:107
msgid "No matches"
msgstr "Нет соответствий"
#: mod/display.php:473
msgid "Item has been removed."
msgstr "Пункт был удален."
#: mod/events.php:95 mod/events.php:97
msgid "Event can not end before it has started."
msgstr ""
#: mod/events.php:104 mod/events.php:106
msgid "Event title and start time are required."
msgstr "Название мероприятия и время начала обязательны для заполнения."
#: mod/events.php:381
msgid "Create New Event"
msgstr "Создать новое мероприятие"
#: mod/events.php:482
msgid "Event details"
msgstr "Сведения о мероприятии"
#: mod/events.php:483
msgid "Starting date and Title are required."
msgstr ""
#: mod/events.php:484 mod/events.php:485
msgid "Event Starts:"
msgstr "Начало мероприятия:"
#: mod/events.php:486 mod/events.php:502
msgid "Finish date/time is not known or not relevant"
msgstr "Дата/время окончания не известны, или не указаны"
#: mod/events.php:488 mod/events.php:489
msgid "Event Finishes:"
msgstr "Окончание мероприятия:"
#: mod/events.php:490 mod/events.php:503
msgid "Adjust for viewer timezone"
msgstr "Настройка часового пояса"
#: mod/events.php:492
msgid "Description:"
msgstr "Описание:"
#: mod/events.php:496 mod/events.php:498
msgid "Title:"
msgstr "Титул:"
#: mod/events.php:499 mod/events.php:500
msgid "Share this event"
msgstr "Поделитесь этим мероприятием"
#: mod/maintenance.php:9
msgid "System down for maintenance"
msgstr "Система закрыта на техническое обслуживание"
#: mod/match.php:33
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."
#: mod/match.php:86
msgid "is interested in:"
msgstr "интересуется:"
#: mod/match.php:100
msgid "Profile Match"
msgstr "Похожие профили"
#: mod/profile.php:179
msgid "Tips for New Members"
msgstr "Советы для новых участников"
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Вы действительно хотите удалить это предложение?"
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Проигнорировать/Скрыть"
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
#: mod/photos.php:88 mod/photos.php:1856
msgid "Recent Photos"
msgstr "Последние фото"
#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
msgid "Upload New Photos"
msgstr "Загрузить новые фото"
#: mod/photos.php:105 mod/settings.php:36
msgid "everybody"
msgstr "каждый"
#: mod/photos.php:169
msgid "Contact information unavailable"
msgstr "Информация о контакте недоступна"
#: mod/photos.php:190
msgid "Album not found."
msgstr "Альбом не найден."
#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
msgid "Delete Album"
msgstr "Удалить альбом"
#: mod/photos.php:230
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?"
#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
msgid "Delete Photo"
msgstr "Удалить фото"
#: mod/photos.php:317
msgid "Do you really want to delete this photo?"
msgstr "Вы действительно хотите удалить эту фотографию?"
#: mod/photos.php:688
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s отмечен/а/ в %2$s by %3$s"
#: mod/photos.php:688
msgid "a photo"
msgstr "фото"
#: mod/photos.php:794
msgid "Image file is empty."
msgstr "Файл изображения пуст."
#: mod/photos.php:954
msgid "No photos selected"
msgstr "Не выбрано фото."
#: mod/photos.php:1054 mod/videos.php:305
msgid "Access to this item is restricted."
msgstr "Доступ к этому пункту ограничен."
#: mod/photos.php:1114
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."
#: mod/photos.php:1148
msgid "Upload Photos"
msgstr "Загрузить фото"
#: mod/photos.php:1152 mod/photos.php:1222
msgid "New album name: "
msgstr "Название нового альбома: "
#: mod/photos.php:1153
msgid "or existing album name: "
msgstr "или название существующего альбома: "
#: mod/photos.php:1154
msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки"
#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
msgid "Show to Groups"
msgstr "Показать в группах"
#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
msgid "Show to Contacts"
msgstr "Показывать контактам"
#: mod/photos.php:1167
msgid "Private Photo"
msgstr "Личное фото"
#: mod/photos.php:1168
msgid "Public Photo"
msgstr "Публичное фото"
#: mod/photos.php:1234
msgid "Edit Album"
msgstr "Редактировать альбом"
#: mod/photos.php:1240
msgid "Show Newest First"
msgstr "Показать новые первыми"
#: mod/photos.php:1242
msgid "Show Oldest First"
msgstr "Показать старые первыми"
#: mod/photos.php:1269 mod/photos.php:1841
msgid "View Photo"
msgstr "Просмотр фото"
#: mod/photos.php:1315
msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен."
#: mod/photos.php:1317
msgid "Photo not available"
msgstr "Фото недоступно"
#: mod/photos.php:1372
msgid "View photo"
msgstr "Просмотр фото"
#: mod/photos.php:1372
msgid "Edit photo"
msgstr "Редактировать фото"
#: mod/photos.php:1373
msgid "Use as profile photo"
msgstr "Использовать как фото профиля"
#: mod/photos.php:1398
msgid "View Full Size"
msgstr "Просмотреть полный размер"
#: mod/photos.php:1484
msgid "Tags: "
msgstr "Ключевые слова: "
#: mod/photos.php:1487
msgid "[Remove any tag]"
msgstr "[Удалить любое ключевое слово]"
#: mod/photos.php:1526
msgid "New album name"
msgstr "Название нового альбома"
#: mod/photos.php:1527
msgid "Caption"
msgstr "Подпись"
#: mod/photos.php:1528
msgid "Add a Tag"
msgstr "Добавить ключевое слово (таг)"
#: mod/photos.php:1528
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: mod/photos.php:1529
msgid "Do not rotate"
msgstr ""
#: mod/photos.php:1530
msgid "Rotate CW (right)"
msgstr "Поворот по часовой стрелке (направо)"
#: mod/photos.php:1531
msgid "Rotate CCW (left)"
msgstr "Поворот против часовой стрелки (налево)"
#: mod/photos.php:1546
msgid "Private photo"
msgstr "Личное фото"
#: mod/photos.php:1547
msgid "Public photo"
msgstr "Публичное фото"
#: mod/photos.php:1770
msgid "Map"
msgstr "Карта"
#: mod/photos.php:1847 mod/videos.php:387
msgid "View Album"
msgstr "Просмотреть альбом"
#: mod/profperm.php:132
msgid "All Contacts (with secure profile access)"
msgstr "Все контакты (с безопасным доступом к профилю)"
#: mod/register.php:93
msgid ""
@ -5393,11 +7690,11 @@ msgstr "Регистрация успешна. Пожалуйста, прове
msgid ""
"Failed to send email message. Here your accout details:<br> login: %s<br> "
"password: %s<br><br>You can change your password after login."
msgstr ""
msgstr "Ошибка отправки письма. Вот ваши учетные данные: <br> логин: %s<br> пароль: %s<br><br>Вы сможете изменить пароль после входа."
#: mod/register.php:105
msgid "Registration successful."
msgstr ""
msgstr "Регистрация успешна."
#: mod/register.php:111
msgid "Your registration can not be processed."
@ -5407,6 +7704,12 @@ msgstr "Ваша регистрация не может быть обработ
msgid "Your registration is pending approval by the site owner."
msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
#: mod/register.php:198 mod/uimport.php:51
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."
#: mod/register.php:226
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
@ -5429,11 +7732,11 @@ msgstr "Включить ваш профиль в каталог участни
#: mod/register.php:267
msgid "Note for the admin"
msgstr ""
msgstr "Сообщение для администратора"
#: mod/register.php:267
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
msgstr "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\""
#: mod/register.php:268
msgid "Membership on this site is by invitation only."
@ -5443,27 +7746,23 @@ msgstr "Членство на сайте только по приглашени
msgid "Your invitation ID: "
msgstr "ID вашего приглашения:"
#: mod/register.php:272 mod/admin.php:956
msgid "Registration"
msgstr "Регистрация"
#: mod/register.php:280
msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
msgstr ""
msgstr "Ваше полное имя (например, Иван Иванов):"
#: mod/register.php:281
msgid "Your Email Address: "
msgstr "Ваш адрес электронной почты: "
#: mod/register.php:283 mod/settings.php:1271
#: mod/register.php:283 mod/settings.php:1278
msgid "New Password:"
msgstr "Новый пароль:"
#: mod/register.php:283
msgid "Leave empty for an auto generated password."
msgstr ""
msgstr "Оставьте пустым для автоматической генерации пароля."
#: mod/register.php:284 mod/settings.php:1272
#: mod/register.php:284 mod/settings.php:1279
msgid "Confirm:"
msgstr "Подтвердите:"
@ -5478,775 +7777,896 @@ msgstr "Выбор псевдонима профиля. Он должен нач
msgid "Choose a nickname: "
msgstr "Выберите псевдоним: "
#: mod/register.php:295 mod/uimport.php:66
msgid "Import"
msgstr "Импорт"
#: mod/register.php:296
msgid "Import your profile to this friendica instance"
msgstr "Импорт своего профиля в этот экземпляр friendica"
#: mod/settings.php:43 mod/admin.php:1396
msgid "Account"
msgstr "Аккаунт"
#: mod/regmod.php:58
msgid "Account approved."
msgstr "Аккаунт утвержден."
#: mod/settings.php:52 mod/admin.php:160
msgid "Additional features"
msgstr "Дополнительные возможности"
#: mod/regmod.php:95
#, php-format
msgid "Registration revoked for %s"
msgstr "Регистрация отменена для %s"
#: mod/regmod.php:107
msgid "Please login."
msgstr "Пожалуйста, войдите с паролем."
#: mod/removeme.php:52 mod/removeme.php:55
msgid "Remove My Account"
msgstr "Удалить мой аккаунт"
#: mod/removeme.php:53
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
#: mod/removeme.php:54
msgid "Please enter your password for verification:"
msgstr "Пожалуйста, введите свой пароль для проверки:"
#: mod/repair_ostatus.php:14
msgid "Resubscribing to OStatus contacts"
msgstr "Переподписаться на OStatus-контакты."
#: mod/repair_ostatus.php:30
msgid "Error"
msgstr "Ошибка"
#: mod/search.php:100
msgid "Only logged in users are permitted to perform a search."
msgstr "Только зарегистрированные пользователи могут использовать поиск."
#: 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:230
#, php-format
msgid "Items tagged with: %s"
msgstr "Элементы с тегами: %s"
#: mod/settings.php:60
msgid "Display"
msgstr "Внешний вид"
#: mod/settings.php:67 mod/settings.php:886
#: mod/settings.php:67 mod/settings.php:890
msgid "Social Networks"
msgstr "Социальные сети"
#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
msgid "Plugins"
msgstr "Плагины"
#: mod/settings.php:88
msgid "Connected apps"
msgstr "Подключенные приложения"
#: mod/settings.php:95 mod/uexport.php:45
msgid "Export personal data"
msgstr "Экспорт личных данных"
#: mod/settings.php:102
msgid "Remove account"
msgstr "Удалить аккаунт"
#: mod/settings.php:155
#: mod/settings.php:157
msgid "Missing some important data!"
msgstr "Не хватает важных данных!"
#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
msgid "Update"
msgstr "Обновление"
#: mod/settings.php:269
#: mod/settings.php:271
msgid "Failed to connect with email account using the settings provided."
msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
#: mod/settings.php:274
#: mod/settings.php:276
msgid "Email settings updated."
msgstr "Настройки эл. почты обновлены."
#: mod/settings.php:289
#: mod/settings.php:291
msgid "Features updated"
msgstr "Настройки обновлены"
#: mod/settings.php:359
#: mod/settings.php:361
msgid "Relocate message has been send to your contacts"
msgstr "Перемещённое сообщение было отправлено списку контактов"
#: mod/settings.php:378
#: mod/settings.php:380
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Пустые пароли не допускаются. Пароль не изменен."
#: mod/settings.php:386
#: mod/settings.php:388
msgid "Wrong password."
msgstr "Неверный пароль."
#: mod/settings.php:397
#: mod/settings.php:399
msgid "Password changed."
msgstr "Пароль изменен."
#: mod/settings.php:399
#: mod/settings.php:401
msgid "Password update failed. Please try again."
msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
#: mod/settings.php:479
#: mod/settings.php:481
msgid " Please use a shorter name."
msgstr " Пожалуйста, используйте более короткое имя."
#: mod/settings.php:481
#: mod/settings.php:483
msgid " Name too short."
msgstr " Имя слишком короткое."
#: mod/settings.php:490
#: mod/settings.php:492
msgid "Wrong Password"
msgstr "Неверный пароль."
#: mod/settings.php:495
#: mod/settings.php:497
msgid " Not valid email."
msgstr " Неверный e-mail."
#: mod/settings.php:501
#: mod/settings.php:503
msgid " Cannot change to that email."
msgstr " Невозможно изменить на этот e-mail."
#: mod/settings.php:557
#: mod/settings.php:559
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию."
#: mod/settings.php:561
#: mod/settings.php:563
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию."
#: mod/settings.php:601
#: mod/settings.php:603
msgid "Settings updated."
msgstr "Настройки обновлены."
#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
msgid "Add application"
msgstr "Добавить приложения"
#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
#: mod/admin.php:2055
msgid "Save Settings"
msgstr "Сохранить настройки"
#: mod/settings.php:681 mod/settings.php:707
#: mod/settings.php:684 mod/settings.php:710
msgid "Consumer Key"
msgstr "Consumer Key"
#: mod/settings.php:682 mod/settings.php:708
#: mod/settings.php:685 mod/settings.php:711
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: mod/settings.php:683 mod/settings.php:709
#: mod/settings.php:686 mod/settings.php:712
msgid "Redirect"
msgstr "Перенаправление"
#: mod/settings.php:684 mod/settings.php:710
#: mod/settings.php:687 mod/settings.php:713
msgid "Icon url"
msgstr "URL символа"
#: mod/settings.php:695
#: mod/settings.php:698
msgid "You can't edit this application."
msgstr "Вы не можете изменить это приложение."
#: mod/settings.php:738
#: mod/settings.php:741
msgid "Connected Apps"
msgstr "Подключенные приложения"
#: mod/settings.php:742
#: mod/settings.php:745
msgid "Client key starts with"
msgstr "Ключ клиента начинается с"
#: mod/settings.php:743
#: mod/settings.php:746
msgid "No name"
msgstr "Нет имени"
#: mod/settings.php:744
#: mod/settings.php:747
msgid "Remove authorization"
msgstr "Удалить авторизацию"
#: mod/settings.php:756
#: mod/settings.php:759
msgid "No Plugin settings configured"
msgstr "Нет сконфигурированных настроек плагина"
#: mod/settings.php:764
#: mod/settings.php:768
msgid "Plugin Settings"
msgstr "Настройки плагина"
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
msgid "Off"
msgstr "Выкл."
#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
msgid "On"
msgstr "Вкл."
#: mod/settings.php:786
#: mod/settings.php:790
msgid "Additional Features"
msgstr "Дополнительные возможности"
#: mod/settings.php:796 mod/settings.php:800
#: mod/settings.php:800 mod/settings.php:804
msgid "General Social Media Settings"
msgstr ""
msgstr "Общие настройки социальных медиа"
#: mod/settings.php:806
#: mod/settings.php:810
msgid "Disable intelligent shortening"
msgstr ""
msgstr "Отключить умное сокращение"
#: mod/settings.php:808
#: mod/settings.php:812
msgid ""
"Normally the system tries to find the best link to add to shortened posts. "
"If this option is enabled then every shortened post will always point to the"
" original friendica post."
msgstr ""
msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенному посту. Если эта настройка включена, то каждый сокращенный пост будет указывать на оригинальный пост в Friendica."
#: mod/settings.php:814
#: mod/settings.php:818
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
msgstr ""
msgstr "Автоматически подписываться на любого пользователя GNU Social (OStatus), который вас упомянул или который на вас подписался"
#: mod/settings.php:816
#: mod/settings.php:820
msgid ""
"If you receive a message from an unknown OStatus user, this option decides "
"what to do. If it is checked, a new contact will be created for every "
"unknown user."
msgstr ""
msgstr "Если вы получите сообщение от неизвестной учетной записи OStatus, эта настройка решает, что делать. Если включена, то новый контакт будет создан для каждого неизвестного пользователя."
#: mod/settings.php:822
#: mod/settings.php:826
msgid "Default group for OStatus contacts"
msgstr ""
msgstr "Группа по-умолчанию для OStatus-контактов"
#: mod/settings.php:828
#: mod/settings.php:834
msgid "Your legacy GNU Social account"
msgstr ""
msgstr "Ваша старая учетная запись GNU Social"
#: mod/settings.php:830
#: mod/settings.php:836
msgid ""
"If you enter your old GNU Social/Statusnet account name here (in the format "
"user@domain.tld), your contacts will be added automatically. The field will "
"be emptied when done."
msgstr ""
msgstr "Если вы введете тут вашу старую учетную запись GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены."
#: mod/settings.php:833
#: mod/settings.php:839
msgid "Repair OStatus subscriptions"
msgstr ""
msgstr "Починить подписки OStatus"
#: mod/settings.php:842 mod/settings.php:843
#: mod/settings.php:848 mod/settings.php:849
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Встроенная поддержка для %s подключение %s"
#: mod/settings.php:842 mod/settings.php:843
#: mod/settings.php:848 mod/settings.php:849
msgid "enabled"
msgstr "подключено"
#: mod/settings.php:842 mod/settings.php:843
#: mod/settings.php:848 mod/settings.php:849
msgid "disabled"
msgstr "отключено"
#: mod/settings.php:843
#: mod/settings.php:849
msgid "GNU Social (OStatus)"
msgstr ""
msgstr "GNU Social (OStatus)"
#: mod/settings.php:879
#: mod/settings.php:883
msgid "Email access is disabled on this site."
msgstr "Доступ эл. почты отключен на этом сайте."
#: mod/settings.php:891
#: mod/settings.php:895
msgid "Email/Mailbox Setup"
msgstr "Настройка эл. почты / почтового ящика"
#: mod/settings.php:892
#: mod/settings.php:896
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
#: mod/settings.php:893
#: mod/settings.php:897
msgid "Last successful email check:"
msgstr "Последняя успешная проверка электронной почты:"
#: mod/settings.php:895
#: mod/settings.php:899
msgid "IMAP server name:"
msgstr "Имя IMAP сервера:"
#: mod/settings.php:896
#: mod/settings.php:900
msgid "IMAP port:"
msgstr "Порт IMAP:"
#: mod/settings.php:897
#: mod/settings.php:901
msgid "Security:"
msgstr "Безопасность:"
#: mod/settings.php:897 mod/settings.php:902
#: mod/settings.php:901 mod/settings.php:906
msgid "None"
msgstr "Ничего"
#: mod/settings.php:898
#: mod/settings.php:902
msgid "Email login name:"
msgstr "Логин эл. почты:"
#: mod/settings.php:899
#: mod/settings.php:903
msgid "Email password:"
msgstr "Пароль эл. почты:"
#: mod/settings.php:900
#: mod/settings.php:904
msgid "Reply-to address:"
msgstr "Адрес для ответа:"
#: mod/settings.php:901
#: mod/settings.php:905
msgid "Send public posts to all email contacts:"
msgstr "Отправлять открытые сообщения на все контакты электронной почты:"
#: mod/settings.php:902
#: mod/settings.php:906
msgid "Action after import:"
msgstr "Действие после импорта:"
#: mod/settings.php:902
#: mod/settings.php:906
msgid "Move to folder"
msgstr "Переместить в папку"
#: mod/settings.php:903
#: mod/settings.php:907
msgid "Move to folder:"
msgstr "Переместить в папку:"
#: mod/settings.php:934 mod/admin.php:862
msgid "No special theme for mobile devices"
msgstr "Нет специальной темы для мобильных устройств"
#: mod/settings.php:994
#: mod/settings.php:1003
msgid "Display Settings"
msgstr "Параметры дисплея"
#: mod/settings.php:1000 mod/settings.php:1023
#: mod/settings.php:1009 mod/settings.php:1032
msgid "Display Theme:"
msgstr "Показать тему:"
#: mod/settings.php:1001
#: mod/settings.php:1010
msgid "Mobile Theme:"
msgstr "Мобильная тема:"
#: mod/settings.php:1002
#: mod/settings.php:1011
msgid "Suppress warning of insecure networks"
msgstr ""
msgstr "Не отображать уведомление о небезопасных сетях"
#: mod/settings.php:1002
#: mod/settings.php:1011
msgid ""
"Should the system suppress the warning that the current group contains "
"members of networks that can't receive non public postings."
msgstr ""
msgstr "Должна ли система подавлять уведомления о том, что текущая группа содержить пользователей из сетей, которые не могут получать непубличные сообщения или сообщения с ограниченной видимостью."
#: mod/settings.php:1003
#: mod/settings.php:1012
msgid "Update browser every xx seconds"
msgstr "Обновление браузера каждые хх секунд"
#: mod/settings.php:1003
#: mod/settings.php:1012
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
msgstr "Минимум 10 секунд. Введите -1 для отключения."
#: mod/settings.php:1004
#: mod/settings.php:1013
msgid "Number of items to display per page:"
msgstr "Количество элементов, отображаемых на одной странице:"
#: mod/settings.php:1004 mod/settings.php:1005
#: mod/settings.php:1013 mod/settings.php:1014
msgid "Maximum of 100 items"
msgstr "Максимум 100 элементов"
#: mod/settings.php:1005
#: mod/settings.php:1014
msgid "Number of items to display per page when viewed from mobile device:"
msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:"
#: mod/settings.php:1006
#: mod/settings.php:1015
msgid "Don't show emoticons"
msgstr "не показывать emoticons"
#: mod/settings.php:1007
#: mod/settings.php:1016
msgid "Calendar"
msgstr ""
msgstr "Календарь"
#: mod/settings.php:1008
#: mod/settings.php:1017
msgid "Beginning of week:"
msgstr ""
msgstr "Начало недели:"
#: mod/settings.php:1009
#: mod/settings.php:1018
msgid "Don't show notices"
msgstr ""
msgstr "Не показывать уведомления"
#: mod/settings.php:1010
#: mod/settings.php:1019
msgid "Infinite scroll"
msgstr "Бесконечная прокрутка"
#: mod/settings.php:1011
#: mod/settings.php:1020
msgid "Automatic updates only at the top of the network page"
msgstr ""
msgstr "Автоматически обновлять только при нахождении вверху страницы \"Сеть\""
#: mod/settings.php:1012
#: mod/settings.php:1021
msgid "Bandwith Saver Mode"
msgstr ""
msgstr "Режим экономии трафика"
#: mod/settings.php:1012
#: mod/settings.php:1021
msgid ""
"When enabled, embedded content is not displayed on automatic updates, they "
"only show on page reload."
msgstr ""
msgstr "Если включено, то включенный контент не отображается при автоматическом обновлении, он будет показан только при перезагрузке страницы."
#: mod/settings.php:1014
#: mod/settings.php:1023
msgid "General Theme Settings"
msgstr ""
msgstr "Общие настройки тем"
#: mod/settings.php:1015
#: mod/settings.php:1024
msgid "Custom Theme Settings"
msgstr ""
msgstr "Личные настройки тем"
#: mod/settings.php:1016
#: mod/settings.php:1025
msgid "Content Settings"
msgstr ""
msgstr "Настройки контента"
#: mod/settings.php:1017 view/theme/frio/config.php:61
#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
#: view/theme/duepuntozero/config.php:61
#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
#: view/theme/vier/config.php:114
msgid "Theme settings"
msgstr "Настройки темы"
#: mod/settings.php:1099
#: mod/settings.php:1110
msgid "Account Types"
msgstr ""
msgstr "Тип учетной записи"
#: mod/settings.php:1100
#: mod/settings.php:1111
msgid "Personal Page Subtypes"
msgstr ""
#: mod/settings.php:1101
msgid "Community Forum Subtypes"
msgstr ""
#: mod/settings.php:1108
msgid "Personal Page"
msgstr ""
#: mod/settings.php:1109
msgid "This account is a regular personal profile"
msgstr ""
msgstr "Подтипы личной страницы"
#: mod/settings.php:1112
msgid "Organisation Page"
msgstr ""
msgid "Community Forum Subtypes"
msgstr "Подтипы форума сообщества"
#: mod/settings.php:1113
msgid "This account is a profile for an organisation"
msgstr ""
#: mod/settings.php:1116
msgid "News Page"
msgstr ""
#: mod/settings.php:1117
msgid "This account is a news account/reflector"
msgstr ""
#: mod/settings.php:1119
msgid "Personal Page"
msgstr "Личная страница"
#: mod/settings.php:1120
msgid "Community Forum"
msgstr ""
msgid "This account is a regular personal profile"
msgstr "Этот аккаунт является обычным личным профилем"
#: mod/settings.php:1121
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr ""
#: mod/settings.php:1123
msgid "Organisation Page"
msgstr "Организационная страница"
#: mod/settings.php:1124
msgid "This account is a profile for an organisation"
msgstr "Этот аккаунт является профилем организации"
#: mod/settings.php:1127
msgid "News Page"
msgstr "Новостная страница"
#: mod/settings.php:1128
msgid "This account is a news account/reflector"
msgstr "Этот аккаунт является ностным/рефлектором"
#: mod/settings.php:1131
msgid "Community Forum"
msgstr "Форум сообщества"
#: mod/settings.php:1132
msgid ""
"This account is a community forum where people can discuss with each other"
msgstr "Эта учетная запись является форумом сообщества, где люди могут обсуждать что-то друг с другом"
#: mod/settings.php:1135
msgid "Normal Account Page"
msgstr "Стандартная страница аккаунта"
#: mod/settings.php:1125
#: mod/settings.php:1136
msgid "This account is a normal personal profile"
msgstr "Этот аккаунт является обычным персональным профилем"
#: mod/settings.php:1128
#: mod/settings.php:1139
msgid "Soapbox Page"
msgstr ""
msgstr "Песочница"
#: mod/settings.php:1129
#: mod/settings.php:1140
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"
#: mod/settings.php:1132
#: mod/settings.php:1143
msgid "Public Forum"
msgstr ""
msgstr "Публичный форум"
#: mod/settings.php:1133
#: mod/settings.php:1144
msgid "Automatically approve all contact requests"
msgstr ""
msgstr "Автоматически принимать все запросы соединения."
#: mod/settings.php:1136
#: mod/settings.php:1147
msgid "Automatic Friend Page"
msgstr "\"Автоматический друг\" страница"
#: mod/settings.php:1137
#: mod/settings.php:1148
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"
#: mod/settings.php:1140
#: mod/settings.php:1151
msgid "Private Forum [Experimental]"
msgstr "Личный форум [экспериментально]"
#: mod/settings.php:1141
#: mod/settings.php:1152
msgid "Private forum - approved members only"
msgstr "Приватный форум - разрешено только участникам"
#: mod/settings.php:1153
#: mod/settings.php:1163
msgid "OpenID:"
msgstr "OpenID:"
#: mod/settings.php:1153
#: mod/settings.php:1163
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
#: mod/settings.php:1163
#: mod/settings.php:1171
msgid "Publish your default profile in your local site directory?"
msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
#: mod/settings.php:1169
#: mod/settings.php:1177
msgid "Publish your default profile in the global social directory?"
msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
#: mod/settings.php:1177
#: mod/settings.php:1184
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"
#: mod/settings.php:1181
#: mod/settings.php:1188
msgid ""
"If enabled, posting public messages to Diaspora and other networks isn't "
"possible."
msgstr ""
msgstr "Если включено, то мы не сможем отправлять публичные сообщения в Diaspora или другую сеть."
#: mod/settings.php:1186
#: mod/settings.php:1193
msgid "Allow friends to post to your profile page?"
msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
#: mod/settings.php:1192
#: mod/settings.php:1198
msgid "Allow friends to tag your posts?"
msgstr "Разрешить друзьям отмечять ваши сообщения?"
#: mod/settings.php:1198
#: mod/settings.php:1203
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Позвольть предлогать Вам потенциальных друзей?"
#: mod/settings.php:1204
#: mod/settings.php:1208
msgid "Permit unknown people to send you private mail?"
msgstr "Разрешить незнакомым людям отправлять вам личные сообщения?"
#: mod/settings.php:1212
#: mod/settings.php:1216
msgid "Profile is <strong>not published</strong>."
msgstr "Профиль <strong>не публикуется</strong>."
#: mod/settings.php:1220
#: mod/settings.php:1224
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
msgstr "Ваш адрес: <strong>'%s'</strong> или '%s'."
#: mod/settings.php:1227
#: mod/settings.php:1231
msgid "Automatically expire posts after this many days:"
msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
#: mod/settings.php:1227
#: mod/settings.php:1231
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"
#: mod/settings.php:1228
#: mod/settings.php:1232
msgid "Advanced expiration settings"
msgstr "Настройки расширенного окончания срока действия"
#: mod/settings.php:1229
#: mod/settings.php:1233
msgid "Advanced Expiration"
msgstr "Расширенное окончание срока действия"
#: mod/settings.php:1230
#: mod/settings.php:1234
msgid "Expire posts:"
msgstr "Срок хранения сообщений:"
#: mod/settings.php:1231
#: mod/settings.php:1235
msgid "Expire personal notes:"
msgstr "Срок хранения личных заметок:"
#: mod/settings.php:1232
#: mod/settings.php:1236
msgid "Expire starred posts:"
msgstr "Срок хранения усеянных сообщений:"
#: mod/settings.php:1233
#: mod/settings.php:1237
msgid "Expire photos:"
msgstr "Срок хранения фотографий:"
#: mod/settings.php:1234
#: mod/settings.php:1238
msgid "Only expire posts by others:"
msgstr "Только устаревшие посты других:"
#: mod/settings.php:1262
#: mod/settings.php:1269
msgid "Account Settings"
msgstr "Настройки аккаунта"
#: mod/settings.php:1270
#: mod/settings.php:1277
msgid "Password Settings"
msgstr "Смена пароля"
#: mod/settings.php:1272
#: mod/settings.php:1279
msgid "Leave password fields blank unless changing"
msgstr "Оставьте поля пароля пустыми, если он не изменяется"
#: mod/settings.php:1273
#: mod/settings.php:1280
msgid "Current Password:"
msgstr "Текущий пароль:"
#: mod/settings.php:1273 mod/settings.php:1274
#: mod/settings.php:1280 mod/settings.php:1281
msgid "Your current password to confirm the changes"
msgstr "Ваш текущий пароль, для подтверждения изменений"
#: mod/settings.php:1274
#: mod/settings.php:1281
msgid "Password:"
msgstr "Пароль:"
#: mod/settings.php:1278
#: mod/settings.php:1285
msgid "Basic Settings"
msgstr "Основные параметры"
#: mod/settings.php:1280
#: mod/settings.php:1287
msgid "Email Address:"
msgstr "Адрес электронной почты:"
#: mod/settings.php:1281
#: mod/settings.php:1288
msgid "Your Timezone:"
msgstr "Ваш часовой пояс:"
#: mod/settings.php:1282
#: mod/settings.php:1289
msgid "Your Language:"
msgstr ""
msgstr "Ваш язык:"
#: mod/settings.php:1282
#: mod/settings.php:1289
msgid ""
"Set the language we use to show you friendica interface and to send you "
"emails"
msgstr ""
msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма"
#: mod/settings.php:1283
#: mod/settings.php:1290
msgid "Default Post Location:"
msgstr "Местонахождение по умолчанию:"
#: mod/settings.php:1284
#: mod/settings.php:1291
msgid "Use Browser Location:"
msgstr "Использовать определение местоположения браузером:"
#: mod/settings.php:1287
#: mod/settings.php:1294
msgid "Security and Privacy Settings"
msgstr "Параметры безопасности и конфиденциальности"
#: mod/settings.php:1289
#: mod/settings.php:1296
msgid "Maximum Friend Requests/Day:"
msgstr "Максимум запросов в друзья в день:"
#: mod/settings.php:1289 mod/settings.php:1319
#: mod/settings.php:1296 mod/settings.php:1326
msgid "(to prevent spam abuse)"
msgstr "(для предотвращения спама)"
#: mod/settings.php:1290
#: mod/settings.php:1297
msgid "Default Post Permissions"
msgstr "Разрешение на сообщения по умолчанию"
#: mod/settings.php:1291
#: mod/settings.php:1298
msgid "(click to open/close)"
msgstr "(нажмите, чтобы открыть / закрыть)"
#: mod/settings.php:1302
#: mod/settings.php:1309
msgid "Default Private Post"
msgstr "Личное сообщение по умолчанию"
#: mod/settings.php:1303
#: mod/settings.php:1310
msgid "Default Public Post"
msgstr "Публичное сообщение по умолчанию"
#: mod/settings.php:1307
#: mod/settings.php:1314
msgid "Default Permissions for New Posts"
msgstr "Права для новых записей по умолчанию"
#: mod/settings.php:1319
#: mod/settings.php:1326
msgid "Maximum private messages per day from unknown people:"
msgstr "Максимальное количество личных сообщений от незнакомых людей в день:"
#: mod/settings.php:1322
#: mod/settings.php:1329
msgid "Notification Settings"
msgstr "Настройка уведомлений"
#: mod/settings.php:1323
#: mod/settings.php:1330
msgid "By default post a status message when:"
msgstr "Отправить состояние о статусе по умолчанию, если:"
#: mod/settings.php:1324
#: mod/settings.php:1331
msgid "accepting a friend request"
msgstr "принятие запроса на добавление в друзья"
#: mod/settings.php:1325
#: mod/settings.php:1332
msgid "joining a forum/community"
msgstr "вступление в сообщество/форум"
#: mod/settings.php:1326
#: mod/settings.php:1333
msgid "making an <em>interesting</em> profile change"
msgstr "сделать изменения в <em>настройках интересов</em> профиля"
#: mod/settings.php:1327
#: mod/settings.php:1334
msgid "Send a notification email when:"
msgstr "Отправлять уведомление по электронной почте, когда:"
#: mod/settings.php:1328
#: mod/settings.php:1335
msgid "You receive an introduction"
msgstr "Вы получили запрос"
#: mod/settings.php:1329
#: mod/settings.php:1336
msgid "Your introductions are confirmed"
msgstr "Ваши запросы подтверждены"
#: mod/settings.php:1330
#: mod/settings.php:1337
msgid "Someone writes on your profile wall"
msgstr "Кто-то пишет на стене вашего профиля"
#: mod/settings.php:1331
#: mod/settings.php:1338
msgid "Someone writes a followup comment"
msgstr "Кто-то пишет последующий комментарий"
#: mod/settings.php:1332
#: mod/settings.php:1339
msgid "You receive a private message"
msgstr "Вы получаете личное сообщение"
#: mod/settings.php:1333
#: mod/settings.php:1340
msgid "You receive a friend suggestion"
msgstr "Вы полулили предложение о добавлении в друзья"
#: mod/settings.php:1334
#: mod/settings.php:1341
msgid "You are tagged in a post"
msgstr "Вы отмечены в посте"
#: mod/settings.php:1335
#: mod/settings.php:1342
msgid "You are poked/prodded/etc. in a post"
msgstr ""
msgstr "Вас потыкали/подтолкнули/и т.д. в посте"
#: mod/settings.php:1337
#: mod/settings.php:1344
msgid "Activate desktop notifications"
msgstr ""
msgstr "Активировать уведомления на рабочем столе"
#: mod/settings.php:1337
#: mod/settings.php:1344
msgid "Show desktop popup on new notifications"
msgstr ""
msgstr "Показывать уведомления на рабочем столе"
#: mod/settings.php:1339
#: mod/settings.php:1346
msgid "Text-only notification emails"
msgstr ""
msgstr "Только текстовые письма"
#: mod/settings.php:1341
#: mod/settings.php:1348
msgid "Send text only notification emails, without the html part"
msgstr ""
msgstr "Отправлять только текстовые уведомления, без HTML"
#: mod/settings.php:1343
#: mod/settings.php:1350
msgid "Advanced Account/Page Type Settings"
msgstr "Расширенные настройки учётной записи"
#: mod/settings.php:1344
#: mod/settings.php:1351
msgid "Change the behaviour of this account for special situations"
msgstr "Измените поведение этого аккаунта в специальных ситуациях"
#: mod/settings.php:1347
#: mod/settings.php:1354
msgid "Relocate"
msgstr "Перемещение"
#: mod/settings.php:1348
#: mod/settings.php:1355
msgid ""
"If you have moved this profile from another server, and some of your "
"contacts don't receive your updates, try pushing this button."
msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку."
#: mod/settings.php:1349
#: mod/settings.php:1356
msgid "Resend relocate message to contacts"
msgstr "Отправить перемещённые сообщения контактам"
#: mod/videos.php:120
msgid "Do you really want to delete this video?"
msgstr ""
#: mod/subthread.php:104
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s подписан %2$s's %3$s"
#: mod/videos.php:125
#: mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Вы действительно хотите удалить это предложение?"
#: mod/suggest.php:71
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."
#: mod/suggest.php:84 mod/suggest.php:104
msgid "Ignore/Hide"
msgstr "Проигнорировать/Скрыть"
#: mod/tagrm.php:43
msgid "Tag removed"
msgstr "Ключевое слово удалено"
#: mod/tagrm.php:82
msgid "Remove Item Tag"
msgstr "Удалить ключевое слово"
#: mod/tagrm.php:84
msgid "Select a tag to remove: "
msgstr "Выберите ключевое слово для удаления: "
#: mod/uexport.php:37
msgid "Export account"
msgstr "Экспорт аккаунта"
#: mod/uexport.php:37
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."
#: mod/uexport.php:38
msgid "Export all"
msgstr "Экспорт всего"
#: mod/uexport.php:38
msgid ""
"Export your accout info, contacts and all your items as json. Could be a "
"very big file, and could take a lot of time. Use this to make a full backup "
"of your account (photos are not exported)"
msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"
#: mod/uimport.php:68
msgid "Move account"
msgstr "Удалить аккаунт"
#: mod/uimport.php:69
msgid "You can import an account from another Friendica server."
msgstr "Вы можете импортировать учетную запись с другого сервера Friendica."
#: mod/uimport.php:70
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."
#: mod/uimport.php:71
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (GNU Social/Statusnet) or from Diaspora"
msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora"
#: mod/uimport.php:72
msgid "Account file"
msgstr "Файл аккаунта"
#: mod/uimport.php:72
msgid ""
"To export your account, go to \"Settings->Export your personal data\" and "
"select \"Export account\""
msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""
#: mod/update_community.php:19 mod/update_display.php:23
#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
msgid "[Embedded content - reload page to view]"
msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
#: mod/videos.php:124
msgid "Do you really want to delete this video?"
msgstr "Вы действительно хотите удалить видео?"
#: mod/videos.php:129
msgid "Delete Video"
msgstr "Удалить видео"
#: mod/videos.php:204
#: mod/videos.php:208
msgid "No videos selected"
msgstr "Видео не выбрано"
#: mod/videos.php:396
#: mod/videos.php:400
msgid "Recent Videos"
msgstr "Последние видео"
#: mod/videos.php:398
#: mod/videos.php:402
msgid "Upload New Videos"
msgstr "Загрузить новые видео"
#: mod/viewcontacts.php:75
msgid "No contacts."
msgstr "Нет контактов."
#: mod/viewsrc.php:7
msgid "Access denied."
msgstr "Доступ запрещен."
#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
#: mod/wall_upload.php:122 mod/wall_upload.php:125
@ -6255,2692 +8675,213 @@ msgstr "Неверный запрос."
#: mod/wall_attach.php:94
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
msgstr ""
msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP"
#: mod/wall_attach.php:94
msgid "Or - did you try to upload an empty file?"
msgstr ""
msgstr "Или вы пытались загрузить пустой файл?"
#: mod/wall_attach.php:105
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
msgstr "Файл превышает лимит размера в %s"
#: mod/wall_attach.php:156 mod/wall_attach.php:172
#: mod/wall_attach.php:158 mod/wall_attach.php:174
msgid "File upload failed."
msgstr "Загрузка файла не удалась."
#: mod/admin.php:92
msgid "Theme settings updated."
msgstr "Настройки темы обновлены."
#: mod/admin.php:156 mod/admin.php:954
msgid "Site"
msgstr "Сайт"
#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
msgid "Users"
msgstr "Пользователи"
#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
msgid "Themes"
msgstr "Темы"
#: mod/admin.php:161
msgid "DB updates"
msgstr "Обновление БД"
#: mod/admin.php:162 mod/admin.php:406
msgid "Inspect Queue"
msgstr ""
#: mod/admin.php:163 mod/admin.php:372
msgid "Federation Statistics"
msgstr ""
#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
msgid "Logs"
msgstr "Журналы"
#: mod/admin.php:178 mod/admin.php:1972
msgid "View Logs"
msgstr "Просмотр логов"
#: mod/admin.php:179
msgid "probe address"
msgstr ""
#: mod/admin.php:180
msgid "check webfinger"
msgstr ""
#: mod/admin.php:187
msgid "Plugin Features"
msgstr "Возможности плагина"
#: mod/admin.php:189
msgid "diagnostics"
msgstr "Диагностика"
#: mod/admin.php:190
msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: mod/admin.php:306
msgid "unknown"
msgstr ""
#: mod/admin.php:365
msgid ""
"This page offers you some numbers to the known part of the federated social "
"network your Friendica node is part of. These numbers are not complete but "
"only reflect the part of the network your node is aware of."
msgstr ""
#: mod/admin.php:366
msgid ""
"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
"will improve the data displayed here."
msgstr ""
#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
msgid "Administration"
msgstr "Администрация"
#: mod/admin.php:378
#: mod/wallmessage.php:42 mod/wallmessage.php:106
#, php-format
msgid "Currently this node is aware of %d nodes from the following platforms:"
msgstr ""
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."
#: mod/admin.php:408
msgid "ID"
msgstr ""
#: mod/wallmessage.php:53
msgid "Unable to check your home location."
msgstr "Невозможно проверить местоположение."
#: mod/admin.php:409
msgid "Recipient Name"
msgstr ""
#: mod/wallmessage.php:80 mod/wallmessage.php:89
msgid "No recipient."
msgstr "Без адресата."
#: mod/admin.php:410
msgid "Recipient Profile"
msgstr ""
#: mod/admin.php:412
msgid "Created"
msgstr ""
#: mod/admin.php:413
msgid "Last Tried"
msgstr ""
#: mod/admin.php:414
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:439
#: mod/wallmessage.php:127
#, php-format
msgid ""
"Your DB still runs with MyISAM tables. You should change the engine type to "
"InnoDB. As Friendica will use InnoDB only features in the future, you should"
" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
"converting the table engines. You may also use the "
"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
"Friendica installation.<br />"
msgstr ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей."
#: mod/admin.php:444
msgid ""
"You are using a MySQL version which does not support all features that "
"Friendica uses. You should consider switching to MariaDB."
msgstr ""
#: mod/admin.php:448 mod/admin.php:1352
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: mod/admin.php:449 mod/admin.php:1353
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: mod/admin.php:450 mod/admin.php:1354
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: mod/admin.php:451 mod/admin.php:1355
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: mod/admin.php:452
msgid "Blog Account"
msgstr "Аккаунт блога"
#: mod/admin.php:453
msgid "Private Forum"
msgstr "Личный форум"
#: mod/admin.php:479
msgid "Message queues"
msgstr "Очереди сообщений"
#: mod/admin.php:485
msgid "Summary"
msgstr "Резюме"
#: mod/admin.php:488
msgid "Registered users"
msgstr "Зарегистрированные пользователи"
#: mod/admin.php:490
msgid "Pending registrations"
msgstr "Ожидающие регистрации"
#: mod/admin.php:491
msgid "Version"
msgstr "Версия"
#: mod/admin.php:496
msgid "Active plugins"
msgstr "Активные плагины"
#: mod/admin.php:521
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>"
#: mod/admin.php:826
msgid "RINO2 needs mcrypt php extension to work."
msgstr "Для функционирования RINO2 необходим пакет php5-mcrypt"
#: mod/admin.php:834
msgid "Site settings updated."
msgstr "Установки сайта обновлены."
#: mod/admin.php:881
msgid "No community page"
msgstr ""
#: mod/admin.php:882
msgid "Public postings from users of this site"
msgstr ""
#: mod/admin.php:883
msgid "Global community page"
msgstr ""
#: mod/admin.php:888 mod/contacts.php:530
msgid "Never"
msgstr "Никогда"
#: mod/admin.php:889
msgid "At post arrival"
msgstr ""
#: mod/admin.php:897 mod/contacts.php:557
msgid "Disabled"
msgstr "Отключенный"
#: mod/admin.php:899
msgid "Users, Global Contacts"
msgstr ""
#: mod/admin.php:900
msgid "Users, Global Contacts/fallback"
msgstr ""
#: mod/admin.php:904
msgid "One month"
msgstr "Один месяц"
#: mod/admin.php:905
msgid "Three months"
msgstr "Три месяца"
#: mod/admin.php:906
msgid "Half a year"
msgstr "Пол года"
#: mod/admin.php:907
msgid "One year"
msgstr "Один год"
#: mod/admin.php:912
msgid "Multi user instance"
msgstr "Многопользовательский вид"
#: mod/admin.php:935
msgid "Closed"
msgstr "Закрыто"
#: mod/admin.php:936
msgid "Requires approval"
msgstr "Требуется подтверждение"
#: mod/admin.php:937
msgid "Open"
msgstr "Открыто"
#: mod/admin.php:941
msgid "No SSL policy, links will track page SSL state"
msgstr "Нет режима SSL, состояние SSL не будет отслеживаться"
#: mod/admin.php:942
msgid "Force all links to use SSL"
msgstr "Заставить все ссылки использовать SSL"
#: mod/admin.php:943
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)"
#: mod/admin.php:957
msgid "File upload"
msgstr "Загрузка файлов"
#: mod/admin.php:958
msgid "Policies"
msgstr "Политики"
#: mod/admin.php:960
msgid "Auto Discovered Contact Directory"
msgstr ""
#: mod/admin.php:961
msgid "Performance"
msgstr "Производительность"
#: mod/admin.php:962
msgid "Worker"
msgstr ""
#: mod/admin.php:963
msgid ""
"Relocate - WARNING: advanced function. Could make this server unreachable."
msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."
#: mod/admin.php:966
msgid "Site name"
msgstr "Название сайта"
#: mod/admin.php:967
msgid "Host name"
msgstr "Имя хоста"
#: mod/admin.php:968
msgid "Sender Email"
msgstr "Системный Email"
#: mod/admin.php:968
msgid ""
"The email address your server shall use to send notification emails from."
msgstr "Адрес с которого будут приходить письма пользователям."
#: mod/admin.php:969
msgid "Banner/Logo"
msgstr "Баннер/Логотип"
#: mod/admin.php:970
msgid "Shortcut icon"
msgstr ""
#: mod/admin.php:970
msgid "Link to an icon that will be used for browsers."
msgstr ""
#: mod/admin.php:971
msgid "Touch icon"
msgstr ""
#: mod/admin.php:971
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
#: mod/admin.php:972
msgid "Additional Info"
msgstr "Дополнительная информация"
#: mod/admin.php:972
#, php-format
msgid ""
"For public servers: you can add additional information here that will be "
"listed at %s/siteinfo."
msgstr ""
#: mod/admin.php:973
msgid "System language"
msgstr "Системный язык"
#: mod/admin.php:974
msgid "System theme"
msgstr "Системная тема"
#: mod/admin.php:974
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>"
#: mod/admin.php:975
msgid "Mobile system theme"
msgstr "Мобильная тема системы"
#: mod/admin.php:975
msgid "Theme for mobile devices"
msgstr "Тема для мобильных устройств"
#: mod/admin.php:976
msgid "SSL link policy"
msgstr "Политика SSL"
#: mod/admin.php:976
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Ссылки должны быть вынуждены использовать SSL"
#: mod/admin.php:977
msgid "Force SSL"
msgstr "SSL принудительно"
#: mod/admin.php:977
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
" to endless loops."
msgstr ""
#: mod/admin.php:978
msgid "Old style 'Share'"
msgstr "Старый стиль 'Share'"
#: mod/admin.php:978
msgid "Deactivates the bbcode element 'share' for repeating items."
msgstr "Отключение BBCode элемента 'share' для повторяющихся элементов."
#: mod/admin.php:979
msgid "Hide help entry from navigation menu"
msgstr "Скрыть пункт \"помощь\" в меню навигации"
#: mod/admin.php:979
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую."
#: mod/admin.php:980
msgid "Single user instance"
msgstr "Однопользовательский режим"
#: mod/admin.php:980
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя"
#: mod/admin.php:981
msgid "Maximum image size"
msgstr "Максимальный размер изображения"
#: mod/admin.php:981
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений."
#: mod/admin.php:982
msgid "Maximum image length"
msgstr "Максимальная длина картинки"
#: mod/admin.php:982
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."
#: mod/admin.php:983
msgid "JPEG image quality"
msgstr "Качество JPEG изображения"
#: mod/admin.php:983
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."
#: mod/admin.php:985
msgid "Register policy"
msgstr "Политика регистрация"
#: mod/admin.php:986
msgid "Maximum Daily Registrations"
msgstr "Максимальное число регистраций в день"
#: mod/admin.php:986
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта."
#: mod/admin.php:987
msgid "Register text"
msgstr "Текст регистрации"
#: mod/admin.php:987
msgid "Will be displayed prominently on the registration page."
msgstr "Будет находиться на видном месте на странице регистрации."
#: mod/admin.php:988
msgid "Accounts abandoned after x days"
msgstr "Аккаунт считается после x дней не воспользованным"
#: mod/admin.php:988
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
#: mod/admin.php:989
msgid "Allowed friend domains"
msgstr "Разрешенные домены друзей"
#: mod/admin.php:989
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
#: mod/admin.php:990
msgid "Allowed email domains"
msgstr "Разрешенные почтовые домены"
#: mod/admin.php:990
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
#: mod/admin.php:991
msgid "Block public"
msgstr "Блокировать общественный доступ"
#: mod/admin.php:991
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным персональным страницам на этом сайте, если вы не вошли на сайт."
#: mod/admin.php:992
msgid "Force publish"
msgstr "Принудительная публикация"
#: mod/admin.php:992
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."
#: mod/admin.php:993
msgid "Global directory URL"
msgstr ""
#: mod/admin.php:993
msgid ""
"URL to the global directory. If this is not set, the global directory is "
"completely unavailable to the application."
msgstr ""
#: mod/admin.php:994
msgid "Allow threaded items"
msgstr "Разрешить темы в обсуждении"
#: mod/admin.php:994
msgid "Allow infinite level threading for items on this site."
msgstr "Разрешить бесконечный уровень для тем на этом сайте."
#: mod/admin.php:995
msgid "Private posts by default for new users"
msgstr "Частные сообщения по умолчанию для новых пользователей"
#: mod/admin.php:995
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников."
#: mod/admin.php:996
msgid "Don't include post content in email notifications"
msgstr "Не включать текст сообщения в email-оповещение."
#: mod/admin.php:996
msgid ""
"Don't include the content of a post/comment/private message/etc. in the "
"email notifications that are sent out from this site, as a privacy measure."
msgstr "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности."
#: mod/admin.php:997
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений."
#: mod/admin.php:997
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."
#: mod/admin.php:998
msgid "Don't embed private images in posts"
msgstr "Не вставлять личные картинки в постах"
#: mod/admin.php:998
msgid ""
"Don't replace locally-hosted private photos in posts with an embedded copy "
"of the image. This means that contacts who receive posts containing private "
"photos will have to authenticate and load each image, which may take a "
"while."
msgstr "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время."
#: mod/admin.php:999
msgid "Allow Users to set remote_self"
msgstr "Разрешить пользователям установить remote_self"
#: mod/admin.php:999
msgid ""
"With checking this, every user is allowed to mark every contact as a "
"remote_self in the repair contact dialog. Setting this flag on a contact "
"causes mirroring every posting of that contact in the users stream."
msgstr ""
#: mod/admin.php:1000
msgid "Block multiple registrations"
msgstr "Блокировать множественные регистрации"
#: mod/admin.php:1000
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
#: mod/admin.php:1001
msgid "OpenID support"
msgstr "Поддержка OpenID"
#: mod/admin.php:1001
msgid "OpenID support for registration and logins."
msgstr "OpenID поддержка для регистрации и входа в систему."
#: mod/admin.php:1002
msgid "Fullname check"
msgstr "Проверка полного имени"
#: mod/admin.php:1002
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера."
#: mod/admin.php:1003
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 регулярные выражения"
#: mod/admin.php:1003
msgid "Use PHP UTF8 regular expressions"
msgstr "Используйте PHP UTF-8 для регулярных выражений"
#: mod/admin.php:1004
msgid "Community Page Style"
msgstr ""
#: mod/admin.php:1004
msgid ""
"Type of community page to show. 'Global community' shows every public "
"posting from an open distributed network that arrived on this server."
msgstr ""
#: mod/admin.php:1005
msgid "Posts per user on community page"
msgstr ""
#: mod/admin.php:1005
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"'Global Community')"
msgstr ""
#: mod/admin.php:1006
msgid "Enable OStatus support"
msgstr "Включить поддержку OStatus"
#: mod/admin.php:1006
msgid ""
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: mod/admin.php:1007
msgid "OStatus conversation completion interval"
msgstr ""
#: mod/admin.php:1007
msgid ""
"How often shall the poller check for new entries in OStatus conversations? "
"This can be a very ressource task."
msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."
#: mod/admin.php:1008
msgid "Only import OStatus threads from our contacts"
msgstr ""
#: mod/admin.php:1008
msgid ""
"Normally we import every content from our OStatus contacts. With this option"
" we only store threads that are started by a contact that is known on our "
"system."
msgstr ""
#: mod/admin.php:1009
msgid "OStatus support can only be enabled if threading is enabled."
msgstr ""
#: mod/admin.php:1011
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub"
" directory."
msgstr ""
#: mod/admin.php:1012
msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora"
#: mod/admin.php:1012
msgid "Provide built-in Diaspora network compatibility."
msgstr "Обеспечить встроенную поддержку сети Diaspora."
#: mod/admin.php:1013
msgid "Only allow Friendica contacts"
msgstr "Позвольть только Friendica контакты"
#: mod/admin.php:1013
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
#: mod/admin.php:1014
msgid "Verify SSL"
msgstr "Проверка SSL"
#: mod/admin.php:1014
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."
#: mod/admin.php:1015
msgid "Proxy user"
msgstr "Прокси пользователь"
#: mod/admin.php:1016
msgid "Proxy URL"
msgstr "Прокси URL"
#: mod/admin.php:1017
msgid "Network timeout"
msgstr "Тайм-аут сети"
#: mod/admin.php:1017
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."
#: mod/admin.php:1018
msgid "Delivery interval"
msgstr "Интервал поставки"
#: mod/admin.php:1018
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Установите задержку выполнения фоновых процессов доставки до указанного количества секунд, чтобы уменьшить нагрузку на систему. Рекомендация: 4-5 для обычного shared хостинга, 2-3 для виртуальных частных серверов. 0-1 для мощных выделенных серверов."
#: mod/admin.php:1019
msgid "Poll interval"
msgstr "Интервал опроса"
#: mod/admin.php:1019
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Установить задержку фоновых процессов опросов путем ограничения количества секунд, чтобы уменьшить нагрузку на систему. Если 0, используется интервал доставки."
#: mod/admin.php:1020
msgid "Maximum Load Average"
msgstr "Средняя максимальная нагрузка"
#: mod/admin.php:1020
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."
#: mod/admin.php:1021
msgid "Maximum Load Average (Frontend)"
msgstr ""
#: mod/admin.php:1021
msgid "Maximum system load before the frontend quits service - default 50."
msgstr ""
#: mod/admin.php:1022
msgid "Maximum table size for optimization"
msgstr ""
#: mod/admin.php:1022
msgid ""
"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
"Enter -1 to disable it."
msgstr ""
#: mod/admin.php:1023
msgid "Minimum level of fragmentation"
msgstr ""
#: mod/admin.php:1023
msgid ""
"Minimum fragmenation level to start the automatic optimization - default "
"value is 30%."
msgstr ""
#: mod/admin.php:1025
msgid "Periodical check of global contacts"
msgstr ""
#: mod/admin.php:1025
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:1026
msgid "Days between requery"
msgstr ""
#: mod/admin.php:1026
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
#: mod/admin.php:1027
msgid "Discover contacts from other servers"
msgstr ""
#: mod/admin.php:1027
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:1028
msgid "Timeframe for fetching global contacts"
msgstr ""
#: mod/admin.php:1028
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:1029
msgid "Search the local directory"
msgstr ""
#: mod/admin.php:1029
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:1031
msgid "Publish server information"
msgstr ""
#: mod/admin.php:1031
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:1033
msgid "Use MySQL full text engine"
msgstr "Использовать систему полнотексного поиска MySQL"
#: mod/admin.php:1033
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов."
#: mod/admin.php:1034
msgid "Suppress Language"
msgstr ""
#: mod/admin.php:1034
msgid "Suppress language information in meta information about a posting."
msgstr ""
#: mod/admin.php:1035
msgid "Suppress Tags"
msgstr ""
#: mod/admin.php:1035
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
#: mod/admin.php:1036
msgid "Path to item cache"
msgstr "Путь к элементам кэша"
#: mod/admin.php:1036
msgid "The item caches buffers generated bbcode and external images."
msgstr ""
#: mod/admin.php:1037
msgid "Cache duration in seconds"
msgstr "Время жизни кэша в секундах"
#: mod/admin.php:1037
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day). To disable the item cache, set the value to -1."
msgstr ""
#: mod/admin.php:1038
msgid "Maximum numbers of comments per post"
msgstr ""
#: mod/admin.php:1038
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
#: mod/admin.php:1039
msgid "Path for lock file"
msgstr "Путь к файлу блокировки"
#: mod/admin.php:1039
msgid ""
"The lock file is used to avoid multiple pollers at one time. Only define a "
"folder here."
msgstr ""
#: mod/admin.php:1040
msgid "Temp path"
msgstr "Временная папка"
#: mod/admin.php:1040
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:1041
msgid "Base path to installation"
msgstr "Путь для установки"
#: mod/admin.php:1041
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:1042
msgid "Disable picture proxy"
msgstr ""
#: mod/admin.php:1042
msgid ""
"The picture proxy increases performance and privacy. It shouldn't be used on"
" systems with very low bandwith."
msgstr ""
#: mod/admin.php:1043
msgid "Enable old style pager"
msgstr ""
#: mod/admin.php:1043
msgid ""
"The old style pager has page numbers but slows down massively the page "
"speed."
msgstr ""
#: mod/admin.php:1044
msgid "Only search in tags"
msgstr ""
#: mod/admin.php:1044
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
#: mod/admin.php:1046
msgid "New base url"
msgstr "Новый базовый url"
#: mod/admin.php:1046
msgid ""
"Change base url for this server. Sends relocate message to all DFRN contacts"
" of all users."
msgstr ""
#: mod/admin.php:1048
msgid "RINO Encryption"
msgstr "RINO шифрование"
#: mod/admin.php:1048
msgid "Encryption layer between nodes."
msgstr "Слой шифрования между узлами."
#: mod/admin.php:1049
msgid "Embedly API key"
msgstr ""
#: mod/admin.php:1049
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:1051
msgid "Enable 'worker' background processing"
msgstr ""
#: mod/admin.php:1051
msgid ""
"The worker background processing limits the number of parallel background "
"jobs to a maximum number and respects the system load."
msgstr ""
#: mod/admin.php:1052
msgid "Maximum number of parallel workers"
msgstr ""
#: mod/admin.php:1052
msgid ""
"On shared hosters set this to 2. On larger systems, values of 10 are great. "
"Default value is 4."
msgstr ""
#: mod/admin.php:1053
msgid "Don't use 'proc_open' with the worker"
msgstr ""
#: mod/admin.php:1053
msgid ""
"Enable this if your system doesn't allow the use of 'proc_open'. This can "
"happen on shared hosters. If this is enabled you should increase the "
"frequency of poller calls in your crontab."
msgstr ""
#: mod/admin.php:1054
msgid "Enable fastlane"
msgstr ""
#: mod/admin.php:1054
msgid ""
"When enabed, the fastlane mechanism starts an additional worker if processes"
" with higher priority are blocked by processes of lower priority."
msgstr ""
#: mod/admin.php:1055
msgid "Enable frontend worker"
msgstr ""
#: mod/admin.php:1055
msgid ""
"When enabled the Worker process is triggered when backend access is "
"performed (e.g. messages being delivered). On smaller sites you might want "
"to call yourdomain.tld/worker on a regular basis via an external cron job. "
"You should only enable this option if you cannot utilize cron/scheduled jobs"
" on your server. The worker background process needs to be activated for "
"this."
msgstr ""
#: mod/admin.php:1084
msgid "Update has been marked successful"
msgstr "Обновление было успешно отмечено"
#: mod/admin.php:1092
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: mod/admin.php:1095
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: mod/admin.php:1107
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: mod/admin.php:1110
#, php-format
msgid "Update %s was successfully applied."
msgstr "Обновление %s успешно применено."
#: mod/admin.php:1114
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."
#: mod/admin.php:1116
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: mod/admin.php:1135
msgid "No failed updates."
msgstr "Неудавшихся обновлений нет."
#: mod/admin.php:1136
msgid "Check database structure"
msgstr ""
#: mod/admin.php:1141
msgid "Failed Updates"
msgstr "Неудавшиеся обновления"
#: mod/admin.php:1142
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус."
#: mod/admin.php:1143
msgid "Mark success (if update was manually applied)"
msgstr "Отмечено успешно (если обновление было применено вручную)"
#: mod/admin.php:1144
msgid "Attempt to execute this update step automatically"
msgstr "Попытаться выполнить этот шаг обновления автоматически"
#: mod/admin.php:1178
#, php-format
msgid ""
"\n"
"\t\t\tDear %1$s,\n"
"\t\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: mod/admin.php:1181
#, php-format
msgid ""
"\n"
"\t\t\tThe login details are as follows:\n"
"\n"
"\t\t\tSite Location:\t%1$s\n"
"\t\t\tLogin Name:\t\t%2$s\n"
"\t\t\tPassword:\t\t%3$s\n"
"\n"
"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
"\t\t\tin.\n"
"\n"
"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
"\n"
"\t\t\tYou may also wish to add some basic information to your default profile\n"
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
"\n"
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
"\t\t\tthan that.\n"
"\n"
"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
"\t\t\tIf you are new and do not know anybody here, they may help\n"
"\t\t\tyou to make some new and interesting friends.\n"
"\n"
"\t\t\tThank you and welcome to %4$s."
msgstr ""
#: mod/admin.php:1225
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s пользователь заблокирован/разблокирован"
msgstr[1] "%s пользователей заблокировано/разблокировано"
msgstr[2] "%s пользователей заблокировано/разблокировано"
msgstr[3] "%s пользователей заблокировано/разблокировано"
#: mod/admin.php:1232
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s человек удален"
msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено"
msgstr[3] "%s чел. удалено"
#: mod/admin.php:1279
#, php-format
msgid "User '%s' deleted"
msgstr "Пользователь '%s' удален"
#: mod/admin.php:1287
#, php-format
msgid "User '%s' unblocked"
msgstr "Пользователь '%s' разблокирован"
#: mod/admin.php:1287
#, php-format
msgid "User '%s' blocked"
msgstr "Пользователь '%s' блокирован"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Register date"
msgstr "Дата регистрации"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last login"
msgstr "Последний вход"
#: mod/admin.php:1396 mod/admin.php:1422
msgid "Last item"
msgstr "Последний пункт"
#: mod/admin.php:1405
msgid "Add User"
msgstr "Добавить пользователя"
#: mod/admin.php:1406
msgid "select all"
msgstr "выбрать все"
#: mod/admin.php:1407
msgid "User registrations waiting for confirm"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: mod/admin.php:1408
msgid "User waiting for permanent deletion"
msgstr "Пользователь ожидает окончательного удаления"
#: mod/admin.php:1409
msgid "Request date"
msgstr "Запрос даты"
#: mod/admin.php:1410
msgid "No registrations."
msgstr "Нет регистраций."
#: mod/admin.php:1411
msgid "Note from the user"
msgstr ""
#: mod/admin.php:1413
msgid "Deny"
msgstr "Отклонить"
#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:983
msgid "Block"
msgstr "Заблокировать"
#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
#: mod/contacts.php:983
msgid "Unblock"
msgstr "Разблокировать"
#: mod/admin.php:1417
msgid "Site admin"
msgstr "Админ сайта"
#: mod/admin.php:1418
msgid "Account expired"
msgstr "Аккаунт просрочен"
#: mod/admin.php:1421
msgid "New User"
msgstr "Новый пользователь"
#: mod/admin.php:1422
msgid "Deleted since"
msgstr "Удалён с"
#: mod/admin.php:1427
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: mod/admin.php:1428
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: mod/admin.php:1438
msgid "Name of the new user."
msgstr "Имя нового пользователя."
#: mod/admin.php:1439
msgid "Nickname"
msgstr "Ник"
#: mod/admin.php:1439
msgid "Nickname of the new user."
msgstr "Ник нового пользователя."
#: mod/admin.php:1440
msgid "Email address of the new user."
msgstr "Email адрес нового пользователя."
#: mod/admin.php:1483
#, php-format
msgid "Plugin %s disabled."
msgstr "Плагин %s отключен."
#: mod/admin.php:1487
#, php-format
msgid "Plugin %s enabled."
msgstr "Плагин %s включен."
#: mod/admin.php:1498 mod/admin.php:1734
msgid "Disable"
msgstr "Отключить"
#: mod/admin.php:1500 mod/admin.php:1736
msgid "Enable"
msgstr "Включить"
#: mod/admin.php:1523 mod/admin.php:1781
msgid "Toggle"
msgstr "Переключить"
#: mod/admin.php:1531 mod/admin.php:1790
msgid "Author: "
msgstr "Автор:"
#: mod/admin.php:1532 mod/admin.php:1791
msgid "Maintainer: "
msgstr "Программа обслуживания: "
#: mod/admin.php:1584
msgid "Reload active plugins"
msgstr ""
#: mod/admin.php:1589
#, 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:1694
msgid "No themes found."
msgstr "Темы не найдены."
#: mod/admin.php:1772
msgid "Screenshot"
msgstr "Скриншот"
#: mod/admin.php:1832
msgid "Reload active themes"
msgstr ""
#: mod/admin.php:1837
#, php-format
msgid "No themes found on the system. They should be paced in %1$s"
msgstr ""
#: mod/admin.php:1838
msgid "[Experimental]"
msgstr "[экспериментально]"
#: mod/admin.php:1839
msgid "[Unsupported]"
msgstr "[Неподдерживаемое]"
#: mod/admin.php:1863
msgid "Log settings updated."
msgstr "Настройки журнала обновлены."
#: mod/admin.php:1895
msgid "PHP log currently enabled."
msgstr ""
#: mod/admin.php:1897
msgid "PHP log currently disabled."
msgstr ""
#: mod/admin.php:1906
msgid "Clear"
msgstr "Очистить"
#: mod/admin.php:1911
msgid "Enable Debugging"
msgstr "Включить отладку"
#: mod/admin.php:1912
msgid "Log file"
msgstr "Лог-файл"
#: mod/admin.php:1912
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."
#: mod/admin.php:1913
msgid "Log level"
msgstr "Уровень лога"
#: mod/admin.php:1916
msgid "PHP logging"
msgstr "PHP логирование"
#: mod/admin.php:1917
msgid ""
"To enable logging of PHP errors and warnings you can add the following to "
"the .htconfig.php file of your installation. The filename set in the "
"'error_log' line is relative to the friendica top-level directory and must "
"be writeable by the web server. The option '1' for 'log_errors' and "
"'display_errors' is to enable these options, set to '0' to disable them."
msgstr ""
#: mod/admin.php:2045
#, php-format
msgid "Lock feature %s"
msgstr ""
#: mod/admin.php:2053
msgid "Manage Additional Features"
msgstr ""
#: mod/contacts.php:128
#, php-format
msgid "%d contact edited."
msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: mod/contacts.php:159 mod/contacts.php:368
msgid "Could not access contact record."
msgstr "Не удалось получить доступ к записи контакта."
#: mod/contacts.php:173
msgid "Could not locate selected profile."
msgstr "Не удалось найти выбранный профиль."
#: mod/contacts.php:206
msgid "Contact updated."
msgstr "Контакт обновлен."
#: mod/contacts.php:208 mod/dfrn_request.php:583
msgid "Failed to update contact record."
msgstr "Не удалось обновить запись контакта."
#: mod/contacts.php:389
msgid "Contact has been blocked"
msgstr "Контакт заблокирован"
#: mod/contacts.php:389
msgid "Contact has been unblocked"
msgstr "Контакт разблокирован"
#: mod/contacts.php:400
msgid "Contact has been ignored"
msgstr "Контакт проигнорирован"
#: mod/contacts.php:400
msgid "Contact has been unignored"
msgstr "У контакта отменено игнорирование"
#: mod/contacts.php:412
msgid "Contact has been archived"
msgstr "Контакт заархивирован"
#: mod/contacts.php:412
msgid "Contact has been unarchived"
msgstr "Контакт разархивирован"
#: mod/contacts.php:437
msgid "Drop contact"
msgstr ""
#: mod/contacts.php:440 mod/contacts.php:801
msgid "Do you really want to delete this contact?"
msgstr "Вы действительно хотите удалить этот контакт?"
#: mod/contacts.php:457
msgid "Contact has been removed."
msgstr "Контакт удален."
#: mod/contacts.php:498
#, php-format
msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s"
#: mod/contacts.php:502
#, php-format
msgid "You are sharing with %s"
msgstr "Вы делитесь с %s"
#: mod/contacts.php:507
#, php-format
msgid "%s is sharing with you"
msgstr "%s делитса с Вами"
#: mod/contacts.php:527
msgid "Private communications are not available for this contact."
msgstr "Личные коммуникации недоступны для этого контакта."
#: mod/contacts.php:534
msgid "(Update was successful)"
msgstr "(Обновление было успешно)"
#: mod/contacts.php:534
msgid "(Update was not successful)"
msgstr "(Обновление не удалось)"
#: mod/contacts.php:536 mod/contacts.php:964
msgid "Suggest friends"
msgstr "Предложить друзей"
#: mod/contacts.php:540
#, php-format
msgid "Network type: %s"
msgstr "Сеть: %s"
#: mod/contacts.php:553
msgid "Communications lost with this contact!"
msgstr "Связь с контактом утеряна!"
#: mod/contacts.php:556
msgid "Fetch further information for feeds"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information"
msgstr ""
#: mod/contacts.php:557
msgid "Fetch information and keywords"
msgstr ""
#: mod/contacts.php:575
msgid "Contact"
msgstr ""
#: mod/contacts.php:578
msgid "Profile Visibility"
msgstr "Видимость профиля"
#: mod/contacts.php:579
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
#: mod/contacts.php:580
msgid "Contact Information / Notes"
msgstr "Информация о контакте / Заметки"
#: mod/contacts.php:581
msgid "Edit contact notes"
msgstr "Редактировать заметки контакта"
#: mod/contacts.php:587
msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт"
#: mod/contacts.php:588
msgid "Ignore contact"
msgstr "Игнорировать контакт"
#: mod/contacts.php:589
msgid "Repair URL settings"
msgstr "Восстановить настройки URL"
#: mod/contacts.php:590
msgid "View conversations"
msgstr "Просмотр бесед"
#: mod/contacts.php:596
msgid "Last update:"
msgstr "Последнее обновление: "
#: mod/contacts.php:598
msgid "Update public posts"
msgstr "Обновить публичные сообщения"
#: mod/contacts.php:600 mod/contacts.php:974
msgid "Update now"
msgstr "Обновить сейчас"
#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
msgid "Unignore"
msgstr "Не игнорировать"
#: mod/contacts.php:610
msgid "Currently blocked"
msgstr "В настоящее время заблокирован"
#: mod/contacts.php:611
msgid "Currently ignored"
msgstr "В настоящее время игнорируется"
#: mod/contacts.php:612
msgid "Currently archived"
msgstr "В данный момент архивирован"
#: mod/contacts.php:613
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы."
#: mod/contacts.php:614
msgid "Notification for new posts"
msgstr ""
#: mod/contacts.php:614
msgid "Send a notification of every new post of this contact"
msgstr ""
#: mod/contacts.php:617
msgid "Blacklisted keywords"
msgstr ""
#: mod/contacts.php:617
msgid ""
"Comma separated list of keywords that should not be converted to hashtags, "
"when \"Fetch information and keywords\" is selected"
msgstr ""
#: mod/contacts.php:635
msgid "Actions"
msgstr ""
#: mod/contacts.php:638
msgid "Contact Settings"
msgstr ""
#: mod/contacts.php:684
msgid "Suggestions"
msgstr "Предложения"
#: mod/contacts.php:687
msgid "Suggest potential friends"
msgstr "Предложить потенциального знакомого"
#: mod/contacts.php:695
msgid "Show all contacts"
msgstr "Показать все контакты"
#: mod/contacts.php:700
msgid "Unblocked"
msgstr "Не блокирован"
#: mod/contacts.php:703
msgid "Only show unblocked contacts"
msgstr "Показать только не блокированные контакты"
#: mod/contacts.php:709
msgid "Blocked"
msgstr "Заблокирован"
#: mod/contacts.php:712
msgid "Only show blocked contacts"
msgstr "Показать только блокированные контакты"
#: mod/contacts.php:718
msgid "Ignored"
msgstr "Игнорирован"
#: mod/contacts.php:721
msgid "Only show ignored contacts"
msgstr "Показать только игнорируемые контакты"
#: mod/contacts.php:727
msgid "Archived"
msgstr "Архивированные"
#: mod/contacts.php:730
msgid "Only show archived contacts"
msgstr "Показывать только архивные контакты"
#: mod/contacts.php:736
msgid "Hidden"
msgstr "Скрытые"
#: mod/contacts.php:739
msgid "Only show hidden contacts"
msgstr "Показывать только скрытые контакты"
#: mod/contacts.php:796
msgid "Search your contacts"
msgstr "Поиск ваших контактов"
#: mod/contacts.php:807 mod/contacts.php:999
msgid "Archive"
msgstr "Архивировать"
#: mod/contacts.php:807 mod/contacts.php:999
msgid "Unarchive"
msgstr "Разархивировать"
#: mod/contacts.php:810
msgid "Batch Actions"
msgstr ""
#: mod/contacts.php:856
msgid "View all contacts"
msgstr "Показать все контакты"
#: mod/contacts.php:866
msgid "View all common friends"
msgstr ""
#: mod/contacts.php:873
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
#: mod/contacts.php:907
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: mod/contacts.php:911
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: mod/contacts.php:915
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: mod/contacts.php:985
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
#: mod/contacts.php:993
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
#: mod/contacts.php:1001
msgid "Toggle Archive status"
msgstr "Сменить статус архивации (архивирова/не архивировать)"
#: mod/contacts.php:1009
msgid "Delete contact"
msgstr "Удалить контакт"
#: mod/dfrn_confirm.php:127
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."
#: mod/dfrn_confirm.php:246
msgid "Response from remote site was not understood."
msgstr "Ответ от удаленного сайта не был понят."
#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
msgid "Unexpected response from remote site: "
msgstr "Неожиданный ответ от удаленного сайта: "
#: mod/dfrn_confirm.php:269
msgid "Confirmation completed successfully."
msgstr "Подтверждение успешно завершено."
#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
msgid "Remote site reported: "
msgstr "Удаленный сайт сообщил: "
#: mod/dfrn_confirm.php:283
msgid "Temporary failure. Please wait and try again."
msgstr "Временные неудачи. Подождите и попробуйте еще раз."
#: mod/dfrn_confirm.php:290
msgid "Introduction failed or was revoked."
msgstr "Запрос ошибочен или был отозван."
#: mod/dfrn_confirm.php:419
msgid "Unable to set contact photo."
msgstr "Не удается установить фото контакта."
#: mod/dfrn_confirm.php:557
#, php-format
msgid "No user record found for '%s' "
msgstr "Не найдено записи пользователя для '%s' "
#: mod/dfrn_confirm.php:567
msgid "Our site encryption key is apparently messed up."
msgstr "Наш ключ шифрования сайта, по-видимому, перепутался."
#: mod/dfrn_confirm.php:578
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
#: mod/dfrn_confirm.php:599
msgid "Contact record was not found for you on our site."
msgstr "Запись контакта не найдена для вас на нашем сайте."
#: mod/dfrn_confirm.php:613
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s"
#: mod/dfrn_confirm.php:633
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
#: mod/dfrn_confirm.php:644
msgid "Unable to set your contact credentials on our system."
msgstr "Не удалось установить ваши учетные данные контакта в нашей системе."
#: mod/dfrn_confirm.php:703
msgid "Unable to update your contact profile details on our system"
msgstr "Не удается обновить ваши контактные детали профиля в нашей системе"
#: mod/dfrn_confirm.php:775
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s присоединился %2$s"
#: mod/dfrn_request.php:101
msgid "This introduction has already been accepted."
msgstr "Этот запрос был уже принят."
#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
msgid "Profile location is not valid or does not contain profile information."
msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле."
#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
msgid "Warning: profile location has no identifiable owner name."
msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
msgid "Warning: profile location has no profile photo."
msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d требуемый параметр не был найден в заданном месте"
msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
msgstr[3] "%d требуемых параметров не были найдены в заданном месте"
#: mod/dfrn_request.php:180
msgid "Introduction complete."
msgstr "Запрос создан."
#: mod/dfrn_request.php:222
msgid "Unrecoverable protocol error."
msgstr "Неисправимая ошибка протокола."
#: mod/dfrn_request.php:250
msgid "Profile unavailable."
msgstr "Профиль недоступен."
#: mod/dfrn_request.php:277
#, php-format
msgid "%s has received too many connection requests today."
msgstr "К %s пришло сегодня слишком много запросов на подключение."
#: mod/dfrn_request.php:278
msgid "Spam protection measures have been invoked."
msgstr "Были применены меры защиты от спама."
#: mod/dfrn_request.php:279
msgid "Friends are advised to please try again in 24 hours."
msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
#: mod/dfrn_request.php:341
msgid "Invalid locator"
msgstr "Недопустимый локатор"
#: mod/dfrn_request.php:350
msgid "Invalid email address."
msgstr "Неверный адрес электронной почты."
#: mod/dfrn_request.php:375
msgid "This account has not been configured for email. Request failed."
msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался."
#: mod/dfrn_request.php:478
msgid "You have already introduced yourself here."
msgstr "Вы уже ввели информацию о себе здесь."
#: mod/dfrn_request.php:482
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Похоже, что вы уже друзья с %s."
#: mod/dfrn_request.php:503
msgid "Invalid profile URL."
msgstr "Неверный URL профиля."
#: mod/dfrn_request.php:604
msgid "Your introduction has been sent."
msgstr "Ваш запрос отправлен."
#: mod/dfrn_request.php:644
msgid ""
"Remote subscription can't be done for your network. Please subscribe "
"directly on your system."
msgstr ""
#: mod/dfrn_request.php:664
msgid "Please login to confirm introduction."
msgstr "Для подтверждения запроса войдите пожалуйста с паролем."
#: mod/dfrn_request.php:674
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
msgid "Confirm"
msgstr "Подтвердить"
#: mod/dfrn_request.php:700
msgid "Hide this contact"
msgstr "Скрыть этот контакт"
#: mod/dfrn_request.php:703
#, php-format
msgid "Welcome home %s."
msgstr "Добро пожаловать домой, %s!"
#: mod/dfrn_request.php:704
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
#: mod/dfrn_request.php:833
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:"
#: mod/dfrn_request.php:854
#, php-format
msgid ""
"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>."
msgstr ""
#: mod/dfrn_request.php:859
msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение"
#: mod/dfrn_request.php:860
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: mod/dfrn_request.php:861 mod/follow.php:109
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: mod/dfrn_request.php:862 mod/follow.php:110
#, php-format
msgid "Does %s know you?"
msgstr "%s знает вас?"
#: mod/dfrn_request.php:866 mod/follow.php:111
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: mod/dfrn_request.php:869
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet / Federated Social Web"
#: mod/dfrn_request.php:871
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora"
#: mod/dfrn_request.php:872 mod/follow.php:117
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: mod/dfrn_request.php:875 mod/follow.php:19
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:180
msgid "Contact added"
msgstr "Контакт добавлен"
#: mod/install.php:139
msgid "Friendica Communications Server - Setup"
msgstr "Коммуникационный сервер Friendica - Доступ"
#: mod/install.php:145
msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных."
#: mod/install.php:149
msgid "Could not create table."
msgstr "Не удалось создать таблицу."
#: mod/install.php:155
msgid "Your Friendica site database has been installed."
msgstr "База данных сайта установлена."
#: mod/install.php:160
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
#: mod/install.php:161 mod/install.php:230 mod/install.php:607
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: mod/install.php:173
msgid "Database already in use."
msgstr ""
#: mod/install.php:227
msgid "System check"
msgstr "Проверить систему"
#: mod/install.php:232
msgid "Check again"
msgstr "Проверить еще раз"
#: mod/install.php:251
msgid "Database connection"
msgstr "Подключение к базе данных"
#: mod/install.php:252
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."
#: mod/install.php:253
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
#: mod/install.php:254
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
#: mod/install.php:258
msgid "Database Server Name"
msgstr "Имя сервера базы данных"
#: mod/install.php:259
msgid "Database Login Name"
msgstr "Логин базы данных"
#: mod/install.php:260
msgid "Database Login Password"
msgstr "Пароль базы данных"
#: mod/install.php:261
msgid "Database Name"
msgstr "Имя базы данных"
#: mod/install.php:262 mod/install.php:303
msgid "Site administrator email address"
msgstr "Адрес электронной почты администратора сайта"
#: mod/install.php:262 mod/install.php:303
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."
#: mod/install.php:266 mod/install.php:306
msgid "Please select a default timezone for your website"
msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
#: mod/install.php:293
msgid "Site settings"
msgstr "Настройки сайта"
#: mod/install.php:307
msgid "System Language:"
msgstr ""
#: mod/install.php:307
msgid ""
"Set the default language for your Friendica installation interface and to "
"send emails."
msgstr ""
#: mod/install.php:347
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Не удалось найти PATH веб-сервера в установках PHP."
#: mod/install.php:348
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
"up-the-poller'>'Setup the poller'</a>"
msgstr ""
#: mod/install.php:352
msgid "PHP executable path"
msgstr "PHP executable path"
#: mod/install.php:352
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."
#: mod/install.php:357
msgid "Command line PHP"
msgstr "Command line PHP"
#: mod/install.php:366
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: mod/install.php:367
msgid "Found PHP version: "
msgstr "Найденная PHP версия: "
#: mod/install.php:369
msgid "PHP cli binary"
msgstr "PHP cli binary"
#: mod/install.php:380
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Не включено \"register_argc_argv\" в установках PHP."
#: mod/install.php:381
msgid "This is required for message delivery to work."
msgstr "Это необходимо для работы доставки сообщений."
#: mod/install.php:383
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: mod/install.php:404
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
#: mod/install.php:405
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
#: mod/install.php:407
msgid "Generate encryption keys"
msgstr "Генерация шифрованых ключей"
#: mod/install.php:414
msgid "libCurl PHP module"
msgstr "libCurl PHP модуль"
#: mod/install.php:415
msgid "GD graphics PHP module"
msgstr "GD graphics PHP модуль"
#: mod/install.php:416
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP модуль"
#: mod/install.php:417
msgid "mysqli PHP module"
msgstr "mysqli PHP модуль"
#: mod/install.php:418
msgid "mb_string PHP module"
msgstr "mb_string PHP модуль"
#: mod/install.php:419
msgid "mcrypt PHP module"
msgstr ""
#: mod/install.php:420
msgid "XML PHP module"
msgstr ""
#: mod/install.php:421
msgid "iconv module"
msgstr ""
#: mod/install.php:425 mod/install.php:427
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: mod/install.php:425
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
#: mod/install.php:433
msgid "Error: libCURL PHP module required but not installed."
msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен."
#: mod/install.php:437
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
#: mod/install.php:441
msgid "Error: openssl PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."
#: mod/install.php:445
msgid "Error: mysqli PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен."
#: mod/install.php:449
msgid "Error: mb_string PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен."
#: mod/install.php:453
msgid "Error: mcrypt PHP module required but not installed."
msgstr ""
#: mod/install.php:457
msgid "Error: iconv PHP module required but not installed."
msgstr ""
#: mod/install.php:466
msgid ""
"If you are using php_cli, please make sure that mcrypt module is enabled in "
"its config file"
msgstr ""
#: mod/install.php:469
msgid ""
"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
"encryption layer."
msgstr ""
#: mod/install.php:471
msgid "mcrypt_create_iv() function"
msgstr ""
#: mod/install.php:479
msgid "Error, XML PHP module required but not installed."
msgstr ""
#: mod/install.php:494
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
#: mod/install.php:495
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
#: mod/install.php:496
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."
#: mod/install.php:497
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."
#: mod/install.php:500
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
#: mod/install.php:510
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."
#: mod/install.php:511
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."
#: mod/install.php:512
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."
#: mod/install.php:513
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."
#: mod/install.php:516
msgid "view/smarty3 is writable"
msgstr "view/smarty3 доступен для записи"
#: mod/install.php:532
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."
#: mod/install.php:534
msgid "Url rewrite is working"
msgstr "Url rewrite работает"
#: mod/install.php:552
msgid "ImageMagick PHP extension is not installed"
msgstr ""
#: mod/install.php:555
msgid "ImageMagick PHP extension is installed"
msgstr ""
#: mod/install.php:557
msgid "ImageMagick supports GIF"
msgstr ""
#: mod/install.php:566
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
#: mod/install.php:605
msgid "<h1>What next</h1>"
msgstr "<h1>Что далее</h1>"
#: mod/install.php:606
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
#: mod/item.php:116
msgid "Unable to locate original post."
msgstr "Не удалось найти оригинальный пост."
#: mod/item.php:341
msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается."
#: mod/item.php:902
msgid "System error. Post not saved."
msgstr "Системная ошибка. Сообщение не сохранено."
#: mod/item.php:992
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica."
#: mod/item.php:994
#, php-format
msgid "You may visit them online at %s"
msgstr "Вы можете посетить их в онлайне на %s"
#: mod/item.php:995
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
#: mod/item.php:999
#, php-format
msgid "%s posted an update."
msgstr "%s отправил/а/ обновление."
#: mod/network.php:398
#, php-format
msgid ""
"Warning: This group contains %s member from a network that doesn't allow non"
" public messages."
msgid_plural ""
"Warning: This group contains %s members from a network that doesn't allow "
"non public messages."
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: mod/network.php:401
msgid "Messages in this group won't be send to these receivers."
msgstr ""
#: mod/network.php:529
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
#: mod/network.php:534
msgid "Invalid contact."
msgstr "Недопустимый контакт."
#: mod/network.php:826
msgid "Commented Order"
msgstr "Последние комментарии"
#: mod/network.php:829
msgid "Sort by Comment Date"
msgstr "Сортировать по дате комментария"
#: mod/network.php:834
msgid "Posted Order"
msgstr "Лента записей"
#: mod/network.php:837
msgid "Sort by Post Date"
msgstr "Сортировать по дате отправки"
#: mod/network.php:848
msgid "Posts that mention or involve you"
msgstr ""
#: mod/network.php:856
msgid "New"
msgstr "Новый"
#: mod/network.php:859
msgid "Activity Stream - by date"
msgstr "Лента активности - по дате"
#: mod/network.php:867
msgid "Shared Links"
msgstr "Ссылки, которыми поделились"
#: mod/network.php:870
msgid "Interesting Links"
msgstr "Интересные ссылки"
#: mod/network.php:878
msgid "Starred"
msgstr "Помеченный"
#: mod/network.php:881
msgid "Favourite Posts"
msgstr "Избранные посты"
#: mod/ping.php:261
msgid "{0} wants to be your friend"
msgstr "{0} хочет стать Вашим другом"
#: mod/ping.php:276
msgid "{0} sent you a message"
msgstr "{0} отправил Вам сообщение"
#: mod/ping.php:291
msgid "{0} requested registration"
msgstr "{0} требуемая регистрация"
#: mod/viewcontacts.php:72
msgid "No contacts."
msgstr "Нет контактов."
#: object/Item.php:370
#: object/Item.php:359
msgid "via"
msgstr "через"
#: view/theme/duepuntozero/config.php:44
msgid "greenzero"
msgstr "greenzero"
#: view/theme/duepuntozero/config.php:45
msgid "purplezero"
msgstr "purplezero"
#: view/theme/duepuntozero/config.php:46
msgid "easterbunny"
msgstr "easterbunny"
#: view/theme/duepuntozero/config.php:47
msgid "darkzero"
msgstr "darkzero"
#: view/theme/duepuntozero/config.php:48
msgid "comix"
msgstr "comix"
#: view/theme/duepuntozero/config.php:49
msgid "slackr"
msgstr "slackr"
#: view/theme/duepuntozero/config.php:64
msgid "Variations"
msgstr "Вариации"
#: view/theme/frio/config.php:47
msgid "Default"
msgstr "По умолчанию"
#: view/theme/frio/config.php:59
msgid "Note: "
msgstr "Внимание:"
#: view/theme/frio/config.php:59
msgid "Check image permissions if all users are allowed to visit the image"
msgstr "Проверьте права на изображение, все пользователи должны иметь к нему доступ"
#: view/theme/frio/config.php:67
msgid "Select scheme"
msgstr "Выбрать схему"
#: view/theme/frio/config.php:68
msgid "Navigation bar background color"
msgstr "Цвет фона навигационной панели"
#: view/theme/frio/config.php:69
msgid "Navigation bar icon color "
msgstr "Цвет иконок в навигационной панели"
#: view/theme/frio/config.php:70
msgid "Link color"
msgstr "Цвет ссылок"
#: view/theme/frio/config.php:71
msgid "Set the background color"
msgstr "Установить цвет фона"
#: view/theme/frio/config.php:72
msgid "Content background transparency"
msgstr "Прозрачность фона контента"
#: view/theme/frio/config.php:73
msgid "Set the background image"
msgstr "Установить фоновую картинку"
#: view/theme/frio/php/Image.php:23
msgid "Repeat the image"
msgstr ""
msgstr "Повторить изображение"
#: view/theme/frio/php/Image.php:23
msgid "Will repeat your image to fill the background."
msgstr ""
msgstr "Повторит изображение для заполнения фона"
#: view/theme/frio/php/Image.php:25
msgid "Stretch"
msgstr ""
msgstr "Растянуть"
#: view/theme/frio/php/Image.php:25
msgid "Will stretch to width/height of the image."
msgstr ""
msgstr "Растянет до ширины/высоты изображения"
#: view/theme/frio/php/Image.php:27
msgid "Resize fill and-clip"
msgstr ""
msgstr "Отресайзить, чтобы заполнилось и обрезать"
#: view/theme/frio/php/Image.php:27
msgid "Resize to fill and retain aspect ratio."
msgstr ""
msgstr "Отресайзить, чтобы заполнить и сохранить пропорции"
#: view/theme/frio/php/Image.php:29
msgid "Resize best fit"
msgstr ""
msgstr "Отресайзить, чтобы вместилось"
#: view/theme/frio/php/Image.php:29
msgid "Resize to best fit and retain aspect ratio."
msgstr ""
msgstr "Отресайзить, чтобы вместилось и сохранить пропорции"
#: view/theme/frio/config.php:42
msgid "Default"
msgstr ""
#: view/theme/frio/config.php:54
msgid "Note: "
msgstr ""
#: view/theme/frio/config.php:54
msgid "Check image permissions if all users are allowed to visit the image"
msgstr ""
#: view/theme/frio/config.php:62
msgid "Select scheme"
msgstr ""
#: view/theme/frio/config.php:63
msgid "Navigation bar background color"
msgstr ""
#: view/theme/frio/config.php:64
msgid "Navigation bar icon color "
msgstr ""
#: view/theme/frio/config.php:65
msgid "Link color"
msgstr ""
#: view/theme/frio/config.php:66
msgid "Set the background color"
msgstr ""
#: view/theme/frio/config.php:67
msgid "Content background transparency"
msgstr ""
#: view/theme/frio/config.php:68
msgid "Set the background image"
msgstr ""
#: view/theme/frio/theme.php:229
#: view/theme/frio/theme.php:226
msgid "Guest"
msgstr ""
msgstr "Гость"
#: view/theme/frio/theme.php:235
#: view/theme/frio/theme.php:232
msgid "Visitor"
msgstr ""
msgstr "Посетитель"
#: view/theme/quattro/config.php:67
#: view/theme/quattro/config.php:70
msgid "Alignment"
msgstr "Выравнивание"
#: view/theme/quattro/config.php:67
#: view/theme/quattro/config.php:70
msgid "Left"
msgstr ""
msgstr "Слева"
#: view/theme/quattro/config.php:67
#: view/theme/quattro/config.php:70
msgid "Center"
msgstr "Центр"
#: view/theme/quattro/config.php:68
#: view/theme/quattro/config.php:71
msgid "Color scheme"
msgstr "Цветовая схема"
#: view/theme/quattro/config.php:69
#: view/theme/quattro/config.php:72
msgid "Posts font size"
msgstr "Размер шрифта постов"
#: view/theme/quattro/config.php:70
#: view/theme/quattro/config.php:73
msgid "Textareas font size"
msgstr "Размер шрифта текстовых полей"
#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
msgid "Community Profiles"
msgstr "Профили сообщества"
#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
msgid "Last users"
msgstr "Последние пользователи"
#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
msgid "Find Friends"
msgstr "Найти друзей"
#: view/theme/vier/theme.php:200
msgid "Local Directory"
msgstr "Локальный каталог"
#: view/theme/vier/theme.php:291
msgid "Quick Start"
msgstr "Быстрый запуск"
#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
msgid "Connect Services"
msgstr "Подключить службы"
#: view/theme/vier/config.php:64
#: view/theme/vier/config.php:69
msgid "Comma separated list of helper forums"
msgstr ""
msgstr "Разделенный запятыми список форумов помощи"
#: view/theme/vier/config.php:110
#: view/theme/vier/config.php:115
msgid "Set style"
msgstr ""
msgstr "Установить стиль"
#: view/theme/vier/config.php:111
#: view/theme/vier/config.php:116
msgid "Community Pages"
msgstr "Страницы сообщества"
#: view/theme/vier/config.php:113
#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146
msgid "Community Profiles"
msgstr "Профили сообщества"
#: view/theme/vier/config.php:118
msgid "Help or @NewHere ?"
msgstr "Помощь"
#: view/theme/duepuntozero/config.php:45
msgid "greenzero"
msgstr ""
#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385
msgid "Connect Services"
msgstr "Подключить службы"
#: view/theme/duepuntozero/config.php:46
msgid "purplezero"
msgstr ""
#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194
msgid "Find Friends"
msgstr "Найти друзей"
#: view/theme/duepuntozero/config.php:47
msgid "easterbunny"
msgstr ""
#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176
msgid "Last users"
msgstr "Последние пользователи"
#: view/theme/duepuntozero/config.php:48
msgid "darkzero"
msgstr ""
#: view/theme/vier/theme.php:195
msgid "Local Directory"
msgstr "Локальный каталог"
#: view/theme/duepuntozero/config.php:49
msgid "comix"
msgstr ""
#: view/theme/duepuntozero/config.php:50
msgid "slackr"
msgstr ""
#: view/theme/duepuntozero/config.php:62
msgid "Variations"
msgstr ""
#: boot.php:970
msgid "Delete this item?"
msgstr "Удалить этот элемент?"
#: boot.php:973
msgid "show fewer"
msgstr "показать меньше"
#: boot.php:1655
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Обновление %s не удалось. Смотрите журнал ошибок."
#: boot.php:1767
msgid "Create a New Account"
msgstr "Создать новый аккаунт"
#: boot.php:1796
msgid "Password: "
msgstr "Пароль: "
#: boot.php:1797
msgid "Remember me"
msgstr "Запомнить"
#: boot.php:1800
msgid "Or login using OpenID: "
msgstr "Или зайти с OpenID: "
#: boot.php:1806
msgid "Forgot your password?"
msgstr "Забыли пароль?"
#: boot.php:1809
msgid "Website Terms of Service"
msgstr "Правила сайта"
#: boot.php:1810
msgid "terms of service"
msgstr "правила"
#: boot.php:1812
msgid "Website Privacy Policy"
msgstr "Политика конфиденциальности сервера"
#: boot.php:1813
msgid "privacy policy"
msgstr "политика конфиденциальности"
#: index.php:451
msgid "toggle mobile"
msgstr "мобильная версия"
#: view/theme/vier/theme.php:286
msgid "Quick Start"
msgstr "Быстрый запуск"

View file

@ -5,118 +5,82 @@ function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
}}
;
$a->strings["Add New Contact"] = "Добавить контакт";
$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Подключить";
$a->strings["%d invitation available"] = array(
0 => "%d приглашение доступно",
1 => "%d приглашений доступно",
2 => "%d приглашений доступно",
3 => "%d приглашений доступно",
);
$a->strings["Find People"] = "Поиск людей";
$a->strings["Enter name or interest"] = "Введите имя или интерес";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка";
$a->strings["Find"] = "Найти";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Random Profile"] = "Случайный профиль";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["Networks"] = "Сети";
$a->strings["All Networks"] = "Все сети";
$a->strings["Saved Folders"] = "Сохранённые папки";
$a->strings["Everything"] = "Всё";
$a->strings["Categories"] = "Категории";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
3 => "%d Контактов",
);
$a->strings["Delete this item?"] = "Удалить этот элемент?";
$a->strings["show more"] = "показать больше";
$a->strings["Forums"] = "";
$a->strings["External link to forum"] = "";
$a->strings["Male"] = "Мужчина";
$a->strings["Female"] = "Женщина";
$a->strings["Currently Male"] = "В данный момент мужчина";
$a->strings["Currently Female"] = "В настоящее время женщина";
$a->strings["Mostly Male"] = "В основном мужчина";
$a->strings["Mostly Female"] = "В основном женщина";
$a->strings["Transgender"] = "Транссексуал";
$a->strings["Intersex"] = "Интерсексуал";
$a->strings["Transsexual"] = "Транссексуал";
$a->strings["Hermaphrodite"] = "Гермафродит";
$a->strings["Neuter"] = "Средний род";
$a->strings["Non-specific"] = "Не определен";
$a->strings["Other"] = "Другой";
$a->strings["Undecided"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Males"] = "Мужчины";
$a->strings["Females"] = "Женщины";
$a->strings["Gay"] = "Гей";
$a->strings["Lesbian"] = "Лесбиянка";
$a->strings["No Preference"] = "Без предпочтений";
$a->strings["Bisexual"] = "Бисексуал";
$a->strings["Autosexual"] = "Автосексуал";
$a->strings["Abstinent"] = "Воздержанный";
$a->strings["Virgin"] = "Девственница";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Фетиш";
$a->strings["Oodles"] = "Групповой";
$a->strings["Nonsexual"] = "Нет интереса к сексу";
$a->strings["Single"] = "Без пары";
$a->strings["Lonely"] = "Пока никого нет";
$a->strings["Available"] = "Доступный";
$a->strings["Unavailable"] = "Не ищу никого";
$a->strings["Has crush"] = "Имеет ошибку";
$a->strings["Infatuated"] = "Влюблён";
$a->strings["Dating"] = "Свидания";
$a->strings["Unfaithful"] = "Изменяю супругу";
$a->strings["Sex Addict"] = "Люблю секс";
$a->strings["Friends"] = "Друзья";
$a->strings["Friends/Benefits"] = "Друзья / Предпочтения";
$a->strings["Casual"] = "Обычный";
$a->strings["Engaged"] = "Занят";
$a->strings["Married"] = "Женат / Замужем";
$a->strings["Imaginarily married"] = "";
$a->strings["Partners"] = "Партнеры";
$a->strings["Cohabiting"] = "Партнерство";
$a->strings["Common law"] = "";
$a->strings["Happy"] = "Счастлив/а/";
$a->strings["Not looking"] = "Не в поиске";
$a->strings["Swinger"] = "Свинг";
$a->strings["Betrayed"] = "Преданный";
$a->strings["Separated"] = "Разделенный";
$a->strings["Unstable"] = "Нестабильный";
$a->strings["Divorced"] = "Разведен(а)";
$a->strings["Imaginarily divorced"] = "";
$a->strings["Widowed"] = "Овдовевший";
$a->strings["Uncertain"] = "Неопределенный";
$a->strings["It's complicated"] = "влишком сложно";
$a->strings["Don't care"] = "Не беспокоить";
$a->strings["Ask me"] = "Спросите меня";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
$a->strings["show fewer"] = "показать меньше";
$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок.";
$a->strings["Create a New Account"] = "Создать новый аккаунт";
$a->strings["Register"] = "Регистрация";
$a->strings["Logout"] = "Выход";
$a->strings["Login"] = "Вход";
$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
$a->strings["Password: "] = "Пароль: ";
$a->strings["Remember me"] = "Запомнить";
$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: ";
$a->strings["Forgot your password?"] = "Забыли пароль?";
$a->strings["Password Reset"] = "Сброс пароля";
$a->strings["Website Terms of Service"] = "Правила сайта";
$a->strings["terms of service"] = "правила";
$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера";
$a->strings["privacy policy"] = "политика конфиденциальности";
$a->strings["View Profile"] = "Просмотреть профиль";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["View Status"] = "Просмотреть статус";
$a->strings["View Photos"] = "Просмотреть фото";
$a->strings["Network Posts"] = "Посты сети";
$a->strings["View Contact"] = "Просмотреть контакт";
$a->strings["Drop Contact"] = "Удалить контакт";
$a->strings["Send PM"] = "Отправить ЛС";
$a->strings["Poke"] = "потыкать";
$a->strings["Organisation"] = "Организация";
$a->strings["News"] = "Новости";
$a->strings["Forum"] = "Форум";
$a->strings["Forums"] = "Форумы";
$a->strings["External link to forum"] = "Внешняя ссылка на форум";
$a->strings["System"] = "Система";
$a->strings["Network"] = "Новости";
$a->strings["Personal"] = "Персонал";
$a->strings["Home"] = "Мой профиль";
$a->strings["Introductions"] = "Запросы";
$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
$a->strings["%s created a new post"] = "%s написал новое сообщение";
$a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
$a->strings["%s disliked %s's post"] = "%s не нравится сообщение %s";
$a->strings["%s is attending %s's event"] = "";
$a->strings["%s is not attending %s's event"] = "";
$a->strings["%s may attend %s's event"] = "";
$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s";
$a->strings["Friend Suggestion"] = "Предложение в друзья";
$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
$a->strings["New Follower"] = "Новый фолловер";
$a->strings["Wall Photos"] = "Фото стены";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Коннекторы отключены так как \"%s\" включен.";
$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
$a->strings["Visible to everybody"] = "Видимо всем";
$a->strings["show"] = "показывать";
$a->strings["don't show"] = "не показывать";
$a->strings["CC: email addresses"] = "Копии на email адреса";
$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
$a->strings["Permissions"] = "Разрешения";
$a->strings["Close"] = "Закрыть";
$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Дневной лимит в %d постов достигнут. Пост отклонен.";
$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Недельный лимит в %d постов достигнут. Пост отклонен.";
$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Месячный лимит в %d постов достигнут. Пост отклонен.";
$a->strings["Logged out."] = "Выход из системы.";
$a->strings["Login failed."] = "Войти не удалось.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID.";
$a->strings["The error message was:"] = "Сообщение об ошибке было:";
$a->strings["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 not what you intended, please create another group with a different name."] = "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием.";
$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов";
$a->strings["Everybody"] = "Каждый";
$a->strings["edit"] = "редактировать";
$a->strings["Groups"] = "Группы";
$a->strings["Edit groups"] = "";
$a->strings["Edit group"] = "Редактировать группу";
$a->strings["Create a new group"] = "Создать новую группу";
$a->strings["Group Name: "] = "Название группы: ";
$a->strings["Contacts not in any group"] = "Контакты не состоят в группе";
$a->strings["add"] = "добавить";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "Окончание:";
$a->strings["Location:"] = "Откуда:";
$a->strings["Image/photo"] = "Изображение / Фото";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
$a->strings["$1 wrote:"] = "$1 написал:";
$a->strings["Encrypted content"] = "Зашифрованный контент";
$a->strings["Invalid source protocol"] = "Неправильный протокол источника";
$a->strings["Invalid link protocol"] = "Неправильная протокольная ссылка";
$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено";
$a->strings["Block immediately"] = "Блокировать немедленно";
$a->strings["Shady, spammer, self-marketer"] = "Тролль, спаммер, рассылает рекламу";
@ -142,50 +106,156 @@ $a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["pump.io"] = "pump.io";
$a->strings["Twitter"] = "Twitter";
$a->strings["Diaspora Connector"] = "";
$a->strings["GNU Social"] = "";
$a->strings["App.net"] = "";
$a->strings["Hubzilla/Redmatrix"] = "";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
$a->strings["Visible to everybody"] = "Видимо всем";
$a->strings["show"] = "показывать";
$a->strings["don't show"] = "не показывать";
$a->strings["CC: email addresses"] = "Копии на email адреса";
$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
$a->strings["Permissions"] = "Разрешения";
$a->strings["Close"] = "Закрыть";
$a->strings["photo"] = "фото";
$a->strings["status"] = "статус";
$a->strings["Diaspora Connector"] = "Коннектор Diaspora";
$a->strings["GNU Social"] = "GNU Social";
$a->strings["pnut"] = "pnut";
$a->strings["App.net"] = "App.net";
$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
$a->strings["Add New Contact"] = "Добавить контакт";
$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Подключить";
$a->strings["%d invitation available"] = array(
0 => "%d приглашение доступно",
1 => "%d приглашений доступно",
2 => "%d приглашений доступно",
3 => "%d приглашений доступно",
);
$a->strings["Find People"] = "Поиск людей";
$a->strings["Enter name or interest"] = "Введите имя или интерес";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка";
$a->strings["Find"] = "Найти";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Random Profile"] = "Случайный профиль";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["Networks"] = "Сети";
$a->strings["All Networks"] = "Все сети";
$a->strings["Saved Folders"] = "Сохранённые папки";
$a->strings["Everything"] = "Всё";
$a->strings["Categories"] = "Категории";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
3 => "%d Контактов",
);
$a->strings["event"] = "мероприятие";
$a->strings["status"] = "статус";
$a->strings["photo"] = "фото";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Wall Photos"] = "Фото стены";
$a->strings["Click here to upgrade."] = "Нажмите для обновления.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом.";
$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки.";
$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?";
$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм";
$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!";
$a->strings["User creation error"] = "Ошибка создания пользователя";
$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя";
$a->strings["%d contact not imported"] = array(
0 => "%d контакт не импортирован",
1 => "%d контакты не импортированы",
2 => "%d контакты не импортированы",
3 => "%d контакты не импортированы",
$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s уделил внимание %2\$s's %3\$s";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s";
$a->strings["post/item"] = "пост/элемент";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
$a->strings["Likes"] = "Лайки";
$a->strings["Dislikes"] = "Не нравится";
$a->strings["Attending"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Not attending"] = "";
$a->strings["Might attend"] = "";
$a->strings["Select"] = "Выберите";
$a->strings["Delete"] = "Удалить";
$a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]";
$a->strings["Categories:"] = "Категории:";
$a->strings["Filed under:"] = "В рубрике:";
$a->strings["%s from %s"] = "%s с %s";
$a->strings["View in context"] = "Смотреть в контексте";
$a->strings["Please wait"] = "Пожалуйста, подождите";
$a->strings["remove"] = "удалить";
$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
$a->strings["Follow Thread"] = "Подписаться на тему";
$a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["%s attends."] = "";
$a->strings["%s doesn't attend."] = "";
$a->strings["%s attends maybe."] = "";
$a->strings["and"] = "и";
$a->strings[", and %d other people"] = ", и %d других чел.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d людям</span> нравится это";
$a->strings["%s like this."] = "%s нравится это.";
$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."] = "%s не нравится это";
$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> attend maybe"] = "";
$a->strings["%s anttend maybe."] = "";
$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Please enter a video link/URL:"] = "Введите ссылку на видео link/URL:";
$a->strings["Please enter an audio link/URL:"] = "Введите ссылку на аудио link/URL:";
$a->strings["Tag term:"] = "Тег:";
$a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["Where are you right now?"] = "И где вы сейчас?";
$a->strings["Delete item(s)?"] = "Удалить елемент(ты)?";
$a->strings["Share"] = "Поделиться";
$a->strings["Upload photo"] = "Загрузить фото";
$a->strings["upload photo"] = "загрузить фото";
$a->strings["Attach file"] = "Прикрепить файл";
$a->strings["attach file"] = "приложить файл";
$a->strings["Insert web link"] = "Вставить веб-ссылку";
$a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить ссылку видео";
$a->strings["video link"] = "видео-ссылка";
$a->strings["Insert audio link"] = "Вставить ссылку аудио";
$a->strings["audio link"] = "аудио-ссылка";
$a->strings["Set your location"] = "Задать ваше местоположение";
$a->strings["set location"] = "установить местонахождение";
$a->strings["Clear browser location"] = "Очистить местонахождение браузера";
$a->strings["clear location"] = "убрать местонахождение";
$a->strings["Set title"] = "Установить заголовок";
$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
$a->strings["Permission settings"] = "Настройки разрешений";
$a->strings["permissions"] = "разрешения";
$a->strings["Public post"] = "Публичное сообщение";
$a->strings["Preview"] = "Предварительный просмотр";
$a->strings["Cancel"] = "Отмена";
$a->strings["Post to Groups"] = "Пост для групп";
$a->strings["Post to Contacts"] = "Пост для контактов";
$a->strings["Private post"] = "Личное сообщение";
$a->strings["Message"] = "Сообщение";
$a->strings["Browser"] = "Браузер";
$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["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем";
$a->strings["Miscellaneous"] = "Разное";
$a->strings["Birthday:"] = "День рождения:";
$a->strings["Age: "] = "Возраст: ";
$a->strings["YYYY-MM-DD or MM-DD"] = "";
$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD";
$a->strings["never"] = "никогда";
$a->strings["less than a second ago"] = "менее сек. назад";
$a->strings["year"] = "год";
@ -205,11 +275,20 @@ $a->strings["seconds"] = "сек.";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
$a->strings["%s's birthday"] = "день рождения %s";
$a->strings["Happy Birthday %s"] = "С днём рождения %s";
$a->strings["Friendica Notification"] = "Friendica уведомления";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]";
$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
$a->strings["Errors encountered performing database changes."] = "Обнаружены ошибки при изменении базы данных.";
$a->strings["(no subject)"] = "(без темы)";
$a->strings["noreply"] = "без ответа";
$a->strings["%s\\'s birthday"] = "День рождения %s";
$a->strings["Sharing notification from Diaspora network"] = "Уведомление о шаре из сети Diaspora";
$a->strings["Attachments:"] = "Вложения:";
$a->strings["Friendica Notification"] = "Уведомления Friendica";
$a->strings["Thank You,"] = "Спасибо,";
$a->strings["%s Administrator"] = "%s администратор";
$a->strings["%1\$s, %2\$s Administrator"] = "";
$a->strings["noreply"] = "без ответа";
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, администратор %2\$s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$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.";
@ -219,56 +298,52 @@ $a->strings["Please visit %s to view and/or reply to your private messages."] =
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]%3\$s's %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s прокомментировал [url=%2\$s]your %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Комментарий к #%1\$d от %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s оставил комментарий к элементу/беседе, за которой вы следите.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста посетите %s для просмотра и/или ответа в беседу.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Оповещение] %s написал на стене вашего профиля";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %s shared a new post"] = "";
$a->strings["%1\$s shared a new post at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = "";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s написал на вашей стене на %2\$s";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s написал на [url=%2\$s]вашей стене[/url]";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s отметил вас";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s отметил вас в %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]поставил тег[/url].";
$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s поделился новым постом";
$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s поделился новым постом на %2\$s";
$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]поделился постом[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s потыкал вас";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s потыкал вас на %2\$s";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]потыкал вас[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s поставил тег вашему посту";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s поставил тег вашему посту на %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s поставил тег [url=%2\$s]вашему посту[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Сообщение] получен запрос";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Вы получили запрос от '%1\$s' на %2\$s";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Вы получили [url=%1\$s]запрос[/url] от %2\$s.";
$a->strings["You may visit their profile at %s"] = "Вы можете посмотреть его профиль здесь %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Посетите %s для подтверждения или отказа запроса.";
$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
$a->strings["%1\$s is sharing with you at %2\$s"] = "";
$a->strings["[Friendica:Notify] You have a new follower"] = "";
$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] Новый человек делится с вами";
$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s делится с вами на %2\$s";
$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] У вас новый подписчик";
$a->strings["You have a new follower at %2\$s : %1\$s"] = "У вас новый подписчик на %2\$s : %1\$s";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica: Оповещение] получено предложение дружбы";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружбы от '%1\$s' на %2\$s";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "У вас [url=%1\$s]новое предложение дружбы[/url] для %2\$s от %3\$s.";
$a->strings["Name:"] = "Имя:";
$a->strings["Photo:"] = "Фото:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s для подтверждения, или отказа запроса.";
$a->strings["[Friendica:Notify] Connection accepted"] = "";
$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["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Соединение принято";
$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' принял соединение с вами на %2\$s";
$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s принял ваше [url=%1\$s]предложение о соединении[/url].";
$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений.";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Посетите %s если вы хотите сделать изменения в этом отношении.";
$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
$a->strings["[Friendica System:Notify] registration request"] = "";
$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
$a->strings["Please visit %s to approve or reject the request."] = "";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "Окончание:";
$a->strings["Location:"] = "Откуда:";
$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Посетите %s если вы хотите сделать изменения в этом отношении.";
$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Notify] Запрос на регистрацию";
$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Вы получили запрос на регистрацию от '%1\$s' на %2\$s";
$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Вы получили [url=%1\$s]запрос регистрации[/url] от %2\$s.";
$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Полное имя:⇥%1\$s\\nСайт:⇥%2\$s\\огин:⇥%3\$s (%4\$s)";
$a->strings["Please visit %s to approve or reject the request."] = "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос.";
$a->strings["Sun"] = "Вс";
$a->strings["Mon"] = "Пн";
$a->strings["Tue"] = "Вт";
@ -308,239 +383,21 @@ $a->strings["November"] = "Ноябрь";
$a->strings["December"] = "Декабрь";
$a->strings["today"] = "сегодня";
$a->strings["all-day"] = "";
$a->strings["No events to display"] = "";
$a->strings["No events to display"] = "Нет событий для показа";
$a->strings["l, F j"] = "l, j F";
$a->strings["Edit event"] = "Редактировать мероприятие";
$a->strings["link to source"] = "ссылка на сообщение";
$a->strings["Export"] = "";
$a->strings["Export calendar as ical"] = "";
$a->strings["Export calendar as csv"] = "";
$a->strings["Nothing new here"] = "Ничего нового здесь";
$a->strings["Clear notifications"] = "Стереть уведомления";
$a->strings["@name, !forum, #tags, content"] = "";
$a->strings["Logout"] = "Выход";
$a->strings["End this session"] = "Завершить эту сессию";
$a->strings["Status"] = "Посты";
$a->strings["Your posts and conversations"] = "Данные вашей учётной записи";
$a->strings["Profile"] = "Информация";
$a->strings["Your profile page"] = "Информация о вас";
$a->strings["Photos"] = "Фото";
$a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Videos"] = "Видео";
$a->strings["Your videos"] = "";
$a->strings["Events"] = "Мероприятия";
$a->strings["Your events"] = "Ваши события";
$a->strings["Personal notes"] = "Личные заметки";
$a->strings["Your personal notes"] = "";
$a->strings["Login"] = "Вход";
$a->strings["Sign in"] = "Вход";
$a->strings["Home"] = "Мой профиль";
$a->strings["Home Page"] = "Главная страница";
$a->strings["Register"] = "Регистрация";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help"] = "Помощь";
$a->strings["Help and documentation"] = "Помощь и документация";
$a->strings["Apps"] = "Приложения";
$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
$a->strings["Search"] = "Поиск";
$a->strings["Search site content"] = "Поиск по сайту";
$a->strings["Full Text"] = "Контент";
$a->strings["Tags"] = "Тэги";
$a->strings["Contacts"] = "Контакты";
$a->strings["Community"] = "Сообщество";
$a->strings["Conversations on this site"] = "Беседы на этом сайте";
$a->strings["Conversations on the network"] = "";
$a->strings["Events and Calendar"] = "Календарь и события";
$a->strings["Directory"] = "Каталог";
$a->strings["People directory"] = "Каталог участников";
$a->strings["Information"] = "Информация";
$a->strings["Information about this friendica instance"] = "";
$a->strings["Network"] = "Новости";
$a->strings["Conversations from your friends"] = "Посты ваших друзей";
$a->strings["Network Reset"] = "Перезагрузка сети";
$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров";
$a->strings["Introductions"] = "Запросы";
$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
$a->strings["Notifications"] = "Уведомления";
$a->strings["See all notifications"] = "Посмотреть все уведомления";
$a->strings["Mark as seen"] = "Отметить, как прочитанное";
$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные";
$a->strings["Messages"] = "Сообщения";
$a->strings["Private mail"] = "Личная почта";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["New Message"] = "Новое сообщение";
$a->strings["Manage"] = "Управлять";
$a->strings["Manage other pages"] = "Управление другими страницами";
$a->strings["Delegations"] = "Делегирование";
$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
$a->strings["Settings"] = "Настройки";
$a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей";
$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
$a->strings["Admin"] = "Администратор";
$a->strings["Site setup and configuration"] = "Конфигурация сайта";
$a->strings["Navigation"] = "Навигация";
$a->strings["Site map"] = "Карта сайта";
$a->strings["Contact Photos"] = "Фотографии контакта";
$a->strings["Welcome "] = "Добро пожаловать, ";
$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки.";
$a->strings["System"] = "Система";
$a->strings["Personal"] = "Персонал";
$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
$a->strings["%s created a new post"] = "%s написал новое сообщение";
$a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение";
$a->strings["%s is attending %s's event"] = "";
$a->strings["%s is not attending %s's event"] = "";
$a->strings["%s may attend %s's event"] = "";
$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s";
$a->strings["Friend Suggestion"] = "Предложение в друзья";
$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
$a->strings["New Follower"] = "Новый фолловер";
$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
$a->strings["The error message is\n[pre]%s[/pre]"] = "";
$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
$a->strings["Errors encountered performing database changes."] = "";
$a->strings["(no subject)"] = "(без темы)";
$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora";
$a->strings["Attachments:"] = "Вложения:";
$a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["View Profile"] = "Просмотреть профиль";
$a->strings["View Status"] = "Просмотреть статус";
$a->strings["View Photos"] = "Просмотреть фото";
$a->strings["Network Posts"] = "Посты сети";
$a->strings["View Contact"] = "";
$a->strings["Drop Contact"] = "Удалить контакт";
$a->strings["Send PM"] = "Отправить ЛС";
$a->strings["Poke"] = "";
$a->strings["Organisation"] = "";
$a->strings["News"] = "";
$a->strings["Forum"] = "Форум";
$a->strings["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["Monthly posting limit of %d posts reached. The post was rejected."] = "";
$a->strings["Image/photo"] = "Изображение / Фото";
$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
$a->strings["$1 wrote:"] = "$1 написал:";
$a->strings["Encrypted content"] = "Зашифрованный контент";
$a->strings["Invalid source protocol"] = "";
$a->strings["Invalid link protocol"] = "";
$a->strings["%1\$s attends %2\$s's %3\$s"] = "";
$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s";
$a->strings["post/item"] = "пост/элемент";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
$a->strings["Likes"] = "Лайки";
$a->strings["Dislikes"] = "Дизлайк";
$a->strings["Attending"] = array(
0 => "",
1 => "",
2 => "",
3 => "",
);
$a->strings["Not attending"] = "";
$a->strings["Might attend"] = "";
$a->strings["Select"] = "Выберите";
$a->strings["Delete"] = "Удалить";
$a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]";
$a->strings["Categories:"] = "Категории:";
$a->strings["Filed under:"] = "В рубрике:";
$a->strings["%s from %s"] = "%s с %s";
$a->strings["View in context"] = "Смотреть в контексте";
$a->strings["Please wait"] = "Пожалуйста, подождите";
$a->strings["remove"] = "удалить";
$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
$a->strings["Follow Thread"] = "";
$a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["%s attends."] = "";
$a->strings["%s doesn't attend."] = "";
$a->strings["%s attends maybe."] = "";
$a->strings["and"] = "и";
$a->strings[", and %d other people"] = ", и %d других чел.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d людям</span> нравится это";
$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> attend maybe"] = "";
$a->strings["%s anttend maybe."] = "";
$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Please enter a video link/URL:"] = "Введите ссылку на видео link/URL:";
$a->strings["Please enter an audio link/URL:"] = "Введите ссылку на аудио link/URL:";
$a->strings["Tag term:"] = "";
$a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["Where are you right now?"] = "И где вы сейчас?";
$a->strings["Delete item(s)?"] = "Удалить елемент(ты)?";
$a->strings["Share"] = "Поделиться";
$a->strings["Upload photo"] = "Загрузить фото";
$a->strings["upload photo"] = "загрузить фото";
$a->strings["Attach file"] = "Прикрепить файл";
$a->strings["attach file"] = "приложить файл";
$a->strings["Insert web link"] = "Вставить веб-ссылку";
$a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить ссылку видео";
$a->strings["video link"] = "видео-ссылка";
$a->strings["Insert audio link"] = "Вставить ссылку аудио";
$a->strings["audio link"] = "аудио-ссылка";
$a->strings["Set your location"] = "Задать ваше местоположение";
$a->strings["set location"] = "установить местонахождение";
$a->strings["Clear browser location"] = "Очистить местонахождение браузера";
$a->strings["clear location"] = "убрать местонахождение";
$a->strings["Set title"] = "Установить заголовок";
$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
$a->strings["Permission settings"] = "Настройки разрешений";
$a->strings["permissions"] = "разрешения";
$a->strings["Public post"] = "Публичное сообщение";
$a->strings["Preview"] = "Предварительный просмотр";
$a->strings["Cancel"] = "Отмена";
$a->strings["Post to Groups"] = "Пост для групп";
$a->strings["Post to Contacts"] = "Пост для контактов";
$a->strings["Private post"] = "Личное сообщение";
$a->strings["Message"] = "Сообщение";
$a->strings["Browser"] = "";
$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["%s\\'s birthday"] = "";
$a->strings["Export"] = "Экспорт";
$a->strings["Export calendar as ical"] = "Экспортировать календарь в формат ical";
$a->strings["Export calendar as csv"] = "Экспортировать календарь в формат csv";
$a->strings["General Features"] = "Основные возможности";
$a->strings["Multiple Profiles"] = "Несколько профилей";
$a->strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей";
$a->strings["Photo Location"] = "";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
$a->strings["Export Public Calendar"] = "";
$a->strings["Ability for visitors to download the public calendar"] = "";
$a->strings["Photo Location"] = "Место фотографирования";
$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте.";
$a->strings["Export Public Calendar"] = "Экспортировать публичный календарь";
$a->strings["Ability for visitors to download the public calendar"] = "Возможность скачивать публичный календарь посетителями";
$a->strings["Post Composition Features"] = "Составление сообщений";
$a->strings["Richtext Editor"] = "Редактор RTF";
$a->strings["Enable richtext editor"] = "Включить редактор RTF";
$a->strings["Post Preview"] = "Предварительный просмотр";
$a->strings["Allow previewing posts and comments before publishing them"] = "Разрешить предпросмотр сообщения и комментария перед их публикацией";
$a->strings["Auto-mention Forums"] = "";
@ -548,7 +405,7 @@ $a->strings["Add/remove mention when a forum page is selected/deselected in ACL
$a->strings["Network Sidebar Widgets"] = "Виджет боковой панели \"Сеть\"";
$a->strings["Search by Date"] = "Поиск по датам";
$a->strings["Ability to select posts by date ranges"] = "Возможность выбора постов по диапазону дат";
$a->strings["List Forums"] = "";
$a->strings["List Forums"] = "Список форумов";
$a->strings["Enable widget to display the forums your are connected with"] = "";
$a->strings["Group Filter"] = "Фильтр групп";
$a->strings["Enable widget to display Network posts only from selected group"] = "Включить виджет для отображения сообщений сети только от выбранной группы";
@ -573,12 +430,12 @@ $a->strings["Ability to tag existing posts"] = "Возможность отме
$a->strings["Post Categories"] = "Категории постов";
$a->strings["Add categories to your posts"] = "Добавить категории вашего поста";
$a->strings["Ability to file posts under folders"] = "";
$a->strings["Dislike Posts"] = "Посты дизлайк";
$a->strings["Ability to dislike posts/comments"] = "Возможность дизлайка постов/комментариев";
$a->strings["Dislike Posts"] = "Посты, которые не нравятся";
$a->strings["Ability to dislike posts/comments"] = "Возможность поставить \"Не нравится\" посту или комментарию";
$a->strings["Star Posts"] = "Популярные посты";
$a->strings["Ability to mark special posts with a star indicator"] = "Возможность отметить специальные сообщения индикатором популярности";
$a->strings["Mute Post Notifications"] = "";
$a->strings["Ability to mute notifications for a thread"] = "";
$a->strings["Mute Post Notifications"] = "Отключить уведомления для поста";
$a->strings["Ability to mute notifications for a thread"] = "Возможность отключить уведомления для отдельно взятого обсуждения";
$a->strings["Advanced Profile Settings"] = "Расширенные настройки профиля";
$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
@ -593,10 +450,22 @@ $a->strings["Use mailto: in front of address to force email check."] = "Bcgjkmpe
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.";
$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию.";
$a->strings["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 not what you intended, please create another group with a different name."] = "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием.";
$a->strings["Default privacy group for new contacts"] = "Группа доступа по умолчанию для новых контактов";
$a->strings["Everybody"] = "Каждый";
$a->strings["edit"] = "редактировать";
$a->strings["Groups"] = "Группы";
$a->strings["Edit groups"] = "Редактировать группы";
$a->strings["Edit group"] = "Редактировать группу";
$a->strings["Create a new group"] = "Создать новую группу";
$a->strings["Group Name: "] = "Название группы: ";
$a->strings["Contacts not in any group"] = "Контакты не состоят в группе";
$a->strings["add"] = "добавить";
$a->strings["Requested account is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Edit profile"] = "Редактировать профиль";
$a->strings["Atom feed"] = "";
$a->strings["Atom feed"] = "Фид Atom";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
$a->strings["Change profile photo"] = "Изменить фото профиля";
$a->strings["Create New Profile"] = "Создать новый профиль";
@ -607,7 +476,7 @@ $a->strings["Gender:"] = "Пол:";
$a->strings["Status:"] = "Статус:";
$a->strings["Homepage:"] = "Домашняя страничка:";
$a->strings["About:"] = "О себе:";
$a->strings["XMPP:"] = "";
$a->strings["XMPP:"] = "XMPP:";
$a->strings["Network:"] = "Сеть:";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "F d";
@ -617,11 +486,12 @@ $a->strings["Birthdays this week:"] = "Дни рождения на этой н
$a->strings["[No description]"] = "[без описания]";
$a->strings["Event Reminders"] = "Напоминания о мероприятиях";
$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
$a->strings["Profile"] = "Информация";
$a->strings["Full Name:"] = "Полное имя:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Age:"] = "Возраст:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["for %1\$d %2\$s"] = "для %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:";
$a->strings["Hometown:"] = "Родной город:";
$a->strings["Tags:"] = "Ключевые слова: ";
@ -638,34 +508,164 @@ $a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Ку
$a->strings["Love/Romance:"] = "Любовь / Романтика:";
$a->strings["Work/employment:"] = "Работа / Занятость:";
$a->strings["School/education:"] = "Школа / Образование:";
$a->strings["Forums:"] = "";
$a->strings["Basic"] = "";
$a->strings["Forums:"] = "Форумы:";
$a->strings["Basic"] = "Базовый";
$a->strings["Advanced"] = "Расширенный";
$a->strings["Status"] = "Посты";
$a->strings["Status Messages and Posts"] = "Ваши посты";
$a->strings["Profile Details"] = "Информация о вас";
$a->strings["Photos"] = "Фото";
$a->strings["Photo Albums"] = "Фотоальбомы";
$a->strings["Videos"] = "Видео";
$a->strings["Events"] = "Мероприятия";
$a->strings["Events and Calendar"] = "Календарь и события";
$a->strings["Personal Notes"] = "Личные заметки";
$a->strings["Only You Can See This"] = "Только вы можете это видеть";
$a->strings["Contacts"] = "Контакты";
$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
$a->strings["Item not found."] = "Пункт не найден.";
$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?";
$a->strings["Yes"] = "Да";
$a->strings["Permission denied."] = "Нет разрешения.";
$a->strings["Archives"] = "Архивы";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Nothing new here"] = "Ничего нового здесь";
$a->strings["Clear notifications"] = "Стереть уведомления";
$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент";
$a->strings["End this session"] = "Завершить эту сессию";
$a->strings["Your posts and conversations"] = "Данные вашей учётной записи";
$a->strings["Your profile page"] = "Информация о вас";
$a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Your videos"] = "Ваши видео";
$a->strings["Your events"] = "Ваши события";
$a->strings["Personal notes"] = "Личные заметки";
$a->strings["Your personal notes"] = "Ваши личные заметки";
$a->strings["Sign in"] = "Вход";
$a->strings["Home Page"] = "Главная страница";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help"] = "Помощь";
$a->strings["Help and documentation"] = "Помощь и документация";
$a->strings["Apps"] = "Приложения";
$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
$a->strings["Search"] = "Поиск";
$a->strings["Search site content"] = "Поиск по сайту";
$a->strings["Full Text"] = "Контент";
$a->strings["Tags"] = "Тэги";
$a->strings["Community"] = "Сообщество";
$a->strings["Conversations on this site"] = "Беседы на этом сайте";
$a->strings["Conversations on the network"] = "Беседы в сети";
$a->strings["Directory"] = "Каталог";
$a->strings["People directory"] = "Каталог участников";
$a->strings["Information"] = "Информация";
$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica";
$a->strings["Conversations from your friends"] = "Посты ваших друзей";
$a->strings["Network Reset"] = "Перезагрузка сети";
$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров";
$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
$a->strings["Notifications"] = "Уведомления";
$a->strings["See all notifications"] = "Посмотреть все уведомления";
$a->strings["Mark as seen"] = "Отметить, как прочитанное";
$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные";
$a->strings["Messages"] = "Сообщения";
$a->strings["Private mail"] = "Личная почта";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["New Message"] = "Новое сообщение";
$a->strings["Manage"] = "Управлять";
$a->strings["Manage other pages"] = "Управление другими страницами";
$a->strings["Delegations"] = "Делегирование";
$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
$a->strings["Settings"] = "Настройки";
$a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей";
$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
$a->strings["Admin"] = "Администратор";
$a->strings["Site setup and configuration"] = "Конфигурация сайта";
$a->strings["Navigation"] = "Навигация";
$a->strings["Site map"] = "Карта сайта";
$a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["Embedded content"] = "Встроенное содержание";
$a->strings["Embedding disabled"] = "Встраивание отключено";
$a->strings["%s is now following %s."] = "";
$a->strings["%s is now following %s."] = "%s теперь подписан на %s.";
$a->strings["following"] = "следует";
$a->strings["%s stopped following %s."] = "";
$a->strings["%s stopped following %s."] = "%s отписался от %s.";
$a->strings["stopped following"] = "остановлено следование";
$a->strings["Contact Photos"] = "Фотографии контакта";
$a->strings["Click here to upgrade."] = "Нажмите для обновления.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом.";
$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки.";
$a->strings["Male"] = "Мужчина";
$a->strings["Female"] = "Женщина";
$a->strings["Currently Male"] = "В данный момент мужчина";
$a->strings["Currently Female"] = "В настоящее время женщина";
$a->strings["Mostly Male"] = "В основном мужчина";
$a->strings["Mostly Female"] = "В основном женщина";
$a->strings["Transgender"] = "Транссексуал";
$a->strings["Intersex"] = "Интерсексуал";
$a->strings["Transsexual"] = "Транссексуал";
$a->strings["Hermaphrodite"] = "Гермафродит";
$a->strings["Neuter"] = "Средний род";
$a->strings["Non-specific"] = "Не определен";
$a->strings["Other"] = "Другой";
$a->strings["Males"] = "Мужчины";
$a->strings["Females"] = "Женщины";
$a->strings["Gay"] = "Гей";
$a->strings["Lesbian"] = "Лесбиянка";
$a->strings["No Preference"] = "Без предпочтений";
$a->strings["Bisexual"] = "Бисексуал";
$a->strings["Autosexual"] = "Автосексуал";
$a->strings["Abstinent"] = "Воздержанный";
$a->strings["Virgin"] = "Девственница";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Фетиш";
$a->strings["Oodles"] = "Групповой";
$a->strings["Nonsexual"] = "Нет интереса к сексу";
$a->strings["Single"] = "Без пары";
$a->strings["Lonely"] = "Пока никого нет";
$a->strings["Available"] = "Доступный";
$a->strings["Unavailable"] = "Не ищу никого";
$a->strings["Has crush"] = "Имеет ошибку";
$a->strings["Infatuated"] = "Влюблён";
$a->strings["Dating"] = "Свидания";
$a->strings["Unfaithful"] = "Изменяю супругу";
$a->strings["Sex Addict"] = "Люблю секс";
$a->strings["Friends"] = "Друзья";
$a->strings["Friends/Benefits"] = "Друзья / Предпочтения";
$a->strings["Casual"] = "Обычный";
$a->strings["Engaged"] = "Занят";
$a->strings["Married"] = "Женат / Замужем";
$a->strings["Imaginarily married"] = "Воображаемо женат (замужем)";
$a->strings["Partners"] = "Партнеры";
$a->strings["Cohabiting"] = "Партнерство";
$a->strings["Common law"] = "";
$a->strings["Happy"] = "Счастлив/а/";
$a->strings["Not looking"] = "Не в поиске";
$a->strings["Swinger"] = "Свинг";
$a->strings["Betrayed"] = "Преданный";
$a->strings["Separated"] = "Разделенный";
$a->strings["Unstable"] = "Нестабильный";
$a->strings["Divorced"] = "Разведен(а)";
$a->strings["Imaginarily divorced"] = "Воображаемо разведен(а)";
$a->strings["Widowed"] = "Овдовевший";
$a->strings["Uncertain"] = "Неопределенный";
$a->strings["It's complicated"] = "влишком сложно";
$a->strings["Don't care"] = "Не беспокоить";
$a->strings["Ask me"] = "Спросите меня";
$a->strings["Welcome "] = "Добро пожаловать, ";
$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки.";
$a->strings["newer"] = "новее";
$a->strings["older"] = "старее";
$a->strings["prev"] = "пред.";
$a->strings["first"] = "первый";
$a->strings["last"] = "последний";
$a->strings["prev"] = "пред.";
$a->strings["next"] = "след.";
$a->strings["Loading more entries..."] = "";
$a->strings["The end"] = "";
$a->strings["last"] = "последний";
$a->strings["Loading more entries..."] = "Загружаю больше сообщений...";
$a->strings["The end"] = "Конец";
$a->strings["No contacts"] = "Нет контактов";
$a->strings["%d Contact"] = array(
0 => "%d контакт",
@ -676,13 +676,13 @@ $a->strings["%d Contact"] = array(
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["Save"] = "Сохранить";
$a->strings["poke"] = "poke";
$a->strings["poked"] = "";
$a->strings["poked"] = "ткнут";
$a->strings["ping"] = "пинг";
$a->strings["pinged"] = "пингуется";
$a->strings["prod"] = "";
$a->strings["prodded"] = "";
$a->strings["slap"] = "";
$a->strings["slapped"] = "";
$a->strings["prod"] = "толкать";
$a->strings["prodded"] = "толкнут";
$a->strings["slap"] = "шлепнуть";
$a->strings["slapped"] = "шлепнут";
$a->strings["finger"] = "";
$a->strings["fingered"] = "";
$a->strings["rebuff"] = "";
@ -721,6 +721,19 @@ $a->strings["comment"] = array(
);
$a->strings["post"] = "сообщение";
$a->strings["Item filed"] = "";
$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?";
$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм";
$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!";
$a->strings["User creation error"] = "Ошибка создания пользователя";
$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя";
$a->strings["%d contact not imported"] = array(
0 => "%d контакт не импортирован",
1 => "%d контакты не импортированы",
2 => "%d контакты не импортированы",
3 => "%d контакты не импортированы",
);
$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем";
$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
$a->strings["An invitation is required."] = "Требуется приглашение.";
$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
@ -745,741 +758,17 @@ $a->strings["Registration at %s"] = "";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
$a->strings["Post successful."] = "Успешно добавлено.";
$a->strings["Access denied."] = "Доступ запрещен.";
$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
$a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
$a->strings["System Notifications"] = "Уведомления системы";
$a->strings["Remove term"] = "Удалить элемент";
$a->strings["Public access denied."] = "Свободный доступ закрыт.";
$a->strings["Only logged in users are permitted to perform a search."] = "";
$a->strings["Too Many Requests"] = "";
$a->strings["Only one search per minute is permitted for not logged in users."] = "";
$a->strings["No results."] = "Нет результатов.";
$a->strings["Items tagged with: %s"] = "";
$a->strings["Results for: %s"] = "";
$a->strings["This is Friendica, version"] = "Это Friendica, версия";
$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["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["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
$a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
$a->strings["Password Reset"] = "Сброс пароля";
$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
$a->strings["Your new password is"] = "Ваш новый пароль";
$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем";
$a->strings["click here to login"] = "нажмите здесь для входа";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа.";
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s";
$a->strings["Forgot your Password?"] = "Забыли пароль?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
$a->strings["Reset"] = "Сброс";
$a->strings["No profile"] = "Нет профиля";
$a->strings["Help:"] = "Помощь:";
$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны.";
$a->strings["Not Found"] = "Не найдено";
$a->strings["Page not found."] = "Страница не найдена.";
$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна.";
$a->strings["Visible to:"] = "Кто может видеть:";
$a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.";
$a->strings["Import"] = "Импорт";
$a->strings["Move account"] = "Удалить аккаунт";
$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "";
$a->strings["Account file"] = "Файл аккаунта";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"";
$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы";
$a->strings["Export account"] = "Экспорт аккаунта";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер.";
$a->strings["Export all"] = "Экспорт всего";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)";
$a->strings["Export personal data"] = "Экспорт личных данных";
$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений.";
$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта.";
$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась.";
$a->strings["%d message sent."] = array(
0 => "%d сообщение отправлено.",
1 => "%d сообщений отправлено.",
2 => "%d сообщений отправлено.",
3 => "%d сообщений отправлено.",
);
$a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников.";
$a->strings["Send invitations"] = "Отправить приглашения";
$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com";
$a->strings["Submit"] = "Добавить";
$a->strings["Files"] = "Файлы";
$a->strings["Permission denied"] = "Доступ запрещен";
$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["Visible To"] = "Видимый для";
$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
$a->strings["Tag removed"] = "Ключевое слово удалено";
$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
$a->strings["Remove"] = "Удалить";
$a->strings["Resubscribing to OStatus contacts"] = "";
$a->strings["Error"] = "Ошибка";
$a->strings["Done"] = "Готово";
$a->strings["Keep this window open until done."] = "";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете.";
$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы";
$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы";
$a->strings["Potential Delegates"] = "Возможные доверенные лица";
$a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей.";
$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["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["Item not available."] = "Пункт не доступен.";
$a->strings["Item was not found."] = "Пункт не был найден.";
$a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны.";
$a->strings["Applications"] = "Приложения";
$a->strings["No installed applications."] = "Нет установленных приложений.";
$a->strings["Not Extended"] = "";
$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
$a->strings["New Member Checklist"] = "Новый контрольный список участников";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет.";
$a->strings["Getting Started"] = "Начало работы";
$a->strings["Friendica Walk-Through"] = "Friendica тур";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "На вашей странице <em>Быстрый старт</em> - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним.";
$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам";
$a->strings["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 will be useful in making friends on the free social web."] = "На вашей странице <em>Настройки</em> - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти.";
$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают.";
$a->strings["Edit Your Profile"] = "Редактировать профиль";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей.";
$a->strings["Profile Keywords"] = "Ключевые слова профиля";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
$a->strings["Connecting"] = "Подключение";
$a->strings["Importing Emails"] = "Импортирование Email-ов";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты";
$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог <em>Добавить новый контакт</em>.";
$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется.";
$a->strings["Finding New People"] = "Поиск людей";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов.";
$a->strings["Group Your Contacts"] = "Группа \"ваши контакты\"";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.";
$a->strings["Why Aren't My Posts Public?"] = "Почему мои посты не публичные?";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше.";
$a->strings["Getting Help"] = "Получить помощь";
$a->strings["Go to the Help Section"] = "Перейти в раздел справки";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
$a->strings["Remove My Account"] = "Удалить мой аккаунт";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
$a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["Time Conversion"] = "История общения";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах.";
$a->strings["UTC time: %s"] = "UTC время: %s";
$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s";
$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s";
$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:";
$a->strings["The post was created"] = "";
$a->strings["Group created."] = "Группа создана.";
$a->strings["Could not create group."] = "Не удалось создать группу.";
$a->strings["Group not found."] = "Группа не найдена.";
$a->strings["Group name changed."] = "Название группы изменено.";
$a->strings["Save Group"] = "Сохранить группу";
$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
$a->strings["Group removed."] = "Группа удалена.";
$a->strings["Unable to remove group."] = "Не удается удалить группу.";
$a->strings["Group Editor"] = "Редактор групп";
$a->strings["Members"] = "Участники";
$a->strings["All Contacts"] = "Все контакты";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено..";
$a->strings["No recipient selected."] = "Не выбран получатель.";
$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение.";
$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
$a->strings["Message collection failure."] = "Неудача коллекции сообщения.";
$a->strings["Message sent."] = "Сообщение отправлено.";
$a->strings["No recipient."] = "Без адресата.";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей.";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["link"] = "ссылка";
$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
$a->strings["No"] = "Нет";
$a->strings["Source (bbcode) text:"] = "Код (bbcode):";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:";
$a->strings["Source input: "] = "Ввести код:";
$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Subscribing to OStatus contacts"] = "";
$a->strings["No contact provided."] = "";
$a->strings["Couldn't fetch information for contact."] = "";
$a->strings["Couldn't fetch friends for contact."] = "";
$a->strings["success"] = "удачно";
$a->strings["failed"] = "неудача";
$a->strings["ignored"] = "";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s";
$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
$a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?";
$a->strings["Message deleted."] = "Сообщение удалено.";
$a->strings["Conversation removed."] = "Беседа удалена.";
$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["You and %s"] = "Вы и %s";
$a->strings["%s and You"] = "%s и Вы";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d сообщение",
1 => "%d сообщений",
2 => "%d сообщений",
3 => "%d сообщений",
);
$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: ";
$a->strings["Contact settings applied."] = "Установки контакта приняты.";
$a->strings["Contact update failed."] = "Обновление контакта неудачное.";
$a->strings["Contact not found."] = "Контакт не найден.";
$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["No mirroring"] = "";
$a->strings["Mirror as forwarded posting"] = "";
$a->strings["Mirror as my own posting"] = "";
$a->strings["Return to contact editor"] = "Возврат к редактору контакта";
$a->strings["Refetch contact data"] = "";
$a->strings["Remote Self"] = "";
$a->strings["Mirror postings from this contact"] = "";
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
$a->strings["Name"] = "Имя";
$a->strings["Account Nickname"] = "Ник аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = "";
$a->strings["Account URL"] = "URL аккаунта";
$a->strings["Friend Request URL"] = "URL запроса в друзья";
$a->strings["Friend Confirm URL"] = "URL подтверждения друга";
$a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления";
$a->strings["Poll/Feed URL"] = "URL опроса/ленты";
$a->strings["New photo from this URL"] = "Новое фото из этой URL";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group: %s"] = "Группа: %s";
$a->strings["This entry was edited"] = "Эта запись была отредактирована";
$a->strings["%d comment"] = array(
0 => "%d комментарий",
1 => "%d комментариев",
2 => "%d комментариев",
3 => "%d комментариев",
);
$a->strings["Private Message"] = "Личное сообщение";
$a->strings["I like this (toggle)"] = "Нравится";
$a->strings["like"] = "нравится";
$a->strings["I don't like this (toggle)"] = "Не нравится";
$a->strings["dislike"] = "не нравитса";
$a->strings["Share this"] = "Поделитесь этим";
$a->strings["share"] = "делиться";
$a->strings["This is you"] = "Это вы";
$a->strings["Comment"] = "Оставить комментарий";
$a->strings["Bold"] = "Жирный";
$a->strings["Italic"] = "Kурсивный";
$a->strings["Underline"] = "Подчеркнутый";
$a->strings["Quote"] = "Цитата";
$a->strings["Code"] = "Код";
$a->strings["Image"] = "Изображение / Фото";
$a->strings["Link"] = "Ссылка";
$a->strings["Video"] = "Видео";
$a->strings["Edit"] = "Редактировать";
$a->strings["add star"] = "пометить";
$a->strings["remove star"] = "убрать метку";
$a->strings["toggle star status"] = "переключить статус";
$a->strings["starred"] = "помечено";
$a->strings["add tag"] = "добавить ключевое слово (таг)";
$a->strings["ignore thread"] = "";
$a->strings["unignore thread"] = "";
$a->strings["toggle ignore status"] = "";
$a->strings["save to folder"] = "сохранить в папке";
$a->strings["I will attend"] = "";
$a->strings["I will not attend"] = "";
$a->strings["I might attend"] = "";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
$a->strings["Suggest Friends"] = "Предложить друзей";
$a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
$a->strings["Mood"] = "Настроение";
$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям";
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "Получатель";
$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя";
$a->strings["Make this post private"] = "Сделать эту запись личной";
$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
$a->strings["Unable to process image"] = "Не удается обработать изображение";
$a->strings["Image exceeds size limit of %s"] = "";
$a->strings["Unable to process image."] = "Невозможно обработать фото.";
$a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Select a profile:"] = "Выбрать этот профиль:";
$a->strings["Upload"] = "Загрузить";
$a->strings["or"] = "или";
$a->strings["skip this step"] = "пропустить этот шаг";
$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
$a->strings["Crop Image"] = "Обрезать изображение";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
$a->strings["Done Editing"] = "Редактирование выполнено";
$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
$a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
$a->strings["Discard"] = "Отказаться";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Network Notifications"] = "Уведомления сети";
$a->strings["Personal Notifications"] = "Личные уведомления";
$a->strings["Home Notifications"] = "Уведомления";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
$a->strings["Notification type: "] = "Тип уведомления: ";
$a->strings["suggested by %s"] = "предложено юзером %s";
$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других";
$a->strings["Post a new friend activity"] = "Настроение";
$a->strings["if applicable"] = "если требуется";
$a->strings["Approve"] = "Одобрить";
$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
$a->strings["yes"] = "да";
$a->strings["no"] = "нет";
$a->strings["Shall your connection be bidirectional or not? \"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["Sharer"] = "Участник";
$a->strings["Fan/Admirer"] = "Фанат / Поклонник";
$a->strings["Profile URL"] = "URL профиля";
$a->strings["No introductions."] = "Запросов нет.";
$a->strings["Show unread"] = "";
$a->strings["Show all"] = "";
$a->strings["No more %s notifications."] = "";
$a->strings["Profile not found."] = "Профиль не найден.";
$a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан.";
$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
$a->strings["Profile Name is required."] = "Необходимо имя профиля.";
$a->strings["Marital Status"] = "Семейное положение";
$a->strings["Romantic Partner"] = "Любимый человек";
$a->strings["Work/Employment"] = "Работа/Занятость";
$a->strings["Religion"] = "Религия";
$a->strings["Political Views"] = "Политические взгляды";
$a->strings["Gender"] = "Пол";
$a->strings["Sexual Preference"] = "Сексуальные предпочтения";
$a->strings["XMPP"] = "";
$a->strings["Homepage"] = "Домашняя страница";
$a->strings["Interests"] = "Хобби / Интересы";
$a->strings["Address"] = "Адрес";
$a->strings["Location"] = "Местонахождение";
$a->strings["Profile updated."] = "Профиль обновлен.";
$a->strings[" and "] = "и";
$a->strings["public profile"] = "публичный профиль";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s изменились с %2\$s на &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " - Посетить профиль %1\$s [%2\$s]";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Hide contacts and friends:"] = "";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
$a->strings["Show more profile fields:"] = "";
$a->strings["Profile Actions"] = "";
$a->strings["Edit Profile Details"] = "Редактировать детали профиля";
$a->strings["Change Profile Photo"] = "Изменить фото профиля";
$a->strings["View this profile"] = "Просмотреть этот профиль";
$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки";
$a->strings["Clone this profile"] = "Клонировать этот профиль";
$a->strings["Delete this profile"] = "Удалить этот профиль";
$a->strings["Basic information"] = "";
$a->strings["Profile picture"] = "";
$a->strings["Preferences"] = "";
$a->strings["Status information"] = "";
$a->strings["Additional information"] = "";
$a->strings["Relation"] = "";
$a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Семейное положение:";
$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение";
$a->strings["Profile Name:"] = "Имя профиля:";
$a->strings["Required"] = "Требуется";
$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["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Заголовок / Описание:";
$a->strings["Street Address:"] = "Адрес:";
$a->strings["Locality/City:"] = "Город / Населенный пункт:";
$a->strings["Region/State:"] = "Район / Область:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
$a->strings["Country:"] = "Страна:";
$a->strings["Who: (if applicable)"] = "Кто: (если требуется)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com";
$a->strings["Since [date]:"] = "С какого времени [дата]:";
$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
$a->strings["XMPP (Jabber) address:"] = "";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
$a->strings["Homepage URL:"] = "Адрес домашней странички:";
$a->strings["Religious Views:"] = "Религиозные взгляды:";
$a->strings["Public Keywords:"] = "Общественные ключевые слова:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)";
$a->strings["Private Keywords:"] = "Личные ключевые слова:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)";
$a->strings["Musical interests"] = "Музыкальные интересы";
$a->strings["Books, literature"] = "Книги, литература";
$a->strings["Television"] = "Телевидение";
$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
$a->strings["Hobbies/Interests"] = "Хобби / Интересы";
$a->strings["Love/romance"] = "Любовь / романтика";
$a->strings["Work/employment"] = "Работа / занятость";
$a->strings["School/education"] = "Школа / образование";
$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети";
$a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
$a->strings["No friends to display."] = "Нет друзей.";
$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
$a->strings["View"] = "";
$a->strings["Previous"] = "Назад";
$a->strings["Next"] = "Далее";
$a->strings["list"] = "";
$a->strings["User not found"] = "";
$a->strings["This calendar format is not supported"] = "";
$a->strings["No exportable data found"] = "";
$a->strings["calendar"] = "";
$a->strings["No contacts in common."] = "Нет общих контактов.";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["Not available."] = "Недоступно.";
$a->strings["Global Directory"] = "Глобальный каталог";
$a->strings["Find on this site"] = "Найти на этом сайте";
$a->strings["Results for:"] = "";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
$a->strings["People Search - %s"] = "";
$a->strings["Forum Search - %s"] = "";
$a->strings["No matches"] = "Нет соответствий";
$a->strings["Item has been removed."] = "Пункт был удален.";
$a->strings["Event can not end before it has started."] = "";
$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения.";
$a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Event details"] = "Сведения о мероприятии";
$a->strings["Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Начало мероприятия:";
$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
$a->strings["Event Finishes:"] = "Окончание мероприятия:";
$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
$a->strings["Description:"] = "Описание:";
$a->strings["Title:"] = "Титул:";
$a->strings["Share this event"] = "Поделитесь этим мероприятием";
$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
$a->strings["is interested in:"] = "интересуется:";
$a->strings["Profile Match"] = "Похожие профили";
$a->strings["Tips for New Members"] = "Советы для новых участников";
$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.";
$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
$a->strings["Recent Photos"] = "Последние фото";
$a->strings["Upload New Photos"] = "Загрузить новые фото";
$a->strings["everybody"] = "каждый";
$a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
$a->strings["Album not found."] = "Альбом не найден.";
$a->strings["Delete Album"] = "Удалить альбом";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?";
$a->strings["Delete Photo"] = "Удалить фото";
$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s";
$a->strings["a photo"] = "фото";
$a->strings["Image file is empty."] = "Файл изображения пуст.";
$a->strings["No photos selected"] = "Не выбрано фото.";
$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий.";
$a->strings["Upload Photos"] = "Загрузить фото";
$a->strings["New album name: "] = "Название нового альбома: ";
$a->strings["or existing album name: "] = "или название существующего альбома: ";
$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки";
$a->strings["Show to Groups"] = "Показать в группах";
$a->strings["Show to Contacts"] = "Показывать контактам";
$a->strings["Private Photo"] = "Личное фото";
$a->strings["Public Photo"] = "Публичное фото";
$a->strings["Edit Album"] = "Редактировать альбом";
$a->strings["Show Newest First"] = "Показать новые первыми";
$a->strings["Show Oldest First"] = "Показать старые первыми";
$a->strings["View Photo"] = "Просмотр фото";
$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен.";
$a->strings["Photo not available"] = "Фото недоступно";
$a->strings["View photo"] = "Просмотр фото";
$a->strings["Edit photo"] = "Редактировать фото";
$a->strings["Use as profile photo"] = "Использовать как фото профиля";
$a->strings["View Full Size"] = "Просмотреть полный размер";
$a->strings["Tags: "] = "Ключевые слова: ";
$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
$a->strings["New album name"] = "Название нового альбома";
$a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)";
$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["Public photo"] = "Публичное фото";
$a->strings["Map"] = "Карта";
$a->strings["View Album"] = "Просмотреть альбом";
$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["Registration successful."] = "";
$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
$a->strings["Note for the admin"] = "";
$a->strings["Leave a message for the admin, why you want to join this node"] = "";
$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
$a->strings["Your invitation ID: "] = "ID вашего приглашения:";
$a->strings["Registration"] = "Регистрация";
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
$a->strings["New Password:"] = "Новый пароль:";
$a->strings["Leave empty for an auto generated password."] = "";
$a->strings["Confirm:"] = "Подтвердите:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica";
$a->strings["Account"] = "Аккаунт";
$a->strings["Additional features"] = "Дополнительные возможности";
$a->strings["Display"] = "Внешний вид";
$a->strings["Social Networks"] = "Социальные сети";
$a->strings["Plugins"] = "Плагины";
$a->strings["Connected apps"] = "Подключенные приложения";
$a->strings["Remove account"] = "Удалить аккаунт";
$a->strings["Missing some important data!"] = "Не хватает важных данных!";
$a->strings["Update"] = "Обновление";
$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
$a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
$a->strings["Features updated"] = "Настройки обновлены";
$a->strings["Relocate message has been send to your contacts"] = "Перемещённое сообщение было отправлено списку контактов";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
$a->strings["Wrong password."] = "Неверный пароль.";
$a->strings["Password changed."] = "Пароль изменен.";
$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.";
$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя.";
$a->strings[" Name too short."] = " Имя слишком короткое.";
$a->strings["Wrong Password"] = "Неверный пароль.";
$a->strings[" Not valid email."] = " Неверный e-mail.";
$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию.";
$a->strings["Settings updated."] = "Настройки обновлены.";
$a->strings["Add application"] = "Добавить приложения";
$a->strings["Save Settings"] = "Сохранить настройки";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Перенаправление";
$a->strings["Icon url"] = "URL символа";
$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение.";
$a->strings["Connected Apps"] = "Подключенные приложения";
$a->strings["Client key starts with"] = "Ключ клиента начинается с";
$a->strings["No name"] = "Нет имени";
$a->strings["Remove authorization"] = "Удалить авторизацию";
$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
$a->strings["Plugin Settings"] = "Настройки плагина";
$a->strings["Off"] = "Выкл.";
$a->strings["On"] = "Вкл.";
$a->strings["Additional Features"] = "Дополнительные возможности";
$a->strings["General Social Media Settings"] = "";
$a->strings["Disable intelligent shortening"] = "";
$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "";
$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "";
$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "";
$a->strings["Default group for OStatus contacts"] = "";
$a->strings["Your legacy GNU Social account"] = "";
$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "";
$a->strings["Repair OStatus subscriptions"] = "";
$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s";
$a->strings["enabled"] = "подключено";
$a->strings["disabled"] = "отключено";
$a->strings["GNU Social (OStatus)"] = "";
$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:";
$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
$a->strings["IMAP port:"] = "Порт IMAP:";
$a->strings["Security:"] = "Безопасность:";
$a->strings["None"] = "Ничего";
$a->strings["Email login name:"] = "Логин эл. почты:";
$a->strings["Email password:"] = "Пароль эл. почты:";
$a->strings["Reply-to address:"] = "Адрес для ответа:";
$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
$a->strings["Action after import:"] = "Действие после импорта:";
$a->strings["Move to folder"] = "Переместить в папку";
$a->strings["Move to folder:"] = "Переместить в папку:";
$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
$a->strings["Display Settings"] = "Параметры дисплея";
$a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Mobile Theme:"] = "Мобильная тема:";
$a->strings["Suppress warning of insecure networks"] = "";
$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
$a->strings["Number of items to display per page:"] = "Количество элементов, отображаемых на одной странице:";
$a->strings["Maximum of 100 items"] = "Максимум 100 элементов";
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:";
$a->strings["Don't show emoticons"] = "не показывать emoticons";
$a->strings["Calendar"] = "";
$a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "Бесконечная прокрутка";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
$a->strings["Content Settings"] = "";
$a->strings["Theme settings"] = "Настройки темы";
$a->strings["Account Types"] = "";
$a->strings["Personal Page Subtypes"] = "";
$a->strings["Community Forum Subtypes"] = "";
$a->strings["Personal Page"] = "";
$a->strings["This account is a regular personal profile"] = "";
$a->strings["Organisation Page"] = "";
$a->strings["This account is a profile for an organisation"] = "";
$a->strings["News Page"] = "";
$a->strings["This account is a news account/reflector"] = "";
$a->strings["Community Forum"] = "";
$a->strings["This account is a community forum where people can discuss with each other"] = "";
$a->strings["Normal Account Page"] = "Стандартная страница аккаунта";
$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем";
$a->strings["Soapbox Page"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками";
$a->strings["Public Forum"] = "";
$a->strings["Automatically approve all contact requests"] = "";
$a->strings["Automatic Friend Page"] = "\"Автоматический друг\" страница";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей";
$a->strings["Private Forum [Experimental]"] = "Личный форум [экспериментально]";
$a->strings["Private forum - approved members only"] = "Приватный форум - разрешено только участникам";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
$a->strings["Allow friends to post to your profile page?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?";
$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?";
$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["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "";
$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия";
$a->strings["Expire posts:"] = "Срок хранения сообщений:";
$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:";
$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:";
$a->strings["Expire photos:"] = "Срок хранения фотографий:";
$a->strings["Only expire posts by others:"] = "Только устаревшие посты других:";
$a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Password Settings"] = "Смена пароля";
$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется";
$a->strings["Current Password:"] = "Текущий пароль:";
$a->strings["Your current password to confirm the changes"] = "Ваш текущий пароль, для подтверждения изменений";
$a->strings["Password:"] = "Пароль:";
$a->strings["Basic Settings"] = "Основные параметры";
$a->strings["Email Address:"] = "Адрес электронной почты:";
$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["Use Browser Location:"] = "Использовать определение местоположения браузером:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:";
$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)";
$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию";
$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
$a->strings["Default Private Post"] = "Личное сообщение по умолчанию";
$a->strings["Default Public Post"] = "Публичное сообщение по умолчанию";
$a->strings["Default Permissions for New Posts"] = "Права для новых записей по умолчанию";
$a->strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей в день:";
$a->strings["Notification Settings"] = "Настройка уведомлений";
$a->strings["By default post a status message when:"] = "Отправить состояние о статусе по умолчанию, если:";
$a->strings["accepting a friend request"] = "принятие запроса на добавление в друзья";
$a->strings["joining a forum/community"] = "вступление в сообщество/форум";
$a->strings["making an <em>interesting</em> profile change"] = "сделать изменения в <em>настройках интересов</em> профиля";
$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:";
$a->strings["You receive an introduction"] = "Вы получили запрос";
$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены";
$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля";
$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий";
$a->strings["You receive a private message"] = "Вы получаете личное сообщение";
$a->strings["You receive a friend suggestion"] = "Вы полулили предложение о добавлении в друзья";
$a->strings["You are tagged 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["Send text only notification emails, without the html part"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "Расширенные настройки учётной записи";
$a->strings["Change the behaviour of this account for special situations"] = "Измените поведение этого аккаунта в специальных ситуациях";
$a->strings["Relocate"] = "Перемещение";
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку.";
$a->strings["Resend relocate message to contacts"] = "Отправить перемещённые сообщения контактам";
$a->strings["Do you really want to delete this video?"] = "";
$a->strings["Delete Video"] = "Удалить видео";
$a->strings["No videos selected"] = "Видео не выбрано";
$a->strings["Recent Videos"] = "Последние видео";
$a->strings["Upload New Videos"] = "Загрузить новые видео";
$a->strings["Invalid request."] = "Неверный запрос.";
$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["File exceeds size limit of %s"] = "";
$a->strings["File upload failed."] = "Загрузка файла не удалась.";
$a->strings["toggle mobile"] = "мобильная версия";
$a->strings["Theme settings updated."] = "Настройки темы обновлены.";
$a->strings["Site"] = "Сайт";
$a->strings["Users"] = "Пользователи";
$a->strings["Plugins"] = "Плагины";
$a->strings["Themes"] = "Темы";
$a->strings["Additional features"] = "Дополнительные возможности";
$a->strings["DB updates"] = "Обновление БД";
$a->strings["Inspect Queue"] = "";
$a->strings["Federation Statistics"] = "";
@ -1518,6 +807,7 @@ $a->strings["Active plugins"] = "Активные плагины";
$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["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
$a->strings["No community page"] = "";
$a->strings["Public postings from users of this site"] = "";
$a->strings["Global community page"] = "";
@ -1537,6 +827,8 @@ $a->strings["Open"] = "Открыто";
$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться";
$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)";
$a->strings["Save Settings"] = "Сохранить настройки";
$a->strings["Registration"] = "Регистрация";
$a->strings["File upload"] = "Загрузка файлов";
$a->strings["Policies"] = "Политики";
$a->strings["Auto Discovered Contact Directory"] = "";
@ -1563,8 +855,6 @@ $a->strings["SSL link policy"] = "Политика SSL";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
$a->strings["Force SSL"] = "SSL принудительно";
$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
$a->strings["Old style 'Share'"] = "Старый стиль 'Share'";
$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Отключение BBCode элемента 'share' для повторяющихся элементов.";
$a->strings["Hide help entry from navigation menu"] = "Скрыть пункт \"помощь\" в меню навигации";
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую.";
$a->strings["Single user instance"] = "Однопользовательский режим";
@ -1634,10 +924,6 @@ $a->strings["Proxy user"] = "Прокси пользователь";
$a->strings["Proxy URL"] = "Прокси URL";
$a->strings["Network timeout"] = "Тайм-аут сети";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется).";
$a->strings["Delivery interval"] = "Интервал поставки";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Установите задержку выполнения фоновых процессов доставки до указанного количества секунд, чтобы уменьшить нагрузку на систему. Рекомендация: 4-5 для обычного shared хостинга, 2-3 для виртуальных частных серверов. 0-1 для мощных выделенных серверов.";
$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["Maximum Load Average"] = "Средняя максимальная нагрузка";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50.";
$a->strings["Maximum Load Average (Frontend)"] = "";
@ -1660,8 +946,6 @@ $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["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 information in meta information about a posting."] = "";
$a->strings["Suppress Tags"] = "";
$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
$a->strings["Path to item cache"] = "Путь к элементам кэша";
@ -1670,43 +954,37 @@ $a->strings["Cache duration in seconds"] = "Время жизни кэша в с
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
$a->strings["Maximum numbers of comments per post"] = "";
$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
$a->strings["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["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
$a->strings["Base path to installation"] = "Путь для установки";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";
$a->strings["On large systems the text search can slow down the system extremely."] = "";
$a->strings["Disable picture proxy"] = "Отключить проксирование картинок";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью.";
$a->strings["Only search in tags"] = "Искать только в тегах";
$a->strings["On large systems the text search can slow down the system extremely."] = "На больших системах текстовый поиск может сильно замедлить систему.";
$a->strings["New base url"] = "Новый базовый url";
$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей.";
$a->strings["RINO Encryption"] = "RINO шифрование";
$a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами.";
$a->strings["Embedly API key"] = "";
$a->strings["Embedly API key"] = "Ключ API для Embedly";
$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["Enable 'worker' background processing"] = "";
$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "";
$a->strings["Maximum number of parallel workers"] = "";
$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
$a->strings["Don't use 'proc_open' with the worker"] = "";
$a->strings["Maximum number of parallel workers"] = "Максимальное число параллельно работающих worker'ов";
$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4.";
$a->strings["Don't use 'proc_open' with the worker"] = "Не использовать 'proc_open' с worker'ом";
$a->strings["Enable this if your system doesn't allow the use of 'proc_open'. This can happen on shared hosters. If this is enabled you should increase the frequency of poller calls in your crontab."] = "";
$a->strings["Enable fastlane"] = "";
$a->strings["Enable fastlane"] = "Включить fastlane";
$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
$a->strings["Enable frontend worker"] = "";
$a->strings["Enable frontend worker"] = "Включить frontend worker";
$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
$a->strings["Update has been marked successful"] = "Обновление было успешно отмечено";
$a->strings["Database structure update %s was successfully applied."] = "";
$a->strings["Executing of database structure update %s failed with error: %s"] = "";
$a->strings["Executing %s failed with error: %s"] = "";
$a->strings["Database structure update %s was successfully applied."] = "Обновление базы данных %s успешно применено.";
$a->strings["Executing of database structure update %s failed with error: %s"] = "Выполнение обновления базы данных %s завершено с ошибкой: %s";
$a->strings["Executing %s failed with error: %s"] = "Выполнение %s завершено с ошибкой: %s";
$a->strings["Update %s was successfully applied."] = "Обновление %s успешно применено.";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет.";
$a->strings["There was no additional update function %s that needed to be called."] = "";
$a->strings["No failed updates."] = "Неудавшихся обновлений нет.";
$a->strings["Check database structure"] = "";
$a->strings["Check database structure"] = "Проверить структуру базы данных";
$a->strings["Failed Updates"] = "Неудавшиеся обновления";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Эта цифра не включает обновления до 1139, которое не возвращает статус.";
$a->strings["Mark success (if update was manually applied)"] = "Отмечено успешно (если обновление было применено вручную)";
@ -1728,16 +1006,19 @@ $a->strings["%s user deleted"] = array(
$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
$a->strings["Name"] = "Имя";
$a->strings["Register date"] = "Дата регистрации";
$a->strings["Last login"] = "Последний вход";
$a->strings["Last item"] = "Последний пункт";
$a->strings["Account"] = "Аккаунт";
$a->strings["Add User"] = "Добавить пользователя";
$a->strings["select all"] = "выбрать все";
$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления";
$a->strings["Request date"] = "Запрос даты";
$a->strings["No registrations."] = "Нет регистраций.";
$a->strings["Note from the user"] = "";
$a->strings["Note from the user"] = "Сообщение от пользователя";
$a->strings["Approve"] = "Одобрить";
$a->strings["Deny"] = "Отклонить";
$a->strings["Block"] = "Заблокировать";
$a->strings["Unblock"] = "Разблокировать";
@ -1758,17 +1039,17 @@ $a->strings["Enable"] = "Включить";
$a->strings["Toggle"] = "Переключить";
$a->strings["Author: "] = "Автор:";
$a->strings["Maintainer: "] = "Программа обслуживания: ";
$a->strings["Reload active plugins"] = "";
$a->strings["Reload active plugins"] = "Перезагрузить активные плагины";
$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
$a->strings["No themes found."] = "Темы не найдены.";
$a->strings["Screenshot"] = "Скриншот";
$a->strings["Reload active themes"] = "";
$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
$a->strings["Reload active themes"] = "Перезагрузить активные темы";
$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Не найдено тем. Они должны быть расположены в %1\$s";
$a->strings["[Experimental]"] = "[экспериментально]";
$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
$a->strings["PHP log currently enabled."] = "";
$a->strings["PHP log currently disabled."] = "";
$a->strings["PHP log currently enabled."] = "Лог PHP включен.";
$a->strings["PHP log currently disabled."] = "Лог PHP выключен.";
$a->strings["Clear"] = "Очистить";
$a->strings["Enable Debugging"] = "Включить отладку";
$a->strings["Log file"] = "Лог-файл";
@ -1776,8 +1057,47 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve
$a->strings["Log level"] = "Уровень лога";
$a->strings["PHP logging"] = "PHP логирование";
$a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "";
$a->strings["Lock feature %s"] = "";
$a->strings["Manage Additional Features"] = "";
$a->strings["Off"] = "Выкл.";
$a->strings["On"] = "Вкл.";
$a->strings["Lock feature %s"] = "Заблокировать %s";
$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями";
$a->strings["No friends to display."] = "Нет друзей.";
$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
$a->strings["No"] = "Нет";
$a->strings["Applications"] = "Приложения";
$a->strings["No installed applications."] = "Нет установленных приложений.";
$a->strings["Item not available."] = "Пункт не доступен.";
$a->strings["Item was not found."] = "Пункт не был найден.";
$a->strings["Source (bbcode) text:"] = "Код (bbcode):";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:";
$a->strings["Source input: "] = "Ввести код:";
$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["The post was created"] = "Пост был создан";
$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
$a->strings["View"] = "Смотреть";
$a->strings["Previous"] = "Назад";
$a->strings["Next"] = "Далее";
$a->strings["list"] = "список";
$a->strings["User not found"] = "Пользователь не найден";
$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается";
$a->strings["No exportable data found"] = "Нет данных для экспорта";
$a->strings["calendar"] = "календарь";
$a->strings["No contacts in common."] = "Нет общих контактов.";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["Public access denied."] = "Свободный доступ закрыт.";
$a->strings["Not available."] = "Недоступно.";
$a->strings["No results."] = "Нет результатов.";
$a->strings["%d contact edited."] = array(
0 => "",
1 => "",
@ -1794,7 +1114,7 @@ $a->strings["Contact has been ignored"] = "Контакт проигнориро
$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование";
$a->strings["Contact has been archived"] = "Контакт заархивирован";
$a->strings["Contact has been unarchived"] = "Контакт разархивирован";
$a->strings["Drop contact"] = "";
$a->strings["Drop contact"] = "Удалить контакт";
$a->strings["Do you really want to delete this contact?"] = "Вы действительно хотите удалить этот контакт?";
$a->strings["Contact has been removed."] = "Контакт удален.";
$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s";
@ -1806,14 +1126,16 @@ $a->strings["(Update was not successful)"] = "(Обновление не уда
$a->strings["Suggest friends"] = "Предложить друзей";
$a->strings["Network type: %s"] = "Сеть: %s";
$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!";
$a->strings["Fetch further information for feeds"] = "";
$a->strings["Fetch information"] = "";
$a->strings["Fetch information and keywords"] = "";
$a->strings["Contact"] = "";
$a->strings["Fetch further information for feeds"] = "Получить подробную информацию о фидах";
$a->strings["Fetch information"] = "Получить информацию";
$a->strings["Fetch information and keywords"] = "Получить информацию и ключевые слова";
$a->strings["Contact"] = "Контакт";
$a->strings["Submit"] = "Добавить";
$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["Contact Information / Notes"] = "Информация о контакте / Заметки";
$a->strings["Edit contact notes"] = "Редактировать заметки контакта";
$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]";
$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт";
$a->strings["Ignore contact"] = "Игнорировать контакт";
$a->strings["Repair URL settings"] = "Восстановить настройки URL";
@ -1822,18 +1144,22 @@ $a->strings["Last update:"] = "Последнее обновление: ";
$a->strings["Update public posts"] = "Обновить публичные сообщения";
$a->strings["Update now"] = "Обновить сейчас";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Currently blocked"] = "В настоящее время заблокирован";
$a->strings["Currently ignored"] = "В настоящее время игнорируется";
$a->strings["Currently archived"] = "В данный момент архивирован";
$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["Notification for new posts"] = "";
$a->strings["Send a notification of every new post of this contact"] = "";
$a->strings["Blacklisted keywords"] = "";
$a->strings["Notification for new posts"] = "Уведомление о новых постах";
$a->strings["Send a notification of every new post of this contact"] = "Отправлять уведомление о каждом новом посте контакта";
$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["Actions"] = "";
$a->strings["Contact Settings"] = "";
$a->strings["Profile URL"] = "URL профиля";
$a->strings["Actions"] = "Действия";
$a->strings["Contact Settings"] = "Настройки контакта";
$a->strings["Suggestions"] = "Предложения";
$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого";
$a->strings["All Contacts"] = "Все контакты";
$a->strings["Show all contacts"] = "Показать все контакты";
$a->strings["Unblocked"] = "Не блокирован";
$a->strings["Only show unblocked contacts"] = "Показать только не блокированные контакты";
@ -1846,19 +1172,98 @@ $a->strings["Only show archived contacts"] = "Показывать только
$a->strings["Hidden"] = "Скрытые";
$a->strings["Only show hidden contacts"] = "Показывать только скрытые контакты";
$a->strings["Search your contacts"] = "Поиск ваших контактов";
$a->strings["Results for: %s"] = "Результаты для: %s";
$a->strings["Update"] = "Обновление";
$a->strings["Archive"] = "Архивировать";
$a->strings["Unarchive"] = "Разархивировать";
$a->strings["Batch Actions"] = "";
$a->strings["Batch Actions"] = "Пакетные действия";
$a->strings["View all contacts"] = "Показать все контакты";
$a->strings["View all common friends"] = "";
$a->strings["View all common friends"] = "Показать все общие поля";
$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)";
$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования";
$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)";
$a->strings["Delete contact"] = "Удалить контакт";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Group: %s"] = "Группа: %s";
$a->strings["This entry was edited"] = "Эта запись была отредактирована";
$a->strings["%d comment"] = array(
0 => "%d комментарий",
1 => "%d комментариев",
2 => "%d комментариев",
3 => "%d комментариев",
);
$a->strings["Private Message"] = "Личное сообщение";
$a->strings["I like this (toggle)"] = "Нравится";
$a->strings["like"] = "нравится";
$a->strings["I don't like this (toggle)"] = "Не нравится";
$a->strings["dislike"] = "не нравится";
$a->strings["Share this"] = "Поделитесь этим";
$a->strings["share"] = "поделиться";
$a->strings["This is you"] = "Это вы";
$a->strings["Comment"] = "Оставить комментарий";
$a->strings["Bold"] = "Жирный";
$a->strings["Italic"] = "Kурсивный";
$a->strings["Underline"] = "Подчеркнутый";
$a->strings["Quote"] = "Цитата";
$a->strings["Code"] = "Код";
$a->strings["Image"] = "Изображение / Фото";
$a->strings["Link"] = "Ссылка";
$a->strings["Video"] = "Видео";
$a->strings["Edit"] = "Редактировать";
$a->strings["add star"] = "пометить";
$a->strings["remove star"] = "убрать метку";
$a->strings["toggle star status"] = "переключить статус";
$a->strings["starred"] = "помечено";
$a->strings["add tag"] = "добавить ключевое слово (тег)";
$a->strings["ignore thread"] = "игнорировать тему";
$a->strings["unignore thread"] = "не игнорировать тему";
$a->strings["toggle ignore status"] = "изменить статус игнорирования";
$a->strings["ignored"] = "";
$a->strings["save to folder"] = "сохранить в папке";
$a->strings["I will attend"] = "";
$a->strings["I will not attend"] = "";
$a->strings["I might attend"] = "";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
$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!"] = "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!";
$a->strings["Contact settings applied."] = "Установки контакта приняты.";
$a->strings["Contact update failed."] = "Обновление контакта неудачное.";
$a->strings["Contact not found."] = "Контакт не найден.";
$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["No mirroring"] = "Не зеркалировать";
$a->strings["Mirror as forwarded posting"] = "Зеркалировать как переадресованные сообщения";
$a->strings["Mirror as my own posting"] = "Зеркалировать как мои сообщения";
$a->strings["Return to contact editor"] = "Возврат к редактору контакта";
$a->strings["Refetch contact data"] = "Обновить данные контакта";
$a->strings["Remote Self"] = "Remote Self";
$a->strings["Mirror postings from this contact"] = "Зекралировать сообщения от этого контакта";
$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Пометить этот контакт как remote_self, что заставит Friendica постить сообщения от этого контакта.";
$a->strings["Account Nickname"] = "Ник аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - перезаписывает Имя/Ник";
$a->strings["Account URL"] = "URL аккаунта";
$a->strings["Friend Request URL"] = "URL запроса в друзья";
$a->strings["Friend Confirm URL"] = "URL подтверждения друга";
$a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления";
$a->strings["Poll/Feed URL"] = "URL опроса/ленты";
$a->strings["New photo from this URL"] = "Новое фото из этой URL";
$a->strings["No potential page delegates located."] = "Не найдено возможных доверенных лиц.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете.";
$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы";
$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы";
$a->strings["Potential Delegates"] = "Возможные доверенные лица";
$a->strings["Remove"] = "Удалить";
$a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей.";
$a->strings["Profile not found."] = "Профиль не найден.";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен.";
$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят.";
$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
@ -1876,6 +1281,7 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho
$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе.";
$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s";
$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
@ -1899,7 +1305,7 @@ $a->strings["You have already introduced yourself here."] = "Вы уже вве
$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
$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["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе.";
$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["Confirm"] = "Подтвердить";
@ -1907,7 +1313,7 @@ $a->strings["Hide this contact"] = "Скрыть этот контакт";
$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
$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=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</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 href=\"%s/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>.";
$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["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
@ -1917,18 +1323,69 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social We
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите %s в строке поиска Diaspora";
$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
$a->strings["Submit Request"] = "Отправить запрос";
$a->strings["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["Global Directory"] = "Глобальный каталог";
$a->strings["Find on this site"] = "Найти на этом сайте";
$a->strings["Results for:"] = "Результаты для:";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
$a->strings["People Search - %s"] = "Поиск по людям - %s";
$a->strings["Forum Search - %s"] = "Поиск по форумам - %s";
$a->strings["No matches"] = "Нет соответствий";
$a->strings["Item has been removed."] = "Пункт был удален.";
$a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["Event can not end before it has started."] = "Эвент не может закончится до старта.";
$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения.";
$a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Event details"] = "Сведения о мероприятии";
$a->strings["Starting date and Title are required."] = "Необходима дата старта и заголовок.";
$a->strings["Event Starts:"] = "Начало мероприятия:";
$a->strings["Required"] = "Требуется";
$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
$a->strings["Event Finishes:"] = "Окончание мероприятия:";
$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
$a->strings["Description:"] = "Описание:";
$a->strings["Title:"] = "Титул:";
$a->strings["Share this event"] = "Поделитесь этим мероприятием";
$a->strings["Files"] = "Файлы";
$a->strings["- select -"] = "- выбрать -";
$a->strings["You already added this contact."] = "Вы уже добавили этот контакт.";
$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Поддержка Diaspora не включена. Контакт не может быть добавлен.";
$a->strings["OStatus support is disabled. Contact can't be added."] = "Поддержка OStatus выключена. Контакт не может быть добавлен.";
$a->strings["The network type couldn't be detected. Contact can't be added."] = "Тип сети не может быть определен. Контакт не может быть добавлен.";
$a->strings["Contact added"] = "Контакт добавлен";
$a->strings["This is Friendica, version"] = "Это Friendica, версия";
$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["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
$a->strings["the bugtracker at github"] = "багтрекер на github";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
$a->strings["Suggest Friends"] = "Предложить друзей";
$a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
$a->strings["Group created."] = "Группа создана.";
$a->strings["Could not create group."] = "Не удалось создать группу.";
$a->strings["Group not found."] = "Группа не найдена.";
$a->strings["Group name changed."] = "Название группы изменено.";
$a->strings["Save Group"] = "Сохранить группу";
$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
$a->strings["Group removed."] = "Группа удалена.";
$a->strings["Unable to remove group."] = "Не удается удалить группу.";
$a->strings["Group Editor"] = "Редактор групп";
$a->strings["Members"] = "Участники";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["No profile"] = "Нет профиля";
$a->strings["Help:"] = "Помощь:";
$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ";
$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
$a->strings["Could not create table."] = "Не удалось создать таблицу.";
$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
$a->strings["Database already in use."] = "";
$a->strings["Database already in use."] = "База данных уже используется.";
$a->strings["System check"] = "Проверить систему";
$a->strings["Check again"] = "Проверить еще раз";
$a->strings["Database connection"] = "Подключение к базе данных";
@ -1938,19 +1395,20 @@ $a->strings["The database you specify below should already exist. If it does not
$a->strings["Database Server Name"] = "Имя сервера базы данных";
$a->strings["Database Login Name"] = "Логин базы данных";
$a->strings["Database Login Password"] = "Пароль базы данных";
$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым";
$a->strings["Database Name"] = "Имя базы данных";
$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора.";
$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
$a->strings["Site settings"] = "Настройки сайта";
$a->strings["System Language:"] = "";
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
$a->strings["System Language:"] = "Язык системы:";
$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем.";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</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>"] = "У вас не установлена CLI версия PHP, вы не сможете выполнять cron-задания на сервере. Смотрите раздел <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["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку.";
$a->strings["Command line PHP"] = "Command line PHP";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)";
$a->strings["Found PHP version: "] = "Найденная PHP версия: ";
$a->strings["PHP cli binary"] = "PHP cli binary";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP.";
@ -1964,9 +1422,9 @@ $a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
$a->strings["mysqli PHP module"] = "mysqli PHP модуль";
$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
$a->strings["mcrypt PHP module"] = "";
$a->strings["XML PHP module"] = "";
$a->strings["iconv module"] = "";
$a->strings["mcrypt PHP module"] = "mcrypt PHP модуль";
$a->strings["XML PHP module"] = "XML PHP модуль";
$a->strings["iconv module"] = "Модуль iconv";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
@ -1974,12 +1432,12 @@ $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: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "";
$a->strings["Error: iconv PHP module required but not installed."] = "";
$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "";
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "";
$a->strings["mcrypt_create_iv() function"] = "";
$a->strings["Error, XML PHP module required but not installed."] = "";
$a->strings["Error: mcrypt PHP module required but not installed."] = "Ошибка: необходим PHP модуль mcrypt, но он не установлен.";
$a->strings["Error: iconv PHP module required but not installed."] = "Ошибка: необходим PHP модуль iconv, но он не установлен.";
$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Если вы используете php_cli, то убедитесь, что модуль mcrypt подключен в файле конфигурации";
$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Функция mcrypt_create_iv() не объявлена. Она необходима для шифрования RINO2.";
$a->strings["mcrypt_create_iv() function"] = "Функция mcrypt_create_iv()";
$a->strings["Error, XML PHP module required but not installed."] = "Ошибка, необходим PHP модуль XML, но он не установлен";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica.";
@ -1992,12 +1450,35 @@ $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["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера..";
$a->strings["Url rewrite is working"] = "Url rewrite работает";
$a->strings["ImageMagick PHP extension is not installed"] = "";
$a->strings["ImageMagick PHP extension is installed"] = "";
$a->strings["ImageMagick supports GIF"] = "";
$a->strings["ImageMagick PHP extension is not installed"] = "Модуль PHP ImageMagick не установлен";
$a->strings["ImageMagick PHP extension is installed"] = "Модуль PHP ImageMagick установлен";
$a->strings["ImageMagick supports GIF"] = "ImageMagick поддерживает GIF";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
$a->strings["<h1>What next</h1>"] = "<h1>Что далее</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
$a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений.";
$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
$a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта.";
$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась.";
$a->strings["%d message sent."] = array(
0 => "%d сообщение отправлено.",
1 => "%d сообщений отправлено.",
2 => "%d сообщений отправлено.",
3 => "%d сообщений отправлено.",
);
$a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников.";
$a->strings["Send invitations"] = "Отправить приглашения";
$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com";
$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
@ -2005,84 +1486,590 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения.";
$a->strings["%s posted an update."] = "%s отправил/а/ обновление.";
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
0 => "",
1 => "",
2 => "",
3 => "",
$a->strings["Time Conversion"] = "История общения";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах.";
$a->strings["UTC time: %s"] = "UTC время: %s";
$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s";
$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s";
$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:";
$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна.";
$a->strings["Visible to:"] = "Кто может видеть:";
$a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
$a->strings["Your new password is"] = "Ваш новый пароль";
$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем";
$a->strings["click here to login"] = "нажмите здесь для входа";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа.";
$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s";
$a->strings["Forgot your Password?"] = "Забыли пароль?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Reset"] = "Сброс";
$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание";
$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: ";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
$a->strings["is interested in:"] = "интересуется:";
$a->strings["Profile Match"] = "Похожие профили";
$a->strings["No recipient selected."] = "Не выбран получатель.";
$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
$a->strings["Message collection failure."] = "Неудача коллекции сообщения.";
$a->strings["Message sent."] = "Сообщение отправлено.";
$a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?";
$a->strings["Message deleted."] = "Сообщение удалено.";
$a->strings["Conversation removed."] = "Беседа удалена.";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["No messages."] = "Нет сообщений.";
$a->strings["Message not available."] = "Сообщение не доступно.";
$a->strings["Delete message"] = "Удалить сообщение";
$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["You and %s"] = "Вы и %s";
$a->strings["%s and You"] = "%s и Вы";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d сообщение",
1 => "%d сообщений",
2 => "%d сообщений",
3 => "%d сообщений",
);
$a->strings["Messages in this group won't be send to these receivers."] = "";
$a->strings["Mood"] = "Настроение";
$a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям";
$a->strings["Remove term"] = "Удалить элемент";
$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
0 => "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения.",
1 => "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения.",
2 => "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения.",
3 => "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения.",
);
$a->strings["Messages in this group won't be send to these receivers."] = "Сообщения в этой группе не будут отправлены следующим получателям.";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
$a->strings["Invalid contact."] = "Недопустимый контакт.";
$a->strings["Commented Order"] = "Последние комментарии";
$a->strings["Sort by Comment Date"] = "Сортировать по дате комментария";
$a->strings["Posted Order"] = "Лента записей";
$a->strings["Sort by Post Date"] = "Сортировать по дате отправки";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["Posts that mention or involve you"] = "Посты которые упоминают вас или в которых вы участвуете";
$a->strings["New"] = "Новый";
$a->strings["Activity Stream - by date"] = "Лента активности - по дате";
$a->strings["Shared Links"] = "Ссылки, которыми поделились";
$a->strings["Interesting Links"] = "Интересные ссылки";
$a->strings["Starred"] = "Помеченный";
$a->strings["Favourite Posts"] = "Избранные посты";
$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
$a->strings["New Member Checklist"] = "Новый контрольный список участников";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет.";
$a->strings["Getting Started"] = "Начало работы";
$a->strings["Friendica Walk-Through"] = "Friendica тур";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "На вашей странице <em>Быстрый старт</em> - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним.";
$a->strings["Go to Your Settings"] = "Перейти к вашим настройкам";
$a->strings["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 will be useful in making friends on the free social web."] = "На вашей странице <em>Настройки</em> - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти.";
$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают.";
$a->strings["Edit Your Profile"] = "Редактировать профиль";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей.";
$a->strings["Profile Keywords"] = "Ключевые слова профиля";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
$a->strings["Connecting"] = "Подключение";
$a->strings["Importing Emails"] = "Импортирование Email-ов";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты";
$a->strings["Go to Your Contacts Page"] = "Перейти на страницу ваших контактов";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог <em>Добавить новый контакт</em>.";
$a->strings["Go to Your Site's Directory"] = "Перейти в каталог вашего сайта";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется.";
$a->strings["Finding New People"] = "Поиск людей";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов.";
$a->strings["Group Your Contacts"] = "Группа \"ваши контакты\"";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.";
$a->strings["Why Aren't My Posts Public?"] = "Почему мои посты не публичные?";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше.";
$a->strings["Getting Help"] = "Получить помощь";
$a->strings["Go to the Help Section"] = "Перейти в раздел справки";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы";
$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
$a->strings["Discard"] = "Отказаться";
$a->strings["Network Notifications"] = "Уведомления сети";
$a->strings["System Notifications"] = "Уведомления системы";
$a->strings["Personal Notifications"] = "Личные уведомления";
$a->strings["Home Notifications"] = "Уведомления";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
$a->strings["Notification type: "] = "Тип уведомления: ";
$a->strings["suggested by %s"] = "предложено юзером %s";
$a->strings["Post a new friend activity"] = "Настроение";
$a->strings["if applicable"] = "если требуется";
$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
$a->strings["yes"] = "да";
$a->strings["no"] = "нет";
$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?";
$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него.";
$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него.";
$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него.";
$a->strings["Friend"] = "Друг";
$a->strings["Sharer"] = "Участник";
$a->strings["Subscriber"] = "Подписант";
$a->strings["No introductions."] = "Запросов нет.";
$a->strings["Show unread"] = "Показать непрочитанные";
$a->strings["Show all"] = "Показать все";
$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s.";
$a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
$a->strings["Post successful."] = "Успешно добавлено.";
$a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
$a->strings["Subscribing to OStatus contacts"] = "Подписка на OStatus-контакты";
$a->strings["No contact provided."] = "Не указан контакт.";
$a->strings["Couldn't fetch information for contact."] = "Невозможно получить информацию о контакте.";
$a->strings["Couldn't fetch friends for contact."] = "Невозможно получить друзей для контакта.";
$a->strings["Done"] = "Готово";
$a->strings["success"] = "удачно";
$a->strings["failed"] = "неудача";
$a->strings["Keep this window open until done."] = "Держать окно открытым до завершения.";
$a->strings["Not Extended"] = "Не расширенный";
$a->strings["Recent Photos"] = "Последние фото";
$a->strings["Upload New Photos"] = "Загрузить новые фото";
$a->strings["everybody"] = "каждый";
$a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
$a->strings["Album not found."] = "Альбом не найден.";
$a->strings["Delete Album"] = "Удалить альбом";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?";
$a->strings["Delete Photo"] = "Удалить фото";
$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s";
$a->strings["a photo"] = "фото";
$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s";
$a->strings["Image file is empty."] = "Файл изображения пуст.";
$a->strings["Unable to process image."] = "Невозможно обработать фото.";
$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
$a->strings["No photos selected"] = "Не выбрано фото.";
$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий.";
$a->strings["Upload Photos"] = "Загрузить фото";
$a->strings["New album name: "] = "Название нового альбома: ";
$a->strings["or existing album name: "] = "или название существующего альбома: ";
$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки";
$a->strings["Show to Groups"] = "Показать в группах";
$a->strings["Show to Contacts"] = "Показывать контактам";
$a->strings["Private Photo"] = "Личное фото";
$a->strings["Public Photo"] = "Публичное фото";
$a->strings["Edit Album"] = "Редактировать альбом";
$a->strings["Show Newest First"] = "Показать новые первыми";
$a->strings["Show Oldest First"] = "Показать старые первыми";
$a->strings["View Photo"] = "Просмотр фото";
$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен.";
$a->strings["Photo not available"] = "Фото недоступно";
$a->strings["View photo"] = "Просмотр фото";
$a->strings["Edit photo"] = "Редактировать фото";
$a->strings["Use as profile photo"] = "Использовать как фото профиля";
$a->strings["View Full Size"] = "Просмотреть полный размер";
$a->strings["Tags: "] = "Ключевые слова: ";
$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
$a->strings["New album name"] = "Название нового альбома";
$a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить ключевое слово (тег)";
$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["Public photo"] = "Публичное фото";
$a->strings["Map"] = "Карта";
$a->strings["View Album"] = "Просмотреть альбом";
$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
$a->strings["Poke/Prod"] = "Потыкать/Потолкать";
$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то";
$a->strings["Recipient"] = "Получатель";
$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя";
$a->strings["Make this post private"] = "Сделать эту запись личной";
$a->strings["Tips for New Members"] = "Советы для новых участников";
$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
$a->strings["Unable to process image"] = "Не удается обработать изображение";
$a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Select a profile:"] = "Выбрать этот профиль:";
$a->strings["Upload"] = "Загрузить";
$a->strings["or"] = "или";
$a->strings["skip this step"] = "пропустить этот шаг";
$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
$a->strings["Crop Image"] = "Обрезать изображение";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
$a->strings["Done Editing"] = "Редактирование выполнено";
$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
$a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан.";
$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
$a->strings["Profile Name is required."] = "Необходимо имя профиля.";
$a->strings["Marital Status"] = "Семейное положение";
$a->strings["Romantic Partner"] = "Любимый человек";
$a->strings["Work/Employment"] = "Работа/Занятость";
$a->strings["Religion"] = "Религия";
$a->strings["Political Views"] = "Политические взгляды";
$a->strings["Gender"] = "Пол";
$a->strings["Sexual Preference"] = "Сексуальные предпочтения";
$a->strings["XMPP"] = "XMPP";
$a->strings["Homepage"] = "Домашняя страница";
$a->strings["Interests"] = "Хобби / Интересы";
$a->strings["Address"] = "Адрес";
$a->strings["Location"] = "Местонахождение";
$a->strings["Profile updated."] = "Профиль обновлен.";
$a->strings[" and "] = "и";
$a->strings["public profile"] = "публичный профиль";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s изменились с %2\$s на &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " - Посетить профиль %1\$s [%2\$s]";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s обновил %2\$s, изменив %3\$s.";
$a->strings["Hide contacts and friends:"] = "Скрыть контакты и друзей:";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
$a->strings["Show more profile fields:"] = "Показать больше полей в профиле:";
$a->strings["Profile Actions"] = "Действия профиля";
$a->strings["Edit Profile Details"] = "Редактировать детали профиля";
$a->strings["Change Profile Photo"] = "Изменить фото профиля";
$a->strings["View this profile"] = "Просмотреть этот профиль";
$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки";
$a->strings["Clone this profile"] = "Клонировать этот профиль";
$a->strings["Delete this profile"] = "Удалить этот профиль";
$a->strings["Basic information"] = "Основная информация";
$a->strings["Profile picture"] = "Картинка профиля";
$a->strings["Preferences"] = "Настройки";
$a->strings["Status information"] = "Статус";
$a->strings["Additional information"] = "Дополнительная информация";
$a->strings["Relation"] = "Отношения";
$a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Семейное положение:";
$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение";
$a->strings["Profile Name:"] = "Имя профиля:";
$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["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Заголовок / Описание:";
$a->strings["Street Address:"] = "Адрес:";
$a->strings["Locality/City:"] = "Город / Населенный пункт:";
$a->strings["Region/State:"] = "Район / Область:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
$a->strings["Country:"] = "Страна:";
$a->strings["Who: (if applicable)"] = "Кто: (если требуется)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com";
$a->strings["Since [date]:"] = "С какого времени [дата]:";
$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
$a->strings["XMPP (Jabber) address:"] = "Адрес XMPP (Jabber):";
$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить.";
$a->strings["Homepage URL:"] = "Адрес домашней странички:";
$a->strings["Religious Views:"] = "Религиозные взгляды:";
$a->strings["Public Keywords:"] = "Общественные ключевые слова:";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)";
$a->strings["Private Keywords:"] = "Личные ключевые слова:";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)";
$a->strings["Musical interests"] = "Музыкальные интересы";
$a->strings["Books, literature"] = "Книги, литература";
$a->strings["Television"] = "Телевидение";
$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
$a->strings["Hobbies/Interests"] = "Хобби / Интересы";
$a->strings["Love/romance"] = "Любовь / романтика";
$a->strings["Work/employment"] = "Работа / занятость";
$a->strings["School/education"] = "Школа / образование";
$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети";
$a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Visible To"] = "Видимый для";
$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Ошибка отправки письма. Вот ваши учетные данные: <br> логин: %s<br> пароль: %s<br><br>Вы сможете изменить пароль после входа.";
$a->strings["Registration successful."] = "Регистрация успешна.";
$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
$a->strings["Note for the admin"] = "Сообщение для администратора";
$a->strings["Leave a message for the admin, why you want to join this node"] = "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\"";
$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
$a->strings["Your invitation ID: "] = "ID вашего приглашения:";
$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Ваше полное имя (например, Иван Иванов):";
$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
$a->strings["New Password:"] = "Новый пароль:";
$a->strings["Leave empty for an auto generated password."] = "Оставьте пустым для автоматической генерации пароля.";
$a->strings["Confirm:"] = "Подтвердите:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
$a->strings["Import"] = "Импорт";
$a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica";
$a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
$a->strings["Remove My Account"] = "Удалить мой аккаунт";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты.";
$a->strings["Error"] = "Ошибка";
$a->strings["Only logged in users are permitted to perform a search."] = "Только зарегистрированные пользователи могут использовать поиск.";
$a->strings["Too Many Requests"] = "Слишком много запросов";
$a->strings["Only one search per minute is permitted for not logged in users."] = "Незарегистрированные пользователи могут выполнять поиск раз в минуту.";
$a->strings["Items tagged with: %s"] = "Элементы с тегами: %s";
$a->strings["Display"] = "Внешний вид";
$a->strings["Social Networks"] = "Социальные сети";
$a->strings["Connected apps"] = "Подключенные приложения";
$a->strings["Export personal data"] = "Экспорт личных данных";
$a->strings["Remove account"] = "Удалить аккаунт";
$a->strings["Missing some important data!"] = "Не хватает важных данных!";
$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
$a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
$a->strings["Features updated"] = "Настройки обновлены";
$a->strings["Relocate message has been send to your contacts"] = "Перемещённое сообщение было отправлено списку контактов";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
$a->strings["Wrong password."] = "Неверный пароль.";
$a->strings["Password changed."] = "Пароль изменен.";
$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.";
$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя.";
$a->strings[" Name too short."] = " Имя слишком короткое.";
$a->strings["Wrong Password"] = "Неверный пароль.";
$a->strings[" Not valid email."] = " Неверный e-mail.";
$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию.";
$a->strings["Settings updated."] = "Настройки обновлены.";
$a->strings["Add application"] = "Добавить приложения";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Перенаправление";
$a->strings["Icon url"] = "URL символа";
$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение.";
$a->strings["Connected Apps"] = "Подключенные приложения";
$a->strings["Client key starts with"] = "Ключ клиента начинается с";
$a->strings["No name"] = "Нет имени";
$a->strings["Remove authorization"] = "Удалить авторизацию";
$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
$a->strings["Plugin Settings"] = "Настройки плагина";
$a->strings["Additional Features"] = "Дополнительные возможности";
$a->strings["General Social Media Settings"] = "Общие настройки социальных медиа";
$a->strings["Disable intelligent shortening"] = "Отключить умное сокращение";
$a->strings["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."] = "Обычно система пытается найти лучшую ссылку для добавления к сокращенному посту. Если эта настройка включена, то каждый сокращенный пост будет указывать на оригинальный пост в Friendica.";
$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Автоматически подписываться на любого пользователя GNU Social (OStatus), который вас упомянул или который на вас подписался";
$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Если вы получите сообщение от неизвестной учетной записи OStatus, эта настройка решает, что делать. Если включена, то новый контакт будет создан для каждого неизвестного пользователя.";
$a->strings["Default group for OStatus contacts"] = "Группа по-умолчанию для OStatus-контактов";
$a->strings["Your legacy GNU Social account"] = "Ваша старая учетная запись GNU Social";
$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Если вы введете тут вашу старую учетную запись GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.";
$a->strings["Repair OStatus subscriptions"] = "Починить подписки OStatus";
$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s";
$a->strings["enabled"] = "подключено";
$a->strings["disabled"] = "отключено";
$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:";
$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
$a->strings["IMAP port:"] = "Порт IMAP:";
$a->strings["Security:"] = "Безопасность:";
$a->strings["None"] = "Ничего";
$a->strings["Email login name:"] = "Логин эл. почты:";
$a->strings["Email password:"] = "Пароль эл. почты:";
$a->strings["Reply-to address:"] = "Адрес для ответа:";
$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
$a->strings["Action after import:"] = "Действие после импорта:";
$a->strings["Move to folder"] = "Переместить в папку";
$a->strings["Move to folder:"] = "Переместить в папку:";
$a->strings["Display Settings"] = "Параметры дисплея";
$a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Mobile Theme:"] = "Мобильная тема:";
$a->strings["Suppress warning of insecure networks"] = "Не отображать уведомление о небезопасных сетях";
$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Должна ли система подавлять уведомления о том, что текущая группа содержить пользователей из сетей, которые не могут получать непубличные сообщения или сообщения с ограниченной видимостью.";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Минимум 10 секунд. Введите -1 для отключения.";
$a->strings["Number of items to display per page:"] = "Количество элементов, отображаемых на одной странице:";
$a->strings["Maximum of 100 items"] = "Максимум 100 элементов";
$a->strings["Number of items to display per page when viewed from mobile device:"] = "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:";
$a->strings["Don't show emoticons"] = "не показывать emoticons";
$a->strings["Calendar"] = "Календарь";
$a->strings["Beginning of week:"] = "Начало недели:";
$a->strings["Don't show notices"] = "Не показывать уведомления";
$a->strings["Infinite scroll"] = "Бесконечная прокрутка";
$a->strings["Automatic updates only at the top of the network page"] = "Автоматически обновлять только при нахождении вверху страницы \"Сеть\"";
$a->strings["Bandwith Saver Mode"] = "Режим экономии трафика";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Если включено, то включенный контент не отображается при автоматическом обновлении, он будет показан только при перезагрузке страницы.";
$a->strings["General Theme Settings"] = "Общие настройки тем";
$a->strings["Custom Theme Settings"] = "Личные настройки тем";
$a->strings["Content Settings"] = "Настройки контента";
$a->strings["Theme settings"] = "Настройки темы";
$a->strings["Account Types"] = "Тип учетной записи";
$a->strings["Personal Page Subtypes"] = "Подтипы личной страницы";
$a->strings["Community Forum Subtypes"] = "Подтипы форума сообщества";
$a->strings["Personal Page"] = "Личная страница";
$a->strings["This account is a regular personal profile"] = "Этот аккаунт является обычным личным профилем";
$a->strings["Organisation Page"] = "Организационная страница";
$a->strings["This account is a profile for an organisation"] = "Этот аккаунт является профилем организации";
$a->strings["News Page"] = "Новостная страница";
$a->strings["This account is a news account/reflector"] = "Этот аккаунт является ностным/рефлектором";
$a->strings["Community Forum"] = "Форум сообщества";
$a->strings["This account is a community forum where people can discuss with each other"] = "Эта учетная запись является форумом сообщества, где люди могут обсуждать что-то друг с другом";
$a->strings["Normal Account Page"] = "Стандартная страница аккаунта";
$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем";
$a->strings["Soapbox Page"] = "Песочница";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками";
$a->strings["Public Forum"] = "Публичный форум";
$a->strings["Automatically approve all contact requests"] = "Автоматически принимать все запросы соединения.";
$a->strings["Automatic Friend Page"] = "\"Автоматический друг\" страница";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей";
$a->strings["Private Forum [Experimental]"] = "Личный форум [экспериментально]";
$a->strings["Private forum - approved members only"] = "Приватный форум - разрешено только участникам";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Если включено, то мы не сможем отправлять публичные сообщения в Diaspora или другую сеть.";
$a->strings["Allow friends to post to your profile page?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?";
$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?";
$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["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Ваш адрес: <strong>'%s'</strong> или '%s'.";
$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия";
$a->strings["Expire posts:"] = "Срок хранения сообщений:";
$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:";
$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:";
$a->strings["Expire photos:"] = "Срок хранения фотографий:";
$a->strings["Only expire posts by others:"] = "Только устаревшие посты других:";
$a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Password Settings"] = "Смена пароля";
$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется";
$a->strings["Current Password:"] = "Текущий пароль:";
$a->strings["Your current password to confirm the changes"] = "Ваш текущий пароль, для подтверждения изменений";
$a->strings["Password:"] = "Пароль:";
$a->strings["Basic Settings"] = "Основные параметры";
$a->strings["Email Address:"] = "Адрес электронной почты:";
$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"] = "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма";
$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:";
$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:";
$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)";
$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию";
$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
$a->strings["Default Private Post"] = "Личное сообщение по умолчанию";
$a->strings["Default Public Post"] = "Публичное сообщение по умолчанию";
$a->strings["Default Permissions for New Posts"] = "Права для новых записей по умолчанию";
$a->strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей в день:";
$a->strings["Notification Settings"] = "Настройка уведомлений";
$a->strings["By default post a status message when:"] = "Отправить состояние о статусе по умолчанию, если:";
$a->strings["accepting a friend request"] = "принятие запроса на добавление в друзья";
$a->strings["joining a forum/community"] = "вступление в сообщество/форум";
$a->strings["making an <em>interesting</em> profile change"] = "сделать изменения в <em>настройках интересов</em> профиля";
$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:";
$a->strings["You receive an introduction"] = "Вы получили запрос";
$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены";
$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля";
$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий";
$a->strings["You receive a private message"] = "Вы получаете личное сообщение";
$a->strings["You receive a friend suggestion"] = "Вы полулили предложение о добавлении в друзья";
$a->strings["You are tagged 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["Send text only notification emails, without the html part"] = "Отправлять только текстовые уведомления, без HTML";
$a->strings["Advanced Account/Page Type Settings"] = "Расширенные настройки учётной записи";
$a->strings["Change the behaviour of this account for special situations"] = "Измените поведение этого аккаунта в специальных ситуациях";
$a->strings["Relocate"] = "Перемещение";
$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку.";
$a->strings["Resend relocate message to contacts"] = "Отправить перемещённые сообщения контактам";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s подписан %2\$s's %3\$s";
$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.";
$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
$a->strings["Tag removed"] = "Ключевое слово удалено";
$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
$a->strings["Export account"] = "Экспорт аккаунта";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер.";
$a->strings["Export all"] = "Экспорт всего";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)";
$a->strings["Move account"] = "Удалить аккаунт";
$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora";
$a->strings["Account file"] = "Файл аккаунта";
$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
$a->strings["Do you really want to delete this video?"] = "Вы действительно хотите удалить видео?";
$a->strings["Delete Video"] = "Удалить видео";
$a->strings["No videos selected"] = "Видео не выбрано";
$a->strings["Recent Videos"] = "Последние видео";
$a->strings["Upload New Videos"] = "Загрузить новые видео";
$a->strings["No contacts."] = "Нет контактов.";
$a->strings["Access denied."] = "Доступ запрещен.";
$a->strings["Invalid request."] = "Неверный запрос.";
$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP";
$a->strings["Or - did you try to upload an empty file?"] = "Или вы пытались загрузить пустой файл?";
$a->strings["File exceeds size limit of %s"] = "Файл превышает лимит размера в %s";
$a->strings["File upload failed."] = "Загрузка файла не удалась.";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено..";
$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение.";
$a->strings["No recipient."] = "Без адресата.";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей.";
$a->strings["via"] = "через";
$a->strings["Repeat the image"] = "";
$a->strings["Will repeat your image to fill the background."] = "";
$a->strings["Stretch"] = "";
$a->strings["Will stretch to width/height of the image."] = "";
$a->strings["Resize fill and-clip"] = "";
$a->strings["Resize to fill and retain aspect ratio."] = "";
$a->strings["Resize best fit"] = "";
$a->strings["Resize to best fit and retain aspect ratio."] = "";
$a->strings["Default"] = "";
$a->strings["Note: "] = "";
$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
$a->strings["Select scheme"] = "";
$a->strings["Navigation bar background color"] = "";
$a->strings["Navigation bar icon color "] = "";
$a->strings["Link color"] = "";
$a->strings["Set the background color"] = "";
$a->strings["Content background transparency"] = "";
$a->strings["Set the background image"] = "";
$a->strings["Guest"] = "";
$a->strings["Visitor"] = "";
$a->strings["greenzero"] = "greenzero";
$a->strings["purplezero"] = "purplezero";
$a->strings["easterbunny"] = "easterbunny";
$a->strings["darkzero"] = "darkzero";
$a->strings["comix"] = "comix";
$a->strings["slackr"] = "slackr";
$a->strings["Variations"] = "Вариации";
$a->strings["Default"] = "По умолчанию";
$a->strings["Note: "] = "Внимание:";
$a->strings["Check image permissions if all users are allowed to visit the image"] = "Проверьте права на изображение, все пользователи должны иметь к нему доступ";
$a->strings["Select scheme"] = "Выбрать схему";
$a->strings["Navigation bar background color"] = "Цвет фона навигационной панели";
$a->strings["Navigation bar icon color "] = "Цвет иконок в навигационной панели";
$a->strings["Link color"] = "Цвет ссылок";
$a->strings["Set the background color"] = "Установить цвет фона";
$a->strings["Content background transparency"] = "Прозрачность фона контента";
$a->strings["Set the background image"] = "Установить фоновую картинку";
$a->strings["Repeat the image"] = "Повторить изображение";
$a->strings["Will repeat your image to fill the background."] = "Повторит изображение для заполнения фона";
$a->strings["Stretch"] = "Растянуть";
$a->strings["Will stretch to width/height of the image."] = "Растянет до ширины/высоты изображения";
$a->strings["Resize fill and-clip"] = "Отресайзить, чтобы заполнилось и обрезать";
$a->strings["Resize to fill and retain aspect ratio."] = "Отресайзить, чтобы заполнить и сохранить пропорции";
$a->strings["Resize best fit"] = "Отресайзить, чтобы вместилось";
$a->strings["Resize to best fit and retain aspect ratio."] = "Отресайзить, чтобы вместилось и сохранить пропорции";
$a->strings["Guest"] = "Гость";
$a->strings["Visitor"] = "Посетитель";
$a->strings["Alignment"] = "Выравнивание";
$a->strings["Left"] = "";
$a->strings["Left"] = "Слева";
$a->strings["Center"] = "Центр";
$a->strings["Color scheme"] = "Цветовая схема";
$a->strings["Posts font size"] = "Размер шрифта постов";
$a->strings["Textareas font size"] = "Размер шрифта текстовых полей";
$a->strings["Comma separated list of helper forums"] = "Разделенный запятыми список форумов помощи";
$a->strings["Set style"] = "Установить стиль";
$a->strings["Community Pages"] = "Страницы сообщества";
$a->strings["Community Profiles"] = "Профили сообщества";
$a->strings["Last users"] = "Последние пользователи";
$a->strings["Help or @NewHere ?"] = "Помощь";
$a->strings["Connect Services"] = "Подключить службы";
$a->strings["Find Friends"] = "Найти друзей";
$a->strings["Last users"] = "Последние пользователи";
$a->strings["Local Directory"] = "Локальный каталог";
$a->strings["Quick Start"] = "Быстрый запуск";
$a->strings["Connect Services"] = "Подключить службы";
$a->strings["Comma separated list of helper forums"] = "";
$a->strings["Set style"] = "";
$a->strings["Community Pages"] = "Страницы сообщества";
$a->strings["Help or @NewHere ?"] = "Помощь";
$a->strings["greenzero"] = "";
$a->strings["purplezero"] = "";
$a->strings["easterbunny"] = "";
$a->strings["darkzero"] = "";
$a->strings["comix"] = "";
$a->strings["slackr"] = "";
$a->strings["Variations"] = "";
$a->strings["Delete this item?"] = "Удалить этот элемент?";
$a->strings["show fewer"] = "показать меньше";
$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок.";
$a->strings["Create a New Account"] = "Создать новый аккаунт";
$a->strings["Password: "] = "Пароль: ";
$a->strings["Remember me"] = "Запомнить";
$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: ";
$a->strings["Forgot your password?"] = "Забыли пароль?";
$a->strings["Website Terms of Service"] = "Правила сайта";
$a->strings["terms of service"] = "правила";
$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера";
$a->strings["privacy policy"] = "политика конфиденциальности";
$a->strings["toggle mobile"] = "мобильная версия";

View file

@ -11,7 +11,7 @@
<dl>
<dt>{{$queues.label}}</dt>
<dd>{{$queues.deliverq}} - <a href="{{$baseurl}}/admin/queue">{{$queues.queue}}</a> - {{$queues.workerq}}</dd>
<dd><a href="{{$baseurl}}/admin/queue">{{$queues.queue}}</a> - {{$queues.workerq}}</dd>
</dl>
<dl>
<dt>{{$pending.0}}</dt>

View file

@ -7,7 +7,7 @@
<link rel="stylesheet" href="library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
<link rel="stylesheet" href="library/datetimepicker/jquery.datetimepicker.css" type="text/css" media="screen" />
<link rel="stylesheet" href="library/perfect-scrollbar/perfect-scrollbar.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="library/Text_Highlighter/sample.css" type="text/css" media="screen" />
<link rel="stylesheet" href="vendor/pear-pear.php.net/Text_Highlighter/data/Text_Highlighter/Text/sample.css" type="text/css" media="screen" />
<link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />
@ -19,6 +19,7 @@
<link rel="apple-touch-icon" href="{{$touch_icon}}"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="manifest" href="{{$baseurl}}/manifest" />
<script>
// Prevents links to switch to Safari in a home screen app - see https://gist.github.com/irae/1042167
(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(chref=d.href).replace(e.href,"").indexOf("#")&&(!/^[a-z\+\.\-]+:/i.test(chref)||chref.indexOf(e.protocol+"//"+e.host)===0)&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone");

View file

@ -15,7 +15,7 @@
{{if $profile.network}}<span class="profile-network"> ({{$profile.network}})</span>{{/if}}
</div>
{{*{{if $profile.about}}<div class="profile-details profile-about">{{$profile.about}}</div>{{/if}}*}}
</div>
<div class="hover-card-actions right-aligned">
{{* here are the differnt actions like privat message, poke, delete and so on *}}
@ -26,7 +26,7 @@
</div>
<div class="hover-card-actions-connection">
{{if $profile.actions.network}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.network.1}}" title="{{$profile.actions.network.0}}"><i class="fa fa-cloud" aria-hidden="true"></i></a>{{/if}}
{{if $profile.actions.edit}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.edit.1}}" title="{{$profile.actions.edit.0}}"><i class="fa fa-pencil" aria-hidden="true"></i></a>{{/if}}
{{if $profile.actions.edit}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.edit.1}}" title="{{$profile.actions.edit.0}}"><i class="fa fa-user" aria-hidden="true"></i></a>{{/if}}
{{if $profile.actions.follow}}<a class="btn btn-labeled btn-primary btn-sm" href="{{$profile.actions.follow.1}}" title="{{$profile.actions.follow.0}}"><i class="fa fa-user-plus" aria-hidden="true"></i></a>{{/if}}
</div>
</div>

View file

@ -0,0 +1,9 @@
{
"name": "{{$title}}",
"start_url": "{{$baseurl}}",
"display": "standalone",
"description": "A Decentralized Social Network",
"icons": [{
"src": "{{$baseurl}}/{{$touch_icon}}"
}]
}

View file

@ -440,7 +440,7 @@ nav.navbar .nav>li>a:focus{
border-radius: 3px;
}
#topbar-first .nav>.account .dropdown-toggle {
padding: 10px 5px 8px;
padding: 10px 5px 0px;
line-height: 1.1em;
text-align: left
}

View file

@ -42,7 +42,6 @@
{{/if}}
</div>
</div>
<div class="media-body">
@ -51,7 +50,7 @@
{{if $contact.photo_menu.pm }}<button type="button" class="contact-action-link btn-link" onclick="addToModal('{{$contact.photo_menu.pm.1}}')" data-toggle="tooltip" title="{{$contact.photo_menu.pm.0}}"><i class="fa fa-envelope" aria-hidden="true"></i></button>{{/if}}
{{if $contact.photo_menu.poke }}<button type="button" class="contact-action-link btn-link" onclick="addToModal('{{$contact.photo_menu.poke.1}}')" data-toggle="tooltip" title="{{$contact.photo_menu.poke.0}}"><i class="fa fa-heartbeat" aria-hidden="true"></i></button>{{/if}}
{{if $contact.photo_menu.network}}<a class="contact-action-link btn-link" href="{{$contact.photo_menu.network.1}}" data-toggle="tooltip" title="{{$contact.photo_menu.network.0}}"><i class="fa fa-cloud" aria-hidden="true"></i></a>{{/if}}
{{if $contact.photo_menu.edit }}<a class="contact-action-link btn-link" href="{{$contact.photo_menu.edit.1}}" data-toggle="tooltip" title="{{$contact.photo_menu.edit.0}}"><i class="fa fa-pencil" aria-hidden="true"></i></a>{{/if}}
{{if $contact.photo_menu.edit }}<a class="contact-action-link btn-link" href="{{$contact.photo_menu.edit.1}}" data-toggle="tooltip" title="{{$contact.photo_menu.edit.0}}"><i class="fa fa-user" aria-hidden="true"></i></a>{{/if}}
{{if $contact.photo_menu.drop }}<button type="button" class="contact-action-link btn-link" onclick="addToModal('{{$contact.photo_menu.drop.1}}')" data-toggle="tooltip" title="{{$contact.photo_menu.drop.0}}"><i class="fa fa-user-times" aria-hidden="true"></i></button>{{/if}}
{{if $contact.photo_menu.follow }}<a class="contact-action-link btn-link" href="{{$contact.photo_menu.follow.1}}" data-toggle="tooltip" title="{{$contact.photo_menu.follow.0}}"><i class="fa fa-user-plus" aria-hidden="true"></i></a>{{/if}}
{{if $contact.photo_menu.hide }}<a class="contact-action-link btn-link" href="{{$contact.photo_menu.hide.1}}" data-toggle="tooltip" title="{{$contact.photo_menu.hide.0}}"><i class="fa fa-times" aria-hidden="true"></i></a>{{/if}}

View file

@ -12,7 +12,7 @@
<link rel="stylesheet" href="library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
<link rel="stylesheet" href="library/datetimepicker/jquery.datetimepicker.css" type="text/css" media="screen" />
<link rel="stylesheet" href="library/perfect-scrollbar/perfect-scrollbar.min.css" type="text/css" media="screen" />
<link rel="stylesheet" href="library/Text_Highlighter/sample.css" type="text/css" media="screen" />
<link rel="stylesheet" href="vendor/pear-pear.php.net/Text_Highlighter/data/Text_Highlighter/Text/sample.css" type="text/css" media="screen" />
<link rel="stylesheet" href="view/theme/frio/frameworks/bootstrap/css/bootstrap.min.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="view/theme/frio/frameworks/bootstrap/css/bootstrap-theme.min.css" type="text/css" media="screen"/>
@ -41,6 +41,7 @@
<link rel="apple-touch-icon" href="{{$touch_icon}}"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="manifest" href="{{$baseurl}}/manifest" />
<script>
// Prevents links to switch to Safari in a home screen app - see https://gist.github.com/irae/1042167
(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(chref=d.href).replace(e.href,"").indexOf("#")&&(!/^[a-z\+\.\-]+:/i.test(chref)||chref.indexOf(e.protocol+"//"+e.host)===0)&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone");

View file

@ -240,7 +240,7 @@ function frio_remote_nav($a,&$nav) {
}
if(!local_user() && !empty($server_url)) {
$nav['logout'] = Array($server_url . '/logout',t('Logout'), "", t('End this session'));
$nav['logout'] = Array($server_url . '/logout', t('Logout'), "", t('End this session'));
// user menu
$nav['usermenu'][] = Array($server_url . '/profile/' . $a->user['nickname'], t('Status'), "", t('Your posts and conversations'));

View file

@ -70,7 +70,7 @@ function quattro_form(App $a, $align, $color, $tfs, $pfs) {
'$align' => array('quattro_align', t('Alignment'), $align, '', array('left'=>t('Left'), 'center'=>t('Center'))),
'$color' => array('quattro_color', t('Color scheme'), $color, '', $colors),
'$pfs' => array('quattro_pfs', t('Posts font size'), $pfs),
'$tfs' => array('quattro_tfs',t('Textareas font size'), $tfs),
'$tfs' => array('quattro_tfs', t('Textareas font size'), $tfs),
));
return $o;
}