aboutsummaryrefslogblamecommitdiffstats
path: root/view/ru/strings.php
blob: 4e42df2fcc408e6447abe840f409a9fff9031afe (plain) (tree)
1
2
3
4
5
6
7
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556

     
                                                  
                                     
                                                                                                         
  
 

















































                                                                                                               

                                                                          

                                                                          
                                                                           



                                                                               

                                               



                                             




































































































































































































                                                                                                                                                                                                                                         



                                























                                                                                                                 



                                                         














                                                                                                                                 



                                                          


























































































































































































































                                                                                                                                                                                                                                                  



                                     



























































































































                                                                                                                                     


                                     
  


















                                                                                                               



                                           





























































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                



                
                                         



                                                

















                                                                                                                                                          



                
                                            



                                              






























































                                                                                                                                                                                                                                                                                                                   



                                                             













































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                      
<?php

if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
	return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);;
}}
;
App::$strings["Cannot locate DNS info for database server '%s'"] = "";
App::$strings["Profile Photos"] = "Фотографии профиля";
App::$strings["Image/photo"] = "Изображение / фото";
App::$strings["Encrypted content"] = "Зашифрованное содержание";
App::$strings["QR code"] = "QR код";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s написал следующее %2\$s %3\$s";
App::$strings["post"] = "сообщение";
App::$strings["$1 wrote:"] = "$1 писал:";
App::$strings["Embedded content"] = "Внедренное содержание";
App::$strings["Embedding disabled"] = "Внедрение отключенно";
App::$strings["created a new post"] = "создал новое сообщение";
App::$strings["commented on %s's post"] = "прокомментировал %s's сообщение";
App::$strings["photo"] = "фото";
App::$strings["event"] = "мероприятие";
App::$strings["channel"] = "канал";
App::$strings["status"] = "статус";
App::$strings["comment"] = "комментарий";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %2\$s's %3\$s";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s's %3\$s";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь соединен с %2\$s";
App::$strings["%1\$s poked %2\$s"] = "%1\$s подпихнул %2\$s";
App::$strings["poked"] = "подпихнул";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "";
App::$strings["Select"] = "Выбрать";
App::$strings["Delete"] = "Удалить";
App::$strings["Private Message"] = "Личное сообщение";
App::$strings["Message is verified"] = "Сообщение проверено";
App::$strings["View %s's profile @ %s"] = "Просмотр %s's профиля @ %s";
App::$strings["Categories:"] = "Категории:";
App::$strings["Filed under:"] = "Хранить под:";
App::$strings[" from %s"] = " от %s";
App::$strings["last edited: %s"] = "";
App::$strings["Expires: %s"] = "";
App::$strings["View in context"] = "Показать в контексте";
App::$strings["Please wait"] = "Подождите пожалуйста";
App::$strings["remove"] = "удалить";
App::$strings["Loading..."] = "Загрузка...";
App::$strings["Delete Selected Items"] = "Удалить выбранные элементы";
App::$strings["View Source"] = "Просмотр источника";
App::$strings["Follow Thread"] = "Следовать теме";
App::$strings["View Status"] = "Просмотр состояния";
App::$strings["View Profile"] = "Просмотр профиля";
App::$strings["View Photos"] = "Просмотр фотографий";
App::$strings["Matrix Activity"] = "Активность матрицы";
App::$strings["Edit Contact"] = "Редактировать контакт";
App::$strings["Send PM"] = "Отправить личное сообщение";
App::$strings["Poke"] = "Подпихнуть";
App::$strings["%s likes this."] = "%s нравится это.";
App::$strings["%s doesn't like this."] = "%s не нравится это.";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span  %1\$s>%2\$d чел.</span> нравится это.",
	1 => "<span  %1\$s>%2\$d чел.</span> нравится это.",
	2 => "<span  %1\$s>%2\$d чел.</span> нравится это.",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "",
	1 => "",
	2 => "<span  %1\$s>%2\$d чел.</span> не нравится это.",
);
App::$strings["and"] = "и";
App::$strings[", and %d other people"] = array(
	0 => "",
	1 => "",
	2 => ", и %d другие люди",
);
App::$strings["%s like this."] = "%s нравится это.";
App::$strings["%s don't like this."] = "%s не нравится это.";
App::$strings["Visible to <strong>everybody</strong>"] = "Видно для <strong>всех</strong>";
App::$strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
App::$strings["Please enter a video link/URL:"] = "Пожалуйста, введите URL видео-ссылки:";
App::$strings["Please enter an audio link/URL:"] = "Пожалуйста, введите URL аудио-ссылки:";
App::$strings["Tag term:"] = "Теги:";
App::$strings["Save to Folder:"] = "Сохранить в папку:";
App::$strings["Where are you right now?"] = "Где вы сейчас?";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "";
App::$strings["Preview"] = "Предварительный просмотр";
App::$strings["Share"] = "Поделиться";
App::$strings["Page link title"] = "Ссылка заголовока страницы";
App::$strings["Post as"] = "";
App::$strings["Upload photo"] = "Загрузить фотографию";
App::$strings["upload photo"] = "загрузить фотографию";
App::$strings["Attach file"] = "Прикрепить файл";
App::$strings["attach file"] = "прикрепить файл";
App::$strings["Insert web link"] = "Вставить веб-ссылку";
App::$strings["web link"] = "веб-ссылка";
App::$strings["Insert video link"] = "Вставить видео-ссылку";
App::$strings["video link"] = "видео-ссылка";
App::$strings["Insert audio link"] = "Вставить аудио-ссылку";
App::$strings["audio link"] = "аудио-ссылка";
App::$strings["Set your location"] = "Указание своего расположения";
App::$strings["set location"] = "указание расположения";
App::$strings["Clear browser location"] = "Стереть указание расположения";
App::$strings["clear location"] = "стереть указание расположения";
App::$strings["Set title"] = "Заголовок";
App::$strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
App::$strings["Permission settings"] = "Настройки разрешений";
App::$strings["permissions"] = "разрешения";
App::$strings["Public post"] = "Публичное сообщение";
App::$strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
App::$strings["Set expiration date"] = "";
App::$strings["Encrypt text"] = "";
App::$strings["OK"] = "OK";
App::$strings["Cancel"] = "Отменить";
App::$strings["Discover"] = "Обнаруженные";
App::$strings["Imported public streams"] = "";
App::$strings["Commented Order"] = "По комментариям";
App::$strings["Sort by Comment Date"] = "Сортировка по дате создания комментариев";
App::$strings["Posted Order"] = "По добавлениям";
App::$strings["Sort by Post Date"] = "Сортировка по дате создания сообщения";
App::$strings["Personal"] = "Личные";
App::$strings["Posts that mention or involve you"] = "Сообщения, в которых упоминули или вовлекли вас";
App::$strings["New"] = "Новые";
App::$strings["Activity Stream - by date"] = "Лента активности - по дате";
App::$strings["Starred"] = "Помеченные";
App::$strings["Favourite Posts"] = "Фаворит-сообщения";
App::$strings["Spam"] = "Спам";
App::$strings["Posts flagged as SPAM"] = "Как СПАМ помеченные сообщения";
App::$strings["Channel"] = "Канал";
App::$strings["Status Messages and Posts"] = "";
App::$strings["About"] = "О себе";
App::$strings["Profile Details"] = "Сведения о профиле";
App::$strings["Photos"] = "Фотографии";
App::$strings["Photo Albums"] = "Фотоальбомы";
App::$strings["Files"] = "Файлы";
App::$strings["Files and Storage"] = "";
App::$strings["Chatrooms"] = "Чаты";
App::$strings["Bookmarks"] = "Закладки";
App::$strings["Saved Bookmarks"] = "Сохранённые закладки";
App::$strings["Webpages"] = "Веб-страницы";
App::$strings["Manage Webpages"] = "Управление веб-страниц";
App::$strings["New Page"] = "Новая страница";
App::$strings["Edit"] = "Редактировать";
App::$strings["View"] = "Просмотр";
App::$strings["Actions"] = "";
App::$strings["Page Link"] = "Ссылка страницы";
App::$strings["Title"] = "Заголовок";
App::$strings["Created"] = "Создано";
App::$strings["Edited"] = "Отредактирован";
App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
App::$strings["Not a valid email address"] = "Не действительный адрес электронной почты";
App::$strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте";
App::$strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте.";
App::$strings["An invitation is required."] = "Требуется приглашение.";
App::$strings["Invitation could not be verified."] = "Не удалось проверить приглашение.";
App::$strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
App::$strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта.";
App::$strings["Registration request at %s"] = "Требуется регистрация на %s";
App::$strings["Administrator"] = "Администратор";
App::$strings["your registration password"] = "Ваш пароль регистрации";
App::$strings["Registration details for %s"] = "Регистрационные данные для %s";
App::$strings["Account approved."] = "Аккаунт утвержден.";
App::$strings["Registration revoked for %s"] = "Регистрация отозвана для %s";
App::$strings["Permission denied."] = "Доступ запрещен.";
App::$strings["Image exceeds website size limit of %lu bytes"] = "";
App::$strings["Image file is empty."] = "файл пуст.";
App::$strings["Unable to process image"] = "Не удается обработать изображение";
App::$strings["Photo storage failed."] = "Ошибка в банке фотографий";
App::$strings["Upload New Photos"] = "Загрузить новые фотографии";
App::$strings["Visible to everybody"] = "Видно всем";
App::$strings["Show"] = "Показывать";
App::$strings["Don't show"] = "Не показывать";
App::$strings["Permissions"] = "Разрешения";
App::$strings["Close"] = "Закрыть";
App::$strings[" and "] = "и";
App::$strings["public profile"] = "Публичный профиль";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s изменил %2\$s на &ldquo;%3\$s&rdquo;";
App::$strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s's %2\$s";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
App::$strings["Public Timeline"] = "Публичная шкала времени";
App::$strings["Item was not found."] = "Элемент не найден.";
App::$strings["No source file."] = "Нет исходного файла.";
App::$strings["Cannot locate file to replace"] = "Не удается найти файл, чтобы заменить";
App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления";
App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "";
App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена.";
App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не проверен. Загрузка не удалась.";
App::$strings["Path not available."] = "Путь недоступен.";
App::$strings["Empty pathname"] = "";
App::$strings["duplicate filename or path"] = "";
App::$strings["Path not found."] = "Путь не найден.";
App::$strings["mkdir failed."] = "mkdir безуспешно.";
App::$strings["database storage failed."] = "";
App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
App::$strings["Starts:"] = "Начало:";
App::$strings["Finishes:"] = "\t\nКонец:";
App::$strings["Location:"] = "Откуда:";
App::$strings["Logout"] = "Выход";
App::$strings["End this session"] = "Закончить эту сессию";
App::$strings["Home"] = "Мой канал";
App::$strings["Your posts and conversations"] = "Ваши сообщения и разговоры";
App::$strings["Your profile page"] = "Страницa вашего профиля";
App::$strings["Edit Profiles"] = "Редактирование профилей";
App::$strings["Manage/Edit profiles"] = "Управление / Редактирование профилей";
App::$strings["Your photos"] = "Ваши фотографии";
App::$strings["Your files"] = "Ваши файлы";
App::$strings["Chat"] = "Чат";
App::$strings["Your chatrooms"] = "Ваши чаты";
App::$strings["Your bookmarks"] = "Ваши закладки";
App::$strings["Your webpages"] = "Ваши веб-страницы";
App::$strings["Login"] = "Войти";
App::$strings["Sign in"] = "Войти";
App::$strings["%s - click to logout"] = "%s - нажмите чтобы выйти";
App::$strings["Click to authenticate to your home hub"] = "";
App::$strings["Home Page"] = "Моя страница";
App::$strings["Register"] = "Регистрация";
App::$strings["Create an account"] = "Создать аккаунт";
App::$strings["Help"] = "Помощь";
App::$strings["Help and documentation"] = "Справочная информация и документация";
App::$strings["Apps"] = "Приложения";
App::$strings["Applications, utilities, links, games"] = "";
App::$strings["Search"] = "Поиск";
App::$strings["Search site content"] = "Поиск по содержанию сайту";
App::$strings["Directory"] = "Каталог";
App::$strings["Channel Locator"] = "Локатор каналов";
App::$strings["Matrix"] = "Матрица";
App::$strings["Your matrix"] = "Собственная матрица";
App::$strings["Mark all matrix notifications seen"] = "Пометить все оповещения матрицы как прочитанное";
App::$strings["Channel Home"] = "Главная канала";
App::$strings["Channel home"] = "Главная канала";
App::$strings["Mark all channel notifications seen"] = "Пометить все оповещения канала как прочитанное";
App::$strings["Connections"] = "Контакты";
App::$strings["Notices"] = "Оповещения";
App::$strings["Notifications"] = "Оповещения";
App::$strings["See all notifications"] = "Просмотреть все оповещения";
App::$strings["Mark all system notifications seen"] = "Пометить все оповещения как прочитанное";
App::$strings["Mail"] = "Переписка";
App::$strings["Private mail"] = "Ваша личная переписка";
App::$strings["See all private messages"] = "Просмотреть все личные сообщения";
App::$strings["Mark all private messages seen"] = "Пометить все личные сообщения как прочитанное";
App::$strings["Inbox"] = "Входящие";
App::$strings["Outbox"] = "Исходящие";
App::$strings["New Message"] = "Новое личное сообщение";
App::$strings["Events"] = "Мероприятия";
App::$strings["Event Calendar"] = "Календарь мероприятий";
App::$strings["See all events"] = "Показать все мероприятия";
App::$strings["Mark all events seen"] = "Пометить все мероприятия как прочитанное";
App::$strings["Channel Select"] = "Выбор каналов";
App::$strings["Manage Your Channels"] = "Управление каналов";
App::$strings["Settings"] = "Настройки";
App::$strings["Account/Channel Settings"] = "Настройки аккаунта/канала";
App::$strings["Admin"] = "Администрация";
App::$strings["Site Setup and Configuration"] = "Установка и конфигурация сайта";
App::$strings["Nothing new here"] = "Ничего нового здесь";
App::$strings["Please wait..."] = "Подождите пожалуйста ...";
App::$strings["%1\$s's bookmarks"] = "Закладки пользователя %1\$s";
App::$strings["Missing room name"] = "";
App::$strings["Duplicate room name"] = "";
App::$strings["Invalid room specifier."] = "";
App::$strings["Room not found."] = "";
App::$strings["Room is full"] = "";
App::$strings["Tags"] = "Тэги";
App::$strings["Keywords"] = "Ключевые слова";
App::$strings["have"] = "иметь";
App::$strings["has"] = "есть";
App::$strings["want"] = "хотеть";
App::$strings["wants"] = "хочет";
App::$strings["like"] = "нравится";
App::$strings["likes"] = "нравится";
App::$strings["dislike"] = "не-нравится";
App::$strings["dislikes"] = "не-нравится";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "нравится",
	1 => "нравится",
	2 => "нравится",
);
App::$strings["Default"] = "По умолчанию";
App::$strings["Unknown | Not categorised"] = "Неизвестные | Без категории";
App::$strings["Block immediately"] = "Немедленно заблокировать";
App::$strings["Shady, spammer, self-marketer"] = "";
App::$strings["Known to me, but no opinion"] = "Известныo мне, но нет своего мнения";
App::$strings["OK, probably harmless"] = "OK, наверное безвредно";
App::$strings["Reputable, has my trust"] = "Авторитетно, имеет мое доверие";
App::$strings["Frequently"] = "Часто";
App::$strings["Hourly"] = "Ежечасно";
App::$strings["Twice daily"] = "Два раза в день";
App::$strings["Daily"] = "Ежедневно";
App::$strings["Weekly"] = "Еженедельно";
App::$strings["Monthly"] = "Ежемесячно";
App::$strings["Friendica"] = "Friendica";
App::$strings["OStatus"] = "OStatus";
App::$strings["RSS/Atom"] = "RSS/Atom";
App::$strings["Email"] = "E-mail";
App::$strings["Diaspora"] = "Diaspora";
App::$strings["Facebook"] = "Facebook";
App::$strings["Zot!"] = "Zot!";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP/IM";
App::$strings["MySpace"] = "MySpace";
App::$strings["%d invitation available"] = array(
	0 => "имеется %d  приглашение",
	1 => "имеются %d  приглашения",
	2 => "имеется %d  приглашений",
);
App::$strings["Advanced"] = "Дополнительно";
App::$strings["Find Channels"] = "Поиск контактов";
App::$strings["Enter name or interest"] = "Впишите имя или интерес";
App::$strings["Connect/Follow"] = "Подключить/следовать";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер";
App::$strings["Find"] = "Поиск";
App::$strings["Channel Suggestions"] = "Рекомендации каналов";
App::$strings["Random Profile"] = "Случайные";
App::$strings["Invite Friends"] = "Пригласить друзей";
App::$strings["Exammple: name=fred and country=iceland"] = "";
App::$strings["Advanced Find"] = "Расширенный поиск";
App::$strings["Saved Folders"] = "Запомненные папки";
App::$strings["Everything"] = "Все";
App::$strings["Categories"] = "Категории";
App::$strings["%d connection in common"] = array(
	0 => "%d совместный контакт",
	1 => "%d совместных контакта",
	2 => "%d совместных контактов",
);
App::$strings["show more"] = "показать все";
App::$strings["This event has been added to your calendar."] = "Это событие было добавлено в календарь.";
App::$strings["Miscellaneous"] = "Прочее";
App::$strings["year"] = "год";
App::$strings["month"] = "месяц";
App::$strings["day"] = "день";
App::$strings["never"] = "никогда";
App::$strings["less than a second ago"] = "менее чем одну секунду назад";
App::$strings["years"] = "лет";
App::$strings["months"] = "мес.";
App::$strings["week"] = "неделя";
App::$strings["weeks"] = "недель";
App::$strings["days"] = "дней";
App::$strings["hour"] = "час";
App::$strings["hours"] = "часов";
App::$strings["minute"] = "минута";
App::$strings["minutes"] = "мин.";
App::$strings["second"] = "секунда";
App::$strings["seconds"] = "секунд";
App::$strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
App::$strings["%1\$s's birthday"] = "%1\$s's День Рождения";
App::$strings["Happy Birthday %1\$s"] = "С Днем Рождения %1\$s";
App::$strings["Sort Options"] = "Параметры сортировки";
App::$strings["Alphabetic"] = "По алфавиту";
App::$strings["Reverse Alphabetic"] = "По обратному алфавиту";
App::$strings["Newest to Oldest"] = "От новых к старым";
App::$strings["Enable Safe Search"] = "";
App::$strings["Disable Safe Search"] = "";
App::$strings["Safe Mode"] = "Безопасный режим";
App::$strings["Hubzilla Notification"] = "Оповещения Red матрицы";
App::$strings["hubzilla"] = "hubzilla";
App::$strings["Thank You,"] = "Спасибо,";
App::$strings["%s Administrator"] = "%s администратор";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Уведомление] Получено новое сообщение в %s";
App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "";
App::$strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s.";
App::$strings["a private message"] = "личное сообщение";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения.";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "";
App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "";
App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Уведомление] Комментарий к разговору #%1\$d по %2\$s";
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и/или ответа разговора.";
App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля";
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "";
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "";
App::$strings["[Red:Notify] %s tagged you"] = "[Red:Уведомление] %s добавил у вас тег";
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "";
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "";
App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Уведомление] %1\$s подпихнул вас";
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "";
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "";
App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Уведомление] %s добавил у вас в сообщении тег";
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "";
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "";
App::$strings["[Red:Notify] Introduction received"] = "[Red:Уведомление] введение получено";
App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "";
App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "";
App::$strings["You may visit their profile at %s"] = "Вы можете посетить ​​профиль в %s";
App::$strings["Please visit %s to approve or reject the connection request."] = "";
App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Уведомление] Получено предложение дружить";
App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "";
App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "";
App::$strings["Name:"] = "Имя:";
App::$strings["Photo:"] = "Фото:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "";
App::$strings["parent"] = "";
App::$strings["Collection"] = "Коллекция";
App::$strings["Principal"] = "";
App::$strings["Addressbook"] = "Адресная книга";
App::$strings["Calendar"] = "Календарь";
App::$strings["Schedule Inbox"] = "";
App::$strings["Schedule Outbox"] = "";
App::$strings["%1\$s used"] = "";
App::$strings["%1\$s used of %2\$s (%3\$s&#37;)"] = "";
App::$strings["Create new folder"] = "Создать новую папку";
App::$strings["Create"] = "Создать";
App::$strings["Upload file"] = "Загрузить файл";
App::$strings["Upload"] = "Загрузка";
App::$strings["General Features"] = "Главные функции";
App::$strings["Content Expiration"] = "";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Удалять посты/комментарии и/или личные сообщения";
App::$strings["Multiple Profiles"] = "Несколько профилей";
App::$strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей";
App::$strings["Web Pages"] = "Веб-страницы";
App::$strings["Provide managed web pages on your channel"] = "";
App::$strings["Private Notes"] = "Личные заметки";
App::$strings["Enables a tool to store notes and reminders"] = "";
App::$strings["Extended Identity Sharing"] = "Расширенный обмен идентичности";
App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "";
App::$strings["Expert Mode"] = "Экспертный режим";
App::$strings["Enable Expert Mode to provide advanced configuration options"] = "";
App::$strings["Premium Channel"] = "Премиум канал";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "";
App::$strings["Post Composition Features"] = "";
App::$strings["Richtext Editor"] = "Редактор RichText";
App::$strings["Enable richtext editor"] = "Включить редактор RichText";
App::$strings["Post Preview"] = "Предварительный просмотр сообщения";
App::$strings["Allow previewing posts and comments before publishing them"] = "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией";
App::$strings["Channel Sources"] = "Источники канала";
App::$strings["Automatically import channel content from other channels or feeds"] = "";
App::$strings["Even More Encryption"] = "Еще больше шифрования";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "";
App::$strings["Network and Stream Filtering"] = "Фильтрация сети и потока";
App::$strings["Search by Date"] = "Поиск по дате";
App::$strings["Ability to select posts by date ranges"] = "Возможность выбора сообщений по датам";
App::$strings["Collections Filter"] = "Фильтр коллекций";
App::$strings["Enable widget to display Network posts only from selected collections"] = "";
App::$strings["Saved Searches"] = "Запомненные поиски";
App::$strings["Save search terms for re-use"] = "Сохранять результаты поиска для повторного использования";
App::$strings["Network Personal Tab"] = "Сеть - Личная вкладка";
App::$strings["Enable tab to display only Network posts that you've interacted on"] = "";
App::$strings["Network New Tab"] = "Сеть - Новая вкладка";
App::$strings["Enable tab to display all new Network activity"] = "";
App::$strings["Affinity Tool"] = "Инструмент сходства или соответствия";
App::$strings["Filter stream activity by depth of relationships"] = "";
App::$strings["Suggest Channels"] = "";
App::$strings["Show channel suggestions"] = "";
App::$strings["Post/Comment Tools"] = "Инструменты сообщений/комментарий ";
App::$strings["Edit Sent Posts"] = "Редактировать отправленные сообщения";
App::$strings["Edit and correct posts and comments after sending"] = "Редактировать и исправлять сообщения и комментарии после отправки";
App::$strings["Tagging"] = "Пометка";
App::$strings["Ability to tag existing posts"] = "Возможность использовать теги";
App::$strings["Post Categories"] = "Категории сообщения";
App::$strings["Add categories to your posts"] = "Добавить категории для ваших сообщений";
App::$strings["Ability to file posts under folders"] = "";
App::$strings["Dislike Posts"] = "Сообщение не нравится";
App::$strings["Ability to dislike posts/comments"] = "Возможность выбора нравится/не-нравится";
App::$strings["Star Posts"] = "Помечать сообщения";
App::$strings["Ability to mark special posts with a star indicator"] = "";
App::$strings["Tag Cloud"] = "Облако тегов";
App::$strings["Provide a personal tag cloud on your channel page"] = "";
App::$strings["Channel is blocked on this site."] = "Канал блокируется на этом сайте.";
App::$strings["Channel location missing."] = "Местоположение канала отсутствует.";
App::$strings["Response from remote channel was incomplete."] = "";
App::$strings["Channel was deleted and no longer exists."] = "";
App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал.";
App::$strings["local account not found."] = "локальный аккаунт не найден.";
App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе.";
App::$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."] = "";
App::$strings["Default privacy group for new contacts"] = "Группа конфиденциальности по умолчанию для новых контактов";
App::$strings["All Channels"] = "Все каналы";
App::$strings["edit"] = "редактировать";
App::$strings["Collections"] = "Коллекции";
App::$strings["Edit collection"] = "Редактировать коллекцию";
App::$strings["Create a new collection"] = "Создать новую коллекцию";
App::$strings["Channels not in any collection"] = "Контакты не в какой коллекции";
App::$strings["add"] = "добавить";
App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных";
App::$strings["Empty name"] = "Пустое имя";
App::$strings["Name too long"] = "Слишком длинное имя";
App::$strings["No account identifier"] = "идентификатор аккаунта отсутствует";
App::$strings["Nickname is required."] = "Требуется псевдоним.";
App::$strings["Reserved nickname. Please choose another."] = "";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте.";
App::$strings["Unable to retrieve created identity"] = "";
App::$strings["Default Profile"] = "Профиль по умолчанию";
App::$strings["Friends"] = "Друзья";
App::$strings["Requested channel is not available."] = "Запрашиваемый канал не доступен.";
App::$strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен.";
App::$strings["Connect"] = "Подключить";
App::$strings["Change profile photo"] = "Изменить фотографию профиля";
App::$strings["Profiles"] = "Профили";
App::$strings["Manage/edit profiles"] = "Управление / Редактирование профилей";
App::$strings["Create New Profile"] = "Создать новый профиль";
App::$strings["Edit Profile"] = "Редактировать профиль";
App::$strings["Profile Image"] = "Изображение профиля";
App::$strings["visible to everybody"] = "видно всем";
App::$strings["Edit visibility"] = "Редактировать видимость";
App::$strings["Gender:"] = "Пол:";
App::$strings["Status:"] = "Статус:";
App::$strings["Homepage:"] = "Домашняя страница:";
App::$strings["Online Now"] = "Сейчас в сети";
App::$strings["g A l F d"] = "g A l F d";
App::$strings["F d"] = "F d";
App::$strings["[today]"] = "[сегодня]";
App::$strings["Birthday Reminders"] = "Напоминания о Днях Рождения";
App::$strings["Birthdays this week:"] = "Дни Рождения на этой неделе:";
App::$strings["[No description]"] = "[без описания]";
App::$strings["Event Reminders"] = "Напоминания мероприятий";
App::$strings["Events this week:"] = "Мероприятия на этой неделе:";
App::$strings["Profile"] = "Профиль";
App::$strings["Full Name:"] = "Полное имя:";
App::$strings["Like this channel"] = "нравиться этот канал";
App::$strings["j F, Y"] = "j F, Y";
App::$strings["j F"] = "j F";
App::$strings["Birthday:"] = "День Рождения:";
App::$strings["Age:"] = "Возраст:";
App::$strings["for %1\$d %2\$s"] = "для %1\$d %2\$s";
App::$strings["Sexual Preference:"] = "Сексуальная ориентация:";
App::$strings["Hometown:"] = "Родной город:";
App::$strings["Tags:"] = "Тэги:";
App::$strings["Political Views:"] = "Политические взгляды:";
App::$strings["Religion:"] = "Религия:";
App::$strings["About:"] = "О себе:";
App::$strings["Hobbies/Interests:"] = "Хобби / интересы:";
App::$strings["Likes:"] = "Что вам нравится:";
App::$strings["Dislikes:"] = "Что вам не нравится:";
App::$strings["Contact information and Social Networks:"] = "Информация и социальные сети контакта:";
App::$strings["My other channels:"] = "Мои другие каналы:";
App::$strings["Musical interests:"] = "Музыкальные интересы:";
App::$strings["Books, literature:"] = "Книги, литература:";
App::$strings["Television:"] = "Телевидение:";
App::$strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:";
App::$strings["Love/Romance:"] = "Любовь / Романс:";
App::$strings["Work/employment:"] = "Работа / Занятость:";
App::$strings["School/education:"] = "Школа / образование:";
App::$strings["Like this thing"] = "нравится этo";
App::$strings["view full size"] = "посмотреть в полный размер";
App::$strings["prev"] = "предыдущий";
App::$strings["first"] = "первый";
App::$strings["last"] = "последний";
App::$strings["next"] = "следующий";
App::$strings["older"] = "старший";
App::$strings["newer"] = "новее";
App::$strings["No connections"] = "Нет контактов";
App::$strings["%d Connection"] = array(
	0 => "%d контакт",
	1 => "%d контакта",
	2 => "%d контактов",
);
App::$strings["View Connections"] = "Просмотр контактов";
App::$strings["Save"] = "Запомнить";
App::$strings["poke"] = "подпихнуть";
App::$strings["ping"] = "пинг - проверка связи";
App::$strings["pinged"] = "";
App::$strings["prod"] = "";
App::$strings["prodded"] = "";
App::$strings["slap"] = "";
App::$strings["slapped"] = "";
App::$strings["finger"] = "";
App::$strings["fingered"] = "";
App::$strings["rebuff"] = "";
App::$strings["rebuffed"] = "";
App::$strings["happy"] = "счастливый";
App::$strings["sad"] = "грустный";
App::$strings["mellow"] = "спокойный";
App::$strings["tired"] = "усталый";
App::$strings["perky"] = "весёлый";
App::$strings["angry"] = "сердитый";
App::$strings["stupified"] = "отупевший";
App::$strings["puzzled"] = "недоумённый";
App::$strings["interested"] = "заинтересованный";
App::$strings["bitter"] = "озлобленный";
App::$strings["cheerful"] = "бодрый";
App::$strings["alive"] = "энергичный";
App::$strings["annoyed"] = "раздражённый";
App::$strings["anxious"] = "обеспокоенный";
App::$strings["cranky"] = "капризный";
App::$strings["disturbed"] = "встревоженный";
App::$strings["frustrated"] = "разочарованный";
App::$strings["depressed"] = "";
App::$strings["motivated"] = "мотивированный";
App::$strings["relaxed"] = "расслабленный";
App::$strings["surprised"] = "удивленный";
App::$strings["Monday"] = "Понедельник";
App::$strings["Tuesday"] = "Вторник";
App::$strings["Wednesday"] = "Среда";
App::$strings["Thursday"] = "Четверг";
App::$strings["Friday"] = "Пятница";
App::$strings["Saturday"] = "Суббота";
App::$strings["Sunday"] = "Воскресенье";
App::$strings["January"] = "Январь";
App::$strings["February"] = "Февраль";
App::$strings["March"] = "Март";
App::$strings["April"] = "Апрель";
App::$strings["May"] = "Май";
App::$strings["June"] = "Июнь";
App::$strings["July"] = "Июль";
App::$strings["August"] = "Август";
App::$strings["September"] = "Сентябрь";
App::$strings["October"] = "Октябрь";
App::$strings["November"] = "Ноябрь";
App::$strings["December"] = "Декабрь";
App::$strings["unknown.???"] = "неизвестный.???";
App::$strings["bytes"] = "байт";
App::$strings["remove category"] = "";
App::$strings["remove from file"] = "";
App::$strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть";
App::$strings["Link to Source"] = "Ссылка на источник";
App::$strings["Select a page layout: "] = "";
App::$strings["default"] = "по умолчанию";
App::$strings["Page content type: "] = "";
App::$strings["Select an alternate language"] = "Выбор альтернативного языка";
App::$strings["activity"] = "активность";
App::$strings["Design"] = "Дизайн";
App::$strings["Blocks"] = "Блоки";
App::$strings["Menus"] = "Меню";
App::$strings["Layouts"] = "Шаблоны";
App::$strings["Pages"] = "Страницы";
App::$strings["Site Admin"] = "Админ сайта";
App::$strings["Address Book"] = "Адресная книга";
App::$strings["Mood"] = "Настроение";
App::$strings["Probe"] = "";
App::$strings["Suggest"] = "";
App::$strings["Update"] = "Обновление";
App::$strings["Install"] = "Установка";
App::$strings["Purchase"] = "";
App::$strings["Unknown"] = "Неизвестный";
App::$strings["Invalid data packet"] = "Неверный пакет данных";
App::$strings["Unable to verify channel signature"] = "Невозможно проверить сигнатуру канала";
App::$strings["Unable to verify site signature for %s"] = "";
App::$strings["No recipient provided."] = "";
App::$strings["[no subject]"] = "[без темы]";
App::$strings["Unable to determine sender."] = "Невозможно определить отправителя.";
App::$strings["Stored post could not be verified."] = "";
App::$strings["Click here to upgrade."] = "Нажмите здесь, чтобы обновить.";
App::$strings["This action exceeds the limits set by your subscription plan."] = "";
App::$strings["This action is not available under your subscription plan."] = "";
App::$strings["System"] = "Система";
App::$strings["Create Personal App"] = "Создать собственное приложение";
App::$strings["Edit Personal App"] = "Редактировать собственное приложение";
App::$strings["Ignore/Hide"] = "Игнорировать / Скрыть";
App::$strings["Suggestions"] = "Рекомендации";
App::$strings["See more..."] = "Просмотреть больше...";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "";
App::$strings["Add New Connection"] = "Добавить новый контакт";
App::$strings["Enter the channel address"] = "Введите адрес канала";
App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
App::$strings["Notes"] = "Заметки";
App::$strings["Remove term"] = "Удалить термин";
App::$strings["Archives"] = "Архивы";
App::$strings["Refresh"] = "Обновить";
App::$strings["Me"] = "Я";
App::$strings["Best Friends"] = "Лучшие друзья";
App::$strings["Co-workers"] = "Сотрудники";
App::$strings["Former Friends"] = "Приятели";
App::$strings["Acquaintances"] = "Знакомые";
App::$strings["Everybody"] = "Все";
App::$strings["Account settings"] = "Настройки аккаунта";
App::$strings["Channel settings"] = "Настройки канала";
App::$strings["Additional features"] = "Дополнительные функции";
App::$strings["Feature settings"] = "Настройки компонентов";
App::$strings["Display settings"] = "Настройки отображения";
App::$strings["Connected apps"] = "Подключенные приложения";
App::$strings["Export channel"] = "Экспорт канала";
App::$strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (дополнительно)";
App::$strings["Premium Channel Settings"] = "Настройки премиум канала";
App::$strings["Check Mail"] = "Проверить снова";
App::$strings["Chat Rooms"] = "Чаты";
App::$strings["Bookmarked Chatrooms"] = "Закладки чатов";
App::$strings["Suggested Chatrooms"] = "Рекомендуемые чаты";
App::$strings["Save to Folder"] = "Сохранить в папку";
App::$strings["View all"] = "Просмотреть все";
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "не-нравится",
	1 => "не-нравится",
	2 => "не-нравится",
);
App::$strings["Add Star"] = "Добавить маркировку";
App::$strings["Remove Star"] = "Удалить маркировку";
App::$strings["Toggle Star Status"] = "Переключить статус маркировки";
App::$strings["starred"] = "помеченные";
App::$strings["Add Tag"] = "Добавить тег";
App::$strings["I like this (toggle)"] = "мне это нравится (переключение)";
App::$strings["I don't like this (toggle)"] = "мне это не нравится (переключение)";
App::$strings["Share This"] = "Поделиться этим";
App::$strings["share"] = "поделиться";
App::$strings["View %s's profile - %s"] = "Просмотр %s's профиля - %s";
App::$strings["to"] = "к";
App::$strings["via"] = "через";
App::$strings["Wall-to-Wall"] = "Стена-к-Стене";
App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:";
App::$strings["Save Bookmarks"] = "Сохранить закладки";
App::$strings["Add to Calendar"] = "Добавить в календарь";
App::$strings["__ctx:noun__ Likes"] = "нравится";
App::$strings["__ctx:noun__ Dislikes"] = "не-нравится";
App::$strings["%d comment"] = array(
	0 => "%d комментарий",
	1 => "%d комментария",
	2 => "%d комментариев",
);
App::$strings["[+] show all"] = "[+] показать все";
App::$strings["This is you"] = "Это вы";
App::$strings["Comment"] = "Комментарий";
App::$strings["Submit"] = "Отправить";
App::$strings["Bold"] = "Жирный";
App::$strings["Italic"] = "Курсив";
App::$strings["Underline"] = "Подчеркнутый";
App::$strings["Quote"] = "Цитата";
App::$strings["Code"] = "Код";
App::$strings["Image"] = "Изображение";
App::$strings["Link"] = "Ссылка";
App::$strings["Video"] = "Видео";
App::$strings["Delete this item?"] = "Удалить этот элемент?";
App::$strings["[-] show less"] = "[-] показать меньше";
App::$strings["[+] expand"] = "[+] развернуть";
App::$strings["[-] collapse"] = "[-] свернуть";
App::$strings["Password too short"] = "Пароль слишком короткий";
App::$strings["Passwords do not match"] = "Пароли не совпадают";
App::$strings["everybody"] = "все";
App::$strings["Secret Passphrase"] = "Тайный пароль";
App::$strings["Passphrase hint"] = "";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "";
App::$strings["close all"] = "закрыть все";
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["ago"] = "тому назад";
App::$strings["from now"] = "с этого времени";
App::$strings["less than a minute"] = "менее чем одну минуту назад";
App::$strings["about a minute"] = "около минуты";
App::$strings["%d minutes"] = "%d мин.";
App::$strings["about an hour"] = "около часа";
App::$strings["about %d hours"] = "около %d час.";
App::$strings["a day"] = "день";
App::$strings["%d days"] = "%d дн.";
App::$strings["about a month"] = "около месяца";
App::$strings["%d months"] = "%d мес.";
App::$strings["about a year"] = "около года";
App::$strings["%d years"] = "%d лет";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["New window"] = "Новое окно";
App::$strings["Open the selected location in a different window or browser tab"] = "Откройте выбранное местоположение в другом окне или вкладке браузера";
App::$strings["Male"] = "Мужской";
App::$strings["Female"] = "Женский";
App::$strings["Currently Male"] = "В настоящее время мужской";
App::$strings["Currently Female"] = "В настоящее время женский";
App::$strings["Mostly Male"] = "В основном мужской";
App::$strings["Mostly Female"] = "В основном женский";
App::$strings["Transgender"] = "Транссексуал";
App::$strings["Intersex"] = "Intersex";
App::$strings["Transsexual"] = "Транссексуал";
App::$strings["Hermaphrodite"] = "Гермафродит";
App::$strings["Neuter"] = "Среднего рода";
App::$strings["Non-specific"] = "Неспецифический";
App::$strings["Other"] = "Другой";
App::$strings["Undecided"] = "Нерешительный";
App::$strings["Males"] = "Самец";
App::$strings["Females"] = "Самка";
App::$strings["Gay"] = "Гей";
App::$strings["Lesbian"] = "Лесбиянка";
App::$strings["No Preference"] = "Без предпочтений";
App::$strings["Bisexual"] = "Двуполый";
App::$strings["Autosexual"] = "Autosexual";
App::$strings["Abstinent"] = "Воздержанный";
App::$strings["Virgin"] = "Девственница";
App::$strings["Deviant"] = "Отклоняющийся от нормы";
App::$strings["Fetish"] = "Фетиш";
App::$strings["Oodles"] = "Множественный";
App::$strings["Nonsexual"] = "Несексуальный";
App::$strings["Single"] = "Одинок";
App::$strings["Lonely"] = "Уединенный";
App::$strings["Available"] = "Доступный";
App::$strings["Unavailable"] = "Недоступный";
App::$strings["Has crush"] = "Столкновение";
App::$strings["Infatuated"] = "Влюбленный";
App::$strings["Dating"] = "Датировка";
App::$strings["Unfaithful"] = "Неверный";
App::$strings["Sex Addict"] = "Секс наркоман";
App::$strings["Friends/Benefits"] = "Друзья / Преимущества";
App::$strings["Casual"] = "Случайный";
App::$strings["Engaged"] = "Помолвленный";
App::$strings["Married"] = "Женат";
App::$strings["Imaginarily married"] = "Мысленно женат";
App::$strings["Partners"] = "Партнеры";
App::$strings["Cohabiting"] = "Сожительствующие";
App::$strings["Common law"] = "";
App::$strings["Happy"] = "Счастливый";
App::$strings["Not looking"] = "Не нуждаюсь";
App::$strings["Swinger"] = "";
App::$strings["Betrayed"] = "";
App::$strings["Separated"] = "";
App::$strings["Unstable"] = "Колеблющийся";
App::$strings["Divorced"] = "Разведенный";
App::$strings["Imaginarily divorced"] = "Мысленно разведенный";
App::$strings["Widowed"] = "Овдовевший";
App::$strings["Uncertain"] = "Неопределенный";
App::$strings["It's complicated"] = "Это сложно";
App::$strings["Don't care"] = "Не заботьтесь";
App::$strings["Ask me"] = "Спроси меня";
App::$strings["Logged out."] = "Вышел из системы.";
App::$strings["Failed authentication"] = "Ошибка аутентификации";
App::$strings["Login failed."] = "Не удалось войти.";
App::$strings["Permission denied"] = "Доступ запрещен";
App::$strings["(Unknown)"] = "(Неизвестный)";
App::$strings["Item not found."] = "Элемент не найден.";
App::$strings["Collection not found."] = "Коллекция не найдена.";
App::$strings["Collection is empty."] = "Коллекция пуста.";
App::$strings["Collection: %s"] = "Коллекции: %s";
App::$strings["Connection: %s"] = "Контакты: %s";
App::$strings["Connection not found."] = "Контакт не найден.";
App::$strings["Can view my \"public\" stream and posts"] = "Может просматривать мои \"публичные\" поток и сообщения";
App::$strings["Can view my \"public\" channel profile"] = "Может просматривать мой \"публичный\" профиль канала";
App::$strings["Can view my \"public\" photo albums"] = "Может просматривать мои \"публичные\" фотоальбомы";
App::$strings["Can view my \"public\" address book"] = "Может просматривать мою \"публичную\" адресную книгу";
App::$strings["Can view my \"public\" file storage"] = "Может просматривать мои \"публичные\" файлы";
App::$strings["Can view my \"public\" pages"] = "Может просматривать мои \"публичные\" страницы";
App::$strings["Can send me their channel stream and posts"] = "Может прислать мне свои потоки и сообщения";
App::$strings["Can post on my channel page (\"wall\")"] = "Может публиковать на моей странице канала (\"стена\")";
App::$strings["Can comment on my posts"] = "Может комментировать мои сообщения";
App::$strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте";
App::$strings["Can post photos to my photo albums"] = "Может публиковать фотографии в мои фотоальбомы";
App::$strings["Can forward to all my channel contacts via post @mentions"] = "";
App::$strings["Advanced - useful for creating group forum channels"] = "";
App::$strings["Can chat with me (when available)"] = "Можете общаться со мной в чате (при наличии)";
App::$strings["Can write to my \"public\" file storage"] = "Может писать в моё \"публичное\" хранилище файлов";
App::$strings["Can edit my \"public\" pages"] = "Может редактировать мои \"публичные\" страницы";
App::$strings["Can source my \"public\" posts in derived channels"] = "";
App::$strings["Somewhat advanced - very useful in open communities"] = "";
App::$strings["Can administer my channel resources"] = "Может администрировать мои ресурсы канала";
App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
App::$strings["Set your current mood and tell your friends"] = "";
App::$strings["Menu not found."] = "Меню не найдено.";
App::$strings["Menu element updated."] = "Меню обновлено.";
App::$strings["Unable to update menu element."] = "";
App::$strings["Menu element added."] = "Элемент меню добавлен.";
App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню.";
App::$strings["Not found."] = "Не найдено.";
App::$strings["Manage Menu Elements"] = "Управление элементов меню";
App::$strings["Edit menu"] = "Редактировать меню";
App::$strings["Edit element"] = "Редактировать элемент";
App::$strings["Drop element"] = "Удалить элемент";
App::$strings["New element"] = "Новый элемент";
App::$strings["Edit this menu container"] = "";
App::$strings["Add menu element"] = "Добавить элемент меню";
App::$strings["Delete this menu item"] = "Удалить элемент меню";
App::$strings["Edit this menu item"] = "Редактировать элемент меню";
App::$strings["New Menu Element"] = "Новый элемент меню";
App::$strings["Menu Item Permissions"] = "";
App::$strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
App::$strings["Link text"] = "Текст ссылки";
App::$strings["URL of link"] = "URL ссылки";
App::$strings["Use Red magic-auth if available"] = "";
App::$strings["Open link in new window"] = "Открыть ссылку в новом окне";
App::$strings["Order in list"] = "";
App::$strings["Higher numbers will sink to bottom of listing"] = "";
App::$strings["Menu item not found."] = "Элемент меню не найден.";
App::$strings["Menu item deleted."] = "Элемент меню удален.";
App::$strings["Menu item could not be deleted."] = "";
App::$strings["Edit Menu Element"] = "Редактировать элемент меню";
App::$strings["Modify"] = "Изменить";
App::$strings["sent you a private message"] = "отправил вам личное сообщение";
App::$strings["added your channel"] = "добавил ваш канал";
App::$strings["posted an event"] = "";
App::$strings["network"] = "сеть";
App::$strings["Name is required"] = "Необходимо имя";
App::$strings["Key and Secret are required"] = "";
App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён.";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён.";
App::$strings["Password changed."] = "Пароль изменен.";
App::$strings["Password update failed. Please try again."] = "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз.";
App::$strings["Not valid email."] = "Не действительный адрес электронной почты.";
App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить.";
App::$strings["System failure storing new email. Please try again."] = "";
App::$strings["Settings updated."] = "Настройки обновленны.";
App::$strings["Add application"] = "Добавить приложения";
App::$strings["Name"] = "Имя";
App::$strings["Name of application"] = "Название приложения";
App::$strings["Consumer Key"] = "Ключ клиента";
App::$strings["Automatically generated - change if desired. Max length 20"] = "";
App::$strings["Consumer Secret"] = "Секрет клиента";
App::$strings["Redirect"] = "Перенаправление";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "";
App::$strings["Icon url"] = "URL-адрес значка";
App::$strings["Optional"] = "Необязательно";
App::$strings["You can't edit this application."] = "Вы не можете редактировать это приложение.";
App::$strings["Connected Apps"] = "Подключенные приложения";
App::$strings["Client key starts with"] = "";
App::$strings["No name"] = "Без названия";
App::$strings["Remove authorization"] = "Удалить разрешение";
App::$strings["No feature settings configured"] = "Параметры функций не настроены";
App::$strings["Feature Settings"] = "Настройки функции";
App::$strings["Account Settings"] = "Настройки аккаунта";
App::$strings["Password Settings"] = "Настройки пароля";
App::$strings["New Password:"] = "Новый пароль:";
App::$strings["Confirm:"] = "Подтверждение:";
App::$strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми, если не меняется";
App::$strings["Email Address:"] = "Адрес электронной почты:";
App::$strings["Remove Account"] = "Удалить аккаунт";
App::$strings["Warning: This action is permanent and cannot be reversed."] = "";
App::$strings["Off"] = "Выкл.";
App::$strings["On"] = "Вкл.";
App::$strings["Additional Features"] = "Дополнительные функции";
App::$strings["Connector Settings"] = "Настройки соединителя";
App::$strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)";
App::$strings["Display Settings"] = "Настройки отображения";
App::$strings["Display Theme:"] = "Тема отображения:";
App::$strings["Mobile Theme:"] = "Мобильная тема отображения:";
App::$strings["Update browser every xx seconds"] = "Обновление браузера каждые ХХ секунд";
App::$strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума";
App::$strings["Maximum number of conversations to load at any time:"] = "";
App::$strings["Maximum of 100 items"] = "Максимум 100 элементов";
App::$strings["Don't show emoticons"] = "Не показывать emoticons";
App::$strings["System Page Layout Editor - (advanced)"] = "";
App::$strings["Nobody except yourself"] = "Никто, кроме вас";
App::$strings["Only those you specifically allow"] = "Только комы вы разрешили";
App::$strings["Approved connections"] = "Утвержденные контакты";
App::$strings["Any connections"] = "Все контакты";
App::$strings["Anybody on this website"] = "Любой на этом веб-сайте";
App::$strings["Anybody in this network"] = "Любой в этой сети";
App::$strings["Anybody authenticated"] = "";
App::$strings["Anybody on the internet"] = "Любой в интернете";
App::$strings["Publish your default profile in the network directory"] = "Публикация вашего профиля по умолчанию в каталоге сети";
App::$strings["No"] = "Нет";
App::$strings["Yes"] = "Да";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "";
App::$strings["or"] = "или";
App::$strings["Your channel address is"] = "Адрес канала:";
App::$strings["Channel Settings"] = "Настройки канала";
App::$strings["Basic Settings"] = "Основные настройки";
App::$strings["Your Timezone:"] = "Часовой пояс:";
App::$strings["Default Post Location:"] = "Откуда по умолчанию:";
App::$strings["Geographical location to display on your posts"] = "";
App::$strings["Use Browser Location:"] = "Использовать указание браузерa:";
App::$strings["Adult Content"] = "Содержимое для взрослых";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "";
App::$strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
App::$strings["Hide my online presence"] = "Скрыть мое присутствие";
App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает показ в вашем профиле, что вы онлайн";
App::$strings["Simple Privacy Settings:"] = "Быстрые настройки:";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "";
App::$strings["Private - <em>default private, never open or public</em>"] = "";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "";
App::$strings["Allow others to tag your posts"] = "Разрешить другим помечать сообщения";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "";
App::$strings["Advanced Privacy Settings"] = "Дополнительные настройки";
App::$strings["Expire other channel content after this many days"] = "";
App::$strings["0 or blank prevents expiration"] = "";
App::$strings["Maximum Friend Requests/Day:"] = "";
App::$strings["May reduce spam activity"] = "Может уменьшить активность спам";
App::$strings["Default Post Permissions"] = "Настройки по умолчанию";
App::$strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей:";
App::$strings["Useful to reduce spamming"] = "Полезно для уменьшения активности спам";
App::$strings["Notification Settings"] = "Настройки уведомлений";
App::$strings["By default post a status message when:"] = "";
App::$strings["accepting a friend request"] = "";
App::$strings["joining a forum/community"] = "";
App::$strings["making an <em>interesting</em> profile change"] = "";
App::$strings["Send a notification email when:"] = "Отправить уведомление по электронной почте, если:";
App::$strings["You receive a connection request"] = "";
App::$strings["Your connections are confirmed"] = "";
App::$strings["Someone writes on your profile wall"] = "";
App::$strings["Someone writes a followup comment"] = "";
App::$strings["You receive a private message"] = "Вы получили личное сообщение";
App::$strings["You receive a friend suggestion"] = "Вы получили предложение дружить";
App::$strings["You are tagged in a post"] = "";
App::$strings["You are poked/prodded/etc. in a post"] = "";
App::$strings["Advanced Account/Page Type Settings"] = "";
App::$strings["Change the behaviour of this account for special situations"] = "";
App::$strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "";
App::$strings["Miscellaneous Settings"] = "Дополнительные настройки";
App::$strings["Personal menu to display in your channel pages"] = "";
App::$strings["Poke/Prod"] = "";
App::$strings["poke, prod or do other things to somebody"] = "";
App::$strings["Recipient"] = "Получатель";
App::$strings["Choose what you wish to do to recipient"] = "";
App::$strings["Make this post private"] = "Сделать это сообщение личным";
App::$strings["Authorize application connection"] = "";
App::$strings["Return to your app and insert this Securty Code:"] = "";
App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить.";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
App::$strings["Welcome %s. Remote authentication successful."] = "Добро пожаловать %s. Удаленная аутентификация успешно завершена.";
App::$strings["Item not available."] = "Элемент недоступен.";
App::$strings["Fetching URL returns error: %1\$s"] = "";
App::$strings["Invalid item."] = "Недействительный элемент.";
App::$strings["Channel not found."] = "Канал не найден.";
App::$strings["Page not found."] = "Страница не найдена.";
App::$strings["Image uploaded but image cropping failed."] = "";
App::$strings["Image resize failed."] = "Изменение размера изображения не удалось.";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
App::$strings["Image exceeds size limit of %d"] = "";
App::$strings["Unable to process image."] = "Невозможно обработать изображение.";
App::$strings["Photo not available."] = "Фотография не доступна.";
App::$strings["Upload File:"] = "Загрузить файл:";
App::$strings["Select a profile:"] = "Выберите профиль:";
App::$strings["Upload Profile Photo"] = "Загрузить фотографию профиля";
App::$strings["skip this step"] = "пропустить этот шаг";
App::$strings["select a photo from your photo albums"] = "";
App::$strings["Crop Image"] = "Обрезать изображение";
App::$strings["Please adjust the image cropping for optimum viewing."] = "";
App::$strings["Done Editing"] = "Закончить редактирование";
App::$strings["Image uploaded successfully."] = "Загрузка изображениея прошла успешно.";
App::$strings["Image upload failed."] = "Загрузка изображениея прошла безуспешно.";
App::$strings["Image size reduction [%s] failed."] = "";
App::$strings["Block Name"] = "Название блока";
App::$strings["Profile not found."] = "Профиль не найден.";
App::$strings["Profile deleted."] = "Профиль удален.";
App::$strings["Profile-"] = "Профиль-";
App::$strings["New profile created."] = "Новый профиль создан.";
App::$strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
App::$strings["Profile Name is required."] = "Имя профиля требуется.";
App::$strings["Marital Status"] = "Семейное положение";
App::$strings["Romantic Partner"] = "Романтический партнер";
App::$strings["Likes"] = "нравится";
App::$strings["Dislikes"] = "не-нравится";
App::$strings["Work/Employment"] = "Работа / Занятость";
App::$strings["Religion"] = "Религия";
App::$strings["Political Views"] = "Политические взгляды";
App::$strings["Gender"] = "Пол";
App::$strings["Sexual Preference"] = "Сексуальная ориентация";
App::$strings["Homepage"] = "Домашняя страница";
App::$strings["Interests"] = "Интересы";
App::$strings["Address"] = "Адрес";
App::$strings["Location"] = "Место";
App::$strings["Profile updated."] = "Профиль обновлен.";
App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать от просмотра ваш список контактов/друзей в этом профиле?";
App::$strings["Edit Profile Details"] = "Редактирование профиля";
App::$strings["View this profile"] = "Посмотреть этот профиль";
App::$strings["Change Profile Photo"] = "Изменить фотографию профиля";
App::$strings["Create a new profile using these settings"] = "Создайте новый профиль со следующими настройками";
App::$strings["Clone this profile"] = "Клонировать этот профиль";
App::$strings["Delete this profile"] = "Удалить этот профиль";
App::$strings["Profile Name:"] = "Имя профиля:";
App::$strings["Your Full Name:"] = "Ваше полное имя:";
App::$strings["Title/Description:"] = "Название / Описание:";
App::$strings["Your Gender:"] = "Ваш пол:";
App::$strings["Birthday (%s):"] = "Ваш День Рождения (%s):";
App::$strings["Street Address:"] = "Улица:";
App::$strings["Locality/City:"] = "Населенный пункт / город:";
App::$strings["Postal/Zip Code:"] = "Почтовый индекс:";
App::$strings["Country:"] = "Страна:";
App::$strings["Region/State:"] = "Регион / Область:";
App::$strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
App::$strings["Who: (if applicable)"] = "Кто: (если это применимо)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Cathy Williams, cathy@example.com";
App::$strings["Since [date]:"] = "С тех пор [date]:";
App::$strings["Homepage URL:"] = "URL-адрес домашней страницы:";
App::$strings["Religious Views:"] = "Религиозные взгляды:";
App::$strings["Keywords:"] = "Ключевые слова:";
App::$strings["Example: fishing photography software"] = "Пример: fishing photography software";
App::$strings["Used in directory listings"] = "";
App::$strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
App::$strings["Hobbies/Interests"] = "Хобби / интересы";
App::$strings["Contact information and Social Networks"] = "Информация и социальные сети контакта";
App::$strings["My other channels"] = "Мои другие контакты";
App::$strings["Musical interests"] = "Музыкальные интересы";
App::$strings["Books, literature"] = "Книги, литература";
App::$strings["Television"] = "Телевидение";
App::$strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
App::$strings["Love/romance"] = "Любовь / Романс";
App::$strings["Work/employment"] = "Работа / Занятость";
App::$strings["School/education"] = "Школа / образование";
App::$strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
App::$strings["Age: "] = "Возраст:";
App::$strings["Edit/Manage Profiles"] = "Редактирование  / Управление профилей";
App::$strings["Add profile things"] = "";
App::$strings["Include desirable objects in your profile"] = "";
App::$strings["Bookmark added"] = "Закладка добавлена";
App::$strings["My Bookmarks"] = "Мои закладки";
App::$strings["My Connections Bookmarks"] = "Закладки моих контактов";
App::$strings["Invalid profile identifier."] = "";
App::$strings["Profile Visibility Editor"] = "Редактор видимости профиля";
App::$strings["Click on a contact to add or remove."] = "Нажмите на канал, чтобы добавить или удалить.";
App::$strings["Visible To"] = "Видно";
App::$strings["All Connections"] = "Все контакты";
App::$strings["Public Sites"] = "Публичные сайты";
App::$strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "";
App::$strings["Site URL"] = "URL веб-сайта";
App::$strings["Access Type"] = "Тип доступа";
App::$strings["Registration Policy"] = "Правила регистрации";
App::$strings["You must be logged in to see this page."] = "Вы должны авторизоваться, чтобы увидеть эту страницу.";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "";
App::$strings["Select a bookmark folder"] = "";
App::$strings["Save Bookmark"] = "Сохранить закладки";
App::$strings["URL of bookmark"] = "";
App::$strings["Description"] = "Описание";
App::$strings["Or enter new bookmark folder name"] = "";
App::$strings["Room not found"] = "";
App::$strings["Leave Room"] = "";
App::$strings["Delete This Room"] = "";
App::$strings["I am away right now"] = "";
App::$strings["I am online"] = "Я в сети";
App::$strings["Bookmark this room"] = "";
App::$strings["New Chatroom"] = "Новый чат";
App::$strings["Chatroom Name"] = "Название чата";
App::$strings["%1\$s's Chatrooms"] = "Чаты пользователя %1\$s";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
App::$strings["Passwords do not match."] = "Пароли не совпадают.";
App::$strings["Registration successful. Please check your email for validation instructions."] = "";
App::$strings["Your registration is pending approval by the site owner."] = "";
App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
App::$strings["Registration on this site/hub is by approval only."] = "";
App::$strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
App::$strings["Terms of Service"] = "Условия предоставления услуг";
App::$strings["I accept the %s for this website"] = "";
App::$strings["I am over 13 years of age and accept the %s for this website"] = "";
App::$strings["Registration"] = "Регистрация";
App::$strings["Membership on this site is by invitation only."] = "";
App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения";
App::$strings["Your email address"] = "Ваш адрес электронной почты";
App::$strings["Choose a password"] = "Выберите пароль";
App::$strings["Please re-enter your password"] = "Пожалуйста, введите пароль еще раз";
App::$strings["Away"] = "Нет на месте";
App::$strings["Online"] = "Сейчас в сети";
App::$strings["Please login."] = "Войдите пожалуйста.";
App::$strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "";
App::$strings["Remove This Channel"] = "Удалить этот канал";
App::$strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "";
App::$strings["Please enter your password for verification:"] = "Пожалуйста, введите пароль для проверки:";
App::$strings["Remove this channel and all its clones from the network"] = "Удалить этот канал и все его клоны из сети";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "";
App::$strings["Remove Channel"] = "Удалить канал";
App::$strings["No channel."] = "Не канал.";
App::$strings["Common connections"] = "Общие контакты";
App::$strings["No connections in common."] = "Общих контактов нет.";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
App::$strings["The error message was:"] = "Сообщение об ошибке было:";
App::$strings["Authentication failed."] = "Ошибка проверки подлинности.";
App::$strings["Remote Authentication"] = "Удаленная аутентификация";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)";
App::$strings["Authenticate"] = "Проверка подлинности";
App::$strings["Continue"] = "Продолжить";
App::$strings["Premium Channel Setup"] = "Установка премиум канала";
App::$strings["Enable premium channel connection restrictions"] = "";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "";
App::$strings["Potential connections will then see the following text before proceeding:"] = "";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "";
App::$strings["Restricted or Premium Channel"] = "Ограниченный или Премиум канал";
App::$strings["No such group"] = "Нет такой группы";
App::$strings["Search Results For:"] = "Результаты поиска для:";
App::$strings["Collection is empty"] = "Коллекция пуста";
App::$strings["Collection: "] = "Коллекции: ";
App::$strings["Connection: "] = "Контакты: ";
App::$strings["Invalid connection."] = "";
App::$strings["Could not access contact record."] = "";
App::$strings["Could not locate selected profile."] = "";
App::$strings["Connection updated."] = "Связи обновленны.";
App::$strings["Failed to update connection record."] = "";
App::$strings["Blocked"] = "Заблокированные";
App::$strings["Ignored"] = "Игнорируемые";
App::$strings["Hidden"] = "Скрытые";
App::$strings["Archived"] = "Зархивированные";
App::$strings["All"] = "Все";
App::$strings["Unconnected"] = "Неприсоединенные";
App::$strings["Suggest new connections"] = "Предлагать новые контакты";
App::$strings["New Connections"] = "Новые контакты";
App::$strings["Show pending (new) connections"] = "Просмотр (новых) ждущих контактов";
App::$strings["Show all connections"] = "Просмотр всех контактов";
App::$strings["Unblocked"] = "Разрешенные";
App::$strings["Only show unblocked connections"] = "Показать только разрешенные контакты";
App::$strings["Only show blocked connections"] = "Показать только заблокированные контакты";
App::$strings["Only show ignored connections"] = "Показать только проигнорированные контакты";
App::$strings["Only show archived connections"] = "Показать только архивированные контакты";
App::$strings["Only show hidden connections"] = "Показать только скрытые контакты";
App::$strings["Only show one-way connections"] = "";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
App::$strings["Edit contact"] = "Редактировать контакт";
App::$strings["Search your connections"] = "Поиск ваших связей";
App::$strings["Finding: "] = "Поиск:";
App::$strings["Edit post"] = "Редактировать сообщение";
App::$strings["Could not access address book record."] = "";
App::$strings["Refresh failed - channel is currently unavailable."] = "";
App::$strings["Channel has been unblocked"] = "Канал разблокирован";
App::$strings["Channel has been blocked"] = "Канал заблокирован";
App::$strings["Unable to set address book parameters."] = "";
App::$strings["Channel has been unignored"] = "Канал не проигнорирован";
App::$strings["Channel has been ignored"] = "Канал проигнорирован";
App::$strings["Channel has been unarchived"] = "Канал разархивирован";
App::$strings["Channel has been archived"] = "Канал заархивирован";
App::$strings["Channel has been unhidden"] = "Канал открыт";
App::$strings["Channel has been hidden"] = "Канал скрыт";
App::$strings["Channel has been approved"] = "Канал одобрен";
App::$strings["Channel has been unapproved"] = "Канал не одобрен";
App::$strings["Connection has been removed."] = "Соединение было удалено.";
App::$strings["View %s's profile"] = "Просмотр %s's профиля";
App::$strings["Refresh Permissions"] = "Обновить разрешения";
App::$strings["Fetch updated permissions"] = "";
App::$strings["Recent Activity"] = "";
App::$strings["View recent posts and comments"] = "";
App::$strings["Unblock"] = "Разрешить";
App::$strings["Block"] = "Заблокировать";
App::$strings["Block or Unblock this connection"] = "Запретить или разрешить этот канал";
App::$strings["Unignore"] = "Не игнорировать";
App::$strings["Ignore"] = "Игнорировать";
App::$strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать этот канал";
App::$strings["Unarchive"] = "Разархивировать";
App::$strings["Archive"] = "Заархивировать";
App::$strings["Archive or Unarchive this connection"] = " Заархивировать или разархивировать этот канал";
App::$strings["Unhide"] = "Показать";
App::$strings["Hide"] = "Скрыть";
App::$strings["Hide or Unhide this connection"] = "Скрыть или показывать этот канал";
App::$strings["Delete this connection"] = "Удалить этот контакт";
App::$strings["Approve this connection"] = "Утвердить этот контакт";
App::$strings["Accept connection to allow communication"] = "";
App::$strings["Automatic Permissions Settings"] = "Настройки автоматических разрешений";
App::$strings["Connections: settings for %s"] = "";
App::$strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = "";
App::$strings["Slide to adjust your degree of friendship"] = "";
App::$strings["inherited"] = "унаследованный";
App::$strings["Connection has no individual permissions!"] = "";
App::$strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
App::$strings["Profile Visibility"] = "Видимость профиля";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
App::$strings["Contact Information / Notes"] = "Информация / Примечания о канале";
App::$strings["Edit contact notes"] = "Редактировать примечания канала";
App::$strings["Their Settings"] = "Их настройки";
App::$strings["My Settings"] = "Мои настройки";
App::$strings["Clear/Disable Automatic Permissions"] = "";
App::$strings["Forum Members"] = "Участники форума";
App::$strings["Soapbox"] = "Soapbox";
App::$strings["Full Sharing (typical social network permissions)"] = "";
App::$strings["Cautious Sharing "] = "";
App::$strings["Follow Only"] = "Только следовать";
App::$strings["Individual Permissions"] = "Индивидуальные разрешения";
App::$strings["Some permissions may be inherited from your channel <a href=\"settings\">privacy settings</a>, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "";
App::$strings["Advanced Permissions"] = "Дополнительные разрешения";
App::$strings["Simple Permissions (select one and submit)"] = "";
App::$strings["Visit %s's profile - %s"] = "Посетить %s's ​​профиль - %s";
App::$strings["Block/Unblock contact"] = "Запретить/разрешить контакт";
App::$strings["Ignore contact"] = "Игнорировать контакт";
App::$strings["Repair URL settings"] = "Ремонт настройки URL";
App::$strings["View conversations"] = "Просмотр разговоров";
App::$strings["Delete contact"] = "Удалить контакт";
App::$strings["Last update:"] = "Последнее обновление:";
App::$strings["Update public posts"] = "Обновить публичные сообщения";
App::$strings["Update now"] = "Обновить сейчас";
App::$strings["Currently blocked"] = "В настоящее время заблокирован";
App::$strings["Currently ignored"] = "В настоящее время игнорируются";
App::$strings["Currently archived"] = "В настоящее время зархивированны";
App::$strings["Currently pending"] = "В настоящее время в ожидании";
App::$strings["Hide this contact from others"] = "Скрыть этот канал от других";
App::$strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
App::$strings["No potential page delegates located."] = "";
App::$strings["Delegate Page Management"] = "";
App::$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."] = "";
App::$strings["Existing Page Managers"] = "";
App::$strings["Existing Page Delegates"] = "";
App::$strings["Potential Delegates"] = "";
App::$strings["Remove"] = "Удалить";
App::$strings["Add"] = "Добавить";
App::$strings["No entries."] = "Нет записей.";
App::$strings["Public access denied."] = "Общественный доступ запрещен.";
App::$strings["Gender: "] = "Пол:";
App::$strings["Finding:"] = "Поиск:";
App::$strings["next page"] = "следующая страница";
App::$strings["previous page"] = "предыдущая страница";
App::$strings["No entries (some entries may be hidden)."] = "";
App::$strings["Status: "] = "Статус:";
App::$strings["Sexual Preference: "] = "Сексуальная ориентация:";
App::$strings["Homepage: "] = "Домашняя страница:";
App::$strings["Hometown: "] = "Город проживания:";
App::$strings["About: "] = "О себе:";
App::$strings["Keywords: "] = "Ключевые слова:";
App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога";
App::$strings["Hubzilla - &quot;The Network&quot;"] = "";
App::$strings["Welcome to %s"] = "Добро пожаловать в %s";
App::$strings["Hubzilla Server - Setup"] = "Hubzilla Сервер - Установка";
App::$strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных.";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
App::$strings["Could not create table."] = "Не удалось создать таблицу.";
App::$strings["Your site database has been installed."] = "Ваша база данных установлена.";
App::$strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\".";
App::$strings["System check"] = "Проверка системы";
App::$strings["Next"] = "Следующая";
App::$strings["Check again"] = "Проверить снова";
App::$strings["Database connection"] = "Подключение к базе данных";
App::$strings["In order to install Hubzilla we need to know how to connect to your database."] = "";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
App::$strings["Database Server Name"] = "Имя сервера базы данных";
App::$strings["Default is localhost"] = "По умолчанию localhost";
App::$strings["Database Port"] = "Порт базы данных";
App::$strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию";
App::$strings["Database Login Name"] = "Имя для подключения к базе данных";
App::$strings["Database Login Password"] = "Пароль для подключения к базе данных";
App::$strings["Database Name"] = "Имя базы данных";
App::$strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "";
App::$strings["Website URL"] = "URL веб-сайта";
App::$strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно.";
App::$strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
App::$strings["Site settings"] = "Настройки сайта";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "";
App::$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."] = "";
App::$strings["PHP executable path"] = "PHP executable путь";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
App::$strings["Command line PHP"] = "Command line PHP";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
App::$strings["This is required for message delivery to work."] = "Это требуется для доставки сообщений.";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\".";
App::$strings["Generate encryption keys"] = "Генерация ключей шифрования";
App::$strings["libCurl PHP module"] = "libCurl PHP модуль";
App::$strings["GD graphics PHP module"] = "GD graphics PHP модуль";
App::$strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
App::$strings["mysqli PHP module"] = "mysqli PHP модуль";
App::$strings["mb_string PHP module"] = "mb_string PHP модуль";
App::$strings["mcrypt PHP module"] = "mcrypt PHP модуль";
App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite модуль";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: Apache веб-сервер модуль mod-rewrite требуется, но не установлен.";
App::$strings["proc_open"] = "proc_open";
App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Ошибка: proc_open требуется, но не установлен или отключен в php.ini";
App::$strings["Error: libCURL PHP module required but not installed."] = "Ошибка: Модуль libCURL PHP требуется, но не установлен.";
App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: GD graphics PHP модуль с поддержкой JPEG требуется, но не установлен.";
App::$strings["Error: openssl PHP module required but not installed."] = "Ошибка: openssl PHP модуль требуется, но не установлен.";
App::$strings["Error: mysqli PHP module required but not installed."] = "Ошибка: mysqli PHP модуль требуется, но не установлен.";
App::$strings["Error: mb_string PHP module required but not installed."] = "Ошибка: mb_string PHP модуль требуется, но не установлен.";
App::$strings["Error: mcrypt PHP module required but not installed."] = "Ошибка: mcrypt PHP модуль требуется, но не установлен.";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "Веб-установщик должен быть в состоянии создать файл с именем \".htconfig.php\" в верхней папке вашего веб-сервера, но он не в состоянии сделать это.";
App::$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."] = "";
App::$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."] = "";
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Вы можете пропустить эту процедуру и выполнить установку вручную. Обратитесь к файлу \"install/INSTALL.txt\" для получения инструкций.";
App::$strings[".htconfig.php is writable"] = ".htconfig.php доступен для записи";
App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
App::$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."] = "";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
App::$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."] = "";
App::$strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 доступен для записи";
App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "";
App::$strings["store is writable"] = "";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "";
App::$strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "";
App::$strings["SSL certificate validation"] = "проверка сертификата SSL";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
App::$strings["Url rewrite is working"] = "Url rewrite работает";
App::$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."] = "";
App::$strings["Errors encountered creating database tables."] = "";
App::$strings["<h1>What next</h1>"] = "<h1>Что дальше</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
App::$strings["Item not found"] = "Элемент не найден";
App::$strings["Edit Block"] = "Редактировать блок";
App::$strings["Delete block?"] = "Удалить блок?";
App::$strings["Insert YouTube video"] = "Вставить YouTube видео";
App::$strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео";
App::$strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] музыку";
App::$strings["Delete Block"] = "Удалить блок";
App::$strings["Layout updated."] = "Шаблон обновлен.";
App::$strings["Edit System Page Description"] = "";
App::$strings["Layout not found."] = "Шаблон не найден";
App::$strings["Module Name:"] = "Имя модуля:";
App::$strings["Layout Help"] = "Помощь к шаблону";
App::$strings["Edit Layout"] = "Редактировать шаблон";
App::$strings["Delete layout?"] = "Удалить шаблон?";
App::$strings["Delete Layout"] = "Удалить шаблон";
App::$strings["Item is not editable"] = "Элемент нельзя редактировать";
App::$strings["Delete item?"] = "Удалить элемент?";
App::$strings["Edit Webpage"] = "Редактировать веб-страницу";
App::$strings["Delete webpage?"] = "Удалить веб-страницу?";
App::$strings["Delete Webpage"] = "Удалить веб-страницу";
App::$strings["Version %s"] = "Версия %s";
App::$strings["Installed plugins/addons/apps:"] = "";
App::$strings["No installed plugins/addons/apps"] = "";
App::$strings["Red"] = "Red";
App::$strings["This is a hub of the Hubzilla - a global cooperative network of decentralised privacy enhanced websites."] = "";
App::$strings["Running at web location"] = "";
App::$strings["Please visit <a href=\"http://getzot.com\">GetZot.com</a> to learn more about the Hubzilla."] = "Пожалуйста посетите <a href=\"http://getzot.com\">GetZot.com</a> чтобы узнать больше о Hubzilla.";
App::$strings["Bug reports and issues: please visit"] = "";
App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "";
App::$strings["Site Administrators"] = "Администратор сайта";
App::$strings["Page owner information could not be retrieved."] = "";
App::$strings["Album not found."] = "Альбом не найден.";
App::$strings["Delete Album"] = "Удалить альбом";
App::$strings["Delete Photo"] = "Удалить фотографию";
App::$strings["No photos selected"] = "Никакие фотографии не выбраны";
App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен.";
App::$strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото.";
App::$strings["You have used %1$.2f Mbytes of photo storage."] = "Вы использовали %1$.2f мегабайт для хранения фото.";
App::$strings["Upload Photos"] = "Загрузить фотографии";
App::$strings["New album name: "] = "Название нового альбома:";
App::$strings["or existing album name: "] = "или существующий альбом:";
App::$strings["Do not show a status post for this upload"] = "Не показывать пост о состоянии этой загрузки";
App::$strings["Contact Photos"] = "Фотографии контакта";
App::$strings["Edit Album"] = "Редактировать Фотоальбом";
App::$strings["Show Newest First"] = "Показать новые первыми";
App::$strings["Show Oldest First"] = "Показать старые первыми";
App::$strings["View Photo"] = "Посмотреть фотографию";
App::$strings["Permission denied. Access to this item may be restricted."] = "";
App::$strings["Photo not available"] = "Фотография не доступна";
App::$strings["Use as profile photo"] = "Использовать в качестве фотографии профиля";
App::$strings["View Full Size"] = "Посмотреть в полный размер";
App::$strings["Edit photo"] = "Редактировать фотографию";
App::$strings["Rotate CW (right)"] = "Повернуть CW (направо)";
App::$strings["Rotate CCW (left)"] = "Повернуть CCW (налево)";
App::$strings["New album name"] = "Новое название альбома:";
App::$strings["Caption"] = "Подпись";
App::$strings["Add a Tag"] = "Добавить тег";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
App::$strings["In This Photo:"] = "";
App::$strings["View Album"] = "Посмотреть фотоальбом";
App::$strings["Recent Photos"] = "Последние фотографии";
App::$strings["Failed to create source. No channel selected."] = "";
App::$strings["Source created."] = "Источник создан";
App::$strings["Source updated."] = "Источник обновлен.";
App::$strings["*"] = "*";
App::$strings["Manage remote sources of content for your channel."] = "";
App::$strings["New Source"] = "Новый источник";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "";
App::$strings["Only import content with these words (one per line)"] = "";
App::$strings["Leave blank to import all public content"] = "";
App::$strings["Channel Name"] = "Имя канала";
App::$strings["Source not found."] = "Источник не найден.";
App::$strings["Edit Source"] = "Редактировать источник";
App::$strings["Delete Source"] = "Удалить источник";
App::$strings["Source removed"] = "Источник удален";
App::$strings["Unable to remove source."] = "";
App::$strings["- select -"] = "- выбрать -";
App::$strings["Event title and start time are required."] = "Название события и время начала требуется.";
App::$strings["l, F j"] = "l, F j";
App::$strings["Edit event"] = "Редактировать мероприятие";
App::$strings["Create New Event"] = "Создать новое мероприятие";
App::$strings["Previous"] = "Предыдущая";
App::$strings["hour:minute"] = "часы:минуты";
App::$strings["Event details"] = "Детали мероприятия";
App::$strings["Format is %s %s. Starting date and Title are required."] = "Формат: %s %s. Дата начала и название необходимы.";
App::$strings["Event Starts:"] = "Начало мероприятия:";
App::$strings["Required"] = "Необходимо";
App::$strings["Finish date/time is not known or not relevant"] = "Дата окончания или время окончания не известно / не релевантно.";
App::$strings["Event Finishes:"] = "\t\nКонец мероприятий:";
App::$strings["Adjust for viewer timezone"] = "Отрегулируйте для просмотра часовых поясов";
App::$strings["Description:"] = "Описание:";
App::$strings["Title:"] = "Заголовок:";
App::$strings["Share this event"] = "Поделиться этим мероприятием";
App::$strings["Permission Denied."] = "Доступ запрещен.";
App::$strings["File not found."] = "Файл не найден.";
App::$strings["Edit file permissions"] = "Редактировать разрешения файла";
App::$strings["Set/edit permissions"] = "";
App::$strings["Include all files and sub folders"] = "";
App::$strings["Return to file list"] = "";
App::$strings["Copy/paste this code to attach file to a post"] = "";
App::$strings["Copy/paste this URL to link file from a web page"] = "";
App::$strings["Channel added."] = "Контакт добавлен.";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s следит %2\$s's %3\$s";
App::$strings["Contact not found."] = "Контакт не найден.";
App::$strings["Friend suggestion sent."] = "Предложение дружить отправлено.";
App::$strings["Suggest Friends"] = "Пригласить друзей";
App::$strings["Suggest a friend for %s"] = "";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
App::$strings["Collection created."] = "Коллекция создана.";
App::$strings["Could not create collection."] = "Не удалось создать коллекцию.";
App::$strings["Collection updated."] = "";
App::$strings["Create a collection of channels."] = "Создать коллекцию контактов";
App::$strings["Collection Name: "] = "Название коллекции:";
App::$strings["Members are visible to other channels"] = "Пользователи могут видеть другие каналы";
App::$strings["Collection removed."] = "Коллекция удалена.";
App::$strings["Unable to remove collection."] = "Невозможно удалить коллекцию.";
App::$strings["Collection Editor"] = "Редактор коллекций";
App::$strings["Members"] = "Участники";
App::$strings["All Connected Channels"] = "Все подключенные контакы";
App::$strings["Click on a channel to add or remove."] = "Нажмите на канал, чтобы добавить или удалить.";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
App::$strings["Help:"] = "Помощь:";
App::$strings["Not Found"] = "Не найдено";
App::$strings["Tag removed"] = "Тег удален";
App::$strings["Remove Item Tag"] = "Удалить Тег";
App::$strings["Select a tag to remove: "] = "Выбрать тег для удаления: ";
App::$strings["Theme settings updated."] = "Настройки темы обновленны.";
App::$strings["Site"] = "Сайт";
App::$strings["Accounts"] = "Пользователи";
App::$strings["Channels"] = "Каналы";
App::$strings["Plugins"] = "Плагины";
App::$strings["Themes"] = "Темы";
App::$strings["Server"] = "Серверы";
App::$strings["DB updates"] = "Обновление базы данных";
App::$strings["Logs"] = "Журналы";
App::$strings["Plugin Features"] = "Функции плагинов";
App::$strings["User registrations waiting for confirmation"] = "Регистрации пользователей, которые ждут подтверждения";
App::$strings["Message queues"] = "Очередь недоставленных сообщений";
App::$strings["Administration"] = "Администрация";
App::$strings["Summary"] = "Резюме";
App::$strings["Registered users"] = "Всего пользователeй";
App::$strings["Pending registrations"] = "Ждут утверждения";
App::$strings["Version"] = "Версия системы";
App::$strings["Active plugins"] = "Активные плагины";
App::$strings["Site settings updated."] = "Настройки сайта обновлены.";
App::$strings["No special theme for accessibility"] = "";
App::$strings["Yes - with approval"] = "";
App::$strings["My site is not a public server"] = "";
App::$strings["My site has paid access only"] = "";
App::$strings["My site has free access only"] = "";
App::$strings["My site offers free accounts with optional paid upgrades"] = "";
App::$strings["File upload"] = "Загрузка файла";
App::$strings["Policies"] = "Правила";
App::$strings["Site name"] = "Название сайта";
App::$strings["Banner/Logo"] = "Баннер / логотип";
App::$strings["Administrator Information"] = "Информация об администраторе";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "";
App::$strings["System language"] = "Язык системы";
App::$strings["System theme"] = "Тема системы";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
App::$strings["Mobile system theme"] = "Мобильная тема системы";
App::$strings["Theme for mobile devices"] = "Тема для мобильных устройств";
App::$strings["Accessibility system theme"] = "";
App::$strings["Accessibility theme"] = "";
App::$strings["Channel to use for this website's static pages"] = "";
App::$strings["Site Channel"] = "Канал сайта";
App::$strings["Maximum image size"] = "Максимальный размер";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
App::$strings["Does this site allow new member registration?"] = "";
App::$strings["Which best describes the types of account offered by this hub?"] = "";
App::$strings["Register text"] = "Текст регистрации";
App::$strings["Will be displayed prominently on the registration page."] = "";
App::$strings["Accounts abandoned after x days"] = "";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
App::$strings["Allowed friend domains"] = "Разрешенные домены друзей";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
App::$strings["Allowed email domains"] = "Разрешенные домены электронной почты";
App::$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"] = "";
App::$strings["Block public"] = "Блокировать публичный доступ";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
App::$strings["Force publish"] = "Заставить публиковать";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "";
App::$strings["Disable discovery tab"] = "Отключить вкладку \"обнаруженные\"";
App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "";
App::$strings["No login on Homepage"] = "";
App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "";
App::$strings["Proxy user"] = "Proxy пользователь";
App::$strings["Proxy URL"] = "Proxy URL";
App::$strings["Network timeout"] = "Время ожидания сети";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
App::$strings["Delivery interval"] = "Интервал доставки";
App::$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."] = "";
App::$strings["Poll interval"] = "Интервал опроса";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
App::$strings["Maximum Load Average"] = "";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
App::$strings["No server found"] = "Сервер не найден";
App::$strings["ID"] = "ID";
App::$strings["for channel"] = "для канала";
App::$strings["on server"] = "на сервере";
App::$strings["Status"] = "Статус";
App::$strings["Update has been marked successful"] = "";
App::$strings["Executing %s failed. Check system logs."] = "";
App::$strings["Update %s was successfully applied."] = "";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "";
App::$strings["Update function %s could not be found."] = "";
App::$strings["No failed updates."] = "Ошибок обновлений нет.";
App::$strings["Failed Updates"] = "Обновления с ошибками";
App::$strings["Mark success (if update was manually applied)"] = "";
App::$strings["Attempt to execute this update step automatically"] = "";
App::$strings["%s user blocked/unblocked"] = array(
	0 => "",
	1 => "",
	2 => "",
);
App::$strings["%s user deleted"] = array(
	0 => "%s канал удален",
	1 => "%s канала удалены",
	2 => "%s каналов удалено",
);
App::$strings["Account not found"] = "Аккаунт не найден";
App::$strings["User '%s' deleted"] = "Пользователь '%s' удален";
App::$strings["User '%s' unblocked"] = "Пользователь '%s' разрешен";
App::$strings["User '%s' blocked"] = "Пользователь '%s' заблокирован";
App::$strings["Users"] = "Пользователи";
App::$strings["select all"] = "выбрать все";
App::$strings["User registrations waiting for confirm"] = "Регистрации пользователей ждут подтверждения";
App::$strings["Request date"] = "Дата запроса";
App::$strings["No registrations."] = "Новых регистраций пока нет.";
App::$strings["Approve"] = "Утвердить";
App::$strings["Deny"] = "Запретить";
App::$strings["Register date"] = "Дата регистрации";
App::$strings["Last login"] = "Последний вход";
App::$strings["Expires"] = "";
App::$strings["Service Class"] = "Класс службы";
App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "",
	1 => "",
	2 => "",
);
App::$strings["%s channel deleted"] = array(
	0 => "%s канал удален",
	1 => "%s канала удалены",
	2 => "%s каналы удалены",
);
App::$strings["Channel not found"] = "Канал не найден";
App::$strings["Channel '%s' deleted"] = "Канал '%s' удален";
App::$strings["Channel '%s' uncensored"] = "";
App::$strings["Channel '%s' censored"] = "";
App::$strings["Censor"] = "";
App::$strings["Uncensor"] = "";
App::$strings["UID"] = "UID";
App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
App::$strings["Plugin %s disabled."] = "Плагин %s отключен.";
App::$strings["Plugin %s enabled."] = "Плагин %s включен.";
App::$strings["Disable"] = "Запретить";
App::$strings["Enable"] = "Разрешить";
App::$strings["Toggle"] = "Переключить";
App::$strings["Author: "] = "Автор: ";
App::$strings["Maintainer: "] = "Обслуживающий: ";
App::$strings["No themes found."] = "Темы не найдены.";
App::$strings["Screenshot"] = "Скриншот";
App::$strings["[Experimental]"] = "[экспериментальный]";
App::$strings["[Unsupported]"] = "[неподдерживаемый]";
App::$strings["Log settings updated."] = "Настройки журнала обновленны.";
App::$strings["Clear"] = "Очистить";
App::$strings["Debugging"] = "Включить/Выключить";
App::$strings["Log file"] = "Файл журнала";
App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта.";
App::$strings["Log level"] = "Уровень журнала";
App::$strings["Thing updated"] = "";
App::$strings["Object store: failed"] = "";
App::$strings["Thing added"] = "";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "";
App::$strings["Show Thing"] = "";
App::$strings["item not found."] = "Элемент не найден.";
App::$strings["Edit Thing"] = "";
App::$strings["Select a profile"] = "Выберите профиль";
App::$strings["Post an activity"] = "";
App::$strings["Only sends to viewers of the applicable profile"] = "";
App::$strings["Name of thing e.g. something"] = "";
App::$strings["URL of thing (optional)"] = "";
App::$strings["URL for photo of thing (optional)"] = "";
App::$strings["Add Thing to your Profile"] = "";
App::$strings["Nothing to import."] = "Ничего импортировать.";
App::$strings["Unable to download data from old server"] = "Невозможно загрузить данные из старого сервера";
App::$strings["Imported file is empty."] = "Импортированный файл пуст.";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
App::$strings["Channel clone failed. Import failed."] = "";
App::$strings["Cloned channel not found. Import failed."] = "";
App::$strings["Import completed."] = "Импорт завершен.";
App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию.";
App::$strings["Import Channel"] = "Импорт канала";
App::$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."] = "";
App::$strings["File to Upload"] = "Файл для загрузки";
App::$strings["Or provide the old server/hub details"] = "";
App::$strings["Your old identity address (xyz@example.com)"] = "Ваш старый адрес идентичности (xyz@example.com)";
App::$strings["Your old login email address"] = "Ваш старый адрес электронной почты";
App::$strings["Your old login password"] = "Ваш старый пароль";
App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "";
App::$strings["Make this hub my primary location"] = "";
App::$strings["Total invitation limit exceeded."] = "";
App::$strings["%s : Not a valid email address."] = "%s : Не действительный адрес электронной почты.";
App::$strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "";
App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась.";
App::$strings["%d message sent."] = array(
	0 => "%d сообщение отправленно.",
	1 => "%d сообщения отправленно.",
	2 => "%d сообщений отправленно.",
);
App::$strings["You have no more invitations available"] = "У вас больше нет приглашений";
App::$strings["Send invitations"] = "Послать приглашения";
App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному на строку:";
App::$strings["Your message:"] = "Сообщение:";
App::$strings["You are cordially invited to join me and some other close friends on the Hubzilla - a revolutionary new decentralised communication and information tool."] = "";
App::$strings["You will need to supply this invitation code: \$invite_code"] = "";
App::$strings["Please visit my channel at"] = "Пожалуйста, посетите мой канал на";
App::$strings["Once you have registered (on ANY Hubzilla site - they are all inter-connected), please connect with my Hubzilla channel address:"] = "";
App::$strings["Click the [Register] link on the following page to join."] = "";
App::$strings["For more information about the Hubzilla Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Чтобы узнать больше о проекте Hubzilla, и чтобы узнать почему он имеет потенциал для изменения привычного нам Интернета, пожалуйста, посетите http://getzot.com";
App::$strings["Unable to locate original post."] = "Не удалось найти оригинал.";
App::$strings["Empty post discarded."] = "Отказаться от пустой почты.";
App::$strings["Executable content type not permitted to this channel."] = "";
App::$strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "";
App::$strings["You have reached your limit of %1$.0f webpages."] = "";
App::$strings["[Embedded content - reload page to view]"] = "";
App::$strings["Help with this feature"] = "";
App::$strings["Layout Name"] = "Название шаблона";
App::$strings["thing"] = "";
App::$strings["Remote privacy information not available."] = "";
App::$strings["Visible to:"] = "Кому видно:";
App::$strings["No connections."] = "Никаких связей.";
App::$strings["Visit %s's profile [%s]"] = "Посетить %s's ​​профиль [%s]";
App::$strings["View Connnections"] = "Просмотр контактов";
App::$strings["No valid account found."] = "Действительный аккаунт не найден.";
App::$strings["Password reset request issued. Check your email."] = "";
App::$strings["Site Member (%s)"] = "Участник сайта (%s)";
App::$strings["Password reset requested at %s"] = "Требуется сброс пароля на %s";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
App::$strings["Password Reset"] = "Сбросить пароль";
App::$strings["Your password has been reset as requested."] = "Ваш пароль в соответствии с просьбой сброшен.";
App::$strings["Your new password is"] = "Ваш новый пароль";
App::$strings["Save or copy your new password - and then"] = "";
App::$strings["click here to login"] = "нажмите здесь чтобы выйти";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
App::$strings["Your password has changed at %s"] = "Пароль изменен на %s";
App::$strings["Forgot your Password?"] = "Забыли пароль или логин?";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
App::$strings["Email Address"] = "Адрес электронной почты";
App::$strings["Reset"] = "Сброс";
App::$strings["Hub not found."] = "Hub не найден.";
App::$strings["Total votes"] = "";
App::$strings["Average Rating"] = "";
App::$strings["Unable to lookup recipient."] = "";
App::$strings["Unable to communicate with requested channel."] = "";
App::$strings["Cannot verify requested channel."] = "";
App::$strings["Selected channel has private message restrictions. Send failed."] = "";
App::$strings["Messages"] = "Переписка";
App::$strings["Message deleted."] = "Сообщение удалено.";
App::$strings["Message recalled."] = "";
App::$strings["Send Private Message"] = "Отправить личное сообщение";
App::$strings["To:"] = "Кому:";
App::$strings["Subject:"] = "Тема:";
App::$strings["Message not found."] = "Сообщение не найдено.";
App::$strings["Delete message"] = "Удалить сообщение";
App::$strings["Recall message"] = "";
App::$strings["Message has been recalled."] = "";
App::$strings["Private Conversation"] = "Личный разговор";
App::$strings["Delete conversation"] = "Удалить разговор";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
App::$strings["Send Reply"] = "Отправить снова";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "";
App::$strings["Create a new channel"] = "Создать новый канал";
App::$strings["Channel Manager"] = "Настройки канала";
App::$strings["Current Channel"] = "Текущий канал";
App::$strings["Attach to one of your channels by selecting it."] = "";
App::$strings["Default Channel"] = "Канал по умолчанию";
App::$strings["Make Default"] = "Сделать стандартным";
App::$strings["Wall Photos"] = "Стена фотографий";
App::$strings["Profile Match"] = "Профиль Совпадение";
App::$strings["No keywords to match. Please add keywords to your default profile."] = "";
App::$strings["is interested in:"] = "заинтересован в:";
App::$strings["No matches"] = "Нет соответствий";
App::$strings["Menu updated."] = "Меню обновлено.";
App::$strings["Unable to update menu."] = "Невозможно обновление меню.";
App::$strings["Menu created."] = "Меню создано.";
App::$strings["Unable to create menu."] = "Невозможно создать меню.";
App::$strings["Manage Menus"] = "Управление меню";
App::$strings["Drop"] = "Удалить";
App::$strings["Create a new menu"] = "Создать новое меню";
App::$strings["Delete this menu"] = "Удалить это меню";
App::$strings["Edit menu contents"] = "Редактировать содержание меню";
App::$strings["Edit this menu"] = "Редактировать это меню";
App::$strings["New Menu"] = "Новое меню";
App::$strings["Menu name"] = "Название меню";
App::$strings["Must be unique, only seen by you"] = "";
App::$strings["Menu title"] = "Название меню";
App::$strings["Menu title as seen by others"] = "";
App::$strings["Allow bookmarks"] = "Разрешить закладки";
App::$strings["Menu may be used to store saved bookmarks"] = "Меню может использоваться, чтобы сохранить закладки";
App::$strings["Menu deleted."] = "Меню удалено.";
App::$strings["Menu could not be deleted."] = "Меню не может быть удален.";
App::$strings["Edit Menu"] = "Редактировать меню";
App::$strings["Add or remove entries to this menu"] = "";
App::$strings["Conversation removed."] = "Разговор удален.";
App::$strings["No messages."] = "Нет сообщений.";
App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
App::$strings["Add a Channel"] = "Добавить контакт";
App::$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."] = "";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
App::$strings["Choose a short nickname"] = "Выберите короткий псевдоним";
App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
App::$strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
App::$strings["Invalid request identifier."] = "";
App::$strings["Discard"] = "Отменить";
App::$strings["No more system notifications."] = "Новых оповещений системы пока нет.";
App::$strings["System Notifications"] = "Системные оповещения ";
App::$strings["Unable to find your hub."] = "";
App::$strings["Post successful."] = "Публикация прошла успешно.";
App::$strings["invalid target signature"] = "";
App::$strings["OpenID protocol error. No ID returned."] = "";
App::$strings["App installed."] = "Приложение установлено .";
App::$strings["Malformed app."] = "";
App::$strings["Embed code"] = "Код для вставки";
App::$strings["Edit App"] = "Редактировать приложение";
App::$strings["Create App"] = "Создать приложение";
App::$strings["Name of app"] = "Название приложения";
App::$strings["Location (URL) of app"] = "";
App::$strings["Photo icon URL"] = "";
App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - необязательно";
App::$strings["Version ID"] = "Версия ID";
App::$strings["Price of app"] = "";
App::$strings["Location (URL) to purchase app"] = "";
App::$strings["Schema Default"] = "";
App::$strings["Sans-Serif"] = "";
App::$strings["Monospace"] = "";
App::$strings["Theme settings"] = "Настройки темы";
App::$strings["Set scheme"] = "Установить схему";
App::$strings["Set font-size for posts and comments"] = "Установить размер шрифта для сообщений и комментариев";
App::$strings["Set font face"] = "";
App::$strings["Set iconset"] = "";
App::$strings["Set big shadow size, default 15px 15px 15px"] = "";
App::$strings["Set small shadow size, default 5px 5px 5px"] = "";
App::$strings["Set shadow colour, default #000"] = "";
App::$strings["Set radius size, default 5px"] = "";
App::$strings["Set line-height for posts and comments"] = "";
App::$strings["Set background image"] = "";
App::$strings["Set background attachment"] = "";
App::$strings["Set background colour"] = "";
App::$strings["Set section background image"] = "";
App::$strings["Set section background colour"] = "";
App::$strings["Set colour of items - use hex"] = "";
App::$strings["Set colour of links - use hex"] = "";
App::$strings["Set max-width for items.  Default 400px"] = "";
App::$strings["Set min-width for items.  Default 240px"] = "";
App::$strings["Set the generic content wrapper width.  Default 48%"] = "";
App::$strings["Set colour of fonts - use hex"] = "";
App::$strings["Set background-size element"] = "";
App::$strings["Item opacity"] = "";
App::$strings["Display post previews only"] = "";
App::$strings["Display side bar on channel page"] = "";
App::$strings["Colour of the navigation bar"] = "";
App::$strings["Item float"] = "";
App::$strings["Left offset of the section element"] = "";
App::$strings["Right offset of the section element"] = "";
App::$strings["Section width"] = "";
App::$strings["Left offset of the aside"] = "";
App::$strings["Right offset of the aside element"] = "";
App::$strings["None"] = "";
App::$strings["Header image"] = "Графика заголовока";
App::$strings["Header image only on profile pages"] = "";
App::$strings["Narrow navbar"] = "Узкая панель навигации";
App::$strings["Navigation bar background colour"] = "Панель навигации, цвет фона";
App::$strings["Navigation bar gradient top colour"] = "Панель навигации, цвет градиента вверху";
App::$strings["Navigation bar gradient bottom colour"] = "Панель навигации, цвет градиента внизу";
App::$strings["Navigation active button gradient top colour"] = "Панель навигации, цвет градиента вверху активной кнопки";
App::$strings["Navigation active button gradient bottom colour"] = "Панель навигации, цвет градиента внизу активной кнопки";
App::$strings["Navigation bar border colour "] = "Панель навигации, цвет границы";
App::$strings["Navigation bar icon colour "] = "Панель навигации, цвет значков";
App::$strings["Navigation bar active icon colour "] = "Панель навигации, цвет активного значка";
App::$strings["link colour"] = "Цвет ссылок";
App::$strings["Set font-colour for banner"] = "Цвет текста в шапке";
App::$strings["Set the background colour"] = "Цвет фона на странице канала";
App::$strings["Set the background image"] = "Фоновое изображение";
App::$strings["Set the background colour of items"] = "Цвет фона для постов и других элементов";
App::$strings["Set the background colour of comments"] = "Цвет фона для комментариев";
App::$strings["Set the border colour of comments"] = "Цвет границы для области комментариев";
App::$strings["Set the indent for comments"] = "";
App::$strings["Set the basic colour for item icons"] = "Основной цвет в иконках редактирования";
App::$strings["Set the hover colour for item icons"] = "Цвет в иконках редактирования при наведении мыши";
App::$strings["Set font-size for the entire application"] = "Установить размер шрифта для системы в целом";
App::$strings["Set font-colour for posts and comments"] = "Цвет шрифта для постов и комментариев";
App::$strings["Set radius of corners"] = "Радиус скруглений";
App::$strings["Set shadow depth of photos"] = "";
App::$strings["Set maximum width of conversation regions"] = "";
App::$strings["Center conversation regions"] = "";
App::$strings["Set minimum opacity of nav bar - to hide it"] = "Панель навигации, прозрачность";
App::$strings["Set size of conversation author photo"] = "";
App::$strings["Set size of followup author photos"] = "";
App::$strings["Sloppy photo albums"] = "";
App::$strings["Are you a clean desk or a messy desk person?"] = "";
App::$strings["Type"] = "Тип";
App::$strings["Size"] = "Размер";
App::$strings["Last modified"] = "Последнее изменение";
App::$strings["Are you sure you want to delete this item?"] = "Вы уверены, что хотите удалить этот элемент?";
App::$strings["Total"] = "Всего";
App::$strings["Update %s failed. See error logs."] = "";
App::$strings["Update Error at %s"] = "Ошибка обновления на %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "";
App::$strings["Password"] = "Пароль";
App::$strings["Remember me"] = "Запомнить";
App::$strings["Forgot your password?"] = "Забыли пароль или логин?";
App::$strings["permission denied"] = "доступ запрещен";
App::$strings["Got Zot?"] = "Got Zot?";
App::$strings["toggle mobile"] = "мобильное подключение";