diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | include/conversation.php | 2 | ||||
-rw-r--r-- | include/group.php | 7 | ||||
-rw-r--r-- | mod/group.php | 12 | ||||
-rw-r--r-- | version.inc | 2 | ||||
-rw-r--r-- | view/css/mod_group.css | 66 | ||||
-rw-r--r-- | view/ru/messages.po | 1066 | ||||
-rw-r--r-- | view/ru/strings.php | 1064 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 43 | ||||
-rwxr-xr-x | view/tpl/group_edit.tpl | 1 |
10 files changed, 1149 insertions, 1116 deletions
@@ -34,3 +34,5 @@ The Red Matrix is free and open source distributed under the MIT license. Currently the project is in "Developer Preview". A lot of work remains, but many important bits are functioning. Please connect with one of the developer channels ("Channel One" would be a good choice) if you are interested in helping us out. + +[Please help us change the world by providing a small donation.](http://pledgie.com/campaigns/18417) (Large donations are also graciously accepted).
\ No newline at end of file diff --git a/include/conversation.php b/include/conversation.php index d80ff2cc7..6d551a5c9 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -137,7 +137,7 @@ function localize_item(&$item){ case ACTIVITY_OBJ_NOTE: default: $post_type = t('status'); - if($obj->id != $item['mid']) + if($obj['id'] != $item['mid']) $post_type = t('comment'); break; } diff --git a/include/group.php b/include/group.php index ff17a726c..7ba14a49d 100644 --- a/include/group.php +++ b/include/group.php @@ -1,7 +1,7 @@ <?php /** @file */ -function group_add($uid,$name) { +function group_add($uid,$name,$public = 0) { $ret = false; if(x($uid) && x($name)) { @@ -37,10 +37,11 @@ function group_add($uid,$name) { } while($dups == true); - $r = q("INSERT INTO `group` ( hash, uid, name ) - VALUES( '%s', %d, '%s' ) ", + $r = q("INSERT INTO `group` ( hash, uid, visible, name ) + VALUES( '%s', %d, %d, '%s' ) ", dbesc($hash), intval($uid), + intval($public), dbesc($name) ); $ret = $r; diff --git a/mod/group.php b/mod/group.php index c85cb2da3..46386be0d 100644 --- a/mod/group.php +++ b/mod/group.php @@ -20,7 +20,8 @@ function group_post(&$a) { check_form_security_token_redirectOnErr('/group/new', 'group_edit'); $name = notags(trim($_POST['groupname'])); - $r = group_add(local_user(),$name); + $public = intval($_POST['public']); + $r = group_add(local_user(),$name,$public); if($r) { info( t('Collection created.') . EOL ); $r = group_byname(local_user(),$name); @@ -46,9 +47,12 @@ function group_post(&$a) { } $group = $r[0]; $groupname = notags(trim($_POST['groupname'])); + $public = intval($_POST['public']); + if((strlen($groupname)) && ($groupname != $group['name'])) { - $r = q("UPDATE `group` SET `name` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1", + $r = q("UPDATE `group` SET `name` = '%s', visible = %d WHERE `uid` = %d AND `id` = %d LIMIT 1", dbesc($groupname), + intval($public), intval(local_user()), intval($group['id']) ); @@ -85,9 +89,10 @@ function group_content(&$a) { if((argc() == 2) && (argv(1) === 'new')) { return replace_macros($tpl, $context + array( - '$title' => t('Create a collection of connections.'), + '$title' => t('Create a collection of channels.'), '$gname' => array('groupname',t('Collection Name: '), '', ''), '$gid' => 'new', + '$public' => array('public',t('Members are visible to other channels'), false, ''), '$form_security_token' => get_form_security_token("group_edit"), )); @@ -184,6 +189,7 @@ function group_content(&$a) { '$gname' => array('groupname',t('Collection Name: '),$group['name'], ''), '$gid' => $group['id'], '$drop' => $drop_txt, + '$public' => array('public',t('Members are visible to other channels'), $group['visible'], ''), '$form_security_token' => get_form_security_token('group_edit'), ); diff --git a/version.inc b/version.inc index bac5d5729..7bfb6b2fe 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-08-07.398 +2013-08-08.399 diff --git a/view/css/mod_group.css b/view/css/mod_group.css new file mode 100644 index 000000000..cc5f15843 --- /dev/null +++ b/view/css/mod_group.css @@ -0,0 +1,66 @@ + +#group-new-submit-wrapper { + margin-top: 30px; +} + +#group-edit-form label { + float: left; + width: 300px; +} + +#group-edit-form input { + float: left; + width: 175px; +} + +#group-edit-form .field { + clear: both; +} + +#group-edit-submit-wrapper input { + clear: both; + width: 100px; +} + +#group-edit-select-end { + clear: both; +} + +#group-edit-name-label { + float: left; + width: 175px; + margin-top: 20px; + margin-bottom: 20px; +} + +#group-edit-name { + float: left; + width: 225px; + margin-top: 20px; + margin-bottom: 20px; +} + +#group-edit-name-wrapper { + + +} + + +#group_members_select_label { + display: block; + float: left; + width: 175px; +} + +.group_members_select { + float: left; + width: 230px; + overflow: auto; +} + +#group_members_select_end { + clear: both; +} +#group-edit-name-end { + clear: both; +} diff --git a/view/ru/messages.po b/view/ru/messages.po index 4c8aab3b2..563593e97 100644 --- a/view/ru/messages.po +++ b/view/ru/messages.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Red Matrix\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2013-08-02 00:01-0700\n" -"PO-Revision-Date: 2013-08-06 12:33+0000\n" +"PO-Revision-Date: 2013-08-08 09:52+0000\n" "Last-Translator: alexej <info@pixelbits.de>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/red-matrix/language/ru/)\n" "MIME-Version: 1.0\n" @@ -41,12 +41,12 @@ msgstr "Публичный профиль" #: ../../include/activities.php:48 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "" +msgstr "%1$s изменил %2$s на “%3$s”" #: ../../include/activities.php:49 #, php-format msgid "Visit %1$s's %2$s" -msgstr "" +msgstr "Посетить %1$s's %2$s" #: ../../include/activities.php:52 #, php-format @@ -88,7 +88,7 @@ msgstr "" #: ../../include/enotify.php:71 #, php-format msgid "%1$s sent you %2$s." -msgstr "" +msgstr "%1$s послал вам %2$s." #: ../../include/enotify.php:71 msgid "a private message" @@ -246,11 +246,11 @@ msgstr "" #: ../../include/Contact.php:55 ../../include/contact_widgets.php:9 #: ../../mod/match.php:58 ../../mod/suggest.php:56 ../../boot.php:1611 msgid "Connect" -msgstr "Подключить" +msgstr "Добавить" #: ../../include/Contact.php:71 msgid "New window" -msgstr "" +msgstr "Новое окно" #: ../../include/Contact.php:72 msgid "Open the selected location in a different window or browser tab" @@ -349,7 +349,7 @@ msgstr "RSS/Atom" #: ../../include/contact_selectors.php:77 ../../mod/admin.php:626 #: ../../mod/admin.php:635 ../../boot.php:1353 msgid "Email" -msgstr "Email" +msgstr "E-mail" #: ../../include/contact_selectors.php:78 msgid "Diaspora" @@ -377,15 +377,15 @@ msgstr "MySpace" #: ../../include/contact_widgets.php:6 msgid "Add New Connection" -msgstr "Добавить новую связь" +msgstr "Добавить новый контакт" #: ../../include/contact_widgets.php:7 msgid "Enter the channel address" -msgstr "" +msgstr "Введите адрес вашего канала" #: ../../include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" +msgstr "Пример: bob@example.com, http://example.com/barbara" #: ../../include/contact_widgets.php:23 #, php-format @@ -405,7 +405,7 @@ msgstr "Впишите имя или интерес" #: ../../include/contact_widgets.php:31 msgid "Connect/Follow" -msgstr "Подключить/следовать" +msgstr "Добавить/следовать" #: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" @@ -418,7 +418,7 @@ msgstr "Поиск" #: ../../include/contact_widgets.php:34 ../../mod/suggest.php:64 msgid "Channel Suggestions" -msgstr "Предложения каналов" +msgstr "Рекомендации контактов" #: ../../include/contact_widgets.php:35 msgid "Similar Interests" @@ -426,7 +426,7 @@ msgstr "Похожие интересы" #: ../../include/contact_widgets.php:36 msgid "Random Profile" -msgstr "Случайные профиля" +msgstr "Случайные" #: ../../include/contact_widgets.php:37 msgid "Invite Friends" @@ -434,7 +434,7 @@ msgstr "Пригласить друзей" #: ../../include/contact_widgets.php:61 ../../include/features.php:58 msgid "Saved Folders" -msgstr "Сохраненные папки" +msgstr "Запомненные папки" #: ../../include/contact_widgets.php:64 ../../include/contact_widgets.php:91 msgid "Everything" @@ -450,7 +450,7 @@ msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "%d совместная связь" msgstr[1] "%d совместные связи" -msgstr[2] "%d совместные связи" +msgstr[2] "%d совместные контакты" #: ../../include/contact_widgets.php:126 ../../include/js_strings.php:7 #: ../../include/ItemObject.php:255 @@ -487,7 +487,7 @@ msgstr "лет" #: ../../include/datetime.php:285 msgid "months" -msgstr "месяцев" +msgstr "мес." #: ../../include/datetime.php:286 msgid "week" @@ -507,7 +507,7 @@ msgstr "час" #: ../../include/datetime.php:288 msgid "hours" -msgstr "часов" +msgstr "час." #: ../../include/datetime.php:289 msgid "minute" @@ -541,16 +541,16 @@ msgstr "l F d, Y \\@ g:i A" #: ../../include/event.php:20 ../../include/bb2diaspora.php:439 msgid "Starts:" -msgstr "" +msgstr "Начало:" #: ../../include/event.php:30 ../../include/bb2diaspora.php:447 msgid "Finishes:" -msgstr "" +msgstr "\t\nКонец:" #: ../../include/event.php:40 ../../include/bb2diaspora.php:455 #: ../../mod/events.php:450 ../../mod/directory.php:120 ../../boot.php:1665 msgid "Location:" -msgstr "Местонахождение:" +msgstr "Откуда:" #: ../../include/features.php:21 msgid "General Features" @@ -566,7 +566,7 @@ msgstr "" #: ../../include/features.php:23 msgid "Multiple Profiles" -msgstr "" +msgstr "Несколько профилей" #: ../../include/features.php:23 msgid "Ability to create multiple profiles" @@ -574,7 +574,7 @@ msgstr "" #: ../../include/features.php:24 msgid "Web Pages" -msgstr "" +msgstr "Веб-страницы" #: ../../include/features.php:24 msgid "Provide managed web pages on your channel" @@ -582,7 +582,7 @@ msgstr "" #: ../../include/features.php:25 msgid "Enhanced Photo Albums" -msgstr "" +msgstr "Расширенные фотоальбомы" #: ../../include/features.php:25 msgid "Enable photo album with enhanced features" @@ -647,7 +647,7 @@ msgstr "" #: ../../include/features.php:45 ../../mod/network.php:167 #: ../../mod/search.php:17 msgid "Saved Searches" -msgstr "Сохраненные поиски" +msgstr "Запомненные поиски" #: ../../include/features.php:45 msgid "Save search terms for re-use" @@ -699,7 +699,7 @@ msgstr "" #: ../../include/features.php:56 msgid "Tagging" -msgstr "" +msgstr "Пометка" #: ../../include/features.php:56 msgid "Ability to tag existing posts" @@ -707,7 +707,7 @@ msgstr "" #: ../../include/features.php:57 msgid "Post Categories" -msgstr "" +msgstr "Категории сообщения" #: ../../include/features.php:57 msgid "Add categories to your posts" @@ -727,7 +727,7 @@ msgstr "" #: ../../include/features.php:60 msgid "Star Posts" -msgstr "" +msgstr "Помечать сообщения" #: ../../include/features.php:60 msgid "Ability to mark special posts with a star indicator" @@ -735,7 +735,7 @@ msgstr "" #: ../../include/features.php:61 msgid "Tag Cloud" -msgstr "" +msgstr "Облако тегов" #: ../../include/features.php:61 msgid "Provide a personal tag cloud on your channel page" @@ -770,7 +770,7 @@ msgstr "Редактировать коллекцию" #: ../../include/group.php:286 msgid "Create a new collection" -msgstr "" +msgstr "Создать новую коллекцию" #: ../../include/group.php:287 msgid "Channels not in any collection" @@ -824,7 +824,7 @@ msgstr "" #: ../../include/js_strings.php:17 msgid "less than a minute" -msgstr "" +msgstr "менее чем одну минуту назад" #: ../../include/js_strings.php:18 msgid "about a minute" @@ -833,7 +833,7 @@ msgstr "около минуты" #: ../../include/js_strings.php:19 #, php-format msgid "%d minutes" -msgstr "%d минут" +msgstr "%d мин." #: ../../include/js_strings.php:20 msgid "about an hour" @@ -842,7 +842,7 @@ msgstr "около часа" #: ../../include/js_strings.php:21 #, php-format msgid "about %d hours" -msgstr "около %d часов" +msgstr "около %d час." #: ../../include/js_strings.php:22 msgid "a day" @@ -860,7 +860,7 @@ msgstr "около месяца" #: ../../include/js_strings.php:25 #, php-format msgid "%d months" -msgstr "%d месяцев" +msgstr "%d мес." #: ../../include/js_strings.php:26 msgid "about a year" @@ -921,15 +921,15 @@ msgstr "Пол:" #: ../../include/profile_advanced.php:22 msgid "j F, Y" -msgstr "" +msgstr "j F, Y" #: ../../include/profile_advanced.php:23 msgid "j F" -msgstr "" +msgstr "j F" #: ../../include/profile_advanced.php:30 msgid "Birthday:" -msgstr "День рождения:" +msgstr "День Рождения:" #: ../../include/profile_advanced.php:34 msgid "Age:" @@ -956,7 +956,7 @@ msgstr "Домашняя страница:" #: ../../include/profile_advanced.php:50 ../../mod/profiles.php:551 msgid "Hometown:" -msgstr "" +msgstr "Родной город:" #: ../../include/profile_advanced.php:52 msgid "Tags:" @@ -980,11 +980,11 @@ msgstr "Хобби / интересы:" #: ../../include/profile_advanced.php:62 ../../mod/profiles.php:555 msgid "Likes:" -msgstr "Оценки \"Нравится\":" +msgstr "Что вам нравится:" #: ../../include/profile_advanced.php:64 ../../mod/profiles.php:556 msgid "Dislikes:" -msgstr "Оценки \"Не-Нравится\":" +msgstr "Что вам не нравится:" #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" @@ -1097,7 +1097,7 @@ msgstr "Ваши фотографии" #: ../../include/nav.php:84 ../../boot.php:1351 msgid "Login" -msgstr "Вход" +msgstr "Войти" #: ../../include/nav.php:84 msgid "Sign in" @@ -1106,7 +1106,7 @@ msgstr "Войти" #: ../../include/nav.php:100 #, php-format msgid "%s - click to logout" -msgstr "" +msgstr "%s - нажмите чтобы выйти" #: ../../include/nav.php:103 msgid "Click to authenticate to your home hub" @@ -1134,7 +1134,7 @@ msgstr "Справочная информация и документация" #: ../../include/nav.php:128 msgid "Apps" -msgstr "Apps" +msgstr "Приложения" #: ../../include/nav.php:128 msgid "Addon applications, utilities, games" @@ -1167,27 +1167,27 @@ msgstr "" #: ../../include/nav.php:145 msgid "See all matrix notifications" -msgstr "Просмотреть все уведомления матрицы" +msgstr "Просмотреть все оповещения матрицы" #: ../../include/nav.php:146 msgid "Mark all matrix notifications seen" -msgstr "Отметить все уведомления матрицы как видел" +msgstr "Пометить все оповещения матрицы как видел" #: ../../include/nav.php:149 msgid "See all channel notifications" -msgstr "Просмотреть все уведомления канала" +msgstr "Просмотреть все оповещения канала" #: ../../include/nav.php:150 msgid "Mark all channel notifications seen" -msgstr "Отметить все уведомления канала как видел" +msgstr "Пометить все оповещения канала как видел" #: ../../include/nav.php:153 msgid "Intros" -msgstr "Заставки" +msgstr "Контакты" #: ../../include/nav.php:153 ../../mod/connections.php:544 msgid "New Connections" -msgstr "Новые связи" +msgstr "Новые контакты" #: ../../include/nav.php:154 msgid "See all channel introductions" @@ -1195,27 +1195,27 @@ msgstr "Просмотреть все введения канала" #: ../../include/nav.php:157 msgid "Notices" -msgstr "Заметки" +msgstr "Оповещения" #: ../../include/nav.php:157 ../../mod/notifications.php:218 msgid "Notifications" -msgstr "Уведомления" +msgstr "Оповещения" #: ../../include/nav.php:158 msgid "See all notifications" -msgstr "Просмотреть все уведомления" +msgstr "Просмотреть все оповещения" #: ../../include/nav.php:159 msgid "Mark all system notifications seen" -msgstr "Отметить все уведомления как видел" +msgstr "Пометить все оповещения как видел" #: ../../include/nav.php:161 msgid "Mail" -msgstr "Mail" +msgstr "Эл. почта" #: ../../include/nav.php:161 msgid "Private mail" -msgstr "Личные mail" +msgstr "Личная эл. почта" #: ../../include/nav.php:162 msgid "See all private messages" @@ -1235,7 +1235,7 @@ msgstr "Исходящие" #: ../../include/nav.php:166 ../../mod/message.php:21 msgid "New Message" -msgstr "Новое сообщение" +msgstr "Новая переписка" #: ../../include/nav.php:169 ../../mod/events.php:348 ../../boot.php:2097 msgid "Events" @@ -1272,7 +1272,7 @@ msgstr "Настройки аккаунта/канала" #: ../../include/nav.php:177 ../../mod/connections.php:652 msgid "Connections" -msgstr "Связи" +msgstr "Контакты" #: ../../include/nav.php:177 msgid "Manage/Edit Friends and Connections" @@ -1280,7 +1280,7 @@ msgstr "" #: ../../include/nav.php:184 ../../mod/admin.php:106 msgid "Admin" -msgstr "Админ" +msgstr "Администрация Сайта" #: ../../include/nav.php:184 msgid "Site Setup and Configuration" @@ -1344,7 +1344,7 @@ msgstr "" #: ../../include/photos.php:95 msgid "Image file is empty." -msgstr "" +msgstr "файл пуст." #: ../../include/photos.php:124 ../../mod/profile_photo.php:145 msgid "Unable to process image" @@ -1510,7 +1510,7 @@ msgstr "Секс наркоман" #: ../../include/profile_selectors.php:42 ../../include/identity.php:233 #: ../../mod/network.php:381 ../../mod/connections.php:367 msgid "Friends" -msgstr "Доброжелательный" +msgstr "Друзья" #: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" @@ -1534,11 +1534,11 @@ msgstr "Мысленно женат" #: ../../include/profile_selectors.php:42 msgid "Partners" -msgstr "" +msgstr "Партнеры" #: ../../include/profile_selectors.php:42 msgid "Cohabiting" -msgstr "" +msgstr "Сожительствующие" #: ../../include/profile_selectors.php:42 msgid "Common law" @@ -1627,7 +1627,7 @@ msgstr "" #: ../../include/account.php:264 #, php-format msgid "Registration request at %s" -msgstr "" +msgstr "Требуется регистрация на %s" #: ../../include/account.php:266 ../../include/account.php:293 #: ../../include/account.php:350 ../../include/items.php:4105 @@ -1709,31 +1709,31 @@ msgstr "" #: ../../include/text.php:281 msgid "prev" -msgstr "" +msgstr "предыдущий" #: ../../include/text.php:283 msgid "first" -msgstr "" +msgstr "первый" #: ../../include/text.php:312 msgid "last" -msgstr "" +msgstr "последний" #: ../../include/text.php:315 msgid "next" -msgstr "" +msgstr "следующий" #: ../../include/text.php:327 msgid "older" -msgstr "" +msgstr "старший" #: ../../include/text.php:329 msgid "newer" -msgstr "" +msgstr "новее" #: ../../include/text.php:620 msgid "No connections" -msgstr "" +msgstr "Нет контактов" #: ../../include/text.php:631 #, php-format @@ -1741,15 +1741,15 @@ msgid "%d Connection" msgid_plural "%d Connections" msgstr[0] "%d Связи" msgstr[1] "%d Связи" -msgstr[2] "%d Связей" +msgstr[2] "%d Контактов" #: ../../include/text.php:643 msgid "View Connections" -msgstr "Просмотр связей" +msgstr "Просмотр контактов" #: ../../include/text.php:704 ../../mod/filer.php:36 msgid "Save" -msgstr "Сохранить" +msgstr "Запомнить" #: ../../include/text.php:742 msgid "poke" @@ -1978,7 +1978,7 @@ msgstr "Категории:" #: ../../include/text.php:1084 ../../include/conversation.php:656 msgid "Filed under:" -msgstr "" +msgstr "Хранить под:" #: ../../include/text.php:1100 ../../include/text.php:1112 msgid "Click to open/close" @@ -2058,7 +2058,7 @@ msgstr "локальный аккаунт не найден." #: ../../include/follow.php:133 msgid "Cannot connect to yourself." -msgstr "" +msgstr "Нельзя подключиться к самому себе." #: ../../include/permissions.php:13 msgid "Can view my \"public\" stream and posts" @@ -2179,7 +2179,7 @@ msgstr "" #: ../../include/attach.php:285 msgid "No source file." -msgstr "" +msgstr "Нет исходного файла." #: ../../include/attach.php:302 msgid "Cannot locate file to replace" @@ -2204,11 +2204,11 @@ msgstr "" #: ../../include/attach.php:480 ../../include/attach.php:497 msgid "Path not available." -msgstr "" +msgstr "Путь недоступен." #: ../../include/ItemObject.php:87 ../../mod/photos.php:942 msgid "Private Message" -msgstr "" +msgstr "Личное сообщение" #: ../../include/ItemObject.php:92 ../../mod/webpages.php:68 #: ../../mod/settings.php:670 ../../mod/editwebpage.php:97 @@ -2245,11 +2245,11 @@ msgstr "" #: ../../include/ItemObject.php:148 msgid "starred" -msgstr "маркированные" +msgstr "помеченные" #: ../../include/ItemObject.php:159 msgid "add tag" -msgstr "добавить таг" +msgstr "добавить тег" #: ../../include/ItemObject.php:165 ../../mod/photos.php:1049 msgid "I like this (toggle)" @@ -2261,7 +2261,7 @@ msgstr "" #: ../../include/ItemObject.php:168 msgid "Share this" -msgstr "" +msgstr "Поделиться этим" #: ../../include/ItemObject.php:168 msgid "share" @@ -2300,9 +2300,9 @@ msgstr "Подождите пожалуйста" #, php-format msgid "%d comment" msgid_plural "%d comments" -msgstr[0] "%d комментар" -msgstr[1] "%d комментаров" -msgstr[2] "%d комментаров" +msgstr[0] "%d комментарий" +msgstr[1] "%d комментариев" +msgstr[2] "%d комментариев" #: ../../include/ItemObject.php:502 ../../mod/photos.php:1067 #: ../../mod/photos.php:1105 ../../mod/photos.php:1132 @@ -2610,7 +2610,7 @@ msgstr "" #: ../../include/items.php:4103 msgid "You have a new follower at " -msgstr "" +msgstr "У вас есть новый последователь в" #: ../../include/items.php:4529 ../../mod/page.php:62 ../../mod/viewsrc.php:18 #: ../../mod/home.php:64 ../../mod/admin.php:142 ../../mod/admin.php:667 @@ -2632,7 +2632,7 @@ msgstr "" #: ../../include/items.php:4888 msgid "Connection not found." -msgstr "Связь не найдена." +msgstr "Контакт не найден." #: ../../mod/common.php:10 msgid "No channel." @@ -2640,11 +2640,11 @@ msgstr "Не канал." #: ../../mod/common.php:47 msgid "Common connections" -msgstr "Общие связи" +msgstr "Общие контакты" #: ../../mod/common.php:52 msgid "No connections in common." -msgstr "Общих связей нет." +msgstr "Общих контактов нет." #: ../../mod/events.php:66 msgid "Event title and start time are required." @@ -2652,7 +2652,7 @@ msgstr "" #: ../../mod/events.php:281 msgid "l, F j" -msgstr "" +msgstr "l, F j" #: ../../mod/events.php:303 msgid "Edit event" @@ -2685,7 +2685,7 @@ msgstr "Формат: %s %s. Дата начала и название необ #: ../../mod/events.php:438 msgid "Event Starts:" -msgstr "" +msgstr "Начало мероприятий:" #: ../../mod/events.php:438 ../../mod/events.php:452 msgid "Required" @@ -2697,7 +2697,7 @@ msgstr "" #: ../../mod/events.php:443 msgid "Event Finishes:" -msgstr "" +msgstr "\t\nКонец мероприятий:" #: ../../mod/events.php:446 msgid "Adjust for viewer timezone" @@ -2738,7 +2738,7 @@ msgstr "" #: ../../mod/thing.php:183 msgid "Select a profile" -msgstr "" +msgstr "Выберите профиль" #: ../../mod/thing.php:185 msgid "Select a category of stuff. e.g. I ______ something" @@ -2763,7 +2763,7 @@ msgstr "" #: ../../mod/invite.php:47 #, php-format msgid "%s : Not a valid email address." -msgstr "" +msgstr "%s : Не действительный адрес электронной почты." #: ../../mod/invite.php:71 msgid "Please join us on Red" @@ -2822,16 +2822,16 @@ msgstr "" #: ../../mod/invite.php:130 msgid "Send invitations" -msgstr "" +msgstr "Послать приглашения" #: ../../mod/invite.php:131 msgid "Enter email addresses, one per line:" -msgstr "" +msgstr "Введите адреса электронной почты, по одному на строку:" #: ../../mod/invite.php:132 ../../mod/message.php:292 #: ../../mod/message.php:423 msgid "Your message:" -msgstr "Ваше сообщение:" +msgstr "Ваше письмо:" #: ../../mod/invite.php:133 msgid "" @@ -2857,7 +2857,7 @@ msgstr "" #: ../../mod/allfriends.php:35 #, php-format msgid "Friends of %s" -msgstr "" +msgstr "Друзья %s" #: ../../mod/allfriends.php:41 msgid "No friends to display." @@ -2866,11 +2866,11 @@ msgstr "Нет друзей для показа." #: ../../mod/webpages.php:8 ../../mod/profile.php:8 ../../mod/channel.php:8 #: ../../boot.php:1524 msgid "Requested profile is not available." -msgstr "" +msgstr "Запрашиваемый профиль не доступен." #: ../../mod/webpages.php:71 msgid "View" -msgstr "" +msgstr "Просмотр" #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" @@ -2914,7 +2914,7 @@ msgstr "Приложения" #: ../../mod/page.php:37 msgid "Invalid item." -msgstr "" +msgstr "Недействительный элемент." #: ../../mod/page.php:49 ../../mod/chanview.php:78 ../../mod/home.php:51 #: ../../mod/magic.php:63 ../../mod/wall_upload.php:35 @@ -2955,7 +2955,7 @@ msgstr "" #: ../../mod/setup.php:169 ../../mod/setup.php:236 ../../mod/setup.php:565 msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" +msgstr "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"." #: ../../mod/setup.php:233 msgid "System check" @@ -3017,7 +3017,7 @@ msgstr "Имя базы данных" #: ../../mod/setup.php:273 ../../mod/setup.php:315 msgid "Site administrator email address" -msgstr "Адрес электронной почты администратора" +msgstr "Адрес электронной почты администратора сайта" #: ../../mod/setup.php:273 ../../mod/setup.php:315 msgid "" @@ -3053,7 +3053,7 @@ msgstr "" #: ../../mod/setup.php:365 msgid "PHP executable path" -msgstr "" +msgstr "PHP executable путь" #: ../../mod/setup.php:365 msgid "" @@ -3063,7 +3063,7 @@ msgstr "" #: ../../mod/setup.php:370 msgid "Command line PHP" -msgstr "" +msgstr "Command line PHP" #: ../../mod/setup.php:379 msgid "" @@ -3077,7 +3077,7 @@ msgstr "" #: ../../mod/setup.php:382 msgid "PHP register_argc_argv" -msgstr "" +msgstr "PHP register_argc_argv" #: ../../mod/setup.php:403 msgid "" @@ -3097,31 +3097,31 @@ msgstr "" #: ../../mod/setup.php:413 msgid "libCurl PHP module" -msgstr "" +msgstr "libCurl PHP модуль" #: ../../mod/setup.php:414 msgid "GD graphics PHP module" -msgstr "" +msgstr "GD graphics PHP модуль" #: ../../mod/setup.php:415 msgid "OpenSSL PHP module" -msgstr "" +msgstr "OpenSSL PHP модуль" #: ../../mod/setup.php:416 msgid "mysqli PHP module" -msgstr "" +msgstr "mysqli PHP модуль" #: ../../mod/setup.php:417 msgid "mb_string PHP module" -msgstr "" +msgstr "mb_string PHP модуль" #: ../../mod/setup.php:418 msgid "mcrypt PHP module" -msgstr "" +msgstr "mcrypt PHP модуль" #: ../../mod/setup.php:423 ../../mod/setup.php:425 msgid "Apache mod_rewrite module" -msgstr "" +msgstr "Apache mod_rewrite модуль" #: ../../mod/setup.php:423 msgid "" @@ -3130,7 +3130,7 @@ msgstr "" #: ../../mod/setup.php:429 ../../mod/setup.php:432 msgid "proc_open" -msgstr "" +msgstr "proc_open" #: ../../mod/setup.php:429 msgid "" @@ -3189,7 +3189,7 @@ msgstr "" #: ../../mod/setup.php:479 msgid ".htconfig.php is writable" -msgstr "" +msgstr ".htconfig.php доступен для записи" #: ../../mod/setup.php:489 msgid "" @@ -3218,11 +3218,11 @@ msgstr "" #: ../../mod/setup.php:495 msgid "view/tpl/smarty3 is writable" -msgstr "" +msgstr "view/tpl/smarty3 доступен для записи" #: ../../mod/setup.php:509 msgid "SSL certificate validation" -msgstr "" +msgstr "проверка сертификата SSL" #: ../../mod/setup.php:509 msgid "" @@ -3237,7 +3237,7 @@ msgstr "" #: ../../mod/setup.php:518 msgid "Url rewrite is working" -msgstr "" +msgstr "Url rewrite работает" #: ../../mod/setup.php:528 msgid "" @@ -3273,7 +3273,7 @@ msgstr "" #: ../../mod/chanview.php:94 msgid "toggle full screen mode" -msgstr "" +msgstr "переключение полноэкранного режима" #: ../../mod/tagger.php:98 #, php-format @@ -3302,7 +3302,7 @@ msgstr "Настройки отображения" #: ../../mod/settings.php:79 msgid "Connected apps" -msgstr "Подключенные apps" +msgstr "Подключенные приложения" #: ../../mod/settings.php:85 msgid "Export channel" @@ -3310,7 +3310,7 @@ msgstr "Экспорт канала" #: ../../mod/settings.php:97 msgid "Automatic Permissions (Advanced)" -msgstr "Автоматические разрешения (Дополнительно)" +msgstr "Автоматические разрешения (дополнительно)" #: ../../mod/settings.php:145 msgid "Missing some important data!" @@ -3326,7 +3326,7 @@ msgstr "Пароли не совпадают. Пароль не изменён." #: ../../mod/settings.php:265 msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" +msgstr "Пустые пароли не допускаются. Пароль не изменён." #: ../../mod/settings.php:278 msgid "Password changed." @@ -3370,19 +3370,19 @@ msgstr "Имя" #: ../../mod/settings.php:611 ../../mod/settings.php:637 msgid "Consumer Key" -msgstr "" +msgstr "Ключ клиента" #: ../../mod/settings.php:612 ../../mod/settings.php:638 msgid "Consumer Secret" -msgstr "" +msgstr "Секрет клиента" #: ../../mod/settings.php:613 ../../mod/settings.php:639 msgid "Redirect" -msgstr "" +msgstr "Перенаправление" #: ../../mod/settings.php:614 ../../mod/settings.php:640 msgid "Icon url" -msgstr "" +msgstr "URL-адрес значка" #: ../../mod/settings.php:625 msgid "You can't edit this application." @@ -3390,7 +3390,7 @@ msgstr "" #: ../../mod/settings.php:668 msgid "Connected Apps" -msgstr "" +msgstr "Подключенные приложения" #: ../../mod/settings.php:672 msgid "Client key starts with" @@ -3398,11 +3398,11 @@ msgstr "" #: ../../mod/settings.php:673 msgid "No name" -msgstr "" +msgstr "Без названия" #: ../../mod/settings.php:674 msgid "Remove authorization" -msgstr "" +msgstr "Удалить разрешение" #: ../../mod/settings.php:685 msgid "No feature settings configured" @@ -3434,7 +3434,7 @@ msgstr "" #: ../../mod/settings.php:721 ../../mod/settings.php:1019 msgid "Email Address:" -msgstr "Email адрес:" +msgstr "Адрес электронной почты:" #: ../../mod/settings.php:722 msgid "Remove Account" @@ -3470,7 +3470,7 @@ msgstr "Настройки отображения" #: ../../mod/settings.php:847 msgid "Display Theme:" -msgstr "" +msgstr "Тема отображения:" #: ../../mod/settings.php:848 msgid "Mobile Theme:" @@ -3478,11 +3478,11 @@ msgstr "" #: ../../mod/settings.php:849 msgid "Update browser every xx seconds" -msgstr "" +msgstr "Обновление браузера каждые ХХ секунд" #: ../../mod/settings.php:849 msgid "Minimum of 10 seconds, no maximum" -msgstr "" +msgstr "Минимум 10 секунд, без максимума" #: ../../mod/settings.php:850 msgid "Maximum number of conversations to load at any time:" @@ -3490,7 +3490,7 @@ msgstr "" #: ../../mod/settings.php:850 msgid "Maximum of 100 items" -msgstr "" +msgstr "Максимум 100 элементов" #: ../../mod/settings.php:851 msgid "Don't show emoticons" @@ -3498,27 +3498,27 @@ msgstr "" #: ../../mod/settings.php:887 msgid "Nobody except yourself" -msgstr "" +msgstr "Никто, кроме вас" #: ../../mod/settings.php:888 msgid "Only those you specifically allow" -msgstr "" +msgstr "Только комы вы разрешили" #: ../../mod/settings.php:889 msgid "Anybody in your address book" -msgstr "" +msgstr "Любой в вашей адресной книге" #: ../../mod/settings.php:890 msgid "Anybody on this website" -msgstr "" +msgstr "Любой на этом веб-сайте" #: ../../mod/settings.php:891 msgid "Anybody in this network" -msgstr "" +msgstr "Любой в этой сети" #: ../../mod/settings.php:892 msgid "Anybody on the internet" -msgstr "" +msgstr "Любой в интернете" #: ../../mod/settings.php:965 msgid "Publish your default profile in the network directory" @@ -3530,7 +3530,7 @@ msgstr "" #: ../../mod/settings.php:974 ../../mod/profile_photo.php:276 msgid "or" -msgstr "" +msgstr "или" #: ../../mod/settings.php:979 msgid "Your channel address is" @@ -3582,7 +3582,7 @@ msgstr "" #: ../../mod/settings.php:1021 msgid "Default Post Location:" -msgstr "" +msgstr "Откуда по умолчанию:" #: ../../mod/settings.php:1022 msgid "Use Browser Location:" @@ -3590,11 +3590,11 @@ msgstr "" #: ../../mod/settings.php:1025 msgid "Security and Privacy Settings" -msgstr "" +msgstr "Параметры безопасности и конфиденциальности" #: ../../mod/settings.php:1027 msgid "Quick Privacy Settings:" -msgstr "" +msgstr "Быстрые параметры безопасности и конфиденциальности:" #: ../../mod/settings.php:1028 msgid "Very Public - extremely permissive" @@ -3626,7 +3626,7 @@ msgstr "" #: ../../mod/settings.php:1036 msgid "(click to open/close)" -msgstr "" +msgstr "(нажмите, чтобы открыть / закрыть)" #: ../../mod/settings.php:1049 msgid "Maximum private messages per day from unknown people:" @@ -3704,11 +3704,11 @@ msgstr "" #: ../../mod/photos.php:558 ../../mod/display.php:9 ../../mod/search.php:80 #: ../../mod/community.php:18 msgid "Public access denied." -msgstr "" +msgstr "Общественный доступ запрещен." #: ../../mod/viewconnections.php:57 msgid "No connections." -msgstr "Никаких связей." +msgstr "Никаких контактов." #: ../../mod/viewconnections.php:69 ../../mod/nogroup.php:40 #, php-format @@ -3717,15 +3717,15 @@ msgstr "" #: ../../mod/viewconnections.php:83 msgid "View Connnections" -msgstr "" +msgstr "Просмотр контактов" #: ../../mod/tagrm.php:41 msgid "Tag removed" -msgstr "" +msgstr "Тег удален" #: ../../mod/tagrm.php:79 msgid "Remove Item Tag" -msgstr "" +msgstr "Удалить Тег" #: ../../mod/tagrm.php:81 msgid "Select a tag to remove: " @@ -3733,7 +3733,7 @@ msgstr "" #: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 msgid "Remove" -msgstr "" +msgstr "Удалить" #: ../../mod/delegate.php:95 msgid "No potential page delegates located." @@ -3768,27 +3768,27 @@ msgstr "Добавить" #: ../../mod/delegate.php:132 msgid "No entries." -msgstr "" +msgstr "Нет записей." #: ../../mod/directory.php:107 ../../mod/profiles.php:584 msgid "Age: " -msgstr "" +msgstr "Возраст:" #: ../../mod/directory.php:110 msgid "Gender: " -msgstr "" +msgstr "Пол:" #: ../../mod/directory.php:165 msgid "Finding:" -msgstr "" +msgstr "Поиск:" #: ../../mod/directory.php:173 msgid "next page" -msgstr "" +msgstr "следующая страница" #: ../../mod/directory.php:173 msgid "previous page" -msgstr "" +msgstr "предыдущая страница" #: ../../mod/directory.php:180 msgid "No entries (some entries may be hidden)." @@ -3796,35 +3796,35 @@ msgstr "" #: ../../mod/dirfind.php:26 msgid "People Search" -msgstr "" +msgstr "Поиск людей" #: ../../mod/dirfind.php:60 ../../mod/match.php:65 msgid "No matches" -msgstr "" +msgstr "Нет соответствий" #: ../../mod/group.php:25 msgid "Collection created." -msgstr "" +msgstr "Коллекция создана." #: ../../mod/group.php:31 msgid "Could not create collection." -msgstr "" +msgstr "Не удалось создать коллекцию." #: ../../mod/group.php:56 msgid "Collection name changed." -msgstr "" +msgstr "Имя коллекции изменено." #: ../../mod/group.php:88 msgid "Create a collection of connections." -msgstr "Создать новую коллекцию связей." +msgstr "Создать новую коллекцию контактов." #: ../../mod/group.php:89 ../../mod/group.php:184 msgid "Collection Name: " -msgstr "" +msgstr "Название коллекции:" #: ../../mod/group.php:108 msgid "Collection removed." -msgstr "" +msgstr "Коллекция удалена." #: ../../mod/group.php:110 msgid "Unable to remove collection." @@ -3832,11 +3832,11 @@ msgstr "" #: ../../mod/group.php:183 msgid "Collection Editor" -msgstr "" +msgstr "Редактор коллекций" #: ../../mod/group.php:196 msgid "Members" -msgstr "" +msgstr "Участники" #: ../../mod/group.php:198 msgid "All Connected Channels" @@ -3852,15 +3852,15 @@ msgstr "" #: ../../mod/photos.php:103 msgid "Album not found." -msgstr "" +msgstr "Альбом не найден." #: ../../mod/photos.php:125 ../../mod/photos.php:770 msgid "Delete Album" -msgstr "" +msgstr "Удалить альбом" #: ../../mod/photos.php:165 ../../mod/photos.php:1032 msgid "Delete Photo" -msgstr "" +msgstr "Удалить фотографию" #: ../../mod/photos.php:494 #, php-format @@ -3869,11 +3869,11 @@ msgstr "" #: ../../mod/photos.php:494 msgid "a photo" -msgstr "" +msgstr "фотография" #: ../../mod/photos.php:568 msgid "No photos selected" -msgstr "" +msgstr "Никакие фотографии не выбраны" #: ../../mod/photos.php:622 msgid "Access to this item is restricted." @@ -3891,15 +3891,15 @@ msgstr "" #: ../../mod/photos.php:697 msgid "Upload Photos" -msgstr "" +msgstr "Загрузить фотографии" #: ../../mod/photos.php:701 ../../mod/photos.php:765 msgid "New album name: " -msgstr "" +msgstr "Название нового альбома:" #: ../../mod/photos.php:702 msgid "or existing album name: " -msgstr "" +msgstr "или существующий альбом:" #: ../../mod/photos.php:703 msgid "Do not show a status post for this upload" @@ -3907,28 +3907,28 @@ msgstr "" #: ../../mod/photos.php:705 ../../mod/photos.php:1027 msgid "Permissions" -msgstr "" +msgstr "Разрешения" #: ../../mod/photos.php:754 ../../mod/photos.php:776 ../../mod/photos.php:1223 #: ../../mod/photos.php:1238 msgid "Contact Photos" -msgstr "" +msgstr "Фотографии контактов" #: ../../mod/photos.php:780 msgid "Edit Album" -msgstr "" +msgstr "Редактировать Фотоальбом" #: ../../mod/photos.php:786 msgid "Show Newest First" -msgstr "" +msgstr "Показать новые первыми" #: ../../mod/photos.php:788 msgid "Show Oldest First" -msgstr "" +msgstr "Показать старые первыми" #: ../../mod/photos.php:832 ../../mod/photos.php:1270 msgid "View Photo" -msgstr "" +msgstr "Посмотреть фотографию" #: ../../mod/photos.php:876 msgid "Permission denied. Access to this item may be restricted." @@ -3936,68 +3936,68 @@ msgstr "" #: ../../mod/photos.php:878 msgid "Photo not available" -msgstr "" +msgstr "Фотография не доступна" #: ../../mod/photos.php:936 msgid "Use as profile photo" -msgstr "" +msgstr "Использовать в качестве фотографии профиля" #: ../../mod/photos.php:964 msgid "View Full Size" -msgstr "" +msgstr "Посмотреть в полный размер" #: ../../mod/photos.php:1015 msgid "Edit photo" -msgstr "" +msgstr "Редактировать фотографию" #: ../../mod/photos.php:1017 msgid "Rotate CW (right)" -msgstr "" +msgstr "Повернуть CW (направо)" #: ../../mod/photos.php:1018 msgid "Rotate CCW (left)" -msgstr "" +msgstr "Повернуть CCW (налево)" #: ../../mod/photos.php:1020 msgid "New album name" -msgstr "" +msgstr "Новое название альбома:" #: ../../mod/photos.php:1023 msgid "Caption" -msgstr "" +msgstr "Подпись" #: ../../mod/photos.php:1025 msgid "Add a Tag" -msgstr "" +msgstr "Добавить тег" #: ../../mod/photos.php:1029 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" +msgstr "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" #: ../../mod/photos.php:1276 msgid "View Album" -msgstr "" +msgstr "Посмотреть фотоальбом" #: ../../mod/photos.php:1285 msgid "Recent Photos" -msgstr "" +msgstr "Последние фотографии" #: ../../mod/ping.php:160 msgid "sent you a private message" -msgstr "" +msgstr "отправил вам личное сообщение" #: ../../mod/ping.php:218 msgid "added your channel" -msgstr "" +msgstr "добавил ваш канал" #: ../../mod/ping.php:230 ../../boot.php:1716 ../../boot.php:1796 msgid "g A l F d" -msgstr "" +msgstr "g A l F d" #: ../../mod/ping.php:252 ../../boot.php:1762 ../../boot.php:1837 msgid "[today]" -msgstr "" +msgstr "[сегодня]" #: ../../mod/ping.php:262 msgid "posted an event" @@ -4005,20 +4005,20 @@ msgstr "" #: ../../mod/xchan.php:25 msgid "Not found." -msgstr "" +msgstr "Не найдено." #: ../../mod/filer.php:35 msgid "- select -" -msgstr "" +msgstr "- выбрать -" #: ../../mod/home.php:76 #, php-format msgid "Welcome to %s" -msgstr "" +msgstr "Добро пожаловать в %s" #: ../../mod/message.php:16 msgid "Check Mail" -msgstr "Проверить Mail" +msgstr "Проверить Е-мail" #: ../../mod/message.php:52 msgid "Unable to lookup recipient." @@ -4038,47 +4038,47 @@ msgstr "" #: ../../mod/message.php:213 ../../mod/notifications.php:101 msgid "Messages" -msgstr "" +msgstr "Переписка" #: ../../mod/message.php:224 msgid "Message deleted." -msgstr "" +msgstr "Переписка удалена." #: ../../mod/message.php:231 msgid "Conversation removed." -msgstr "" +msgstr "Разговор удален." #: ../../mod/message.php:282 msgid "Send Private Message" -msgstr "Отправить личное сообщение" +msgstr "Отправить личное письмо" #: ../../mod/message.php:283 ../../mod/message.php:418 msgid "To:" -msgstr "" +msgstr "Кому:" #: ../../mod/message.php:288 ../../mod/message.php:420 msgid "Subject:" -msgstr "" +msgstr "Тема:" #: ../../mod/message.php:316 msgid "No messages." -msgstr "" +msgstr "Нет сообщений." #: ../../mod/message.php:332 ../../mod/message.php:389 msgid "Delete message" -msgstr "" +msgstr "Удалить сообщение" #: ../../mod/message.php:334 msgid "D, d M Y - g:i A" -msgstr "" +msgstr "D, d M Y - g:i A" #: ../../mod/message.php:353 msgid "Message not found." -msgstr "" +msgstr "Сообщение не найдено." #: ../../mod/message.php:411 msgid "Delete conversation" -msgstr "" +msgstr "Удалить разговор" #: ../../mod/message.php:413 msgid "" @@ -4092,123 +4092,123 @@ msgstr "Отправить снова" #: ../../mod/hcard.php:10 msgid "No profile" -msgstr "" +msgstr "Профиль отсутствует" #: ../../mod/help.php:30 msgid "Help:" -msgstr "" +msgstr "Помощь:" #: ../../mod/help.php:38 ../../index.php:226 msgid "Not Found" -msgstr "" +msgstr "Не найдено" #: ../../mod/help.php:41 ../../index.php:229 msgid "Page not found." -msgstr "" +msgstr "Страница не найдена." #: ../../mod/rmagic.php:56 msgid "Remote Authentication" -msgstr "" +msgstr "Удаленная аутентификация" #: ../../mod/rmagic.php:57 msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" +msgstr "Введите адрес вашего канала (например channel@example.com)" #: ../../mod/rmagic.php:58 msgid "Authenticate" -msgstr "" +msgstr "Проверка подлинности" #: ../../mod/item.php:121 msgid "Unable to locate original post." -msgstr "" +msgstr "Не удалось найти оригинал." #: ../../mod/item.php:289 msgid "Empty post discarded." -msgstr "" +msgstr "Отказаться от пустой почты." #: ../../mod/item.php:751 msgid "System error. Post not saved." -msgstr "" +msgstr "Системная ошибка. Сообщение не сохранено." #: ../../mod/item.php:1028 ../../mod/wall_upload.php:41 msgid "Wall Photos" -msgstr "" +msgstr "Стена фотографий" #: ../../mod/network.php:158 ../../mod/search.php:20 msgid "Remove term" -msgstr "" +msgstr "Удалить термин" #: ../../mod/network.php:296 msgid "Commented Order" -msgstr "" +msgstr "По комментириям" #: ../../mod/network.php:299 msgid "Sort by Comment Date" -msgstr "" +msgstr "Сортировка по дате создания комментариев" #: ../../mod/network.php:302 msgid "Posted Order" -msgstr "" +msgstr "По добавлениям" #: ../../mod/network.php:305 msgid "Sort by Post Date" -msgstr "" +msgstr "Сортировка по дате создания сообщения" #: ../../mod/network.php:309 ../../mod/notifications.php:86 msgid "Personal" -msgstr "" +msgstr "Личные" #: ../../mod/network.php:312 msgid "Posts that mention or involve you" -msgstr "" +msgstr "Сообщения, в которых упоминули или вовлекли вас" #: ../../mod/network.php:315 ../../mod/connections.php:511 msgid "New" -msgstr "" +msgstr "Новые" #: ../../mod/network.php:318 msgid "Activity Stream - by date" -msgstr "" +msgstr "Лента активности - по дате" #: ../../mod/network.php:325 msgid "Starred" -msgstr "" +msgstr "Помеченные" #: ../../mod/network.php:328 msgid "Favourite Posts" -msgstr "" +msgstr "Фаворит-сообщения" #: ../../mod/network.php:335 msgid "Spam" -msgstr "" +msgstr "Спам" #: ../../mod/network.php:338 msgid "Posts flagged as SPAM" -msgstr "" +msgstr "Как СПАМ помеченные сообщения" #: ../../mod/network.php:378 msgid "Refresh" -msgstr "" +msgstr "Обновить" #: ../../mod/network.php:379 ../../mod/connections.php:364 msgid "Me" -msgstr "" +msgstr "Я" #: ../../mod/network.php:380 ../../mod/connections.php:366 msgid "Best Friends" -msgstr "" +msgstr "Лучшие друзья" #: ../../mod/network.php:382 msgid "Co-workers" -msgstr "" +msgstr "Сотрудники" #: ../../mod/network.php:383 ../../mod/connections.php:368 msgid "Former Friends" -msgstr "" +msgstr "Приятели" #: ../../mod/network.php:384 ../../mod/connections.php:369 msgid "Acquaintances" -msgstr "" +msgstr "Знакомые" #: ../../mod/network.php:385 msgid "Everybody" @@ -4216,93 +4216,93 @@ msgstr "Все" #: ../../mod/network.php:402 msgid "Search Results For:" -msgstr "" +msgstr "Результаты поиска для:" #: ../../mod/network.php:447 msgid "No such group" -msgstr "" +msgstr "Нет такой группы" #: ../../mod/network.php:458 msgid "Group is empty" -msgstr "" +msgstr "Группа пуста" #: ../../mod/network.php:473 msgid "Contact: " -msgstr "" +msgstr "Контакт: " #: ../../mod/network.php:476 msgid "Invalid contact." -msgstr "" +msgstr "Неправильный контакт." #: ../../mod/admin.php:48 msgid "Theme settings updated." -msgstr "" +msgstr "Настройки темы обновленны." #: ../../mod/admin.php:83 ../../mod/admin.php:399 msgid "Site" -msgstr "" +msgstr "Сайт" #: ../../mod/admin.php:84 ../../mod/admin.php:622 ../../mod/admin.php:634 msgid "Users" -msgstr "" +msgstr "Пользователи" #: ../../mod/admin.php:85 ../../mod/admin.php:716 ../../mod/admin.php:758 msgid "Plugins" -msgstr "" +msgstr "Плагины" #: ../../mod/admin.php:86 ../../mod/admin.php:921 ../../mod/admin.php:957 msgid "Themes" -msgstr "" +msgstr "Темы" #: ../../mod/admin.php:87 msgid "DB updates" -msgstr "" +msgstr "Обновления базы данных" #: ../../mod/admin.php:101 ../../mod/admin.php:108 ../../mod/admin.php:1044 msgid "Logs" -msgstr "" +msgstr "Журналы" #: ../../mod/admin.php:107 msgid "Plugin Features" -msgstr "" +msgstr "Функции плагинов" #: ../../mod/admin.php:109 msgid "User registrations waiting for confirmation" -msgstr "" +msgstr "Регистрации пользователей ждут подтверждения" #: ../../mod/admin.php:180 msgid "Message queues" -msgstr "" +msgstr "Очереди сообщений" #: ../../mod/admin.php:185 ../../mod/admin.php:398 ../../mod/admin.php:621 #: ../../mod/admin.php:715 ../../mod/admin.php:757 ../../mod/admin.php:920 #: ../../mod/admin.php:956 ../../mod/admin.php:1043 msgid "Administration" -msgstr "" +msgstr "Администрация" #: ../../mod/admin.php:186 msgid "Summary" -msgstr "" +msgstr "Резюме" #: ../../mod/admin.php:188 msgid "Registered users" -msgstr "" +msgstr "Зарегистрированных пользователeй" #: ../../mod/admin.php:190 msgid "Pending registrations" -msgstr "" +msgstr "В ожидании утверждения регистрации" #: ../../mod/admin.php:191 msgid "Version" -msgstr "" +msgstr "Версия" #: ../../mod/admin.php:193 msgid "Active plugins" -msgstr "" +msgstr "Активные плагины" #: ../../mod/admin.php:330 msgid "Site settings updated." -msgstr "" +msgstr "Настройки сайта обновленны." #: ../../mod/admin.php:361 msgid "No special theme for accessibility" @@ -4310,15 +4310,15 @@ msgstr "" #: ../../mod/admin.php:386 msgid "Closed" -msgstr "" +msgstr "Закрыто" #: ../../mod/admin.php:387 msgid "Requires approval" -msgstr "" +msgstr "Требует подтверждения" #: ../../mod/admin.php:388 msgid "Open" -msgstr "" +msgstr "Открыто" #: ../../mod/admin.php:392 msgid "No SSL policy, links will track page SSL state" @@ -4326,39 +4326,39 @@ msgstr "" #: ../../mod/admin.php:393 msgid "Force all links to use SSL" -msgstr "" +msgstr "Заставить все ссылки использовать SSL" #: ../../mod/admin.php:401 ../../mod/register.php:166 msgid "Registration" -msgstr "" +msgstr "Регистрация" #: ../../mod/admin.php:402 msgid "File upload" -msgstr "" +msgstr "Загрузка файла" #: ../../mod/admin.php:403 msgid "Policies" -msgstr "" +msgstr "Правила" #: ../../mod/admin.php:404 msgid "Advanced" -msgstr "" +msgstr "Дополнительно" #: ../../mod/admin.php:408 msgid "Site name" -msgstr "" +msgstr "Название сайта" #: ../../mod/admin.php:409 msgid "Banner/Logo" -msgstr "" +msgstr "Баннер / логотип" #: ../../mod/admin.php:410 msgid "System language" -msgstr "" +msgstr "Язык системы" #: ../../mod/admin.php:411 msgid "System theme" -msgstr "" +msgstr "Тема системы" #: ../../mod/admin.php:411 msgid "" @@ -4392,7 +4392,7 @@ msgstr "Канал сайта" #: ../../mod/admin.php:415 msgid "SSL link policy" -msgstr "" +msgstr "Правила SSL-ссылки" #: ../../mod/admin.php:415 msgid "Determines whether generated links should be forced to use SSL" @@ -4400,7 +4400,7 @@ msgstr "" #: ../../mod/admin.php:416 msgid "Maximum image size" -msgstr "" +msgstr "Максимальный размер изображения" #: ../../mod/admin.php:416 msgid "" @@ -4410,11 +4410,11 @@ msgstr "" #: ../../mod/admin.php:417 msgid "Register policy" -msgstr "" +msgstr "Правила регистрации" #: ../../mod/admin.php:418 msgid "Register text" -msgstr "" +msgstr "Текст регистрации" #: ../../mod/admin.php:418 msgid "Will be displayed prominently on the registration page." @@ -4453,7 +4453,7 @@ msgstr "" #: ../../mod/admin.php:422 msgid "Block public" -msgstr "" +msgstr "Блокировать публичный доступ" #: ../../mod/admin.php:422 msgid "" @@ -4463,7 +4463,7 @@ msgstr "" #: ../../mod/admin.php:423 msgid "Force publish" -msgstr "" +msgstr "Заставить публиковать" #: ../../mod/admin.php:423 msgid "" @@ -4472,15 +4472,15 @@ msgstr "" #: ../../mod/admin.php:425 msgid "Proxy user" -msgstr "" +msgstr "Proxy пользователь" #: ../../mod/admin.php:426 msgid "Proxy URL" -msgstr "" +msgstr "Proxy URL" #: ../../mod/admin.php:427 msgid "Network timeout" -msgstr "" +msgstr "Время ожидания сети" #: ../../mod/admin.php:427 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." @@ -4488,7 +4488,7 @@ msgstr "" #: ../../mod/admin.php:428 msgid "Delivery interval" -msgstr "" +msgstr "Интервал доставки" #: ../../mod/admin.php:428 msgid "" @@ -4499,7 +4499,7 @@ msgstr "" #: ../../mod/admin.php:429 msgid "Poll interval" -msgstr "" +msgstr "Интервал опроса" #: ../../mod/admin.php:429 msgid "" @@ -4543,11 +4543,11 @@ msgstr "" #: ../../mod/admin.php:481 msgid "No failed updates." -msgstr "" +msgstr "Ошибок обновлений нет." #: ../../mod/admin.php:485 msgid "Failed Updates" -msgstr "" +msgstr "Обновления с ошибками" #: ../../mod/admin.php:487 msgid "Mark success (if update was manually applied)" @@ -4569,9 +4569,9 @@ msgstr[2] "" #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%s пользователь удален" +msgstr[1] "%s пользователи удалены" +msgstr[2] "%s пользователи удалены" #: ../../mod/admin.php:552 msgid "Account not found" @@ -4580,17 +4580,17 @@ msgstr "Аккаунт не найден" #: ../../mod/admin.php:563 #, php-format msgid "User '%s' deleted" -msgstr "" +msgstr "Пользователь '%s' удален" #: ../../mod/admin.php:572 #, php-format msgid "User '%s' unblocked" -msgstr "" +msgstr "Kontakt '%s' разрешен" #: ../../mod/admin.php:572 #, php-format msgid "User '%s' blocked" -msgstr "" +msgstr "Пользователь '%s' заблокирован" #: ../../mod/admin.php:603 msgid "Normal Account" @@ -4606,54 +4606,54 @@ msgstr "Community/Celebrity аккаунт" #: ../../mod/admin.php:606 msgid "Automatic Friend Account" -msgstr "" +msgstr "Аккаунт \"автоматически друзья\"" #: ../../mod/admin.php:624 msgid "select all" -msgstr "" +msgstr "выбрать все" #: ../../mod/admin.php:625 msgid "User registrations waiting for confirm" -msgstr "" +msgstr "Регистрации пользователей ждут подтверждения" #: ../../mod/admin.php:626 msgid "Request date" -msgstr "" +msgstr "Дата запроса" #: ../../mod/admin.php:627 msgid "No registrations." -msgstr "" +msgstr "Регистраций нет." #: ../../mod/admin.php:628 ../../mod/intro.php:11 ../../mod/intro.php:98 #: ../../mod/notifications.php:159 ../../mod/notifications.php:206 msgid "Approve" -msgstr "" +msgstr "Утвердить" #: ../../mod/admin.php:629 msgid "Deny" -msgstr "" +msgstr "Запретить" #: ../../mod/admin.php:631 ../../mod/intro.php:14 ../../mod/intro.php:99 #: ../../mod/connections.php:308 ../../mod/connections.php:449 msgid "Block" -msgstr "" +msgstr "Заблокировать" #: ../../mod/admin.php:632 ../../mod/connections.php:308 #: ../../mod/connections.php:449 msgid "Unblock" -msgstr "" +msgstr "Разрешить" #: ../../mod/admin.php:635 msgid "Register date" -msgstr "" +msgstr "Дата регистрации" #: ../../mod/admin.php:635 msgid "Last login" -msgstr "" +msgstr "Последний вход" #: ../../mod/admin.php:635 msgid "Service Class" -msgstr "" +msgstr "Класс службы" #: ../../mod/admin.php:637 msgid "" @@ -4670,64 +4670,64 @@ msgstr "" #: ../../mod/admin.php:679 #, php-format msgid "Plugin %s disabled." -msgstr "" +msgstr "Плагин %s отключен." #: ../../mod/admin.php:683 #, php-format msgid "Plugin %s enabled." -msgstr "" +msgstr "Плагин %s включен." #: ../../mod/admin.php:693 ../../mod/admin.php:891 msgid "Disable" -msgstr "" +msgstr "Запретить" #: ../../mod/admin.php:695 ../../mod/admin.php:893 msgid "Enable" -msgstr "" +msgstr "Разрешить" #: ../../mod/admin.php:717 ../../mod/admin.php:922 msgid "Toggle" -msgstr "" +msgstr "Переключить" #: ../../mod/admin.php:725 ../../mod/admin.php:932 msgid "Author: " -msgstr "" +msgstr "Автор: " #: ../../mod/admin.php:726 ../../mod/admin.php:933 msgid "Maintainer: " -msgstr "" +msgstr "Обслуживающий: " #: ../../mod/admin.php:855 msgid "No themes found." -msgstr "" +msgstr "Темы не найдены." #: ../../mod/admin.php:914 msgid "Screenshot" -msgstr "" +msgstr "Скриншот" #: ../../mod/admin.php:962 msgid "[Experimental]" -msgstr "" +msgstr "[экспериментальный]" #: ../../mod/admin.php:963 msgid "[Unsupported]" -msgstr "" +msgstr "[неподдерживаемый]" #: ../../mod/admin.php:990 msgid "Log settings updated." -msgstr "" +msgstr "Настройки журнала обновленны." #: ../../mod/admin.php:1046 msgid "Clear" -msgstr "" +msgstr "Очистить" #: ../../mod/admin.php:1052 msgid "Debugging" -msgstr "" +msgstr "Отладка" #: ../../mod/admin.php:1053 msgid "Log file" -msgstr "" +msgstr "Файл журнала" #: ../../mod/admin.php:1053 msgid "" @@ -4736,22 +4736,22 @@ msgstr "" #: ../../mod/admin.php:1054 msgid "Log level" -msgstr "" +msgstr "Уровень журнала" #: ../../mod/intro.php:17 ../../mod/intro.php:100 #: ../../mod/connections.php:315 ../../mod/connections.php:450 #: ../../mod/notifications.php:51 ../../mod/notifications.php:162 #: ../../mod/notifications.php:208 msgid "Ignore" -msgstr "" +msgstr "Игнорировать" #: ../../mod/intro.php:29 ../../mod/connections.php:117 msgid "Connection updated." -msgstr "Связи обновленны." +msgstr "Контакт обновлен." #: ../../mod/intro.php:31 msgid "Connection update failed." -msgstr "Ошибка обновления связи." +msgstr "Ошибка обновления контакта." #: ../../mod/intro.php:56 msgid "Introductions and Connection Requests" @@ -4763,12 +4763,12 @@ msgstr "" #: ../../mod/intro.php:72 msgid "System error. Please try again later." -msgstr "" +msgstr "Системная ошибка. Пожалуйста, повторите попытку позже." #: ../../mod/intro.php:95 ../../mod/connections.php:455 #: ../../mod/notifications.php:155 ../../mod/notifications.php:202 msgid "Hide this contact from others" -msgstr "" +msgstr "Скрыть этот контакт от других" #: ../../mod/intro.php:96 ../../mod/notifications.php:156 #: ../../mod/notifications.php:203 @@ -4778,12 +4778,12 @@ msgstr "" #: ../../mod/intro.php:96 ../../mod/notifications.php:156 #: ../../mod/notifications.php:203 msgid "if applicable" -msgstr "" +msgstr "если это применимо" #: ../../mod/intro.php:101 ../../mod/notifications.php:35 #: ../../mod/notifications.php:163 ../../mod/notifications.php:209 msgid "Discard" -msgstr "" +msgstr "Отменить" #: ../../mod/connections.php:64 msgid "Could not access contact record." @@ -4853,7 +4853,7 @@ msgstr "Канал не одобрен" #: ../../mod/connections.php:277 msgid "Contact has been removed." -msgstr "" +msgstr "Контакт удален." #: ../../mod/connections.php:297 #, php-format @@ -4862,7 +4862,7 @@ msgstr "" #: ../../mod/connections.php:301 msgid "Refresh Permissions" -msgstr "" +msgstr "Обновить разрешения" #: ../../mod/connections.php:304 msgid "Fetch updated permissions" @@ -4870,51 +4870,51 @@ msgstr "" #: ../../mod/connections.php:311 msgid "Block or Unblock this connection" -msgstr "Запретить или разрешить эту связь" +msgstr "Запретить или разрешить этот контакт" #: ../../mod/connections.php:315 ../../mod/connections.php:450 msgid "Unignore" -msgstr "" +msgstr "Не игнорировать" #: ../../mod/connections.php:318 msgid "Ignore or Unignore this connection" -msgstr "Игнорировать или не игнорировать эту связь" +msgstr "Игнорировать или не игнорировать этот контакт" #: ../../mod/connections.php:321 msgid "Unarchive" -msgstr "" +msgstr "Разархивировать" #: ../../mod/connections.php:321 msgid "Archive" -msgstr "" +msgstr "Заархивировать" #: ../../mod/connections.php:324 msgid "Archive or Unarchive this connection" -msgstr " Заархивировать или Разархивировать эту связь" +msgstr " Заархивировать или разархивировать этот контакт" #: ../../mod/connections.php:327 msgid "Unhide" -msgstr "" +msgstr "Показать" #: ../../mod/connections.php:327 msgid "Hide" -msgstr "" +msgstr "Скрыть" #: ../../mod/connections.php:330 msgid "Hide or Unhide this connection" -msgstr "Скрыть или показывать эту связь" +msgstr "Скрыть или показывать этот контакт" #: ../../mod/connections.php:337 msgid "Delete this connection" -msgstr "Удалить эту связь" +msgstr "Удалить этот контакт" #: ../../mod/connections.php:370 msgid "Unknown" -msgstr "" +msgstr "Неизвестный" #: ../../mod/connections.php:380 ../../mod/connections.php:408 msgid "Approve this connection" -msgstr "Утвердить эту связь" +msgstr "Утвердить этот контакт" #: ../../mod/connections.php:380 msgid "Accept connection to allow communication" @@ -4952,7 +4952,7 @@ msgstr "" #: ../../mod/connections.php:412 msgid "Profile Visibility" -msgstr "" +msgstr "Видимость профиля" #: ../../mod/connections.php:413 #, php-format @@ -4963,11 +4963,11 @@ msgstr "" #: ../../mod/connections.php:414 msgid "Contact Information / Notes" -msgstr "" +msgstr "Контактная информация / Примечания" #: ../../mod/connections.php:415 msgid "Edit contact notes" -msgstr "" +msgstr "Редактировать примечания контакта" #: ../../mod/connections.php:417 msgid "Their Settings" @@ -4979,7 +4979,7 @@ msgstr "Мои настройки" #: ../../mod/connections.php:420 msgid "Forum Members" -msgstr "" +msgstr "Участники форума" #: ../../mod/connections.php:421 msgid "Soapbox" @@ -4987,7 +4987,7 @@ msgstr "" #: ../../mod/connections.php:422 msgid "Full Sharing" -msgstr "" +msgstr "Полный обмен" #: ../../mod/connections.php:423 msgid "Cautious Sharing" @@ -4995,11 +4995,11 @@ msgstr "" #: ../../mod/connections.php:424 msgid "Follow Only" -msgstr "" +msgstr "Только следовать" #: ../../mod/connections.php:425 msgid "Individual Permissions" -msgstr "" +msgstr "Индивидуальные разрешения" #: ../../mod/connections.php:426 msgid "" @@ -5010,11 +5010,11 @@ msgstr "" #: ../../mod/connections.php:427 msgid "Advanced Permissions" -msgstr "" +msgstr "Дополнительные разрешения" #: ../../mod/connections.php:428 msgid "Quick Links" -msgstr "" +msgstr "Быстрые ссылки" #: ../../mod/connections.php:432 #, php-format @@ -5023,51 +5023,51 @@ msgstr "" #: ../../mod/connections.php:433 msgid "Block/Unblock contact" -msgstr "" +msgstr "Запретить/разрешить контакт" #: ../../mod/connections.php:434 msgid "Ignore contact" -msgstr "" +msgstr "Игнорировать контакт" #: ../../mod/connections.php:435 msgid "Repair URL settings" -msgstr "" +msgstr "Ремонт настройки URL" #: ../../mod/connections.php:436 msgid "View conversations" -msgstr "" +msgstr "Просмотр разговоров" #: ../../mod/connections.php:438 msgid "Delete contact" -msgstr "" +msgstr "Удалить контакт" #: ../../mod/connections.php:441 msgid "Last update:" -msgstr "" +msgstr "Последнее обновление:" #: ../../mod/connections.php:443 msgid "Update public posts" -msgstr "" +msgstr "Обновить публичные сообщения" #: ../../mod/connections.php:445 msgid "Update now" -msgstr "" +msgstr "Обновить сейчас" #: ../../mod/connections.php:451 msgid "Currently blocked" -msgstr "" +msgstr "В настоящее время заблокирован" #: ../../mod/connections.php:452 msgid "Currently ignored" -msgstr "" +msgstr "В настоящее время игнорируются" #: ../../mod/connections.php:453 msgid "Currently archived" -msgstr "" +msgstr "В настоящее время зархивированны" #: ../../mod/connections.php:454 msgid "Currently pending" -msgstr "" +msgstr "В настоящее время в ожидании" #: ../../mod/connections.php:455 msgid "" @@ -5076,88 +5076,88 @@ msgstr "" #: ../../mod/connections.php:491 ../../mod/connections.php:563 msgid "Blocked" -msgstr "" +msgstr "Заблокированные" #: ../../mod/connections.php:496 ../../mod/connections.php:570 msgid "Ignored" -msgstr "" +msgstr "Игнорируемые" #: ../../mod/connections.php:501 ../../mod/connections.php:584 msgid "Hidden" -msgstr "" +msgstr "Скрытые" #: ../../mod/connections.php:506 ../../mod/connections.php:577 msgid "Archived" -msgstr "" +msgstr "Зархивированные" #: ../../mod/connections.php:517 msgid "All" -msgstr "" +msgstr "Все" #: ../../mod/connections.php:538 msgid "Suggestions" -msgstr "" +msgstr "Предложения" #: ../../mod/connections.php:541 msgid "Suggest new connections" -msgstr "Предлагать новые связи" +msgstr "Предлагать новые контакты" #: ../../mod/connections.php:547 msgid "Show pending (new) connections" -msgstr "Просмотр (новых) связей в ожидании" +msgstr "Просмотр (новых) ждущих контактов" #: ../../mod/connections.php:550 msgid "All Connections" -msgstr "Все связи" +msgstr "Все контакты" #: ../../mod/connections.php:553 msgid "Show all connections" -msgstr "Просмотр всех связей" +msgstr "Просмотр всех контактв" #: ../../mod/connections.php:556 msgid "Unblocked" -msgstr "" +msgstr "Разрешенные" #: ../../mod/connections.php:559 msgid "Only show unblocked connections" -msgstr "Показать только разрешенные связи" +msgstr "Показать только разрешенные контакты" #: ../../mod/connections.php:566 msgid "Only show blocked connections" -msgstr "Показать только заблокированные связи" +msgstr "Показать только заблокированные контакты" #: ../../mod/connections.php:573 msgid "Only show ignored connections" -msgstr "Показать только проигнорированные связи" +msgstr "Показать только проигнорированные контакты" #: ../../mod/connections.php:580 msgid "Only show archived connections" -msgstr "Показать только архивированные связи" +msgstr "Показать только архивированные контакты" #: ../../mod/connections.php:587 msgid "Only show hidden connections" -msgstr "Показать только скрытые связи" +msgstr "Показать только скрытые контакты" #: ../../mod/connections.php:629 #, php-format msgid "%1$s [%2$s]" -msgstr "" +msgstr "%1$s [%2$s]" #: ../../mod/connections.php:630 ../../mod/nogroup.php:41 msgid "Edit contact" -msgstr "" +msgstr "Редактировать контакт" #: ../../mod/connections.php:656 msgid "Search your connections" -msgstr "Поиск ваших связей" +msgstr "Поиск контактов" #: ../../mod/connections.php:657 msgid "Finding: " -msgstr "" +msgstr "Поиск:" #: ../../mod/dirsearch.php:21 msgid "This site is not a directory server" -msgstr "" +msgstr "Этот сайт не является сервером каталога" #: ../../mod/lockview.php:34 msgid "Remote privacy information not available." @@ -5165,7 +5165,7 @@ msgstr "" #: ../../mod/lockview.php:43 msgid "Visible to:" -msgstr "" +msgstr "Кому видно:" #: ../../mod/post.php:114 msgid "" @@ -5181,83 +5181,83 @@ msgstr "" #: ../../mod/profiles.php:18 ../../mod/profiles.php:138 #: ../../mod/profiles.php:179 ../../mod/profiles.php:486 msgid "Profile not found." -msgstr "" +msgstr "Профиль не найден." #: ../../mod/profiles.php:38 msgid "Profile deleted." -msgstr "" +msgstr "Профиль удален." #: ../../mod/profiles.php:56 ../../mod/profiles.php:92 msgid "Profile-" -msgstr "" +msgstr "Профиль-" #: ../../mod/profiles.php:77 ../../mod/profiles.php:120 msgid "New profile created." -msgstr "" +msgstr "Новый профиль создан." #: ../../mod/profiles.php:98 msgid "Profile unavailable to clone." -msgstr "" +msgstr "Профиль недоступен для клонирования." #: ../../mod/profiles.php:189 msgid "Profile Name is required." -msgstr "" +msgstr "Имя профиля требуется." #: ../../mod/profiles.php:317 msgid "Marital Status" -msgstr "" +msgstr "Семейное положение" #: ../../mod/profiles.php:321 msgid "Romantic Partner" -msgstr "" +msgstr "Романтический партнер" #: ../../mod/profiles.php:325 msgid "Likes" -msgstr "" +msgstr "мне нравиться" #: ../../mod/profiles.php:329 msgid "Dislikes" -msgstr "" +msgstr "мне не-нравиться" #: ../../mod/profiles.php:333 msgid "Work/Employment" -msgstr "" +msgstr "Работа / Занятость" #: ../../mod/profiles.php:336 msgid "Religion" -msgstr "" +msgstr "Религия" #: ../../mod/profiles.php:340 msgid "Political Views" -msgstr "" +msgstr "Политические взгляды" #: ../../mod/profiles.php:344 msgid "Gender" -msgstr "" +msgstr "Пол" #: ../../mod/profiles.php:348 msgid "Sexual Preference" -msgstr "" +msgstr "Сексуальная ориентация" #: ../../mod/profiles.php:352 msgid "Homepage" -msgstr "" +msgstr "Домашняя страница" #: ../../mod/profiles.php:356 msgid "Interests" -msgstr "" +msgstr "Интересы" #: ../../mod/profiles.php:360 msgid "Address" -msgstr "" +msgstr "Адрес" #: ../../mod/profiles.php:367 msgid "Location" -msgstr "" +msgstr "Место" #: ../../mod/profiles.php:450 msgid "Profile updated." -msgstr "" +msgstr "Профиль обновлен." #: ../../mod/profiles.php:505 msgid "Hide your contact/friend list from viewers of this profile?" @@ -5265,15 +5265,15 @@ msgstr "" #: ../../mod/profiles.php:528 msgid "Edit Profile Details" -msgstr "" +msgstr "Редактирование профиля" #: ../../mod/profiles.php:530 msgid "View this profile" -msgstr "" +msgstr "Посмотреть этот профиль" #: ../../mod/profiles.php:531 msgid "Change Profile Photo" -msgstr "" +msgstr "Изменить фотографию профиля" #: ../../mod/profiles.php:532 msgid "Create a new profile using these settings" @@ -5281,52 +5281,52 @@ msgstr "" #: ../../mod/profiles.php:533 msgid "Clone this profile" -msgstr "" +msgstr "Клонировать этот профиль" #: ../../mod/profiles.php:534 msgid "Delete this profile" -msgstr "" +msgstr "Удалить этот профиль" #: ../../mod/profiles.php:535 msgid "Profile Name:" -msgstr "" +msgstr "Имя профиля:" #: ../../mod/profiles.php:536 msgid "Your Full Name:" -msgstr "" +msgstr "Ваше полное имя:" #: ../../mod/profiles.php:537 msgid "Title/Description:" -msgstr "" +msgstr "Название / Описание:" #: ../../mod/profiles.php:538 msgid "Your Gender:" -msgstr "" +msgstr "Ваш пол:" #: ../../mod/profiles.php:539 #, php-format msgid "Birthday (%s):" -msgstr "" +msgstr "Ваш День Рождения (%s):" #: ../../mod/profiles.php:540 msgid "Street Address:" -msgstr "" +msgstr "Улица:" #: ../../mod/profiles.php:541 msgid "Locality/City:" -msgstr "" +msgstr "Населенный пункт / город:" #: ../../mod/profiles.php:542 msgid "Postal/Zip Code:" -msgstr "" +msgstr "Почтовый индекс:" #: ../../mod/profiles.php:543 msgid "Country:" -msgstr "" +msgstr "Страна:" #: ../../mod/profiles.php:544 msgid "Region/State:" -msgstr "" +msgstr "Регион / Область:" #: ../../mod/profiles.php:545 msgid "<span class=\"heart\">♥</span> Marital Status:" @@ -5334,7 +5334,7 @@ msgstr "" #: ../../mod/profiles.php:546 msgid "Who: (if applicable)" -msgstr "" +msgstr "Кто: (если это применимо)" #: ../../mod/profiles.php:547 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" @@ -5342,23 +5342,23 @@ msgstr "" #: ../../mod/profiles.php:548 msgid "Since [date]:" -msgstr "" +msgstr "С тех пор [date]:" #: ../../mod/profiles.php:550 msgid "Homepage URL:" -msgstr "" +msgstr "URL-адрес домашней страницы:" #: ../../mod/profiles.php:553 msgid "Religious Views:" -msgstr "" +msgstr "Религиозные взгляды:" #: ../../mod/profiles.php:554 msgid "Keywords:" -msgstr "" +msgstr "Ключевые слова:" #: ../../mod/profiles.php:557 msgid "Example: fishing photography software" -msgstr "" +msgstr "Пример: fishing photography software" #: ../../mod/profiles.php:558 msgid "Used in directory listings" @@ -5366,15 +5366,15 @@ msgstr "" #: ../../mod/profiles.php:559 msgid "Tell us about yourself..." -msgstr "" +msgstr "Расскажите нам о себе ..." #: ../../mod/profiles.php:560 msgid "Hobbies/Interests" -msgstr "" +msgstr "Хобби / интересы" #: ../../mod/profiles.php:561 msgid "Contact information and Social Networks" -msgstr "" +msgstr "Контактная информация и социальные сети" #: ../../mod/profiles.php:562 msgid "My other channels" @@ -5382,31 +5382,31 @@ msgstr "Мои другие каналы" #: ../../mod/profiles.php:563 msgid "Musical interests" -msgstr "" +msgstr "Музыкальные интересы" #: ../../mod/profiles.php:564 msgid "Books, literature" -msgstr "" +msgstr "Книги, литература" #: ../../mod/profiles.php:565 msgid "Television" -msgstr "" +msgstr "Телевидение" #: ../../mod/profiles.php:566 msgid "Film/dance/culture/entertainment" -msgstr "" +msgstr "Кино / танцы / культура / развлечения" #: ../../mod/profiles.php:567 msgid "Love/romance" -msgstr "" +msgstr "Любовь / Романс" #: ../../mod/profiles.php:568 msgid "Work/employment" -msgstr "" +msgstr "Работа / Занятость" #: ../../mod/profiles.php:569 msgid "School/education" -msgstr "" +msgstr "Школа / образование" #: ../../mod/profiles.php:574 msgid "" @@ -5416,27 +5416,27 @@ msgstr "" #: ../../mod/profiles.php:623 msgid "Edit/Manage Profiles" -msgstr "" +msgstr "Редактирование / Управление профилей" #: ../../mod/profiles.php:624 ../../boot.php:1629 msgid "Change profile photo" -msgstr "" +msgstr "Изменить фотографию профиля" #: ../../mod/profiles.php:625 ../../boot.php:1636 msgid "Create New Profile" -msgstr "" +msgstr "Создать новый профиль" #: ../../mod/profiles.php:636 ../../boot.php:1650 msgid "Profile Image" -msgstr "" +msgstr "Изображение профиля" #: ../../mod/profiles.php:639 ../../boot.php:1653 msgid "visible to everybody" -msgstr "" +msgstr "видно всем" #: ../../mod/profiles.php:640 ../../boot.php:1654 msgid "Edit visibility" -msgstr "" +msgstr "Редактировать видимость" #: ../../mod/new_channel.php:107 msgid "Add a Channel" @@ -5510,7 +5510,7 @@ msgstr "" #: ../../mod/lostpass.php:87 msgid "Your new password is" -msgstr "" +msgstr "Ваш новый пароль" #: ../../mod/lostpass.php:88 msgid "Save or copy your new password - and then" @@ -5518,7 +5518,7 @@ msgstr "" #: ../../mod/lostpass.php:89 msgid "click here to login" -msgstr "" +msgstr "нажмите здесь чтобы выйти" #: ../../mod/lostpass.php:90 msgid "" @@ -5529,11 +5529,11 @@ msgstr "" #: ../../mod/lostpass.php:107 #, php-format msgid "Your password has changed at %s" -msgstr "" +msgstr "Пароль изменен на %s" #: ../../mod/lostpass.php:122 msgid "Forgot your Password?" -msgstr "" +msgstr "Забыли пароль или логин?" #: ../../mod/lostpass.php:123 msgid "" @@ -5543,23 +5543,23 @@ msgstr "" #: ../../mod/lostpass.php:124 msgid "Email Address" -msgstr "" +msgstr "Адрес электронной почты" #: ../../mod/lostpass.php:125 msgid "Reset" -msgstr "" +msgstr "Сброс" #: ../../mod/import.php:36 msgid "Nothing to import." -msgstr "" +msgstr "Ничего импортировать." #: ../../mod/import.php:58 msgid "Unable to download data from old server" -msgstr "" +msgstr "Невозможно загрузить данные из старого сервера" #: ../../mod/import.php:64 msgid "Imported file is empty." -msgstr "" +msgstr "Импортированный файл пуст." #: ../../mod/import.php:88 msgid "" @@ -5576,11 +5576,11 @@ msgstr "" #: ../../mod/import.php:327 msgid "Import completed." -msgstr "" +msgstr "Импорт завершен." #: ../../mod/import.php:340 msgid "You must be logged in to use this feature." -msgstr "" +msgstr "Вы должны войти в систему, чтобы использовать эту функцию." #: ../../mod/import.php:345 msgid "Import Channel" @@ -5596,7 +5596,7 @@ msgstr "" #: ../../mod/import.php:347 msgid "File to Upload" -msgstr "" +msgstr "Файл для загрузки" #: ../../mod/import.php:348 msgid "Or provide the old server/hub details" @@ -5648,7 +5648,7 @@ msgstr "Канал по умолчанию" #: ../../mod/manage.php:69 msgid "Make Default" -msgstr "" +msgstr "Сделать стандартным" #: ../../mod/match.php:12 msgid "Profile Match" @@ -5660,7 +5660,7 @@ msgstr "" #: ../../mod/match.php:57 msgid "is interested in:" -msgstr "" +msgstr "заинтересован в:" #: ../../mod/crepair.php:102 msgid "Contact settings applied." @@ -5668,16 +5668,16 @@ msgstr "" #: ../../mod/crepair.php:104 msgid "Contact update failed." -msgstr "" +msgstr "Ошибка обновления контакта." #: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 #: ../../mod/fsuggest.php:92 msgid "Contact not found." -msgstr "" +msgstr "Контакт не найден." #: ../../mod/crepair.php:135 msgid "Repair Contact Settings" -msgstr "" +msgstr "Починить настройки контакта" #: ../../mod/crepair.php:137 msgid "" @@ -5693,7 +5693,7 @@ msgstr "" #: ../../mod/crepair.php:144 msgid "Return to contact editor" -msgstr "" +msgstr "Вернуться к редактору контакта" #: ../../mod/crepair.php:149 msgid "Account Nickname" @@ -5725,7 +5725,7 @@ msgstr "" #: ../../mod/crepair.php:156 msgid "New photo from this URL" -msgstr "" +msgstr "Новое фото из этого URL" #: ../../mod/zfinger.php:23 msgid "invalid target signature" @@ -5745,7 +5745,7 @@ msgstr "" #: ../../mod/profile_photo.php:102 msgid "Image resize failed." -msgstr "" +msgstr "Изменение размера изображения не удалось." #: ../../mod/profile_photo.php:139 msgid "" @@ -5764,19 +5764,19 @@ msgstr "" #: ../../mod/profile_photo.php:212 ../../mod/profile_photo.php:250 msgid "Photo not available." -msgstr "" +msgstr "Фотография не доступна." #: ../../mod/profile_photo.php:269 msgid "Upload File:" -msgstr "" +msgstr "Загрузить файл:" #: ../../mod/profile_photo.php:270 msgid "Select a profile:" -msgstr "" +msgstr "Выберите профиль:" #: ../../mod/profile_photo.php:271 msgid "Upload Profile Photo" -msgstr "" +msgstr "Загрузить фотографию профиля" #: ../../mod/profile_photo.php:272 msgid "Upload" @@ -5784,7 +5784,7 @@ msgstr "Загрузка" #: ../../mod/profile_photo.php:276 msgid "skip this step" -msgstr "" +msgstr "пропустить этот шаг" #: ../../mod/profile_photo.php:276 msgid "select a photo from your photo albums" @@ -5792,7 +5792,7 @@ msgstr "" #: ../../mod/profile_photo.php:290 msgid "Crop Image" -msgstr "" +msgstr "Обрезать изображение" #: ../../mod/profile_photo.php:291 msgid "Please adjust the image cropping for optimum viewing." @@ -5800,15 +5800,15 @@ msgstr "" #: ../../mod/profile_photo.php:293 msgid "Done Editing" -msgstr "" +msgstr "Закончить редактирование" #: ../../mod/profile_photo.php:326 msgid "Image uploaded successfully." -msgstr "" +msgstr "Загрузка изображениея прошла успешно." #: ../../mod/profile_photo.php:328 msgid "Image upload failed." -msgstr "" +msgstr "Загрузка изображениея прошла безуспешно." #: ../../mod/profile_photo.php:335 #, php-format @@ -5817,7 +5817,7 @@ msgstr "" #: ../../mod/editwebpage.php:30 ../../mod/editpost.php:18 msgid "Item not found" -msgstr "" +msgstr "Элемент не найден" #: ../../mod/editwebpage.php:63 ../../mod/editpost.php:38 msgid "Edit post" @@ -5825,15 +5825,15 @@ msgstr "Редактировать сообщение" #: ../../mod/editwebpage.php:101 ../../mod/editpost.php:80 msgid "Insert YouTube video" -msgstr "" +msgstr "Вставить YouTube видео" #: ../../mod/editwebpage.php:102 ../../mod/editpost.php:81 msgid "Insert Vorbis [.ogg] video" -msgstr "" +msgstr "Вставить Vorbis [.ogg] видео" #: ../../mod/editwebpage.php:103 ../../mod/editpost.php:82 msgid "Insert Vorbis [.ogg] audio" -msgstr "" +msgstr "Вставить Vorbis [.ogg] музыку" #: ../../mod/notifications.php:26 msgid "Invalid request identifier." @@ -5845,19 +5845,19 @@ msgstr "Система" #: ../../mod/notifications.php:96 msgid "Introductions" -msgstr "" +msgstr "Введения" #: ../../mod/notifications.php:121 msgid "Show Ignored Requests" -msgstr "" +msgstr "Показать проигнорированные запросы" #: ../../mod/notifications.php:121 msgid "Hide Ignored Requests" -msgstr "" +msgstr "Скрыть проигнорированные запросы" #: ../../mod/notifications.php:147 ../../mod/notifications.php:193 msgid "Notification type: " -msgstr "" +msgstr "Тип уведомления:" #: ../../mod/notifications.php:148 msgid "Friend Suggestion" @@ -5882,11 +5882,11 @@ msgstr "нет" #: ../../mod/notifications.php:186 msgid "Approve as: " -msgstr "" +msgstr "Утвердить в качестве:" #: ../../mod/notifications.php:187 msgid "Friend" -msgstr "" +msgstr "Друг" #: ../../mod/notifications.php:188 msgid "Sharer" @@ -5894,7 +5894,7 @@ msgstr "" #: ../../mod/notifications.php:188 msgid "Fan/Admirer" -msgstr "" +msgstr "Поклонник" #: ../../mod/notifications.php:194 msgid "Friend/Connect Request" @@ -5902,84 +5902,84 @@ msgstr "" #: ../../mod/notifications.php:194 msgid "New Follower" -msgstr "" +msgstr "Новый последователь" #: ../../mod/notifications.php:215 msgid "No introductions." -msgstr "" +msgstr "Введений нет." #: ../../mod/notifications.php:257 ../../mod/notifications.php:382 #: ../../mod/notifications.php:465 #, php-format msgid "%s liked %s's post" -msgstr "" +msgstr "%s нравится %s's сообщение" #: ../../mod/notifications.php:266 ../../mod/notifications.php:391 #: ../../mod/notifications.php:474 #, php-format msgid "%s disliked %s's post" -msgstr "" +msgstr "%s не нравится %s's сообщение" #: ../../mod/notifications.php:280 ../../mod/notifications.php:405 #: ../../mod/notifications.php:488 #, php-format msgid "%s is now friends with %s" -msgstr "" +msgstr "%s теперь в друзьях с %s" #: ../../mod/notifications.php:287 ../../mod/notifications.php:412 #, php-format msgid "%s created a new post" -msgstr "" +msgstr "%s создал новое сообщение" #: ../../mod/notifications.php:288 ../../mod/notifications.php:413 #: ../../mod/notifications.php:497 #, php-format msgid "%s commented on %s's post" -msgstr "" +msgstr "%s прокомментировал %s's сообщение" #: ../../mod/notifications.php:302 msgid "No more network notifications." -msgstr "" +msgstr "Больше никаких уведомлений сети." #: ../../mod/notifications.php:306 msgid "Network Notifications" -msgstr "" +msgstr "Уведомления сети" #: ../../mod/notifications.php:332 ../../mod/notify.php:54 msgid "No more system notifications." -msgstr "" +msgstr "Больше никаких уведомлений системы." #: ../../mod/notifications.php:336 ../../mod/notify.php:58 msgid "System Notifications" -msgstr "" +msgstr "Системные оповещения " #: ../../mod/notifications.php:427 msgid "No more personal notifications." -msgstr "" +msgstr "Больше никаких личных уведомлений." #: ../../mod/notifications.php:431 msgid "Personal Notifications" -msgstr "" +msgstr "Личные оповещения " #: ../../mod/notifications.php:504 msgid "No more home notifications." -msgstr "" +msgstr "Больше никаких домашних уведомлений." #: ../../mod/notifications.php:508 msgid "Home Notifications" -msgstr "" +msgstr "Домашние уведомления" #: ../../mod/oexchange.php:22 msgid "Post successful." -msgstr "" +msgstr "Публикация прошла успешно." #: ../../mod/editpost.php:29 msgid "Item is not editable" -msgstr "" +msgstr "Элемент нельзя редактировать" #: ../../mod/profile.php:111 msgid "Access to this profile has been restricted." -msgstr "" +msgstr "Доступ к этому профилю ограничен." #: ../../mod/poke.php:159 msgid "Poke/Prod" @@ -5991,7 +5991,7 @@ msgstr "" #: ../../mod/poke.php:161 msgid "Recipient" -msgstr "" +msgstr "Получатель" #: ../../mod/poke.php:162 msgid "Choose what you wish to do to recipient" @@ -5999,23 +5999,23 @@ msgstr "" #: ../../mod/poke.php:165 msgid "Make this post private" -msgstr "" +msgstr "Сделать это сообщение личным" #: ../../mod/community.php:23 msgid "Not available." -msgstr "" +msgstr "Недоступно." #: ../../mod/community.php:32 msgid "Community" -msgstr "" +msgstr "Сообщество" #: ../../mod/community.php:63 ../../mod/community.php:88 msgid "No results." -msgstr "" +msgstr "Ничего не найдено." #: ../../mod/fbrowser.php:113 msgid "Files" -msgstr "" +msgstr "Файлы" #: ../../mod/fsuggest.php:63 msgid "Friend suggestion sent." @@ -6023,7 +6023,7 @@ msgstr "" #: ../../mod/fsuggest.php:97 msgid "Suggest Friends" -msgstr "" +msgstr "Пригласить друзей" #: ../../mod/fsuggest.php:99 #, php-format @@ -6036,7 +6036,7 @@ msgstr "" #: ../../mod/profperm.php:110 msgid "Profile Visibility Editor" -msgstr "" +msgstr "Редактор видимости профиля" #: ../../mod/profperm.php:114 msgid "Click on a contact to add or remove." @@ -6044,16 +6044,16 @@ msgstr "" #: ../../mod/profperm.php:123 msgid "Visible To" -msgstr "" +msgstr "Видно" #: ../../mod/profperm.php:139 msgid "All Contacts (with secure profile access)" -msgstr "" +msgstr "Все контакты (с доступом защищенному профилю)" #: ../../mod/siteinfo.php:51 #, php-format msgid "Version %s" -msgstr "" +msgstr "Версия %s" #: ../../mod/siteinfo.php:65 msgid "Installed plugins/addons/apps:" @@ -6101,7 +6101,7 @@ msgstr "" #: ../../mod/suggest.php:58 msgid "Ignore/Hide" -msgstr "" +msgstr "Игнорировать / Скрыть" #: ../../mod/register.php:35 msgid "Maximum daily site registrations exceeded. Please try again tomorrow." @@ -6156,11 +6156,11 @@ msgstr "" #: ../../mod/register.php:173 msgid "Your email address" -msgstr "" +msgstr "Ваш адрес электронной почты" #: ../../mod/register.php:174 msgid "Choose a password" -msgstr "" +msgstr "Выберите пароль" #: ../../mod/register.php:175 msgid "Please re-enter your password" @@ -6168,7 +6168,7 @@ msgstr "" #: ../../mod/regmod.php:12 msgid "Please login." -msgstr "" +msgstr "Войдите пожалуйста." #: ../../mod/removeme.php:45 ../../mod/removeme.php:48 msgid "Remove My Account" @@ -6196,7 +6196,7 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:156 #: ../../view/theme/redstrap/php/config.php:133 msgid "Theme settings" -msgstr "" +msgstr "Настройки темы" #: ../../view/theme/redbasic/php/config.php:139 #: ../../view/theme/redbasic/php/config.php:157 @@ -6239,7 +6239,7 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:146 #: ../../view/theme/redstrap/php/config.php:141 msgid "Icons" -msgstr "" +msgstr "Значки" #: ../../view/theme/redbasic/php/config.php:147 #: ../../view/theme/redstrap/php/config.php:142 @@ -6252,7 +6252,7 @@ msgstr "" #: ../../view/theme/redbasic/php/config.php:148 msgid "0-99 default: 5" -msgstr "" +msgstr "0-99 по умолчанию: 5" #: ../../boot.php:1185 #, php-format @@ -6274,11 +6274,11 @@ msgstr "Пароль" #: ../../boot.php:1355 msgid "Remember me" -msgstr "" +msgstr "Запомнить" #: ../../boot.php:1360 msgid "Forgot your password?" -msgstr "" +msgstr "Забыли пароль или логин?" #: ../../boot.php:1479 msgid "Requested channel is not available." @@ -6290,39 +6290,39 @@ msgstr "" #: ../../boot.php:1635 msgid "Profiles" -msgstr "" +msgstr "Профили" #: ../../boot.php:1635 msgid "Manage/edit profiles" -msgstr "" +msgstr "Управление / Редактирование профилей" #: ../../boot.php:1639 msgid "Edit Profile" -msgstr "" +msgstr "Редактировать профиль" #: ../../boot.php:1717 ../../boot.php:1797 msgid "F d" -msgstr "" +msgstr "F d" #: ../../boot.php:1774 msgid "Birthday Reminders" -msgstr "" +msgstr "Напоминания о Днях Рождения" #: ../../boot.php:1775 msgid "Birthdays this week:" -msgstr "" +msgstr "Дни Рождения на этой неделе:" #: ../../boot.php:1830 msgid "[No description]" -msgstr "" +msgstr "[без описания]" #: ../../boot.php:1848 msgid "Event Reminders" -msgstr "" +msgstr "Напоминания мероприятий" #: ../../boot.php:1849 msgid "Events this week:" -msgstr "" +msgstr "Мероприятия на этой неделе:" #: ../../boot.php:2072 msgid "Channel" @@ -6334,19 +6334,19 @@ msgstr "" #: ../../boot.php:2079 msgid "About" -msgstr "" +msgstr "О себе" #: ../../boot.php:2082 msgid "Profile Details" -msgstr "" +msgstr "Сведения о профиле" #: ../../boot.php:2100 msgid "Events and Calendar" -msgstr "" +msgstr "Мероприятия и календарь" #: ../../boot.php:2105 msgid "Webpages" -msgstr "" +msgstr "Личные нотиции" #: ../../boot.php:2108 msgid "Manage Webpages" diff --git a/view/ru/strings.php b/view/ru/strings.php index 03d38589a..0bbedbc3f 100644 --- a/view/ru/strings.php +++ b/view/ru/strings.php @@ -9,8 +9,8 @@ $a->strings["show"] = "показывать"; $a->strings["don't show"] = "не показывать"; $a->strings[" and "] = "и"; $a->strings["public profile"] = "Публичный профиль"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -$a->strings["Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; +$a->strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s's %2\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; $a->strings["Public Timeline"] = "Публичная шкала временни"; $a->strings["Red Matrix Notification"] = "Уведомления Red матрицы"; @@ -19,7 +19,7 @@ $a->strings["%s Administrator"] = "%s администратор"; $a->strings["%s <!item_type!>"] = "%s <!item_type!>"; $a->strings["[Red:Notify] New mail received at %s"] = ""; $a->strings["%1\$s sent you a new private message at %2\$s."] = ""; -$a->strings["%1\$s sent you %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; $a->strings["a private message"] = "личное сообщение"; $a->strings["Please visit %s to view and/or reply to your private messages."] = ""; $a->strings["%1\$s commented on [zrl=%2\$s]a %3\$s[/zrl]"] = ""; @@ -51,8 +51,8 @@ $a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from $a->strings["Name:"] = "Имя:"; $a->strings["Photo:"] = "Фото:"; $a->strings["Please visit %s to approve or reject the suggestion."] = ""; -$a->strings["Connect"] = "Подключить"; -$a->strings["New window"] = ""; +$a->strings["Connect"] = "Добавить"; +$a->strings["New window"] = "Новое окно"; $a->strings["Open the selected location in a different window or browser tab"] = ""; $a->strings["Poke"] = ""; $a->strings["View Status"] = "Просмотр состояния"; @@ -76,16 +76,16 @@ $a->strings["Monthly"] = "Ежемесячно"; $a->strings["Friendica"] = "Friendica"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Email"; +$a->strings["Email"] = "E-mail"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["Facebook"] = "Facebook"; $a->strings["Zot!"] = "Zot!"; $a->strings["LinkedIn"] = "LinkedIn"; $a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["MySpace"] = "MySpace"; -$a->strings["Add New Connection"] = "Добавить новую связь"; -$a->strings["Enter the channel address"] = ""; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = ""; +$a->strings["Add New Connection"] = "Добавить новый контакт"; +$a->strings["Enter the channel address"] = "Введите адрес вашего канала"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; $a->strings["%d invitation available"] = array( 0 => "", 1 => "", @@ -93,20 +93,20 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find Channels"] = "Поиск каналов"; $a->strings["Enter name or interest"] = "Впишите имя или интерес"; -$a->strings["Connect/Follow"] = "Подключить/следовать"; +$a->strings["Connect/Follow"] = "Добавить/следовать"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; $a->strings["Find"] = "Поиск"; -$a->strings["Channel Suggestions"] = "Предложения каналов"; +$a->strings["Channel Suggestions"] = "Рекомендации контактов"; $a->strings["Similar Interests"] = "Похожие интересы"; -$a->strings["Random Profile"] = "Случайные профиля"; +$a->strings["Random Profile"] = "Случайные"; $a->strings["Invite Friends"] = "Пригласить друзей"; -$a->strings["Saved Folders"] = "Сохраненные папки"; +$a->strings["Saved Folders"] = "Запомненные папки"; $a->strings["Everything"] = "Все"; $a->strings["Categories"] = "Категории"; $a->strings["%d connection in common"] = array( 0 => "%d совместная связь", 1 => "%d совместные связи", - 2 => "%d совместные связи", + 2 => "%d совместные контакты", ); $a->strings["show more"] = "показать больше"; $a->strings["Miscellaneous"] = "Прочее"; @@ -116,12 +116,12 @@ $a->strings["day"] = "день"; $a->strings["never"] = "никогда"; $a->strings["less than a second ago"] = "менее чем одну секунду назад"; $a->strings["years"] = "лет"; -$a->strings["months"] = "месяцев"; +$a->strings["months"] = "мес."; $a->strings["week"] = "неделя"; $a->strings["weeks"] = "недель"; $a->strings["days"] = "дней"; $a->strings["hour"] = "час"; -$a->strings["hours"] = "часов"; +$a->strings["hours"] = "час."; $a->strings["minute"] = "минута"; $a->strings["minutes"] = "минут"; $a->strings["second"] = "секунда"; @@ -129,17 +129,17 @@ $a->strings["seconds"] = "секунд"; $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; $a->strings["Cannot locate DNS info for database server '%s'"] = ""; $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["Starts:"] = "Начало:"; +$a->strings["Finishes:"] = "\t\nКонец:"; +$a->strings["Location:"] = "Откуда:"; $a->strings["General Features"] = "Главные функции"; $a->strings["Content Expiration"] = ""; $a->strings["Remove old posts/comments after a period of time"] = ""; -$a->strings["Multiple Profiles"] = ""; +$a->strings["Multiple Profiles"] = "Несколько профилей"; $a->strings["Ability to create multiple profiles"] = ""; -$a->strings["Web Pages"] = ""; +$a->strings["Web Pages"] = "Веб-страницы"; $a->strings["Provide managed web pages on your channel"] = ""; -$a->strings["Enhanced Photo Albums"] = ""; +$a->strings["Enhanced Photo Albums"] = "Расширенные фотоальбомы"; $a->strings["Enable photo album with enhanced features"] = ""; $a->strings["Extended Identity Sharing"] = ""; $a->strings[" "] = " "; @@ -155,7 +155,7 @@ $a->strings["Search by Date"] = "Поиск по дате"; $a->strings["Ability to select posts by date ranges"] = ""; $a->strings["Collections Filter"] = "Фильтр коллекций"; $a->strings["Enable widget to display Network posts only from selected collections"] = ""; -$a->strings["Saved Searches"] = "Сохраненные поиски"; +$a->strings["Saved Searches"] = "Запомненные поиски"; $a->strings["Save search terms for re-use"] = ""; $a->strings["Network Personal Tab"] = ""; $a->strings["Enable tab to display only Network posts that you've interacted on"] = ""; @@ -168,16 +168,16 @@ $a->strings["Multiple Deletion"] = "Множественное удаление" $a->strings["Select and delete multiple posts/comments at once"] = ""; $a->strings["Edit Sent Posts"] = "Редактировать отправленные сообщения"; $a->strings["Edit and correct posts and comments after sending"] = ""; -$a->strings["Tagging"] = ""; +$a->strings["Tagging"] = "Пометка"; $a->strings["Ability to tag existing posts"] = ""; -$a->strings["Post Categories"] = ""; +$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["Star Posts"] = ""; +$a->strings["Star Posts"] = "Помечать сообщения"; $a->strings["Ability to mark special posts with a star indicator"] = ""; -$a->strings["Tag Cloud"] = ""; +$a->strings["Tag Cloud"] = "Облако тегов"; $a->strings["Provide a personal tag cloud on your channel page"] = ""; $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."] = ""; $a->strings["Default privacy group for new contacts"] = ""; @@ -185,7 +185,7 @@ $a->strings["All Channels"] = "Все каналы"; $a->strings["edit"] = "редактировать"; $a->strings["Collections"] = "Коллекции"; $a->strings["Edit collection"] = "Редактировать коллекцию"; -$a->strings["Create a new collection"] = ""; +$a->strings["Create a new collection"] = "Создать новую коллекцию"; $a->strings["Channels not in any collection"] = "Каналы не в какой коллекции"; $a->strings["add"] = "добавить"; $a->strings["Delete this item?"] = "Удалить этот элемент?"; @@ -198,15 +198,15 @@ $a->strings["timeago.prefixAgo"] = ""; $a->strings["timeago.suffixAgo"] = ""; $a->strings["ago"] = "тому назад"; $a->strings["from now"] = ""; -$a->strings["less than a minute"] = ""; +$a->strings["less than a minute"] = "менее чем одну минуту назад"; $a->strings["about a minute"] = "около минуты"; -$a->strings["%d minutes"] = "%d минут"; +$a->strings["%d minutes"] = "%d мин."; $a->strings["about an hour"] = "около часа"; -$a->strings["about %d hours"] = "около %d часов"; +$a->strings["about %d hours"] = "около %d час."; $a->strings["a day"] = "день"; $a->strings["%d days"] = "%d дней"; $a->strings["about a month"] = "около месяца"; -$a->strings["%d months"] = "%d месяцев"; +$a->strings["%d months"] = "%d мес."; $a->strings["about a year"] = "около года"; $a->strings["%d years"] = "%d лет"; $a->strings["timeago.numbers"] = ""; @@ -219,22 +219,22 @@ $a->strings["Profile Photos"] = "Фотографии профиля"; $a->strings["Profile"] = "Профиль"; $a->strings["Full Name:"] = "Полное имя:"; $a->strings["Gender:"] = "Пол:"; -$a->strings["j F, Y"] = ""; -$a->strings["j F"] = ""; -$a->strings["Birthday:"] = "День рождения:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "День Рождения:"; $a->strings["Age:"] = "Возраст:"; $a->strings["Status:"] = "Статус:"; $a->strings["for %1\$d %2\$s"] = "для %1\$d %2\$s"; $a->strings["Sexual Preference:"] = "Сексуальная ориентация:"; $a->strings["Homepage:"] = "Домашняя страница:"; -$a->strings["Hometown:"] = ""; +$a->strings["Hometown:"] = "Родной город:"; $a->strings["Tags:"] = "Тэги:"; $a->strings["Political Views:"] = "Политические взгляды:"; $a->strings["Religion:"] = "Религия:"; $a->strings["About:"] = "О себе:"; $a->strings["Hobbies/Interests:"] = "Хобби / интересы:"; -$a->strings["Likes:"] = "Оценки \"Нравится\":"; -$a->strings["Dislikes:"] = "Оценки \"Не-Нравится\":"; +$a->strings["Likes:"] = "Что вам нравится:"; +$a->strings["Dislikes:"] = "Что вам не нравится:"; $a->strings["Contact information and Social Networks:"] = "Контактная информация и социальные сети:"; $a->strings["Musical interests:"] = "Музыкальные интересы:"; $a->strings["Books, literature:"] = "Книги, литература:"; @@ -261,16 +261,16 @@ $a->strings["Edit Profiles"] = "Редактирование профилей"; $a->strings["Manage/Edit Profiles"] = "Управление / Редактирование профилей"; $a->strings["Photos"] = "Фотографии"; $a->strings["Your photos"] = "Ваши фотографии"; -$a->strings["Login"] = "Вход"; +$a->strings["Login"] = "Войти"; $a->strings["Sign in"] = "Войти"; -$a->strings["%s - click to logout"] = ""; +$a->strings["%s - click to logout"] = "%s - нажмите чтобы выйти"; $a->strings["Click to authenticate to your home hub"] = ""; $a->strings["Home Page"] = "Моя страница"; $a->strings["Register"] = "Регистрация"; $a->strings["Create an account"] = "Создать аккаунт"; $a->strings["Help"] = "Помощь"; $a->strings["Help and documentation"] = "Справочная информация и документация"; -$a->strings["Apps"] = "Apps"; +$a->strings["Apps"] = "Приложения"; $a->strings["Addon applications, utilities, games"] = ""; $a->strings["Search"] = "Поиск"; $a->strings["Search site content"] = "Поиск содержания по сайту"; @@ -278,24 +278,24 @@ $a->strings["Directory"] = "Каталог"; $a->strings["Channel Locator"] = "Локатор каналов"; $a->strings["Matrix"] = "Матрица"; $a->strings["Conversations from your grid"] = ""; -$a->strings["See all matrix notifications"] = "Просмотреть все уведомления матрицы"; -$a->strings["Mark all matrix notifications seen"] = "Отметить все уведомления матрицы как видел"; -$a->strings["See all channel notifications"] = "Просмотреть все уведомления канала"; -$a->strings["Mark all channel notifications seen"] = "Отметить все уведомления канала как видел"; -$a->strings["Intros"] = "Заставки"; -$a->strings["New Connections"] = "Новые связи"; +$a->strings["See all matrix notifications"] = "Просмотреть все оповещения матрицы"; +$a->strings["Mark all matrix notifications seen"] = "Пометить все оповещения матрицы как видел"; +$a->strings["See all channel notifications"] = "Просмотреть все оповещения канала"; +$a->strings["Mark all channel notifications seen"] = "Пометить все оповещения канала как видел"; +$a->strings["Intros"] = "Контакты"; +$a->strings["New Connections"] = "Новые контакты"; $a->strings["See all channel introductions"] = "Просмотреть все введения канала"; -$a->strings["Notices"] = "Заметки"; -$a->strings["Notifications"] = "Уведомления"; -$a->strings["See all notifications"] = "Просмотреть все уведомления"; -$a->strings["Mark all system notifications seen"] = "Отметить все уведомления как видел"; -$a->strings["Mail"] = "Mail"; -$a->strings["Private mail"] = "Личные mail"; +$a->strings["Notices"] = "Оповещения"; +$a->strings["Notifications"] = "Оповещения"; +$a->strings["See all notifications"] = "Просмотреть все оповещения"; +$a->strings["Mark all system notifications seen"] = "Пометить все оповещения как видел"; +$a->strings["Mail"] = "Эл. почта"; +$a->strings["Private mail"] = "Личная эл. почта"; $a->strings["See all private messages"] = "Просмотреть все личные сообщения"; $a->strings["Mark all private messages seen"] = "Отметить все личные сообщения как видел"; $a->strings["Inbox"] = "Входящие"; $a->strings["Outbox"] = "Исходящие"; -$a->strings["New Message"] = "Новое сообщение"; +$a->strings["New Message"] = "Новая переписка"; $a->strings["Events"] = "Мероприятия"; $a->strings["Event Calendar"] = "Календарь мероприятий"; $a->strings["See all events"] = "Показать все мероприятия"; @@ -304,9 +304,9 @@ $a->strings["Channel Select"] = "Выбор канала"; $a->strings["Manage Your Channels"] = "Управление каналов"; $a->strings["Settings"] = "Настройки"; $a->strings["Account/Channel Settings"] = "Настройки аккаунта/канала"; -$a->strings["Connections"] = "Связи"; +$a->strings["Connections"] = "Контакты"; $a->strings["Manage/Edit Friends and Connections"] = ""; -$a->strings["Admin"] = "Админ"; +$a->strings["Admin"] = "Администрация Сайта"; $a->strings["Site Setup and Configuration"] = "Установка и конфигурации сайта"; $a->strings["Nothing new here"] = "Ничего нового здесь"; $a->strings["Please wait..."] = "Подождите пожалуйста ..."; @@ -316,7 +316,7 @@ $a->strings["Embedded content"] = ""; $a->strings["Embedding disabled"] = ""; $a->strings["Permission denied."] = "Доступ запрещен."; $a->strings["Image exceeds website size limit of %lu bytes"] = ""; -$a->strings["Image file is empty."] = ""; +$a->strings["Image file is empty."] = "файл пуст."; $a->strings["Unable to process image"] = ""; $a->strings["Photo storage failed."] = ""; $a->strings["Photo Albums"] = "Фотоальбомы"; @@ -357,14 +357,14 @@ $a->strings["Infatuated"] = "Влюбленный"; $a->strings["Dating"] = ""; $a->strings["Unfaithful"] = "Неверный"; $a->strings["Sex Addict"] = "Секс наркоман"; -$a->strings["Friends"] = "Доброжелательный"; +$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["Partners"] = "Партнеры"; +$a->strings["Cohabiting"] = "Сожительствующие"; $a->strings["Common law"] = ""; $a->strings["Happy"] = "Счастливый"; $a->strings["Not looking"] = ""; @@ -386,7 +386,7 @@ $a->strings["An invitation is required."] = ""; $a->strings["Invitation could not be verified."] = ""; $a->strings["Please enter the required information."] = ""; $a->strings["Failed to store account information."] = ""; -$a->strings["Registration request at %s"] = ""; +$a->strings["Registration request at %s"] = "Требуется регистрация на %s"; $a->strings["Administrator"] = "Администратор"; $a->strings["your registration password"] = "Ваш пароль регистрации"; $a->strings["Registration details for %s"] = "Регистрационные данные для %s"; @@ -405,20 +405,20 @@ $a->strings["This action is not available under your subscription plan."] = ""; $a->strings["Invalid data packet"] = ""; $a->strings["Unable to verify channel signature"] = "Невозможно проверить сигнатуру канала"; $a->strings["Unable to verify site signature for %s"] = ""; -$a->strings["prev"] = ""; -$a->strings["first"] = ""; -$a->strings["last"] = ""; -$a->strings["next"] = ""; -$a->strings["older"] = ""; -$a->strings["newer"] = ""; -$a->strings["No connections"] = ""; +$a->strings["prev"] = "предыдущий"; +$a->strings["first"] = "первый"; +$a->strings["last"] = "последний"; +$a->strings["next"] = "следующий"; +$a->strings["older"] = "старший"; +$a->strings["newer"] = "новее"; +$a->strings["No connections"] = "Нет контактов"; $a->strings["%d Connection"] = array( 0 => "%d Связи", 1 => "%d Связи", - 2 => "%d Связей", + 2 => "%d Контактов", ); -$a->strings["View Connections"] = "Просмотр связей"; -$a->strings["Save"] = "Сохранить"; +$a->strings["View Connections"] = "Просмотр контактов"; +$a->strings["Save"] = "Запомнить"; $a->strings["poke"] = ""; $a->strings["poked"] = ""; $a->strings["ping"] = ""; @@ -475,7 +475,7 @@ $a->strings["bytes"] = "байт"; $a->strings["remove"] = "удалить"; $a->strings["[remove]"] = "[удалить]"; $a->strings["Categories:"] = "Категории:"; -$a->strings["Filed under:"] = ""; +$a->strings["Filed under:"] = "Хранить под:"; $a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть"; $a->strings["link to source"] = "ссылка на источник"; $a->strings["default"] = "по умолчанию"; @@ -494,7 +494,7 @@ $a->strings["Channel discovery failed. Website may be down or misconfigured."] = $a->strings["Response from remote channel was not understood."] = ""; $a->strings["Response from remote channel was incomplete."] = ""; $a->strings["local account not found."] = "локальный аккаунт не найден."; -$a->strings["Cannot connect to yourself."] = ""; +$a->strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; $a->strings["Can view my \"public\" stream and posts"] = ""; $a->strings["Can view my \"public\" channel profile"] = ""; $a->strings["Can view my \"public\" photo albums"] = ""; @@ -524,14 +524,14 @@ $a->strings["likes"] = "мне нравиться"; $a->strings["dislike"] = "мне не-нравиться"; $a->strings["dislikes"] = "мне не-нравиться"; $a->strings["Item was not found."] = ""; -$a->strings["No source file."] = ""; +$a->strings["No source file."] = "Нет исходного файла."; $a->strings["Cannot locate file to replace"] = ""; $a->strings["Cannot locate file to revise/update"] = ""; $a->strings["File exceeds size limit of %d"] = ""; $a->strings["File upload failed. Possible system limit or action terminated."] = ""; $a->strings["Stored file could not be verified. Upload failed."] = ""; -$a->strings["Path not available."] = ""; -$a->strings["Private Message"] = ""; +$a->strings["Path not available."] = "Путь недоступен."; +$a->strings["Private Message"] = "Личное сообщение"; $a->strings["Edit"] = "Редактировать"; $a->strings["Delete"] = "Удалить"; $a->strings["Select"] = "Выбрать"; @@ -539,11 +539,11 @@ $a->strings["save to folder"] = "сохранить в папку"; $a->strings["add star"] = "добавить маркировку"; $a->strings["remove star"] = "удалить маркировку"; $a->strings["toggle star status"] = ""; -$a->strings["starred"] = "маркированные"; -$a->strings["add tag"] = "добавить таг"; +$a->strings["starred"] = "помеченные"; +$a->strings["add tag"] = "добавить тег"; $a->strings["I like this (toggle)"] = ""; $a->strings["I don't like this (toggle)"] = ""; -$a->strings["Share this"] = ""; +$a->strings["Share this"] = "Поделиться этим"; $a->strings["share"] = "поделиться"; $a->strings["View %s's profile - %s"] = ""; $a->strings["to"] = "к"; @@ -552,9 +552,9 @@ $a->strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; $a->strings[" from %s"] = " от %s"; $a->strings["Please wait"] = "Подождите пожалуйста"; $a->strings["%d comment"] = array( - 0 => "%d комментар", - 1 => "%d комментаров", - 2 => "%d комментаров", + 0 => "%d комментарий", + 1 => "%d комментариев", + 2 => "%d комментариев", ); $a->strings["This is you"] = "Это вы"; $a->strings["Submit"] = "Отправить"; @@ -620,17 +620,17 @@ $a->strings["%s's birthday"] = "%s's День Рождения"; $a->strings["Happy Birthday %s"] = "С Днем Рождения %s"; $a->strings["[Name Withheld]"] = ""; $a->strings["A new person is sharing with you at "] = ""; -$a->strings["You have a new follower at "] = ""; +$a->strings["You have a new follower at "] = "У вас есть новый последователь в"; $a->strings["Item not found."] = "Элемент не найден."; $a->strings["Archives"] = "Архивы"; $a->strings["Collection not found."] = "Коллекция не найдена."; $a->strings["Collection has no members."] = ""; -$a->strings["Connection not found."] = "Связь не найдена."; +$a->strings["Connection not found."] = "Контакт не найден."; $a->strings["No channel."] = "Не канал."; -$a->strings["Common connections"] = "Общие связи"; -$a->strings["No connections in common."] = "Общих связей нет."; +$a->strings["Common connections"] = "Общие контакты"; +$a->strings["No connections in common."] = "Общих контактов нет."; $a->strings["Event title and start time are required."] = ""; -$a->strings["l, F j"] = ""; +$a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Редактировать мероприятие"; $a->strings["Create New Event"] = "Создать новое мероприятие"; $a->strings["Previous"] = "Предыдущая"; @@ -638,10 +638,10 @@ $a->strings["Next"] = "Следующая"; $a->strings["hour:minute"] = "часы:минуты"; $a->strings["Event details"] = "Детали мероприятия"; $a->strings["Format is %s %s. Starting date and Title are required."] = "Формат: %s %s. Дата начала и название необходимы."; -$a->strings["Event Starts:"] = ""; +$a->strings["Event Starts:"] = "Начало мероприятий:"; $a->strings["Required"] = "Необходимо"; $a->strings["Finish date/time is not known or not relevant"] = ""; -$a->strings["Event Finishes:"] = ""; +$a->strings["Event Finishes:"] = "\t\nКонец мероприятий:"; $a->strings["Adjust for viewer timezone"] = ""; $a->strings["Description:"] = "Описание:"; $a->strings["Title:"] = "Название:"; @@ -651,13 +651,13 @@ $a->strings["thing/stuff added"] = ""; $a->strings["OBJ: %1\$s %2\$s %3\$s"] = ""; $a->strings["not yet implemented."] = ""; $a->strings["Add Stuff to your Profile"] = ""; -$a->strings["Select a profile"] = ""; +$a->strings["Select a profile"] = "Выберите профиль"; $a->strings["Select a category of stuff. e.g. I ______ something"] = ""; $a->strings["Name of thing or stuff e.g. something"] = ""; $a->strings["URL of thing or stuff (optional)"] = ""; $a->strings["URL for photo of thing or stuff (optional)"] = ""; $a->strings["Total invitation limit exceeded."] = ""; -$a->strings["%s : Not a valid email address."] = ""; +$a->strings["%s : Not a valid email address."] = "%s : Не действительный адрес электронной почты."; $a->strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red"; $a->strings["Invitation limit exceeded. Please contact your site administrator."] = ""; $a->strings["%s : Message delivery failed."] = ""; @@ -671,17 +671,17 @@ $a->strings["Visit %s for a list of public sites that you can join. Friendica me $a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; $a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; $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["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."] = ""; $a->strings["You will need to supply this invitation code: \$invite_code"] = ""; $a->strings["Once you have registered, please connect with me via my profile page at:"] = ""; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; -$a->strings["Friends of %s"] = ""; +$a->strings["Friends of %s"] = "Друзья %s"; $a->strings["No friends to display."] = "Нет друзей для показа."; -$a->strings["Requested profile is not available."] = ""; -$a->strings["View"] = ""; +$a->strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен."; +$a->strings["View"] = "Просмотр"; $a->strings["Authorize application connection"] = ""; $a->strings["Return to your app and insert this Securty Code:"] = ""; $a->strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; @@ -690,7 +690,7 @@ $a->strings["Yes"] = "Да"; $a->strings["No"] = "Нет"; $a->strings["No installed applications."] = ""; $a->strings["Applications"] = "Приложения"; -$a->strings["Invalid item."] = ""; +$a->strings["Invalid item."] = "Недействительный элемент."; $a->strings["Channel not found."] = "Канал не найден."; $a->strings["Item not available."] = "Элемент недоступен."; $a->strings["Red Matrix Server - Setup"] = "Red Matrix Сервер - Установка"; @@ -699,7 +699,7 @@ $a->strings["Could not connect to specified site URL. Possible SSL certificate o $a->strings["Could not create table."] = "Не удалось создать таблицу."; $a->strings["Your site database has been installed."] = "Ваша база данных установлена."; $a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = ""; -$a->strings["Please see the file \"install/INSTALL.txt\"."] = ""; +$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."; $a->strings["System check"] = "Проверка системы"; $a->strings["Check again"] = "Проверить снова"; $a->strings["Database connection"] = "Подключение к базе данных"; @@ -713,7 +713,7 @@ $a->strings["Communication port number - use 0 for default"] = "Порт ком $a->strings["Database Login Name"] = "Имя для подключения к базе данных"; $a->strings["Database Login Password"] = "Пароль для подключения к базе данных"; $a->strings["Database Name"] = "Имя базы данных"; -$a->strings["Site administrator email address"] = "Адрес электронной почты администратора"; +$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["Website URL"] = "URL веб-сайта"; $a->strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно."; @@ -721,24 +721,24 @@ $a->strings["Please select a default timezone for your website"] = ""; $a->strings["Site settings"] = "Настройки сайта"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = ""; $a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -$a->strings["PHP executable path"] = ""; +$a->strings["PHP executable path"] = "PHP executable путь"; $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -$a->strings["Command line PHP"] = ""; +$a->strings["Command line PHP"] = "Command line PHP"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; $a->strings["This is required for message delivery to work."] = ""; -$a->strings["PHP register_argc_argv"] = ""; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; $a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; $a->strings["Generate encryption keys"] = ""; -$a->strings["libCurl PHP module"] = ""; -$a->strings["GD graphics PHP module"] = ""; -$a->strings["OpenSSL PHP module"] = ""; -$a->strings["mysqli PHP module"] = ""; -$a->strings["mb_string PHP module"] = ""; -$a->strings["mcrypt PHP module"] = ""; -$a->strings["Apache mod_rewrite module"] = ""; +$a->strings["libCurl PHP module"] = "libCurl PHP модуль"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; +$a->strings["mysqli PHP module"] = "mysqli PHP модуль"; +$a->strings["mb_string PHP module"] = "mb_string PHP модуль"; +$a->strings["mcrypt PHP module"] = "mcrypt PHP модуль"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite модуль"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -$a->strings["proc_open"] = ""; +$a->strings["proc_open"] = "proc_open"; $a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = ""; $a->strings["Error: libCURL PHP module required but not installed."] = ""; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; @@ -750,36 +750,36 @@ $a->strings["The web installer needs to be able to create a file called \".htcon $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 Red top folder."] = ""; $a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = ""; -$a->strings[".htconfig.php is writable"] = ""; +$a->strings[".htconfig.php is writable"] = ".htconfig.php доступен для записи"; $a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; $a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = ""; $a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = ""; $a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -$a->strings["view/tpl/smarty3 is writable"] = ""; -$a->strings["SSL certificate validation"] = ""; +$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 доступен для записи"; +$a->strings["SSL certificate validation"] = "проверка сертификата SSL"; $a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -$a->strings["Url rewrite is working"] = ""; +$a->strings["Url rewrite is working"] = "Url rewrite работает"; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; $a->strings["Errors encountered creating database tables."] = ""; $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["%1\$s is following %2\$s's %3\$s"] = ""; $a->strings["[Embedded content - reload page to view]"] = ""; -$a->strings["toggle full screen mode"] = ""; +$a->strings["toggle full screen mode"] = "переключение полноэкранного режима"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; $a->strings["Account settings"] = "Настройки аккаунта"; $a->strings["Channel settings"] = "Настройки канала"; $a->strings["Additional features"] = "Дополнительные функции"; $a->strings["Feature settings"] = "Настройки компонентов"; $a->strings["Display settings"] = "Настройки отображения"; -$a->strings["Connected apps"] = "Подключенные apps"; +$a->strings["Connected apps"] = "Подключенные приложения"; $a->strings["Export channel"] = "Экспорт канала"; -$a->strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (Дополнительно)"; +$a->strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (дополнительно)"; $a->strings["Missing some important data!"] = "Отсутствуют некоторые важные данные!"; $a->strings["Update"] = "Обновление"; $a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = ""; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; $a->strings["Password changed."] = "Пароль изменен."; $a->strings["Password update failed. Please try again."] = "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз."; $a->strings["Not valid email."] = "Не действительный адрес электронной почты."; @@ -789,15 +789,15 @@ $a->strings["Settings updated."] = "Настройки обновленны."; $a->strings["Add application"] = "Добавить приложения"; $a->strings["Cancel"] = "Отменить"; $a->strings["Name"] = "Имя"; -$a->strings["Consumer Key"] = ""; -$a->strings["Consumer Secret"] = ""; -$a->strings["Redirect"] = ""; -$a->strings["Icon url"] = ""; +$a->strings["Consumer Key"] = "Ключ клиента"; +$a->strings["Consumer Secret"] = "Секрет клиента"; +$a->strings["Redirect"] = "Перенаправление"; +$a->strings["Icon url"] = "URL-адрес значка"; $a->strings["You can't edit this application."] = ""; -$a->strings["Connected Apps"] = ""; +$a->strings["Connected Apps"] = "Подключенные приложения"; $a->strings["Client key starts with"] = ""; -$a->strings["No name"] = ""; -$a->strings["Remove authorization"] = ""; +$a->strings["No name"] = "Без названия"; +$a->strings["Remove authorization"] = "Удалить разрешение"; $a->strings["No feature settings configured"] = ""; $a->strings["Feature Settings"] = "Настройки функции"; $a->strings["Account Settings"] = "Настройки аккаунта"; @@ -805,7 +805,7 @@ $a->strings["Password Settings"] = "Настройки пароля"; $a->strings["New Password:"] = "Новый пароль:"; $a->strings["Confirm:"] = "Подтверждение:"; $a->strings["Leave password fields blank unless changing"] = ""; -$a->strings["Email Address:"] = "Email адрес:"; +$a->strings["Email Address:"] = "Адрес электронной почты:"; $a->strings["Remove Account"] = "Удалить аккаунт"; $a->strings["Warning: This action is permanent and cannot be reversed."] = ""; $a->strings["Off"] = "Выкл."; @@ -814,22 +814,22 @@ $a->strings["Additional Features"] = "Дополнительные функци $a->strings["Connector Settings"] = "Настройки соединителя"; $a->strings["No special theme for mobile devices"] = ""; $a->strings["Display Settings"] = "Настройки отображения"; -$a->strings["Display Theme:"] = ""; +$a->strings["Display Theme:"] = "Тема отображения:"; $a->strings["Mobile Theme:"] = ""; -$a->strings["Update browser every xx seconds"] = ""; -$a->strings["Minimum of 10 seconds, no maximum"] = ""; +$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые ХХ секунд"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума"; $a->strings["Maximum number of conversations to load at any time:"] = ""; -$a->strings["Maximum of 100 items"] = ""; +$a->strings["Maximum of 100 items"] = "Максимум 100 элементов"; $a->strings["Don't show emoticons"] = ""; -$a->strings["Nobody except yourself"] = ""; -$a->strings["Only those you specifically allow"] = ""; -$a->strings["Anybody in your address book"] = ""; -$a->strings["Anybody on this website"] = ""; -$a->strings["Anybody in this network"] = ""; -$a->strings["Anybody on the internet"] = ""; +$a->strings["Nobody except yourself"] = "Никто, кроме вас"; +$a->strings["Only those you specifically allow"] = "Только комы вы разрешили"; +$a->strings["Anybody in your address book"] = "Любой в вашей адресной книге"; +$a->strings["Anybody on this website"] = "Любой на этом веб-сайте"; +$a->strings["Anybody in this network"] = "Любой в этой сети"; +$a->strings["Anybody on the internet"] = "Любой в интернете"; $a->strings["Publish your default profile in the network directory"] = ""; $a->strings["Allow us to suggest you as a potential friend to new members?"] = ""; -$a->strings["or"] = ""; +$a->strings["or"] = "или"; $a->strings["Your channel address is"] = "Ваш адрес канала"; $a->strings["Automatically expire posts after this many days:"] = ""; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = ""; @@ -842,10 +842,10 @@ $a->strings["Only expire posts by others:"] = ""; $a->strings["Channel Settings"] = "Настройки канала"; $a->strings["Basic Settings"] = "Основные настройки"; $a->strings["Your Timezone:"] = ""; -$a->strings["Default Post Location:"] = ""; +$a->strings["Default Post Location:"] = "Откуда по умолчанию:"; $a->strings["Use Browser Location:"] = ""; -$a->strings["Security and Privacy Settings"] = ""; -$a->strings["Quick Privacy Settings:"] = ""; +$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности"; +$a->strings["Quick Privacy Settings:"] = "Быстрые параметры безопасности и конфиденциальности:"; $a->strings["Very Public - extremely permissive"] = ""; $a->strings["Typical - default public, privacy when desired"] = ""; $a->strings["Private - default private, rarely open or public"] = ""; @@ -853,7 +853,7 @@ $a->strings["Blocked - default blocked to/from everybody"] = ""; $a->strings["Maximum Friend Requests/Day:"] = ""; $a->strings["May reduce spam activity"] = ""; $a->strings["Default Post Permissions"] = ""; -$a->strings["(click to open/close)"] = ""; +$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)"; $a->strings["Maximum private messages per day from unknown people:"] = ""; $a->strings["Useful to reduce spamming"] = ""; $a->strings["Notification Settings"] = "Настройки уведомлений"; @@ -872,14 +872,14 @@ $a->strings["You are tagged in a post"] = ""; $a->strings["You are poked/prodded/etc. in a post"] = ""; $a->strings["Advanced Account/Page Type Settings"] = ""; $a->strings["Change the behaviour of this account for special situations"] = ""; -$a->strings["Public access denied."] = ""; -$a->strings["No connections."] = "Никаких связей."; +$a->strings["Public access denied."] = "Общественный доступ запрещен."; +$a->strings["No connections."] = "Никаких контактов."; $a->strings["Visit %s's profile [%s]"] = ""; -$a->strings["View Connnections"] = ""; -$a->strings["Tag removed"] = ""; -$a->strings["Remove Item Tag"] = ""; +$a->strings["View Connnections"] = "Просмотр контактов"; +$a->strings["Tag removed"] = "Тег удален"; +$a->strings["Remove Item Tag"] = "Удалить Тег"; $a->strings["Select a tag to remove: "] = ""; -$a->strings["Remove"] = ""; +$a->strings["Remove"] = "Удалить"; $a->strings["No potential page delegates located."] = ""; $a->strings["Delegate Page Management"] = ""; $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."] = ""; @@ -887,152 +887,152 @@ $a->strings["Existing Page Managers"] = ""; $a->strings["Existing Page Delegates"] = ""; $a->strings["Potential Delegates"] = ""; $a->strings["Add"] = "Добавить"; -$a->strings["No entries."] = ""; -$a->strings["Age: "] = ""; -$a->strings["Gender: "] = ""; -$a->strings["Finding:"] = ""; -$a->strings["next page"] = ""; -$a->strings["previous page"] = ""; +$a->strings["No entries."] = "Нет записей."; +$a->strings["Age: "] = "Возраст:"; +$a->strings["Gender: "] = "Пол:"; +$a->strings["Finding:"] = "Поиск:"; +$a->strings["next page"] = "следующая страница"; +$a->strings["previous page"] = "предыдущая страница"; $a->strings["No entries (some entries may be hidden)."] = ""; -$a->strings["People Search"] = ""; -$a->strings["No matches"] = ""; -$a->strings["Collection created."] = ""; -$a->strings["Could not create collection."] = ""; -$a->strings["Collection name changed."] = ""; -$a->strings["Create a collection of connections."] = "Создать новую коллекцию связей."; -$a->strings["Collection Name: "] = ""; -$a->strings["Collection removed."] = ""; +$a->strings["People Search"] = "Поиск людей"; +$a->strings["No matches"] = "Нет соответствий"; +$a->strings["Collection created."] = "Коллекция создана."; +$a->strings["Could not create collection."] = "Не удалось создать коллекцию."; +$a->strings["Collection name changed."] = "Имя коллекции изменено."; +$a->strings["Create a collection of connections."] = "Создать новую коллекцию контактов."; +$a->strings["Collection Name: "] = "Название коллекции:"; +$a->strings["Collection removed."] = "Коллекция удалена."; $a->strings["Unable to remove collection."] = ""; -$a->strings["Collection Editor"] = ""; -$a->strings["Members"] = ""; +$a->strings["Collection Editor"] = "Редактор коллекций"; +$a->strings["Members"] = "Участники"; $a->strings["All Connected Channels"] = "Все подключенные каналы"; $a->strings["Click on a channel to add or remove."] = ""; $a->strings["Page owner information could not be retrieved."] = ""; -$a->strings["Album not found."] = ""; -$a->strings["Delete Album"] = ""; -$a->strings["Delete Photo"] = ""; +$a->strings["Album not found."] = "Альбом не найден."; +$a->strings["Delete Album"] = "Удалить альбом"; +$a->strings["Delete Photo"] = "Удалить фотографию"; $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = ""; -$a->strings["a photo"] = ""; -$a->strings["No photos selected"] = ""; +$a->strings["a photo"] = "фотография"; +$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."] = ""; $a->strings["You have used %1$.2f Mbytes of photo storage."] = ""; -$a->strings["Upload Photos"] = ""; -$a->strings["New album name: "] = ""; -$a->strings["or existing album name: "] = ""; +$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["Permissions"] = ""; -$a->strings["Contact Photos"] = ""; -$a->strings["Edit Album"] = ""; -$a->strings["Show Newest First"] = ""; -$a->strings["Show Oldest First"] = ""; -$a->strings["View Photo"] = ""; +$a->strings["Permissions"] = "Разрешения"; +$a->strings["Contact Photos"] = "Фотографии контактов"; +$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["Use as profile photo"] = ""; -$a->strings["View Full Size"] = ""; -$a->strings["Edit photo"] = ""; -$a->strings["Rotate CW (right)"] = ""; -$a->strings["Rotate CCW (left)"] = ""; -$a->strings["New album name"] = ""; -$a->strings["Caption"] = ""; -$a->strings["Add a Tag"] = ""; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = ""; -$a->strings["View Album"] = ""; -$a->strings["Recent Photos"] = ""; -$a->strings["sent you a private message"] = ""; -$a->strings["added your channel"] = ""; -$a->strings["g A l F d"] = ""; -$a->strings["[today]"] = ""; +$a->strings["Photo not available"] = "Фотография не доступна"; +$a->strings["Use as profile photo"] = "Использовать в качестве фотографии профиля"; +$a->strings["View Full Size"] = "Посмотреть в полный размер"; +$a->strings["Edit photo"] = "Редактировать фотографию"; +$a->strings["Rotate CW (right)"] = "Повернуть CW (направо)"; +$a->strings["Rotate CCW (left)"] = "Повернуть CCW (налево)"; +$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["View Album"] = "Посмотреть фотоальбом"; +$a->strings["Recent Photos"] = "Последние фотографии"; +$a->strings["sent you a private message"] = "отправил вам личное сообщение"; +$a->strings["added your channel"] = "добавил ваш канал"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["[today]"] = "[сегодня]"; $a->strings["posted an event"] = ""; -$a->strings["Not found."] = ""; -$a->strings["- select -"] = ""; -$a->strings["Welcome to %s"] = ""; -$a->strings["Check Mail"] = "Проверить Mail"; +$a->strings["Not found."] = "Не найдено."; +$a->strings["- select -"] = "- выбрать -"; +$a->strings["Welcome to %s"] = "Добро пожаловать в %s"; +$a->strings["Check Mail"] = "Проверить Е-мail"; $a->strings["Unable to lookup recipient."] = ""; $a->strings["Unable to communicate with requested channel."] = ""; $a->strings["Cannot verify requested channel."] = ""; $a->strings["Selected channel has private message restrictions. Send failed."] = ""; -$a->strings["Messages"] = ""; -$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["Delete message"] = ""; -$a->strings["D, d M Y - g:i A"] = ""; -$a->strings["Message not found."] = ""; -$a->strings["Delete conversation"] = ""; +$a->strings["Messages"] = "Переписка"; +$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["Delete message"] = "Удалить сообщение"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["Message not found."] = "Сообщение не найдено."; +$a->strings["Delete conversation"] = "Удалить разговор"; $a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = ""; $a->strings["Send Reply"] = "Отправить снова"; -$a->strings["No profile"] = ""; -$a->strings["Help:"] = ""; -$a->strings["Not Found"] = ""; -$a->strings["Page not found."] = ""; -$a->strings["Remote Authentication"] = ""; -$a->strings["Enter your channel address (e.g. channel@example.com)"] = ""; -$a->strings["Authenticate"] = ""; -$a->strings["Unable to locate original post."] = ""; -$a->strings["Empty post discarded."] = ""; -$a->strings["System error. Post not saved."] = ""; -$a->strings["Wall Photos"] = ""; -$a->strings["Remove term"] = ""; -$a->strings["Commented Order"] = ""; -$a->strings["Sort by Comment Date"] = ""; -$a->strings["Posted Order"] = ""; -$a->strings["Sort by Post Date"] = ""; -$a->strings["Personal"] = ""; -$a->strings["Posts that mention or involve you"] = ""; -$a->strings["New"] = ""; -$a->strings["Activity Stream - by date"] = ""; -$a->strings["Starred"] = ""; -$a->strings["Favourite Posts"] = ""; -$a->strings["Spam"] = ""; -$a->strings["Posts flagged as SPAM"] = ""; -$a->strings["Refresh"] = ""; -$a->strings["Me"] = ""; -$a->strings["Best Friends"] = ""; -$a->strings["Co-workers"] = ""; -$a->strings["Former Friends"] = ""; -$a->strings["Acquaintances"] = ""; +$a->strings["No profile"] = "Профиль отсутствует"; +$a->strings["Help:"] = "Помощь:"; +$a->strings["Not Found"] = "Не найдено"; +$a->strings["Page not found."] = "Страница не найдена."; +$a->strings["Remote Authentication"] = "Удаленная аутентификация"; +$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например channel@example.com)"; +$a->strings["Authenticate"] = "Проверка подлинности"; +$a->strings["Unable to locate original post."] = "Не удалось найти оригинал."; +$a->strings["Empty post discarded."] = "Отказаться от пустой почты."; +$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; +$a->strings["Wall Photos"] = "Стена фотографий"; +$a->strings["Remove term"] = "Удалить термин"; +$a->strings["Commented Order"] = "По комментириям"; +$a->strings["Sort by Comment Date"] = "Сортировка по дате создания комментариев"; +$a->strings["Posted Order"] = "По добавлениям"; +$a->strings["Sort by Post Date"] = "Сортировка по дате создания сообщения"; +$a->strings["Personal"] = "Личные"; +$a->strings["Posts that mention or involve you"] = "Сообщения, в которых упоминули или вовлекли вас"; +$a->strings["New"] = "Новые"; +$a->strings["Activity Stream - by date"] = "Лента активности - по дате"; +$a->strings["Starred"] = "Помеченные"; +$a->strings["Favourite Posts"] = "Фаворит-сообщения"; +$a->strings["Spam"] = "Спам"; +$a->strings["Posts flagged as SPAM"] = "Как СПАМ помеченные сообщения"; +$a->strings["Refresh"] = "Обновить"; +$a->strings["Me"] = "Я"; +$a->strings["Best Friends"] = "Лучшие друзья"; +$a->strings["Co-workers"] = "Сотрудники"; +$a->strings["Former Friends"] = "Приятели"; +$a->strings["Acquaintances"] = "Знакомые"; $a->strings["Everybody"] = "Все"; -$a->strings["Search Results For:"] = ""; -$a->strings["No such group"] = ""; -$a->strings["Group is empty"] = ""; -$a->strings["Contact: "] = ""; -$a->strings["Invalid contact."] = ""; -$a->strings["Theme settings updated."] = ""; -$a->strings["Site"] = ""; -$a->strings["Users"] = ""; -$a->strings["Plugins"] = ""; -$a->strings["Themes"] = ""; -$a->strings["DB updates"] = ""; -$a->strings["Logs"] = ""; -$a->strings["Plugin Features"] = ""; -$a->strings["User registrations waiting for confirmation"] = ""; -$a->strings["Message queues"] = ""; -$a->strings["Administration"] = ""; -$a->strings["Summary"] = ""; -$a->strings["Registered users"] = ""; -$a->strings["Pending registrations"] = ""; -$a->strings["Version"] = ""; -$a->strings["Active plugins"] = ""; -$a->strings["Site settings updated."] = ""; +$a->strings["Search Results For:"] = "Результаты поиска для:"; +$a->strings["No such group"] = "Нет такой группы"; +$a->strings["Group is empty"] = "Группа пуста"; +$a->strings["Contact: "] = "Контакт: "; +$a->strings["Invalid contact."] = "Неправильный контакт."; +$a->strings["Theme settings updated."] = "Настройки темы обновленны."; +$a->strings["Site"] = "Сайт"; +$a->strings["Users"] = "Пользователи"; +$a->strings["Plugins"] = "Плагины"; +$a->strings["Themes"] = "Темы"; +$a->strings["DB updates"] = "Обновления базы данных"; +$a->strings["Logs"] = "Журналы"; +$a->strings["Plugin Features"] = "Функции плагинов"; +$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей ждут подтверждения"; +$a->strings["Message queues"] = "Очереди сообщений"; +$a->strings["Administration"] = "Администрация"; +$a->strings["Summary"] = "Резюме"; +$a->strings["Registered users"] = "Зарегистрированных пользователeй"; +$a->strings["Pending registrations"] = "В ожидании утверждения регистрации"; +$a->strings["Version"] = "Версия"; +$a->strings["Active plugins"] = "Активные плагины"; +$a->strings["Site settings updated."] = "Настройки сайта обновленны."; $a->strings["No special theme for accessibility"] = ""; -$a->strings["Closed"] = ""; -$a->strings["Requires approval"] = ""; -$a->strings["Open"] = ""; +$a->strings["Closed"] = "Закрыто"; +$a->strings["Requires approval"] = "Требует подтверждения"; +$a->strings["Open"] = "Открыто"; $a->strings["No SSL policy, links will track page SSL state"] = ""; -$a->strings["Force all links to use SSL"] = ""; -$a->strings["Registration"] = ""; -$a->strings["File upload"] = ""; -$a->strings["Policies"] = ""; -$a->strings["Advanced"] = ""; -$a->strings["Site name"] = ""; -$a->strings["Banner/Logo"] = ""; -$a->strings["System language"] = ""; -$a->strings["System theme"] = ""; +$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL"; +$a->strings["Registration"] = "Регистрация"; +$a->strings["File upload"] = "Загрузка файла"; +$a->strings["Policies"] = "Правила"; +$a->strings["Advanced"] = "Дополнительно"; +$a->strings["Site name"] = "Название сайта"; +$a->strings["Banner/Logo"] = "Баннер / логотип"; +$a->strings["System language"] = "Язык системы"; +$a->strings["System theme"] = "Тема системы"; $a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = ""; $a->strings["Mobile system theme"] = ""; $a->strings["Theme for mobile devices"] = ""; @@ -1040,12 +1040,12 @@ $a->strings["Accessibility system theme"] = ""; $a->strings["Accessibility theme"] = ""; $a->strings["Channel to use for this website's static pages"] = ""; $a->strings["Site Channel"] = "Канал сайта"; -$a->strings["SSL link policy"] = ""; +$a->strings["SSL link policy"] = "Правила SSL-ссылки"; $a->strings["Determines whether generated links should be forced to use SSL"] = ""; -$a->strings["Maximum image size"] = ""; +$a->strings["Maximum image size"] = "Максимальный размер изображения"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -$a->strings["Register policy"] = ""; -$a->strings["Register text"] = ""; +$a->strings["Register policy"] = "Правила регистрации"; +$a->strings["Register text"] = "Текст регистрации"; $a->strings["Will be displayed prominently on the registration page."] = ""; $a->strings["Accounts abandoned after x days"] = ""; $a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; @@ -1053,17 +1053,17 @@ $a->strings["Allowed friend domains"] = ""; $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; $a->strings["Allowed email domains"] = ""; $a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -$a->strings["Block public"] = ""; +$a->strings["Block public"] = "Блокировать публичный доступ"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -$a->strings["Force publish"] = ""; +$a->strings["Force publish"] = "Заставить публиковать"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -$a->strings["Proxy user"] = ""; -$a->strings["Proxy URL"] = ""; -$a->strings["Network timeout"] = ""; +$a->strings["Proxy user"] = "Proxy пользователь"; +$a->strings["Proxy URL"] = "Proxy URL"; +$a->strings["Network timeout"] = "Время ожидания сети"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -$a->strings["Delivery interval"] = ""; +$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."] = ""; -$a->strings["Poll interval"] = ""; +$a->strings["Poll interval"] = "Интервал опроса"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; $a->strings["Maximum Load Average"] = ""; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; @@ -1072,8 +1072,8 @@ $a->strings["Executing %s failed. Check system logs."] = ""; $a->strings["Update %s was successfully applied."] = ""; $a->strings["Update %s did not return a status. Unknown if it succeeded."] = ""; $a->strings["Update function %s could not be found."] = ""; -$a->strings["No failed updates."] = ""; -$a->strings["Failed Updates"] = ""; +$a->strings["No failed updates."] = "Ошибок обновлений нет."; +$a->strings["Failed Updates"] = "Обновления с ошибками"; $a->strings["Mark success (if update was manually applied)"] = ""; $a->strings["Attempt to execute this update step automatically"] = ""; $a->strings["%s user blocked/unblocked"] = array( @@ -1082,58 +1082,58 @@ $a->strings["%s user blocked/unblocked"] = array( 2 => "", ); $a->strings["%s user deleted"] = array( - 0 => "", - 1 => "", - 2 => "", + 0 => "%s пользователь удален", + 1 => "%s пользователи удалены", + 2 => "%s пользователи удалены", ); $a->strings["Account not found"] = "Аккаунт не найден"; -$a->strings["User '%s' deleted"] = ""; -$a->strings["User '%s' unblocked"] = ""; -$a->strings["User '%s' blocked"] = ""; +$a->strings["User '%s' deleted"] = "Пользователь '%s' удален"; +$a->strings["User '%s' unblocked"] = "Kontakt '%s' разрешен"; +$a->strings["User '%s' blocked"] = "Пользователь '%s' заблокирован"; $a->strings["Normal Account"] = "Нормальный аккаунт"; $a->strings["Soapbox Account"] = "Soapbox аккаунт"; $a->strings["Community/Celebrity Account"] = "Community/Celebrity аккаунт"; -$a->strings["Automatic Friend Account"] = ""; -$a->strings["select all"] = ""; -$a->strings["User registrations waiting for confirm"] = ""; -$a->strings["Request date"] = ""; -$a->strings["No registrations."] = ""; -$a->strings["Approve"] = ""; -$a->strings["Deny"] = ""; -$a->strings["Block"] = ""; -$a->strings["Unblock"] = ""; -$a->strings["Register date"] = ""; -$a->strings["Last login"] = ""; -$a->strings["Service Class"] = ""; +$a->strings["Automatic Friend Account"] = "Аккаунт \"автоматически друзья\""; +$a->strings["select all"] = "выбрать все"; +$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей ждут подтверждения"; +$a->strings["Request date"] = "Дата запроса"; +$a->strings["No registrations."] = "Регистраций нет."; +$a->strings["Approve"] = "Утвердить"; +$a->strings["Deny"] = "Запретить"; +$a->strings["Block"] = "Заблокировать"; +$a->strings["Unblock"] = "Разрешить"; +$a->strings["Register date"] = "Дата регистрации"; +$a->strings["Last login"] = "Последний вход"; +$a->strings["Service Class"] = "Класс службы"; $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -$a->strings["Plugin %s disabled."] = ""; -$a->strings["Plugin %s enabled."] = ""; -$a->strings["Disable"] = ""; -$a->strings["Enable"] = ""; -$a->strings["Toggle"] = ""; -$a->strings["Author: "] = ""; -$a->strings["Maintainer: "] = ""; -$a->strings["No themes found."] = ""; -$a->strings["Screenshot"] = ""; -$a->strings["[Experimental]"] = ""; -$a->strings["[Unsupported]"] = ""; -$a->strings["Log settings updated."] = ""; -$a->strings["Clear"] = ""; -$a->strings["Debugging"] = ""; -$a->strings["Log file"] = ""; +$a->strings["Plugin %s disabled."] = "Плагин %s отключен."; +$a->strings["Plugin %s enabled."] = "Плагин %s включен."; +$a->strings["Disable"] = "Запретить"; +$a->strings["Enable"] = "Разрешить"; +$a->strings["Toggle"] = "Переключить"; +$a->strings["Author: "] = "Автор: "; +$a->strings["Maintainer: "] = "Обслуживающий: "; +$a->strings["No themes found."] = "Темы не найдены."; +$a->strings["Screenshot"] = "Скриншот"; +$a->strings["[Experimental]"] = "[экспериментальный]"; +$a->strings["[Unsupported]"] = "[неподдерживаемый]"; +$a->strings["Log settings updated."] = "Настройки журнала обновленны."; +$a->strings["Clear"] = "Очистить"; +$a->strings["Debugging"] = "Отладка"; +$a->strings["Log file"] = "Файл журнала"; $a->strings["Must be writable by web server. Relative to your Red top-level directory."] = ""; -$a->strings["Log level"] = ""; -$a->strings["Ignore"] = ""; -$a->strings["Connection updated."] = "Связи обновленны."; -$a->strings["Connection update failed."] = "Ошибка обновления связи."; +$a->strings["Log level"] = "Уровень журнала"; +$a->strings["Ignore"] = "Игнорировать"; +$a->strings["Connection updated."] = "Контакт обновлен."; +$a->strings["Connection update failed."] = "Ошибка обновления контакта."; $a->strings["Introductions and Connection Requests"] = ""; $a->strings["No pending introductions."] = ""; -$a->strings["System error. Please try again later."] = ""; -$a->strings["Hide this contact from others"] = ""; +$a->strings["System error. Please try again later."] = "Системная ошибка. Пожалуйста, повторите попытку позже."; +$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других"; $a->strings["Post a new friend activity"] = ""; -$a->strings["if applicable"] = ""; -$a->strings["Discard"] = ""; +$a->strings["if applicable"] = "если это применимо"; +$a->strings["Discard"] = "Отменить"; $a->strings["Could not access contact record."] = ""; $a->strings["Could not locate selected profile."] = ""; $a->strings["Failed to update connection record."] = ""; @@ -1150,22 +1150,22 @@ $a->strings["Channel has been unhidden"] = "Канал открыт"; $a->strings["Channel has been hidden"] = "Канал скрыт"; $a->strings["Channel has been approved"] = "Канал одобрен"; $a->strings["Channel has been unapproved"] = "Канал не одобрен"; -$a->strings["Contact has been removed."] = ""; +$a->strings["Contact has been removed."] = "Контакт удален."; $a->strings["View %s's profile"] = ""; -$a->strings["Refresh Permissions"] = ""; +$a->strings["Refresh Permissions"] = "Обновить разрешения"; $a->strings["Fetch updated permissions"] = ""; -$a->strings["Block or Unblock this connection"] = "Запретить или разрешить эту связь"; -$a->strings["Unignore"] = ""; -$a->strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать эту связь"; -$a->strings["Unarchive"] = ""; -$a->strings["Archive"] = ""; -$a->strings["Archive or Unarchive this connection"] = " Заархивировать или Разархивировать эту связь"; -$a->strings["Unhide"] = ""; -$a->strings["Hide"] = ""; -$a->strings["Hide or Unhide this connection"] = "Скрыть или показывать эту связь"; -$a->strings["Delete this connection"] = "Удалить эту связь"; -$a->strings["Unknown"] = ""; -$a->strings["Approve this connection"] = "Утвердить эту связь"; +$a->strings["Block or Unblock this connection"] = "Запретить или разрешить этот контакт"; +$a->strings["Unignore"] = "Не игнорировать"; +$a->strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать этот контакт"; +$a->strings["Unarchive"] = "Разархивировать"; +$a->strings["Archive"] = "Заархивировать"; +$a->strings["Archive or Unarchive this connection"] = " Заархивировать или разархивировать этот контакт"; +$a->strings["Unhide"] = "Показать"; +$a->strings["Hide"] = "Скрыть"; +$a->strings["Hide or Unhide this connection"] = "Скрыть или показывать этот контакт"; +$a->strings["Delete this connection"] = "Удалить этот контакт"; +$a->strings["Unknown"] = "Неизвестный"; +$a->strings["Approve this connection"] = "Утвердить этот контакт"; $a->strings["Accept connection to allow communication"] = ""; $a->strings["Automatic Permissions Settings"] = "Настройки автоматических разрешений"; $a->strings["Connections: settings for %s"] = ""; @@ -1173,124 +1173,124 @@ $a->strings["When receiving a channel introduction, any permissions provided her $a->strings["Slide to adjust your degree of friendship"] = ""; $a->strings["Connection has no individual permissions!"] = ""; $a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\""] = ""; -$a->strings["Profile Visibility"] = ""; +$a->strings["Profile Visibility"] = "Видимость профиля"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -$a->strings["Contact Information / Notes"] = ""; -$a->strings["Edit contact notes"] = ""; +$a->strings["Contact Information / Notes"] = "Контактная информация / Примечания"; +$a->strings["Edit contact notes"] = "Редактировать примечания контакта"; $a->strings["Their Settings"] = "Их настройки"; $a->strings["My Settings"] = "Мои настройки"; -$a->strings["Forum Members"] = ""; +$a->strings["Forum Members"] = "Участники форума"; $a->strings["Soapbox"] = ""; -$a->strings["Full Sharing"] = ""; +$a->strings["Full Sharing"] = "Полный обмен"; $a->strings["Cautious Sharing"] = ""; -$a->strings["Follow Only"] = ""; -$a->strings["Individual Permissions"] = ""; +$a->strings["Follow Only"] = "Только следовать"; +$a->strings["Individual Permissions"] = "Индивидуальные разрешения"; $a->strings["Individual permissions are only enabled for <a href=\"settings\">privacy settings</a> which are set to \"Only those you specifically allow\". Otherwise they are controlled by your privacy settings."] = ""; -$a->strings["Advanced Permissions"] = ""; -$a->strings["Quick Links"] = ""; +$a->strings["Advanced Permissions"] = "Дополнительные разрешения"; +$a->strings["Quick Links"] = "Быстрые ссылки"; $a->strings["Visit %s's profile - %s"] = ""; -$a->strings["Block/Unblock contact"] = ""; -$a->strings["Ignore contact"] = ""; -$a->strings["Repair URL settings"] = ""; -$a->strings["View conversations"] = ""; -$a->strings["Delete contact"] = ""; -$a->strings["Last update:"] = ""; -$a->strings["Update public posts"] = ""; -$a->strings["Update now"] = ""; -$a->strings["Currently blocked"] = ""; -$a->strings["Currently ignored"] = ""; -$a->strings["Currently archived"] = ""; -$a->strings["Currently pending"] = ""; +$a->strings["Block/Unblock contact"] = "Запретить/разрешить контакт"; +$a->strings["Ignore contact"] = "Игнорировать контакт"; +$a->strings["Repair URL settings"] = "Ремонт настройки URL"; +$a->strings["View conversations"] = "Просмотр разговоров"; +$a->strings["Delete contact"] = "Удалить контакт"; +$a->strings["Last update:"] = "Последнее обновление:"; +$a->strings["Update public posts"] = "Обновить публичные сообщения"; +$a->strings["Update now"] = "Обновить сейчас"; +$a->strings["Currently blocked"] = "В настоящее время заблокирован"; +$a->strings["Currently ignored"] = "В настоящее время игнорируются"; +$a->strings["Currently archived"] = "В настоящее время зархивированны"; +$a->strings["Currently pending"] = "В настоящее время в ожидании"; $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = ""; -$a->strings["Blocked"] = ""; -$a->strings["Ignored"] = ""; -$a->strings["Hidden"] = ""; -$a->strings["Archived"] = ""; -$a->strings["All"] = ""; -$a->strings["Suggestions"] = ""; -$a->strings["Suggest new connections"] = "Предлагать новые связи"; -$a->strings["Show pending (new) connections"] = "Просмотр (новых) связей в ожидании"; -$a->strings["All Connections"] = "Все связи"; -$a->strings["Show all connections"] = "Просмотр всех связей"; -$a->strings["Unblocked"] = ""; -$a->strings["Only show unblocked connections"] = "Показать только разрешенные связи"; -$a->strings["Only show blocked connections"] = "Показать только заблокированные связи"; -$a->strings["Only show ignored connections"] = "Показать только проигнорированные связи"; -$a->strings["Only show archived connections"] = "Показать только архивированные связи"; -$a->strings["Only show hidden connections"] = "Показать только скрытые связи"; -$a->strings["%1\$s [%2\$s]"] = ""; -$a->strings["Edit contact"] = ""; -$a->strings["Search your connections"] = "Поиск ваших связей"; -$a->strings["Finding: "] = ""; -$a->strings["This site is not a directory server"] = ""; +$a->strings["Blocked"] = "Заблокированные"; +$a->strings["Ignored"] = "Игнорируемые"; +$a->strings["Hidden"] = "Скрытые"; +$a->strings["Archived"] = "Зархивированные"; +$a->strings["All"] = "Все"; +$a->strings["Suggestions"] = "Предложения"; +$a->strings["Suggest new connections"] = "Предлагать новые контакты"; +$a->strings["Show pending (new) connections"] = "Просмотр (новых) ждущих контактов"; +$a->strings["All Connections"] = "Все контакты"; +$a->strings["Show all connections"] = "Просмотр всех контактв"; +$a->strings["Unblocked"] = "Разрешенные"; +$a->strings["Only show unblocked connections"] = "Показать только разрешенные контакты"; +$a->strings["Only show blocked connections"] = "Показать только заблокированные контакты"; +$a->strings["Only show ignored connections"] = "Показать только проигнорированные контакты"; +$a->strings["Only show archived connections"] = "Показать только архивированные контакты"; +$a->strings["Only show hidden connections"] = "Показать только скрытые контакты"; +$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +$a->strings["Edit contact"] = "Редактировать контакт"; +$a->strings["Search your connections"] = "Поиск контактов"; +$a->strings["Finding: "] = "Поиск:"; +$a->strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; $a->strings["Remote privacy information not available."] = ""; -$a->strings["Visible to:"] = ""; +$a->strings["Visible to:"] = "Кому видно:"; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; $a->strings["Welcome %s. Remote authentication successful."] = ""; -$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["Likes"] = ""; -$a->strings["Dislikes"] = ""; -$a->strings["Work/Employment"] = ""; -$a->strings["Religion"] = ""; -$a->strings["Political Views"] = ""; -$a->strings["Gender"] = ""; -$a->strings["Sexual Preference"] = ""; -$a->strings["Homepage"] = ""; -$a->strings["Interests"] = ""; -$a->strings["Address"] = ""; -$a->strings["Location"] = ""; -$a->strings["Profile updated."] = ""; +$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["Likes"] = "мне нравиться"; +$a->strings["Dislikes"] = "мне не-нравиться"; +$a->strings["Work/Employment"] = "Работа / Занятость"; +$a->strings["Religion"] = "Религия"; +$a->strings["Political Views"] = "Политические взгляды"; +$a->strings["Gender"] = "Пол"; +$a->strings["Sexual Preference"] = "Сексуальная ориентация"; +$a->strings["Homepage"] = "Домашняя страница"; +$a->strings["Interests"] = "Интересы"; +$a->strings["Address"] = "Адрес"; +$a->strings["Location"] = "Место"; +$a->strings["Profile updated."] = "Профиль обновлен."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = ""; -$a->strings["Edit Profile Details"] = ""; -$a->strings["View this profile"] = ""; -$a->strings["Change Profile Photo"] = ""; +$a->strings["Edit Profile Details"] = "Редактирование профиля"; +$a->strings["View this profile"] = "Посмотреть этот профиль"; +$a->strings["Change Profile Photo"] = "Изменить фотографию профиля"; $a->strings["Create a new profile using these settings"] = ""; -$a->strings["Clone this profile"] = ""; -$a->strings["Delete this profile"] = ""; -$a->strings["Profile Name:"] = ""; -$a->strings["Your Full Name:"] = ""; -$a->strings["Title/Description:"] = ""; -$a->strings["Your Gender:"] = ""; -$a->strings["Birthday (%s):"] = ""; -$a->strings["Street Address:"] = ""; -$a->strings["Locality/City:"] = ""; -$a->strings["Postal/Zip Code:"] = ""; -$a->strings["Country:"] = ""; -$a->strings["Region/State:"] = ""; +$a->strings["Clone this profile"] = "Клонировать этот профиль"; +$a->strings["Delete this profile"] = "Удалить этот профиль"; +$a->strings["Profile Name:"] = "Имя профиля:"; +$a->strings["Your Full Name:"] = "Ваше полное имя:"; +$a->strings["Title/Description:"] = "Название / Описание:"; +$a->strings["Your Gender:"] = "Ваш пол:"; +$a->strings["Birthday (%s):"] = "Ваш День Рождения (%s):"; +$a->strings["Street Address:"] = "Улица:"; +$a->strings["Locality/City:"] = "Населенный пункт / город:"; +$a->strings["Postal/Zip Code:"] = "Почтовый индекс:"; +$a->strings["Country:"] = "Страна:"; +$a->strings["Region/State:"] = "Регион / Область:"; $a->strings["<span class=\"heart\">♥</span> Marital Status:"] = ""; -$a->strings["Who: (if applicable)"] = ""; +$a->strings["Who: (if applicable)"] = "Кто: (если это применимо)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; -$a->strings["Since [date]:"] = ""; -$a->strings["Homepage URL:"] = ""; -$a->strings["Religious Views:"] = ""; -$a->strings["Keywords:"] = ""; -$a->strings["Example: fishing photography software"] = ""; +$a->strings["Since [date]:"] = "С тех пор [date]:"; +$a->strings["Homepage URL:"] = "URL-адрес домашней страницы:"; +$a->strings["Religious Views:"] = "Религиозные взгляды:"; +$a->strings["Keywords:"] = "Ключевые слова:"; +$a->strings["Example: fishing photography software"] = "Пример: fishing photography software"; $a->strings["Used in directory listings"] = ""; -$a->strings["Tell us about yourself..."] = ""; -$a->strings["Hobbies/Interests"] = ""; -$a->strings["Contact information and Social Networks"] = ""; +$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ..."; +$a->strings["Hobbies/Interests"] = "Хобби / интересы"; +$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети"; $a->strings["My other channels"] = "Мои другие каналы"; -$a->strings["Musical interests"] = ""; -$a->strings["Books, literature"] = ""; -$a->strings["Television"] = ""; -$a->strings["Film/dance/culture/entertainment"] = ""; -$a->strings["Love/romance"] = ""; -$a->strings["Work/employment"] = ""; -$a->strings["School/education"] = ""; +$a->strings["Musical interests"] = "Музыкальные интересы"; +$a->strings["Books, literature"] = "Книги, литература"; +$a->strings["Television"] = "Телевидение"; +$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; +$a->strings["Love/romance"] = "Любовь / Романс"; +$a->strings["Work/employment"] = "Работа / Занятость"; +$a->strings["School/education"] = "Школа / образование"; $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = ""; -$a->strings["Edit/Manage Profiles"] = ""; -$a->strings["Change profile photo"] = ""; -$a->strings["Create New Profile"] = ""; -$a->strings["Profile Image"] = ""; -$a->strings["visible to everybody"] = ""; -$a->strings["Edit visibility"] = ""; +$a->strings["Edit/Manage Profiles"] = "Редактирование / Управление профилей"; +$a->strings["Change profile photo"] = "Изменить фотографию профиля"; +$a->strings["Create New Profile"] = "Создать новый профиль"; +$a->strings["Profile Image"] = "Изображение профиля"; +$a->strings["visible to everybody"] = "видно всем"; +$a->strings["Edit visibility"] = "Редактировать видимость"; $a->strings["Add a Channel"] = "Добавить канал"; $a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; $a->strings["Channel Name"] = "Имя канала"; @@ -1306,26 +1306,26 @@ $a->strings["Password reset requested at %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["Your new password is"] = "Ваш новый пароль"; $a->strings["Save or copy your new password - and then"] = ""; -$a->strings["click here to login"] = ""; +$a->strings["click here to login"] = "нажмите здесь чтобы выйти"; $a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = ""; -$a->strings["Your password has changed at %s"] = ""; -$a->strings["Forgot your Password?"] = ""; +$a->strings["Your password has 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["Email Address"] = ""; -$a->strings["Reset"] = ""; -$a->strings["Nothing to import."] = ""; -$a->strings["Unable to download data from old server"] = ""; -$a->strings["Imported file is empty."] = ""; +$a->strings["Email Address"] = "Адрес электронной почты"; +$a->strings["Reset"] = "Сброс"; +$a->strings["Nothing to import."] = "Ничего импортировать."; +$a->strings["Unable to download data from old server"] = "Невозможно загрузить данные из старого сервера"; +$a->strings["Imported file is empty."] = "Импортированный файл пуст."; $a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; $a->strings["Channel clone failed. Import failed."] = ""; $a->strings["Cloned channel not found. Import failed."] = ""; -$a->strings["Import completed."] = ""; -$a->strings["You must be logged in to use this feature."] = ""; +$a->strings["Import completed."] = "Импорт завершен."; +$a->strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; $a->strings["Import Channel"] = "Импорт канала"; $a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; -$a->strings["File to Upload"] = ""; +$a->strings["File to Upload"] = "Файл для загрузки"; $a->strings["Or provide the old server/hub details"] = ""; $a->strings["Your old identity address (xyz@example.com)"] = ""; $a->strings["Your old login email address"] = ""; @@ -1337,17 +1337,17 @@ $a->strings["Channel Manager"] = "Настройки канала"; $a->strings["Current Channel"] = "Текущий канал"; $a->strings["Attach to one of your channels by selecting it."] = ""; $a->strings["Default Channel"] = "Канал по умолчанию"; -$a->strings["Make Default"] = ""; +$a->strings["Make Default"] = "Сделать стандартным"; $a->strings["Profile Match"] = ""; $a->strings["No keywords to match. Please add keywords to your default profile."] = ""; -$a->strings["is interested in:"] = ""; +$a->strings["is interested in:"] = "заинтересован в:"; $a->strings["Contact settings applied."] = ""; -$a->strings["Contact update failed."] = ""; -$a->strings["Contact not found."] = ""; -$a->strings["Repair Contact Settings"] = ""; +$a->strings["Contact update failed."] = "Ошибка обновления контакта."; +$a->strings["Contact not found."] = "Контакт не найден."; +$a->strings["Repair Contact Settings"] = "Починить настройки контакта"; $a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = ""; $a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = ""; -$a->strings["Return to contact editor"] = ""; +$a->strings["Return to contact editor"] = "Вернуться к редактору контакта"; $a->strings["Account Nickname"] = "Псевдоним аккаунта"; $a->strings["@Tagname - overrides Name/Nickname"] = ""; $a->strings["Account URL"] = "URL аккаунта"; @@ -1355,85 +1355,85 @@ $a->strings["Friend Request URL"] = ""; $a->strings["Friend Confirm URL"] = ""; $a->strings["Notification Endpoint URL"] = ""; $a->strings["Poll/Feed URL"] = ""; -$a->strings["New photo from this URL"] = ""; +$a->strings["New photo from this URL"] = "Новое фото из этого URL"; $a->strings["invalid target signature"] = ""; $a->strings["Channel added."] = "Канал добавлен."; $a->strings["Contacts who are not members of a group"] = ""; $a->strings["Image uploaded but image cropping failed."] = ""; -$a->strings["Image resize failed."] = ""; +$a->strings["Image resize failed."] = "Изменение размера изображения не удалось."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; $a->strings["Image exceeds size limit of %d"] = ""; $a->strings["Unable to process image."] = ""; -$a->strings["Photo not available."] = ""; -$a->strings["Upload File:"] = ""; -$a->strings["Select a profile:"] = ""; -$a->strings["Upload Profile Photo"] = ""; +$a->strings["Photo not available."] = "Фотография не доступна."; +$a->strings["Upload File:"] = "Загрузить файл:"; +$a->strings["Select a profile:"] = "Выберите профиль:"; +$a->strings["Upload Profile Photo"] = "Загрузить фотографию профиля"; $a->strings["Upload"] = "Загрузка"; -$a->strings["skip this step"] = ""; +$a->strings["skip this step"] = "пропустить этот шаг"; $a->strings["select a photo from your photo albums"] = ""; -$a->strings["Crop Image"] = ""; +$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["Done Editing"] = "Закончить редактирование"; +$a->strings["Image uploaded successfully."] = "Загрузка изображениея прошла успешно."; +$a->strings["Image upload failed."] = "Загрузка изображениея прошла безуспешно."; $a->strings["Image size reduction [%s] failed."] = ""; -$a->strings["Item not found"] = ""; +$a->strings["Item not found"] = "Элемент не найден"; $a->strings["Edit post"] = "Редактировать сообщение"; -$a->strings["Insert YouTube video"] = ""; -$a->strings["Insert Vorbis [.ogg] video"] = ""; -$a->strings["Insert Vorbis [.ogg] audio"] = ""; +$a->strings["Insert YouTube video"] = "Вставить YouTube видео"; +$a->strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] музыку"; $a->strings["Invalid request identifier."] = ""; $a->strings["System"] = "Система"; -$a->strings["Introductions"] = ""; -$a->strings["Show Ignored Requests"] = ""; -$a->strings["Hide Ignored Requests"] = ""; -$a->strings["Notification type: "] = ""; +$a->strings["Introductions"] = "Введения"; +$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы"; +$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы"; +$a->strings["Notification type: "] = "Тип уведомления:"; $a->strings["Friend Suggestion"] = ""; $a->strings["suggested by %s"] = ""; $a->strings["Claims to be known to you: "] = ""; $a->strings["yes"] = "да"; $a->strings["no"] = "нет"; -$a->strings["Approve as: "] = ""; -$a->strings["Friend"] = ""; +$a->strings["Approve as: "] = "Утвердить в качестве:"; +$a->strings["Friend"] = "Друг"; $a->strings["Sharer"] = ""; -$a->strings["Fan/Admirer"] = ""; +$a->strings["Fan/Admirer"] = "Поклонник"; $a->strings["Friend/Connect Request"] = ""; -$a->strings["New Follower"] = ""; -$a->strings["No introductions."] = ""; -$a->strings["%s liked %s's post"] = ""; -$a->strings["%s disliked %s's post"] = ""; -$a->strings["%s is now friends with %s"] = ""; -$a->strings["%s created a new post"] = ""; -$a->strings["%s commented on %s's post"] = ""; -$a->strings["No more network notifications."] = ""; -$a->strings["Network Notifications"] = ""; -$a->strings["No more system notifications."] = ""; -$a->strings["System Notifications"] = ""; -$a->strings["No more personal notifications."] = ""; -$a->strings["Personal Notifications"] = ""; -$a->strings["No more home notifications."] = ""; -$a->strings["Home Notifications"] = ""; -$a->strings["Post successful."] = ""; -$a->strings["Item is not editable"] = ""; -$a->strings["Access to this profile has been restricted."] = ""; +$a->strings["New Follower"] = "Новый последователь"; +$a->strings["No introductions."] = "Введений нет."; +$a->strings["%s liked %s's post"] = "%s нравится %s's сообщение"; +$a->strings["%s disliked %s's post"] = "%s не нравится %s's сообщение"; +$a->strings["%s is now friends with %s"] = "%s теперь в друзьях с %s"; +$a->strings["%s created a new post"] = "%s создал новое сообщение"; +$a->strings["%s commented on %s's post"] = "%s прокомментировал %s's сообщение"; +$a->strings["No more network notifications."] = "Больше никаких уведомлений сети."; +$a->strings["Network Notifications"] = "Уведомления сети"; +$a->strings["No more system notifications."] = "Больше никаких уведомлений системы."; +$a->strings["System Notifications"] = "Системные оповещения "; +$a->strings["No more personal notifications."] = "Больше никаких личных уведомлений."; +$a->strings["Personal Notifications"] = "Личные оповещения "; +$a->strings["No more home notifications."] = "Больше никаких домашних уведомлений."; +$a->strings["Home Notifications"] = "Домашние уведомления"; +$a->strings["Post successful."] = "Публикация прошла успешно."; +$a->strings["Item is not editable"] = "Элемент нельзя редактировать"; +$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен."; $a->strings["Poke/Prod"] = ""; $a->strings["poke, prod or do other things to somebody"] = ""; -$a->strings["Recipient"] = ""; +$a->strings["Recipient"] = "Получатель"; $a->strings["Choose what you wish to do to recipient"] = ""; -$a->strings["Make this post private"] = ""; -$a->strings["Not available."] = ""; -$a->strings["Community"] = ""; -$a->strings["No results."] = ""; -$a->strings["Files"] = ""; +$a->strings["Make this post private"] = "Сделать это сообщение личным"; +$a->strings["Not available."] = "Недоступно."; +$a->strings["Community"] = "Сообщество"; +$a->strings["No results."] = "Ничего не найдено."; +$a->strings["Files"] = "Файлы"; $a->strings["Friend suggestion sent."] = ""; -$a->strings["Suggest Friends"] = ""; +$a->strings["Suggest Friends"] = "Пригласить друзей"; $a->strings["Suggest a friend for %s"] = ""; $a->strings["Invalid profile identifier."] = ""; -$a->strings["Profile Visibility Editor"] = ""; +$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["Version %s"] = ""; +$a->strings["Visible To"] = "Видно"; +$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с доступом защищенному профилю)"; +$a->strings["Version %s"] = "Версия %s"; $a->strings["Installed plugins/addons/apps:"] = ""; $a->strings["No installed plugins/addons/apps"] = ""; $a->strings["Red"] = "Red"; @@ -1443,7 +1443,7 @@ $a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to $a->strings["Bug reports and issues: please visit"] = ""; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = ""; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -$a->strings["Ignore/Hide"] = ""; +$a->strings["Ignore/Hide"] = "Игнорировать / Скрыть"; $a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; $a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; $a->strings["Registration successful. Please check your email for validation instructions."] = ""; @@ -1455,16 +1455,16 @@ $a->strings["I accept the %s for this website"] = ""; $a->strings["I am over 13 years of age and accept the %s for this website"] = ""; $a->strings["Membership on this site is by invitation only."] = ""; $a->strings["Please enter your invitation code"] = ""; -$a->strings["Your email address"] = ""; -$a->strings["Choose a password"] = ""; +$a->strings["Your email address"] = "Ваш адрес электронной почты"; +$a->strings["Choose a password"] = "Выберите пароль"; $a->strings["Please re-enter your password"] = ""; -$a->strings["Please login."] = ""; +$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["Mood"] = ""; $a->strings["Set your current mood and tell your friends"] = ""; -$a->strings["Theme settings"] = ""; +$a->strings["Theme settings"] = "Настройки темы"; $a->strings["Set font-size for posts and comments"] = ""; $a->strings["Set line-height for posts and comments"] = ""; $a->strings["Set colour scheme"] = ""; @@ -1472,32 +1472,32 @@ $a->strings["Draw shadows"] = ""; $a->strings["Navigation bar colour"] = ""; $a->strings["Display style"] = ""; $a->strings["Display colour of links - hex value, do not include the #"] = ""; -$a->strings["Icons"] = ""; +$a->strings["Icons"] = "Значки"; $a->strings["Shiny style"] = ""; $a->strings["Corner radius"] = ""; -$a->strings["0-99 default: 5"] = ""; +$a->strings["0-99 default: 5"] = "0-99 по умолчанию: 5"; $a->strings["Update %s failed. See error logs."] = ""; $a->strings["Update Error at %s"] = ""; $a->strings["Create a New Account"] = "Создать новый аккаунт"; $a->strings["Password"] = "Пароль"; -$a->strings["Remember me"] = ""; -$a->strings["Forgot your password?"] = ""; +$a->strings["Remember me"] = "Запомнить"; +$a->strings["Forgot your password?"] = "Забыли пароль или логин?"; $a->strings["Requested channel is not available."] = "Запрашиваемый канал не доступен."; $a->strings[" Sorry, you don't have the permission to view this profile. "] = ""; -$a->strings["Profiles"] = ""; -$a->strings["Manage/edit profiles"] = ""; -$a->strings["Edit Profile"] = ""; -$a->strings["F d"] = ""; -$a->strings["Birthday Reminders"] = ""; -$a->strings["Birthdays this week:"] = ""; -$a->strings["[No description]"] = ""; -$a->strings["Event Reminders"] = ""; -$a->strings["Events this week:"] = ""; +$a->strings["Profiles"] = "Профили"; +$a->strings["Manage/edit profiles"] = "Управление / Редактирование профилей"; +$a->strings["Edit Profile"] = "Редактировать профиль"; +$a->strings["F d"] = "F d"; +$a->strings["Birthday Reminders"] = "Напоминания о Днях Рождения"; +$a->strings["Birthdays this week:"] = "Дни Рождения на этой неделе:"; +$a->strings["[No description]"] = "[без описания]"; +$a->strings["Event Reminders"] = "Напоминания мероприятий"; +$a->strings["Events this week:"] = "Мероприятия на этой неделе:"; $a->strings["Channel"] = "Канал"; $a->strings["Status Messages and Posts"] = ""; -$a->strings["About"] = ""; -$a->strings["Profile Details"] = ""; -$a->strings["Events and Calendar"] = ""; -$a->strings["Webpages"] = ""; +$a->strings["About"] = "О себе"; +$a->strings["Profile Details"] = "Сведения о профиле"; +$a->strings["Events and Calendar"] = "Мероприятия и календарь"; +$a->strings["Webpages"] = "Личные нотиции"; $a->strings["Manage Webpages"] = ""; $a->strings["toggle mobile"] = ""; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 864ffef6e..8d33913c4 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1871,49 +1871,6 @@ tr.mceLast { } -#group-new-submit-wrapper { - margin-top: 30px; -} - -#group-edit-name-label { - float: left; - width: 175px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name { - float: left; - width: 225px; - margin-top: 20px; - margin-bottom: 20px; -} - -#group-edit-name-wrapper { - - -} - - -#group_members_select_label { - display: block; - float: left; - width: 175px; -} - -.group_members_select { - float: left; - width: 230px; - overflow: auto; -} - -#group_members_select_end { - clear: both; -} -#group-edit-name-end { - clear: both; -} - #prvmail-to-label, #prvmail-subject-label, #prvmail-message-label { margin-bottom: 10px; margin-top: 20px; diff --git a/view/tpl/group_edit.tpl b/view/tpl/group_edit.tpl index e4fb987ac..eb658624c 100755 --- a/view/tpl/group_edit.tpl +++ b/view/tpl/group_edit.tpl @@ -6,6 +6,7 @@ <input type='hidden' name='form_security_token' value='{{$form_security_token}}'> {{include file="field_input.tpl" field=$gname}} + {{include file="field_checkbox.tpl" field=$public}} {{if $drop}}{{$drop}}{{/if}} <div id="group-edit-submit-wrapper" > <input type="submit" name="submit" value="{{$submit}}" > |