aboutsummaryrefslogtreecommitdiffstats
path: root/view/ru/strings.php
blob: 6ad205af81c1f00d0cba393868f6a2fe54e78ea3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
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
<?php

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);;
}
;
$a->strings["Visible to everybody"] = "Видно всем";
$a->strings["show"] = "показывать";
$a->strings["don't show"] = "не показывать";
$a->strings[" and "] = "и";
$a->strings["public profile"] = "Публичный профиль";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s изменил %2\$s на &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s's %2\$s";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Public Timeline"] = "Публичная шкала времени";
$a->strings["Red Matrix Notification"] = "Оповещения Red матрицы";
$a->strings["Thank You,"] = "Спасибо,";
$a->strings["%s Administrator"] = "%s администратор";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Red:Notify] New mail received at %s"] = "[Red:Уведомление] Получено новое сообщение в %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение в %2\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s.";
$a->strings["a private message"] = "личное сообщение";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения.";
$a->strings["%1\$s commented on [zrl=%2\$s]a %3\$s[/zrl]"] = "%1\$s прокомментировал на [zrl=%2\$s]a %3\$s[/zrl]";
$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = "%1\$s прокомментировал на [zrl=%2\$s]%3\$s's %4\$s[/zrl]";
$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s прокомментировал на [zrl=%2\$s]your %3\$s[/zrl]";
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Уведомление] Комментарий к разговору #%1\$d по %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и/или ответа разговора.";
$a->strings["[Red:Notify] %s posted to your profile wall"] = "";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "";
$a->strings["[Red:Notify] %s tagged you"] = "[Red:Уведомление] %s добавил у вас тег";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s добавил у вас тег в %2\$s";
$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]добавил у вас тег[/zrl].";
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Уведомление] %1\$s подпихнул вас";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s подпихнул вас в %2\$s";
$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]подпихнул вас[/zrl].";
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Уведомление] %s добавил у вас в сообщении тег";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s добавил у вас в сообщении тег %2\$s";
$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s добавил тег [zrl=%2\$s] у вас в сообщении[/zrl]";
$a->strings["[Red:Notify] Introduction received"] = "[Red:Уведомление] введение получено";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Вы получили введение от '%1\$s' at %2\$s";
$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = "Вы получили [zrl=%1\$s]введение[/zrl] от %2\$s.";
$a->strings["You may visit their profile at %s"] = "Вы можете посетить ​​профиль в %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "";
$a->strings["[Red:Notify] Friend suggestion received"] = "[Red:Уведомление] Получено предложение дружить";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружить с '%1\$s' от %2\$s";
$a->strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "";
$a->strings["Name:"] = "Имя:";
$a->strings["Photo:"] = "Фото:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["Connect"] = "Добавить";
$a->strings["New window"] = "Новое окно";
$a->strings["Open the selected location in a different window or browser tab"] = "";
$a->strings["Poke"] = "Подпихнуть";
$a->strings["View Status"] = "Просмотр состояния";
$a->strings["View Profile"] = "Просмотр профиля";
$a->strings["View Photos"] = "Просмотр фотографий";
$a->strings["Network Posts"] = "Сообщения сети";
$a->strings["Edit Contact"] = "Редактировать канал";
$a->strings["Send PM"] = "Отправить личное сообщение";
$a->strings["Unknown | Not categorised"] = "Неизвестные | Без категории";
$a->strings["Block immediately"] = "Немедленно заблокировать";
$a->strings["Shady, spammer, self-marketer"] = "";
$a->strings["Known to me, but no opinion"] = "";
$a->strings["OK, probably harmless"] = "OK, наверное безвредно";
$a->strings["Reputable, has my trust"] = "Авторитетно, имеет мое доверие";
$a->strings["Frequently"] = "Часто";
$a->strings["Hourly"] = "Ежечасно";
$a->strings["Twice daily"] = "Два раза в день";
$a->strings["Daily"] = "Ежедневно";
$a->strings["Weekly"] = "Еженедельно";
$a->strings["Monthly"] = "Ежемесячно";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Add New Connection"] = "Добавить новый канал";
$a->strings["Enter the channel address"] = "Введите адрес вашего канала";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
$a->strings["%d invitation available"] = array(
	0 => "",
	1 => "",
	2 => "",
);
$a->strings["Find Channels"] = "Поиск каналов";
$a->strings["Enter name or interest"] = "Впишите имя или интерес";
$a->strings["Connect/Follow"] = "Добавить/следовать";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер";
$a->strings["Find"] = "Поиск";
$a->strings["Channel Suggestions"] = "Рекомендации каналов";
$a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Random Profile"] = "Случайные";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["Saved Folders"] = "Запомненные папки";
$a->strings["Everything"] = "Все";
$a->strings["Categories"] = "Категории";
$a->strings["%d connection in common"] = array(
	0 => "%d совместный канал",
	1 => "%d совместных канала",
	2 => "%d совместных каналов",
);
$a->strings["show more"] = "показать все";
$a->strings["Miscellaneous"] = "Прочее";
$a->strings["year"] = "год";
$a->strings["month"] = "месяц";
$a->strings["day"] = "день";
$a->strings["never"] = "никогда";
$a->strings["less than a second ago"] = "менее чем одну секунду назад";
$a->strings["years"] = "лет";
$a->strings["months"] = "мес.";
$a->strings["week"] = "неделя";
$a->strings["weeks"] = "недель";
$a->strings["days"] = "дней";
$a->strings["hour"] = "час";
$a->strings["hours"] = "часов";
$a->strings["minute"] = "минута";
$a->strings["minutes"] = "минут";
$a->strings["second"] = "секунда";
$a->strings["seconds"] = "секунд";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
$a->strings["Cannot locate DNS info for database server '%s'"] = "";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "\t\nКонец:";
$a->strings["Location:"] = "Откуда:";
$a->strings["General Features"] = "Главные функции";
$a->strings["Content Expiration"] = "";
$a->strings["Remove old posts/comments after a period of time"] = "";
$a->strings["Multiple Profiles"] = "Несколько профилей";
$a->strings["Ability to create multiple profiles"] = "";
$a->strings["Web Pages"] = "Веб-страницы";
$a->strings["Provide managed web pages on your channel"] = "";
$a->strings["Enhanced Photo Albums"] = "Расширенные фотоальбомы";
$a->strings["Enable photo album with enhanced features"] = "";
$a->strings["Extended Identity Sharing"] = "";
$a->strings[" "] = " ";
$a->strings["Expert Mode"] = "Экспертный режим";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "";
$a->strings["Post Composition Features"] = "";
$a->strings["Richtext Editor"] = "Редактор RichText";
$a->strings["Enable richtext editor"] = "Включить редактор RichText";
$a->strings["Post Preview"] = "Предварительный просмотр сообщения";
$a->strings["Allow previewing posts and comments before publishing them"] = "";
$a->strings["Network and Stream Filtering"] = "Фильтрация сети и потока";
$a->strings["Search by Date"] = "Поиск по дате";
$a->strings["Ability to select posts by date ranges"] = "";
$a->strings["Collections Filter"] = "Фильтр коллекций";
$a->strings["Enable widget to display Network posts only from selected collections"] = "";
$a->strings["Saved Searches"] = "Запомненные поиски";
$a->strings["Save search terms for re-use"] = "";
$a->strings["Network Personal Tab"] = "";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
$a->strings["Network New Tab"] = "";
$a->strings["Enable tab to display all new Network activity"] = "";
$a->strings["Affinity Tool"] = "";
$a->strings["Filter stream activity by depth of relationships"] = "";
$a->strings["Post/Comment Tools"] = "";
$a->strings["Multiple Deletion"] = "Множественное удаление";
$a->strings["Select and delete multiple posts/comments at once"] = "";
$a->strings["Edit Sent Posts"] = "Редактировать отправленные сообщения";
$a->strings["Edit and correct posts and comments after sending"] = "";
$a->strings["Tagging"] = "Пометка";
$a->strings["Ability to tag existing posts"] = "";
$a->strings["Post Categories"] = "Категории сообщения";
$a->strings["Add categories to your posts"] = "";
$a->strings["Ability to file posts under folders"] = "";
$a->strings["Dislike Posts"] = "Сообщение не нравится";
$a->strings["Ability to dislike posts/comments"] = "";
$a->strings["Star Posts"] = "Помечать сообщения";
$a->strings["Ability to mark special posts with a star indicator"] = "";
$a->strings["Tag Cloud"] = "Облако тегов";
$a->strings["Provide a personal tag cloud on your channel page"] = "";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["All Channels"] = "Все каналы";
$a->strings["edit"] = "редактировать";
$a->strings["Collections"] = "Коллекции";
$a->strings["Edit collection"] = "Редактировать коллекцию";
$a->strings["Create a new collection"] = "Создать новую коллекцию";
$a->strings["Channels not in any collection"] = "Каналы не в какой коллекции";
$a->strings["add"] = "добавить";
$a->strings["Delete this item?"] = "Удалить этот элемент?";
$a->strings["Comment"] = "Комментарий";
$a->strings["show fewer"] = "показать меньше";
$a->strings["Password too short"] = "Пароль слишком короткий";
$a->strings["Passwords do not match"] = "Пароли не совпадают";
$a->strings["everybody"] = "все";
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
$a->strings["timeago.suffixAgo"] = "timeago.suffixAgo";
$a->strings["ago"] = "тому назад";
$a->strings["from now"] = "";
$a->strings["less than a minute"] = "менее чем одну минуту назад";
$a->strings["about a minute"] = "около минуты";
$a->strings["%d minutes"] = "%d мин.";
$a->strings["about an hour"] = "около часа";
$a->strings["about %d hours"] = "около %d час.";
$a->strings["a day"] = "день";
$a->strings["%d days"] = "%d дней";
$a->strings["about a month"] = "около месяца";
$a->strings["%d months"] = "%d мес.";
$a->strings["about a year"] = "около года";
$a->strings["%d years"] = "%d лет";
$a->strings["timeago.numbers"] = "timeago.numbers";
$a->strings["No recipient provided."] = "";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Unable to determine sender."] = "";
$a->strings["Stored post could not be verified."] = "";
$a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["Profile Photos"] = "Фотографии профиля";
$a->strings["Profile"] = "Профиль";
$a->strings["Full Name:"] = "Полное имя:";
$a->strings["Gender:"] = "Пол:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "День Рождения:";
$a->strings["Age:"] = "Возраст:";
$a->strings["Status:"] = "Статус:";
$a->strings["for %1\$d %2\$s"] = "для %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Сексуальная ориентация:";
$a->strings["Homepage:"] = "Домашняя страница:";
$a->strings["Hometown:"] = "Родной город:";
$a->strings["Tags:"] = "Тэги:";
$a->strings["Political Views:"] = "Политические взгляды:";
$a->strings["Religion:"] = "Религия:";
$a->strings["About:"] = "О себе:";
$a->strings["Hobbies/Interests:"] = "Хобби / интересы:";
$a->strings["Likes:"] = "Что вам нравится:";
$a->strings["Dislikes:"] = "Что вам не нравится:";
$a->strings["Contact information and Social Networks:"] = "Информация и социальные сети канала:";
$a->strings["Musical interests:"] = "Музыкальные интересы:";
$a->strings["Books, literature:"] = "Книги, литература:";
$a->strings["Television:"] = "Телевидение:";
$a->strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:";
$a->strings["Love/Romance:"] = "Любовь / Романс:";
$a->strings["Work/employment:"] = "Работа / Занятость:";
$a->strings["School/education:"] = "Школа / образование:";
$a->strings["Welcome "] = "Добро пожаловать";
$a->strings["Please upload a profile photo."] = "Загрузите пожалуйста фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["Logout"] = "Выход";
$a->strings["End this session"] = "Закончить эту сессию";
$a->strings["Home"] = "Мой канал";
$a->strings["Your posts and conversations"] = "Ваши сообщения и разговоры";
$a->strings["Your profile page"] = "Страницa вашего профиля";
$a->strings["Edit Profiles"] = "Редактирование профилей";
$a->strings["Manage/Edit Profiles"] = "Управление / Редактирование профилей";
$a->strings["Photos"] = "Фотографии";
$a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Login"] = "Войти";
$a->strings["Sign in"] = "Войти";
$a->strings["%s - click to logout"] = "%s - нажмите чтобы выйти";
$a->strings["Click to authenticate to your home hub"] = "";
$a->strings["Home Page"] = "Моя страница";
$a->strings["Register"] = "Регистрация";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help"] = "Помощь";
$a->strings["Help and documentation"] = "Справочная информация и документация";
$a->strings["Apps"] = "Приложения";
$a->strings["Addon applications, utilities, games"] = "";
$a->strings["Search"] = "Поиск";
$a->strings["Search site content"] = "Поиск по содержанию сайту";
$a->strings["Directory"] = "Каталог";
$a->strings["Channel Locator"] = "Локатор каналов";
$a->strings["Matrix"] = "Матрица";
$a->strings["Conversations from your grid"] = "";
$a->strings["See all matrix notifications"] = "Просмотреть все оповещения матрицы";
$a->strings["Mark all matrix notifications seen"] = "Пометить все оповещения матрицы как прочитанное";
$a->strings["See all channel notifications"] = "Просмотреть все оповещения канала";
$a->strings["Mark all channel notifications seen"] = "Пометить все оповещения канала как прочитанное";
$a->strings["Intros"] = "Каналы";
$a->strings["New Connections"] = "Новые каналы";
$a->strings["See all channel introductions"] = "Просмотреть все введения канала";
$a->strings["Notices"] = "Оповещения";
$a->strings["Notifications"] = "Оповещения";
$a->strings["See all notifications"] = "Просмотреть все оповещения";
$a->strings["Mark all system notifications seen"] = "Пометить все оповещения как прочитанное";
$a->strings["Mail"] = "Сообщения";
$a->strings["Private mail"] = "Ваши личные сообщения";
$a->strings["See all private messages"] = "Просмотреть все личные сообщения";
$a->strings["Mark all private messages seen"] = "Пометить все личные сообщения как прочитанное";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["New Message"] = "Новое сообщение";
$a->strings["Events"] = "Мероприятия";
$a->strings["Event Calendar"] = "Календарь мероприятий";
$a->strings["See all events"] = "Показать все мероприятия";
$a->strings["Mark all events seen"] = "Пометить все мероприятия как прочитанное";
$a->strings["Channel Select"] = "Выбор канала";
$a->strings["Manage Your Channels"] = "Управление каналов";
$a->strings["Settings"] = "Настройки";
$a->strings["Account/Channel Settings"] = "Настройки аккаунта/канала";
$a->strings["Connections"] = "Связи";
$a->strings["Manage/Edit Friends and Connections"] = "";
$a->strings["Admin"] = "Администрация";
$a->strings["Site Setup and Configuration"] = "Установка и конфигурация сайта";
$a->strings["Nothing new here"] = "Ничего нового здесь";
$a->strings["Please wait..."] = "Подождите пожалуйста ...";
$a->strings["created a new post"] = "создал новое сообщение";
$a->strings["commented on %s's post"] = "";
$a->strings["Embedded content"] = "";
$a->strings["Embedding disabled"] = "";
$a->strings["Permission denied."] = "Доступ запрещен.";
$a->strings["Image exceeds website size limit of %lu bytes"] = "";
$a->strings["Image file is empty."] = "файл пуст.";
$a->strings["Unable to process image"] = "";
$a->strings["Photo storage failed."] = "";
$a->strings["Photo Albums"] = "Фотоальбомы";
$a->strings["Upload New Photos"] = "Загрузить новые фотографии";
$a->strings["Male"] = "Мужской";
$a->strings["Female"] = "Женский";
$a->strings["Currently Male"] = "В настоящее время мужской";
$a->strings["Currently Female"] = "В настоящее время женский";
$a->strings["Mostly Male"] = "В основном мужской";
$a->strings["Mostly Female"] = "В основном женский";
$a->strings["Transgender"] = "Транссексуал";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Транссексуал";
$a->strings["Hermaphrodite"] = "Гермафродит";
$a->strings["Neuter"] = "Среднего рода";
$a->strings["Non-specific"] = "Неспецифический";
$a->strings["Other"] = "Другой";
$a->strings["Undecided"] = "Нерешительный";
$a->strings["Males"] = "Самец";
$a->strings["Females"] = "Самка";
$a->strings["Gay"] = "Гей";
$a->strings["Lesbian"] = "Лесбиянка";
$a->strings["No Preference"] = "Без предпочтений";
$a->strings["Bisexual"] = "Двуполый";
$a->strings["Autosexual"] = "Autosexual";
$a->strings["Abstinent"] = "Воздержанный";
$a->strings["Virgin"] = "Девственница";
$a->strings["Deviant"] = "Отклоняющийся от нормы";
$a->strings["Fetish"] = "Фетиш";
$a->strings["Oodles"] = "Множественный";
$a->strings["Nonsexual"] = "Несексуальный";
$a->strings["Single"] = "Одинок";
$a->strings["Lonely"] = "Уединенный";
$a->strings["Available"] = "Доступный";
$a->strings["Unavailable"] = "Недоступный";
$a->strings["Has crush"] = "";
$a->strings["Infatuated"] = "Влюбленный";
$a->strings["Dating"] = "";
$a->strings["Unfaithful"] = "Неверный";
$a->strings["Sex Addict"] = "Секс наркоман";
$a->strings["Friends"] = "Друзья";
$a->strings["Friends/Benefits"] = "";
$a->strings["Casual"] = "Случайный";
$a->strings["Engaged"] = "Помолвленный";
$a->strings["Married"] = "Женат";
$a->strings["Imaginarily married"] = "Мысленно женат";
$a->strings["Partners"] = "Партнеры";
$a->strings["Cohabiting"] = "Сожительствующие";
$a->strings["Common law"] = "";
$a->strings["Happy"] = "Счастливый";
$a->strings["Not looking"] = "";
$a->strings["Swinger"] = "";
$a->strings["Betrayed"] = "";
$a->strings["Separated"] = "";
$a->strings["Unstable"] = "Колеблющийся";
$a->strings["Divorced"] = "Разведенный";
$a->strings["Imaginarily divorced"] = "Мысленно разведенный";
$a->strings["Widowed"] = "Овдовевший";
$a->strings["Uncertain"] = "Неопределенный";
$a->strings["It's complicated"] = "Это сложно";
$a->strings["Don't care"] = "Не заботьтесь";
$a->strings["Ask me"] = "Спроси меня";
$a->strings["Not a valid email address"] = "Не действительный адрес электронной почты";
$a->strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте";
$a->strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте.";
$a->strings["An invitation is required."] = "Требуется приглашение.";
$a->strings["Invitation could not be verified."] = "Не удалось проверить приглашение.";
$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
$a->strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта.";
$a->strings["Registration request at %s"] = "Требуется регистрация на %s";
$a->strings["Administrator"] = "Администратор";
$a->strings["your registration password"] = "Ваш пароль регистрации";
$a->strings["Registration details for %s"] = "Регистрационные данные для %s";
$a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отозвана для %s";
$a->strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных";
$a->strings["Empty name"] = "Пустое имя";
$a->strings["Name too long"] = "Слишком длинное имя";
$a->strings["No account identifier"] = "идентификатор аккаунта отсутствует";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте.";
$a->strings["Unable to retrieve created identity"] = "";
$a->strings["Default Profile"] = "Профиль по умолчанию";
$a->strings["Click here to upgrade."] = "Нажмите здесь, чтобы обновить.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["Invalid data packet"] = "";
$a->strings["Unable to verify channel signature"] = "Невозможно проверить сигнатуру канала";
$a->strings["Unable to verify site signature for %s"] = "";
$a->strings["prev"] = "предыдущий";
$a->strings["first"] = "первый";
$a->strings["last"] = "последний";
$a->strings["next"] = "следующий";
$a->strings["older"] = "старший";
$a->strings["newer"] = "новее";
$a->strings["No connections"] = "Нет каналов";
$a->strings["%d Connection"] = array(
	0 => "%d канал",
	1 => "%d канала",
	2 => "%d каналов",
);
$a->strings["View Connections"] = "Просмотр открытых каналов";
$a->strings["Save"] = "Запомнить";
$a->strings["poke"] = "подпихнуть";
$a->strings["poked"] = "подпихнул";
$a->strings["ping"] = "";
$a->strings["pinged"] = "";
$a->strings["prod"] = "";
$a->strings["prodded"] = "";
$a->strings["slap"] = "";
$a->strings["slapped"] = "";
$a->strings["finger"] = "";
$a->strings["fingered"] = "";
$a->strings["rebuff"] = "";
$a->strings["rebuffed"] = "";
$a->strings["happy"] = "";
$a->strings["sad"] = "";
$a->strings["mellow"] = "";
$a->strings["tired"] = "";
$a->strings["perky"] = "";
$a->strings["angry"] = "";
$a->strings["stupified"] = "";
$a->strings["puzzled"] = "";
$a->strings["interested"] = "";
$a->strings["bitter"] = "";
$a->strings["cheerful"] = "";
$a->strings["alive"] = "";
$a->strings["annoyed"] = "";
$a->strings["anxious"] = "";
$a->strings["cranky"] = "";
$a->strings["disturbed"] = "";
$a->strings["frustrated"] = "";
$a->strings["motivated"] = "";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["January"] = "Январь";
$a->strings["February"] = "Февраль";
$a->strings["March"] = "Март";
$a->strings["April"] = "Апрель";
$a->strings["May"] = "Май";
$a->strings["June"] = "Июнь";
$a->strings["July"] = "Июль";
$a->strings["August"] = "Август";
$a->strings["September"] = "Сентябрь";
$a->strings["October"] = "Октябрь";
$a->strings["November"] = "Ноябрь";
$a->strings["December"] = "Декабрь";
$a->strings["unknown.???"] = "неизвестный.???";
$a->strings["bytes"] = "байт";
$a->strings["remove"] = "удалить";
$a->strings["[remove]"] = "[удалить]";
$a->strings["Categories:"] = "Категории:";
$a->strings["Filed under:"] = "Хранить под:";
$a->strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть";
$a->strings["link to source"] = "ссылка на источник";
$a->strings["default"] = "по умолчанию";
$a->strings["Select an alternate language"] = "Выбор альтернативного языка";
$a->strings["photo"] = "фото";
$a->strings["event"] = "мероприятие";
$a->strings["status"] = "статус";
$a->strings["comment"] = "комментарий";
$a->strings["activity"] = "активность";
$a->strings["Logged out."] = "Вышел из системы.";
$a->strings["Failed authentication"] = "Ошибка аутентификации";
$a->strings["Login failed."] = "Не удалось войти.";
$a->strings["Channel is blocked on this site."] = "Канал блокируется на этом сайте.";
$a->strings["Channel location missing."] = "Местоположение канала отсутствует.";
$a->strings["Channel discovery failed. Website may be down or misconfigured."] = "";
$a->strings["Response from remote channel was not understood."] = "";
$a->strings["Response from remote channel was incomplete."] = "";
$a->strings["local account not found."] = "локальный аккаунт не найден.";
$a->strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе.";
$a->strings["Can view my \"public\" stream and posts"] = "Может просматривать мои \"публичные\" поток и сообщения";
$a->strings["Can view my \"public\" channel profile"] = "Может просматривать мой \"публичный\" профиль канала";
$a->strings["Can view my \"public\" photo albums"] = "Может просматривать мои \"публичные\" фотоальбомы";
$a->strings["Can view my \"public\" address book"] = "Может просматривать мою \"публичную\" адресную книгу";
$a->strings["Can view my \"public\" file storage"] = "Может просматривать мои \"публичные\" файлы";
$a->strings["Can view my \"public\" pages"] = "Может просматривать мои \"публичные\" страницы";
$a->strings["Can send me their channel stream and posts"] = "Может прислать мне свои потоки и сообщения";
$a->strings["Can post on my channel page (\"wall\")"] = "Может публиковать на моей странице канала (\"стена\")";
$a->strings["Can comment on my posts"] = "Может комментировать мои сообщения";
$a->strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте";
$a->strings["Can post photos to my photo albums"] = "Может публиковать фотографии в мои фотоальбомы";
$a->strings["Can forward to all my channel contacts via post @mentions"] = "";
$a->strings["Advanced - useful for creating group forum channels"] = "";
$a->strings["Can chat with me (when available)"] = "";
$a->strings["Requires compatible chat plugin"] = "";
$a->strings["Can write to my \"public\" file storage"] = "";
$a->strings["Can edit my \"public\" pages"] = "Может редактировать мои \"публичные\" страницы";
$a->strings["Can administer my channel resources"] = "Может администрировать мои ресурсы канала";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "";
$a->strings["Tags"] = "Тэги";
$a->strings["have"] = "иметь";
$a->strings["has"] = "есть";
$a->strings["want"] = "хотеть";
$a->strings["wants"] = "хочет";
$a->strings["like"] = "мне нравиться";
$a->strings["likes"] = "мне нравиться";
$a->strings["dislike"] = "мне не-нравиться";
$a->strings["dislikes"] = "мне не-нравиться";
$a->strings["Item was not found."] = "Элемент не найден.";
$a->strings["No source file."] = "Нет исходного файла.";
$a->strings["Cannot locate file to replace"] = "Не удается найти файл, чтобы заменить";
$a->strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления";
$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
$a->strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена.";
$a->strings["Stored file could not be verified. Upload failed."] = "";
$a->strings["Path not available."] = "Путь недоступен.";
$a->strings["Private Message"] = "Личное сообщение";
$a->strings["Edit"] = "Редактировать";
$a->strings["Delete"] = "Удалить";
$a->strings["Select"] = "Выбрать";
$a->strings["save to folder"] = "сохранить в папку";
$a->strings["add star"] = "добавить маркировку";
$a->strings["remove star"] = "удалить маркировку";
$a->strings["toggle star status"] = "переключение статуса маркировки";
$a->strings["starred"] = "помеченные";
$a->strings["add tag"] = "добавить тег";
$a->strings["I like this (toggle)"] = "мне это нравится (переключение)";
$a->strings["I don't like this (toggle)"] = "мне это не нравится (переключение)";
$a->strings["Share this"] = "Поделиться этим";
$a->strings["share"] = "поделиться";
$a->strings["View %s's profile - %s"] = "";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-к-Стене";
$a->strings["via Wall-To-Wall:"] = "через Стена-к-Стене:";
$a->strings[" from %s"] = " от %s";
$a->strings["Please wait"] = "Подождите пожалуйста";
$a->strings["%d comment"] = array(
	0 => "%d комментарий",
	1 => "%d комментария",
	2 => "%d комментариев",
);
$a->strings["This is you"] = "Это вы";
$a->strings["Submit"] = "Отправить";
$a->strings["Bold"] = "Жирный";
$a->strings["Italic"] = "Курсив";
$a->strings["Underline"] = "Подчеркнутый";
$a->strings["Quote"] = "Цитата";
$a->strings["Code"] = "Код";
$a->strings["Image"] = "Изображение";
$a->strings["Link"] = "Ссылка";
$a->strings["Video"] = "Видео";
$a->strings["Preview"] = "Предварительный просмотр";
$a->strings["channel"] = "канал";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %2\$s's %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s's %3\$s";
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь соединен с %2\$s";
$a->strings["%1\$s poked %2\$s"] = "%1\$s подпихнул %2\$s";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s в настоящее время %2\$s";
$a->strings["View %s's profile @ %s"] = "Просмотр %s's профиля @ %s";
$a->strings["View in context"] = "Показать в контексте";
$a->strings["Loading..."] = "Загрузка...";
$a->strings["Delete Selected Items"] = "Удалить выбранные элементы";
$a->strings["Follow Thread"] = "Следобать теме";
$a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["<span  %1\$s>%2\$d people</span> like this."] = "<span  %1\$s>%2\$d чел.</span> нравится это.";
$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = "<span  %1\$s>%2\$d чел.</span> не нравится это.";
$a->strings["and"] = "и";
$a->strings[", and %d other people"] = ", и %d другие люди";
$a->strings["%s like this."] = "%s нравится это.";
$a->strings["%s don't like this."] = "%s не нравится это.";
$a->strings["Visible to <strong>everybody</strong>"] = "Видно для <strong>всех</strong>";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Please enter a video link/URL:"] = "Пожалуйста, введите URL видео-ссылки:";
$a->strings["Please enter an audio link/URL:"] = "Пожалуйста, введите URL аудио-ссылки:";
$a->strings["Tag term:"] = "Теги:";
$a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["Where are you right now?"] = "Где вы сейчас?";
$a->strings["Share"] = "Поделиться";
$a->strings["Page link title"] = "Ссылка заголовока страницы";
$a->strings["Upload photo"] = "Загрузить фотографию";
$a->strings["upload photo"] = "загрузить фотографию";
$a->strings["Attach file"] = "Прикрепить файл";
$a->strings["attach file"] = "прикрепить файл";
$a->strings["Insert web link"] = "Вставить веб-ссылку";
$a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить видео-ссылку";
$a->strings["video link"] = "видео-ссылка";
$a->strings["Insert audio link"] = "Вставить аудио-ссылку";
$a->strings["audio link"] = "аудио-ссылка";
$a->strings["Set your location"] = "Указание своего расположения";
$a->strings["set location"] = "указание расположения";
$a->strings["Clear browser location"] = "Стереть указание расположения";
$a->strings["clear location"] = "стереть указание расположения";
$a->strings["Set title"] = "Заголовок";
$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
$a->strings["Permission settings"] = "Настройки разрешений";
$a->strings["permissions"] = "разрешения";
$a->strings["Public post"] = "Публичное сообщение";
$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
$a->strings["Permission denied"] = "Доступ запрещен";
$a->strings["Item not found."] = "Элемент не найден.";
$a->strings["Archives"] = "Архивы";
$a->strings["Collection not found."] = "Коллекция не найдена.";
$a->strings["Collection has no members."] = "В коллекции нет ни одного пользователя.";
$a->strings["Connection not found."] = "Канал не найден.";
$a->strings["Image/photo"] = "Изображение / фото";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "";
$a->strings["post"] = "сообщение";
$a->strings["$1 wrote:"] = "$1 писал:";
$a->strings["Encrypted content"] = "Зашифрованное содержание";
$a->strings["No channel."] = "Не канал.";
$a->strings["Common connections"] = "Общие каналы";
$a->strings["No connections in common."] = "Общих каналов нет.";
$a->strings["Event title and start time are required."] = "Название события и время начала требуется.";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Редактировать мероприятие";
$a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Previous"] = "Предыдущая";
$a->strings["Next"] = "Следующая";
$a->strings["hour:minute"] = "часы:минуты";
$a->strings["Event details"] = "Детали мероприятия";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Формат: %s %s. Дата начала и название необходимы.";
$a->strings["Event Starts:"] = "Начало мероприятий:";
$a->strings["Required"] = "Необходимо";
$a->strings["Finish date/time is not known or not relevant"] = "Дата окончания / время окончания не известны или не релевантны";
$a->strings["Event Finishes:"] = "\t\nКонец мероприятий:";
$a->strings["Adjust for viewer timezone"] = "Отрегулируйте для просмотра часовых поясов";
$a->strings["Description:"] = "Описание:";
$a->strings["Title:"] = "Заголовок:";
$a->strings["Share this event"] = "Поделиться этим мероприятием";
$a->strings["Object store: failed"] = "";
$a->strings["thing/stuff added"] = "";
$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "";
$a->strings["not yet implemented."] = "еще не реализовано.";
$a->strings["Add Stuff to your Profile"] = "";
$a->strings["Select a profile"] = "Выберите профиль";
$a->strings["Select a category of stuff. e.g. I ______ something"] = "";
$a->strings["Name of thing or stuff e.g. something"] = "";
$a->strings["URL of thing or stuff (optional)"] = "";
$a->strings["URL for photo of thing or stuff (optional)"] = "";
$a->strings["Total invitation limit exceeded."] = "";
$a->strings["%s : Not a valid email address."] = "%s : Не действительный адрес электронной почты.";
$a->strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
$a->strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась.";
$a->strings["%d message sent."] = array(
	0 => "%d сообщение отправленно.",
	1 => "%d сообщения отправленно.",
	2 => "%d сообщений отправленно.",
);
$a->strings["You have no more invitations available"] = "У вас больше нет приглашений";
$a->strings["Send invitations"] = "Послать приглашения";
$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному на строку:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["You are cordially invited to join me and some other close friends on the Red Matrix - a revolutionary new decentralised social and information tool."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
$a->strings["Please visit my channel at"] = "Пожалуйста, посетите мой канал на";
$a->strings["Once you have registered, please connect with my Red Matrix channel address:"] = "";
$a->strings["For more information about the Red Matrix Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "";
$a->strings["Friends of %s"] = "Друзья %s";
$a->strings["No friends to display."] = "Нет друзей для показа.";
$a->strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен.";
$a->strings["View"] = "Просмотр";
$a->strings["Authorize application connection"] = "";
$a->strings["Return to your app and insert this Securty Code:"] = "";
$a->strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
$a->strings["Yes"] = "Да";
$a->strings["No"] = "Нет";
$a->strings["You must be logged in to see this page."] = "";
$a->strings["No installed applications."] = "Нет установленных приложений.";
$a->strings["Applications"] = "Приложения";
$a->strings["Invalid item."] = "Недействительный элемент.";
$a->strings["Channel not found."] = "Канал не найден.";
$a->strings["Item not available."] = "Элемент недоступен.";
$a->strings["Red Matrix Server - Setup"] = "Red Matrix Сервер - Установка";
$a->strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "";
$a->strings["Could not create table."] = "Не удалось создать таблицу.";
$a->strings["Your site database has been installed."] = "Ваша база данных установлена.";
$a->strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "";
$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\".";
$a->strings["System check"] = "Проверка системы";
$a->strings["Check again"] = "Проверить снова";
$a->strings["Database connection"] = "Подключение к базе данных";
$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
$a->strings["Database Server Name"] = "Имя сервера базы данных";
$a->strings["Default is localhost"] = "По умолчанию localhost";
$a->strings["Database Port"] = "Порт базы данных";
$a->strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию";
$a->strings["Database Login Name"] = "Имя для подключения к базе данных";
$a->strings["Database Login Password"] = "Пароль для подключения к базе данных";
$a->strings["Database Name"] = "Имя базы данных";
$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Website URL"] = "URL веб-сайта";
$a->strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно.";
$a->strings["Please select a default timezone for your website"] = "";
$a->strings["Site settings"] = "Настройки сайта";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "";
$a->strings["PHP executable path"] = "PHP executable путь";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "Command line PHP";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
$a->strings["This is required for message delivery to work."] = "";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
$a->strings["Generate encryption keys"] = "";
$a->strings["libCurl PHP module"] = "libCurl PHP модуль";
$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
$a->strings["mysqli PHP module"] = "mysqli PHP модуль";
$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
$a->strings["mcrypt PHP module"] = "mcrypt PHP модуль";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite модуль";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
$a->strings["proc_open"] = "proc_open";
$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "";
$a->strings["Error: libCURL PHP module required but not installed."] = "";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
$a->strings["Error: openssl PHP module required but not installed."] = "";
$a->strings["Error: mysqli PHP module required but not installed."] = "";
$a->strings["Error: mb_string PHP module required but not installed."] = "";
$a->strings["Error: mcrypt PHP module required but not installed."] = "";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\ in the top folder of your web server and it is unable to do so."] = "";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php доступен для записи";
$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "";
$a->strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 доступен для записи";
$a->strings["SSL certificate validation"] = "проверка сертификата SSL";
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "Url rewrite работает";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "";
$a->strings["Errors encountered creating database tables."] = "";
$a->strings["<h1>What next</h1>"] = "<h1>Что дальше</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["[Embedded content - reload page to view]"] = "";
$a->strings["toggle full screen mode"] = "переключение полноэкранного режима";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "";
$a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Channel settings"] = "Настройки канала";
$a->strings["Additional features"] = "Дополнительные функции";
$a->strings["Feature settings"] = "Настройки компонентов";
$a->strings["Display settings"] = "Настройки отображения";
$a->strings["Connected apps"] = "Подключенные приложения";
$a->strings["Export channel"] = "Экспорт канала";
$a->strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (дополнительно)";
$a->strings["Missing some important data!"] = "Отсутствуют некоторые важные данные!";
$a->strings["Update"] = "Обновление";
$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён.";
$a->strings["Password changed."] = "Пароль изменен.";
$a->strings["Password update failed. Please try again."] = "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз.";
$a->strings["Not valid email."] = "Не действительный адрес электронной почты.";
$a->strings["Protected email address. Cannot change to that email."] = "";
$a->strings["System failure storing new email. Please try again."] = "";
$a->strings["Settings updated."] = "Настройки обновленны.";
$a->strings["Add application"] = "Добавить приложения";
$a->strings["Cancel"] = "Отменить";
$a->strings["Name"] = "Имя";
$a->strings["Consumer Key"] = "Ключ клиента";
$a->strings["Consumer Secret"] = "Секрет клиента";
$a->strings["Redirect"] = "Перенаправление";
$a->strings["Icon url"] = "URL-адрес значка";
$a->strings["You can't edit this application."] = "Вы не можете редактировать это приложение.";
$a->strings["Connected Apps"] = "Подключенные приложения";
$a->strings["Client key starts with"] = "";
$a->strings["No name"] = "Без названия";
$a->strings["Remove authorization"] = "Удалить разрешение";
$a->strings["No feature settings configured"] = "Параметры функций не настроены";
$a->strings["Feature Settings"] = "Настройки функции";
$a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Password Settings"] = "Настройки пароля";
$a->strings["New Password:"] = "Новый пароль:";
$a->strings["Confirm:"] = "Подтверждение:";
$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми, если не меняется";
$a->strings["Email Address:"] = "Адрес электронной почты:";
$a->strings["Remove Account"] = "Удалить аккаунт";
$a->strings["Warning: This action is permanent and cannot be reversed."] = "";
$a->strings["Off"] = "Выкл.";
$a->strings["On"] = "Вкл.";
$a->strings["Additional Features"] = "Дополнительные функции";
$a->strings["Connector Settings"] = "Настройки соединителя";
$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
$a->strings["Display Settings"] = "Настройки отображения";
$a->strings["Display Theme:"] = "Тема отображения:";
$a->strings["Mobile Theme:"] = "Мобильная тема отображения:";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые ХХ секунд";
$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума";
$a->strings["Maximum number of conversations to load at any time:"] = "";
$a->strings["Maximum of 100 items"] = "Максимум 100 элементов";
$a->strings["Don't show emoticons"] = "Не показывать emoticons";
$a->strings["Nobody except yourself"] = "Никто, кроме вас";
$a->strings["Only those you specifically allow"] = "Только комы вы разрешили";
$a->strings["Anybody in your address book"] = "Любой в вашей адресной книге";
$a->strings["Anybody on this website"] = "Любой на этом веб-сайте";
$a->strings["Anybody in this network"] = "Любой в этой сети";
$a->strings["Anybody on the internet"] = "Любой в интернете";
$a->strings["Publish your default profile in the network directory"] = "Публикация вашего профиля по умолчанию в каталоге сети";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "";
$a->strings["or"] = "или";
$a->strings["Your channel address is"] = "Адрес вашего канала:";
$a->strings["Automatically expire posts after this many days:"] = "";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "";
$a->strings["Advanced expiration settings"] = "";
$a->strings["Advanced Expiration"] = "";
$a->strings["Expire posts:"] = "";
$a->strings["Expire starred posts:"] = "";
$a->strings["Expire photos:"] = "";
$a->strings["Only expire posts by others:"] = "";
$a->strings["Channel Settings"] = "Настройки канала";
$a->strings["Basic Settings"] = "Основные настройки";
$a->strings["Your Timezone:"] = "Ваш часовой пояс:";
$a->strings["Default Post Location:"] = "Откуда по умолчанию:";
$a->strings["Use Browser Location:"] = "Используйте указание браузерa:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
$a->strings["Quick Privacy Settings:"] = "Быстрые параметры безопасности и конфиденциальности:";
$a->strings["Very Public - extremely permissive"] = "Очень публично - чрезвычайно разрешающе";
$a->strings["Typical - default public, privacy when desired"] = "Типично - по умолчанию публично, конфиденциальность, только если настроена";
$a->strings["Private - default private, rarely open or public"] = "Частно  - по умолчанию частно, редко открыто или публично";
$a->strings["Blocked - default blocked to/from everybody"] = "Заблокированно - по умолчанию заблокировано для/от всех";
$a->strings["Maximum Friend Requests/Day:"] = "";
$a->strings["May reduce spam activity"] = "";
$a->strings["Default Post Permissions"] = "";
$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Useful to reduce spamming"] = "";
$a->strings["Notification Settings"] = "Настройки уведомлений";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "Отправить уведомление по электронной почте, если:";
$a->strings["You receive an introduction"] = "Вы получили введение";
$a->strings["Your introductions are confirmed"] = "";
$a->strings["Someone writes on your profile wall"] = "";
$a->strings["Someone writes a followup comment"] = "";
$a->strings["You receive a private message"] = "";
$a->strings["You receive a friend suggestion"] = "";
$a->strings["You are tagged in a post"] = "";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Public access denied."] = "Общественный доступ запрещен.";
$a->strings["No connections."] = "Никаких каналов.";
$a->strings["Visit %s's profile [%s]"] = "";
$a->strings["View Connnections"] = "Просмотр каналов";
$a->strings["Tag removed"] = "Тег удален";
$a->strings["Remove Item Tag"] = "Удалить Тег";
$a->strings["Select a tag to remove: "] = "Выбрать тег для удаления: ";
$a->strings["Remove"] = "Удалить";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegate Page Management"] = "";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
$a->strings["Existing Page Managers"] = "";
$a->strings["Existing Page Delegates"] = "";
$a->strings["Potential Delegates"] = "";
$a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей.";
$a->strings["Age: "] = "Возраст:";
$a->strings["Gender: "] = "Пол:";
$a->strings["Finding:"] = "Поиск:";
$a->strings["next page"] = "следующая страница";
$a->strings["previous page"] = "предыдущая страница";
$a->strings["No entries (some entries may be hidden)."] = "";
$a->strings["People Search"] = "Поиск людей";
$a->strings["No matches"] = "Нет соответствий";
$a->strings["Collection created."] = "Коллекция создана.";
$a->strings["Could not create collection."] = "Не удалось создать коллекцию.";
$a->strings["Collection name changed."] = "Имя коллекции изменено.";
$a->strings["Create a collection of channels."] = "";
$a->strings["Collection Name: "] = "Название коллекции:";
$a->strings["Members are visible to other channels"] = "";
$a->strings["Collection removed."] = "Коллекция удалена.";
$a->strings["Unable to remove collection."] = "Невозможно удалить коллекцию.";
$a->strings["Collection Editor"] = "Редактор коллекций";
$a->strings["Members"] = "Участники";
$a->strings["All Connected Channels"] = "Все подключенные каналы";
$a->strings["Click on a channel to add or remove."] = "";
$a->strings["Page owner information could not be retrieved."] = "";
$a->strings["Album not found."] = "Альбом не найден.";
$a->strings["Delete Album"] = "Удалить альбом";
$a->strings["Delete Photo"] = "Удалить фотографию";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
$a->strings["a photo"] = "фотография";
$a->strings["No photos selected"] = "Никакие фотографии не выбраны";
$a->strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
$a->strings["Upload Photos"] = "Загрузить фотографии";
$a->strings["New album name: "] = "Название нового альбома:";
$a->strings["or existing album name: "] = "или существующий альбом:";
$a->strings["Do not show a status post for this upload"] = "";
$a->strings["Permissions"] = "Разрешения";
$a->strings["Contact Photos"] = "Фотографии канала";
$a->strings["Edit Album"] = "Редактировать Фотоальбом";
$a->strings["Show Newest First"] = "Показать новые первыми";
$a->strings["Show Oldest First"] = "Показать старые первыми";
$a->strings["View Photo"] = "Посмотреть фотографию";
$a->strings["Permission denied. Access to this item may be restricted."] = "";
$a->strings["Photo not available"] = "Фотография не доступна";
$a->strings["Use as profile photo"] = "Использовать в качестве фотографии профиля";
$a->strings["View Full Size"] = "Посмотреть в полный размер";
$a->strings["Edit photo"] = "Редактировать фотографию";
$a->strings["Rotate CW (right)"] = "Повернуть CW (направо)";
$a->strings["Rotate CCW (left)"] = "Повернуть CCW (налево)";
$a->strings["New album name"] = "Новое название альбома:";
$a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить тег";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["View Album"] = "Посмотреть фотоальбом";
$a->strings["Recent Photos"] = "Последние фотографии";
$a->strings["sent you a private message"] = "отправил вам личное сообщение";
$a->strings["added your channel"] = "добавил ваш канал";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["[today]"] = "[сегодня]";
$a->strings["posted an event"] = "";
$a->strings["Not found."] = "Не найдено.";
$a->strings["- select -"] = "- выбрать -";
$a->strings["Welcome to %s"] = "Добро пожаловать в %s";
$a->strings["Check Mail"] = "Проверить снова";
$a->strings["Unable to lookup recipient."] = "";
$a->strings["Unable to communicate with requested channel."] = "";
$a->strings["Cannot verify requested channel."] = "";
$a->strings["Selected channel has private message restrictions. Send failed."] = "";
$a->strings["Messages"] = "Сообщения";
$a->strings["Message deleted."] = "Сообщение удалено.";
$a->strings["Conversation removed."] = "Разговор удален.";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["No messages."] = "Нет сообщений.";
$a->strings["Delete message"] = "Удалить сообщение";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["Message not found."] = "Сообщение не найдено.";
$a->strings["Delete conversation"] = "Удалить разговор";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Отправить снова";
$a->strings["No profile"] = "Профиль отсутствует";
$a->strings["Help:"] = "Помощь:";
$a->strings["Not Found"] = "Не найдено";
$a->strings["Page not found."] = "Страница не найдена.";
$a->strings["Remote Authentication"] = "Удаленная аутентификация";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)";
$a->strings["Authenticate"] = "Проверка подлинности";
$a->strings["Unable to locate original post."] = "Не удалось найти оригинал.";
$a->strings["Empty post discarded."] = "Отказаться от пустой почты.";
$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
$a->strings["Wall Photos"] = "Стена фотографий";
$a->strings["Remove term"] = "Удалить термин";
$a->strings["Commented Order"] = "По комментириям";
$a->strings["Sort by Comment Date"] = "Сортировка по дате создания комментариев";
$a->strings["Posted Order"] = "По добавлениям";
$a->strings["Sort by Post Date"] = "Сортировка по дате создания сообщения";
$a->strings["Personal"] = "Личные";
$a->strings["Posts that mention or involve you"] = "Сообщения, в которых упоминули или вовлекли вас";
$a->strings["New"] = "Новые";
$a->strings["Activity Stream - by date"] = "Лента активности - по дате";
$a->strings["Starred"] = "Помеченные";
$a->strings["Favourite Posts"] = "Фаворит-сообщения";
$a->strings["Spam"] = "Спам";
$a->strings["Posts flagged as SPAM"] = "Как СПАМ помеченные сообщения";
$a->strings["Refresh"] = "Обновить";
$a->strings["Me"] = "Я";
$a->strings["Best Friends"] = "Лучшие друзья";
$a->strings["Co-workers"] = "Сотрудники";
$a->strings["Former Friends"] = "Приятели";
$a->strings["Acquaintances"] = "Знакомые";
$a->strings["Everybody"] = "Все";
$a->strings["Search Results For:"] = "Результаты поиска для:";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Contact: "] = "Канал: ";
$a->strings["Invalid contact."] = "Недействительный канал.";
$a->strings["Theme settings updated."] = "Настройки темы обновленны.";
$a->strings["Site"] = "Сайт";
$a->strings["Users"] = "Пользователи";
$a->strings["Plugins"] = "Плагины";
$a->strings["Themes"] = "Темы";
$a->strings["DB updates"] = "Обновления базы данных";
$a->strings["Logs"] = "Журналы";
$a->strings["Plugin Features"] = "Функции плагинов";
$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, которые ждут подтверждения";
$a->strings["Message queues"] = "Непрочитанный сообщений";
$a->strings["Administration"] = "Администрация";
$a->strings["Summary"] = "Резюме";
$a->strings["Registered users"] = "Всего пользователeй";
$a->strings["Pending registrations"] = "Ждут утверждения";
$a->strings["Version"] = "Версия системы";
$a->strings["Active plugins"] = "Активные плагины";
$a->strings["Site settings updated."] = "Настройки сайта обновлены.";
$a->strings["No special theme for accessibility"] = "";
$a->strings["Closed"] = "Регистрация закрыта";
$a->strings["Requires approval"] = "Регистрация требует подтверждения";
$a->strings["Open"] = "Регистрация открыта";
$a->strings["Private"] = "Личный доступ";
$a->strings["Paid Access"] = "Платный доступ";
$a->strings["Free Access"] = "Свободный доступ";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
$a->strings["Registration"] = "Регистрация";
$a->strings["File upload"] = "Загрузка файла";
$a->strings["Policies"] = "Правила";
$a->strings["Advanced"] = "Дополнительно";
$a->strings["Site name"] = "Название сайта";
$a->strings["Banner/Logo"] = "Баннер / логотип";
$a->strings["System language"] = "Язык системы";
$a->strings["System theme"] = "Тема системы";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "Мобильная тема системы";
$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств";
$a->strings["Accessibility system theme"] = "";
$a->strings["Accessibility theme"] = "";
$a->strings["Channel to use for this website's static pages"] = "";
$a->strings["Site Channel"] = "Канал сайта";
$a->strings["SSL link policy"] = "Правила SSL-ссылки";
$a->strings["Determines whether generated links should be forced to use SSL"] = "";
$a->strings["Maximum image size"] = "Максимальный размер";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Register policy"] = "Статус регистрации";
$a->strings["Access policy"] = "Правила доступа";
$a->strings["Register text"] = "Текст регистрации";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = "";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Блокировать публичный доступ";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Заставить публиковать";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Proxy user"] = "Proxy пользователь";
$a->strings["Proxy URL"] = "Proxy URL";
$a->strings["Network timeout"] = "Время ожидания сети";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "Интервал доставки";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
$a->strings["Poll interval"] = "Интервал опроса";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "Ошибок обновлений нет.";
$a->strings["Failed Updates"] = "Обновления с ошибками";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
	0 => "",
	1 => "",
	2 => "",
);
$a->strings["%s user deleted"] = array(
	0 => "%s канал удален",
	1 => "%s канала удалены",
	2 => "%s каналов удалено",
);
$a->strings["Account not found"] = "Аккаунт не найден";
$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
$a->strings["User '%s' unblocked"] = "Пользователь '%s' разрешен";
$a->strings["User '%s' blocked"] = "Пользователь '%s' заблокирован";
$a->strings["Normal Account"] = "Нормальный аккаунт";
$a->strings["Soapbox Account"] = "Soapbox аккаунт";
$a->strings["Community/Celebrity Account"] = "Community/Celebrity аккаунт";
$a->strings["Automatic Friend Account"] = "Аккаунт \"автоматически друзья\"";
$a->strings["select all"] = "выбрать все";
$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей ждут подтверждения";
$a->strings["Request date"] = "Дата запроса";
$a->strings["No registrations."] = "Новых регистраций пока нет.";
$a->strings["Approve"] = "Утвердить";
$a->strings["Deny"] = "Запретить";
$a->strings["Block"] = "Заблокировать";
$a->strings["Unblock"] = "Разрешить";
$a->strings["Register date"] = "Дата регистрации";
$a->strings["Last login"] = "Последний вход";
$a->strings["Service Class"] = "Класс службы";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
$a->strings["Plugin %s enabled."] = "Плагин %s включен.";
$a->strings["Disable"] = "Запретить";
$a->strings["Enable"] = "Разрешить";
$a->strings["Toggle"] = "Переключить";
$a->strings["Author: "] = "Автор: ";
$a->strings["Maintainer: "] = "Обслуживающий: ";
$a->strings["No themes found."] = "Темы не найдены.";
$a->strings["Screenshot"] = "Скриншот";
$a->strings["[Experimental]"] = "[экспериментальный]";
$a->strings["[Unsupported]"] = "[неподдерживаемый]";
$a->strings["Log settings updated."] = "Настройки журнала обновленны.";
$a->strings["Clear"] = "Очистить";
$a->strings["Debugging"] = "Включить/Выключить";
$a->strings["Log file"] = "Файл журнала";
$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта.";
$a->strings["Log level"] = "Уровень журнала";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Connection updated."] = "Канал обновлен.";
$a->strings["Connection update failed."] = "Ошибка обновления канала.";
$a->strings["Introductions and Connection Requests"] = "";
$a->strings["No pending introductions."] = "Введений в ожидании нет.";
$a->strings["System error. Please try again later."] = "Системная ошибка. Пожалуйста, повторите попытку позже.";
$a->strings["Hide this contact from others"] = "Скрыть этот канал от других";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "если это применимо";
$a->strings["Discard"] = "Отменить";
$a->strings["Could not access contact record."] = "";
$a->strings["Could not locate selected profile."] = "";
$a->strings["Failed to update connection record."] = "";
$a->strings["Could not access address book record."] = "";
$a->strings["Refresh failed - channel is currently unavailable."] = "";
$a->strings["Channel has been unblocked"] = "Канал разблокирован";
$a->strings["Channel has been blocked"] = "Канал заблокирован";
$a->strings["Unable to set address book parameters."] = "";
$a->strings["Channel has been unignored"] = "Канал не проигнорирован";
$a->strings["Channel has been ignored"] = "Канал проигнорирован";
$a->strings["Channel has been unarchived"] = "Канал разархивирован";
$a->strings["Channel has been archived"] = "Канал заархивирован";
$a->strings["Channel has been unhidden"] = "Канал открыт";
$a->strings["Channel has been hidden"] = "Канал скрыт";
$a->strings["Channel has been approved"] = "Канал одобрен";
$a->strings["Channel has been unapproved"] = "Канал не одобрен";
$a->strings["Contact has been removed."] = "Канал удален.";
$a->strings["View %s's profile"] = "Просмотр %s's профиля";
$a->strings["Refresh Permissions"] = "Обновить разрешения";
$a->strings["Fetch updated permissions"] = "";
$a->strings["Block or Unblock this connection"] = "Запретить или разрешить этот канал";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать этот канал";
$a->strings["Unarchive"] = "Разархивировать";
$a->strings["Archive"] = "Заархивировать";
$a->strings["Archive or Unarchive this connection"] = " Заархивировать или разархивировать этот канал";
$a->strings["Unhide"] = "Показать";
$a->strings["Hide"] = "Скрыть";
$a->strings["Hide or Unhide this connection"] = "Скрыть или показывать этот канал";
$a->strings["Delete this connection"] = "Удалить этот канал";
$a->strings["Unknown"] = "Неизвестный";
$a->strings["Approve this connection"] = "Утвердить этот канал";
$a->strings["Accept connection to allow communication"] = "";
$a->strings["Automatic Permissions Settings"] = "Настройки автоматических разрешений";
$a->strings["Connections: settings for %s"] = "";
$a->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."] = "";
$a->strings["Slide to adjust your degree of friendship"] = "";
$a->strings["Connection has no individual permissions!"] = "";
$a->strings["This may be appropriate based on your <a href=\"settings\">privacy settings</a>, though you may wish to review the \"Advanced Permissions\"."] = "";
$a->strings["Profile Visibility"] = "Видимость профиля";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
$a->strings["Contact Information / Notes"] = "Информация / Примечания о канале";
$a->strings["Edit contact notes"] = "Редактировать примечания канала";
$a->strings["Their Settings"] = "Их настройки";
$a->strings["My Settings"] = "Мои настройки";
$a->strings["Forum Members"] = "Участники форума";
$a->strings["Soapbox"] = "Soapbox";
$a->strings["Full Sharing"] = "Полный обмен";
$a->strings["Cautious Sharing"] = "";
$a->strings["Follow Only"] = "Только следовать";
$a->strings["Individual Permissions"] = "Индивидуальные разрешения";
$a->strings["Individual permissions are only enabled for <a href=\"settings\">privacy settings</a> which are set to \"Only those you specifically allow\". Otherwise they are controlled by your privacy settings."] = "";
$a->strings["Advanced Permissions"] = "Дополнительные разрешения";
$a->strings["Quick Links"] = "Быстрые ссылки";
$a->strings["Visit %s's profile - %s"] = "Посетить %s's ​​профиль - %s";
$a->strings["Block/Unblock contact"] = "Запретить/разрешить канал";
$a->strings["Ignore contact"] = "Игнорировать канал";
$a->strings["Repair URL settings"] = "Ремонт настройки URL";
$a->strings["View conversations"] = "Просмотр разговоров";
$a->strings["Delete contact"] = "Удалить канал";
$a->strings["Last update:"] = "Последнее обновление:";
$a->strings["Update public posts"] = "Обновить публичные сообщения";
$a->strings["Update now"] = "Обновить сейчас";
$a->strings["Currently blocked"] = "В настоящее время заблокирован";
$a->strings["Currently ignored"] = "В настоящее время игнорируются";
$a->strings["Currently archived"] = "В настоящее время зархивированны";
$a->strings["Currently pending"] = "В настоящее время в ожидании";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["Blocked"] = "Заблокированные";
$a->strings["Ignored"] = "Игнорируемые";
$a->strings["Hidden"] = "Скрытые";
$a->strings["Archived"] = "Зархивированные";
$a->strings["All"] = "Все";
$a->strings["Suggestions"] = "Рекомендации";
$a->strings["Suggest new connections"] = "Предлагать новые каналы";
$a->strings["Show pending (new) connections"] = "Просмотр (новых) ждущих каналов";
$a->strings["All Connections"] = "Все каналы";
$a->strings["Show all connections"] = "Просмотр всех каналов";
$a->strings["Unblocked"] = "Разрешенные";
$a->strings["Only show unblocked connections"] = "Показать только разрешенные каналы";
$a->strings["Only show blocked connections"] = "Показать только заблокированные каналы";
$a->strings["Only show ignored connections"] = "Показать только проигнорированные каналы";
$a->strings["Only show archived connections"] = "Показать только архивированные каналы";
$a->strings["Only show hidden connections"] = "Показать только скрытые каналы";
$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
$a->strings["Edit contact"] = "Редактировать канал";
$a->strings["Search your connections"] = "Поиск каналов";
$a->strings["Finding: "] = "Поиск:";
$a->strings["This site is not a directory server"] = "Этот сайт не является сервером каталога";
$a->strings["Remote privacy information not available."] = "";
$a->strings["Visible to:"] = "Кому видно:";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "";
$a->strings["Welcome %s. Remote authentication successful."] = "";
$a->strings["Profile not found."] = "Профиль не найден.";
$a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан.";
$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
$a->strings["Profile Name is required."] = "Имя профиля требуется.";
$a->strings["Marital Status"] = "Семейное положение";
$a->strings["Romantic Partner"] = "Романтический партнер";
$a->strings["Likes"] = "мне нравиться";
$a->strings["Dislikes"] = "мне не-нравиться";
$a->strings["Work/Employment"] = "Работа / Занятость";
$a->strings["Religion"] = "Религия";
$a->strings["Political Views"] = "Политические взгляды";
$a->strings["Gender"] = "Пол";
$a->strings["Sexual Preference"] = "Сексуальная ориентация";
$a->strings["Homepage"] = "Домашняя страница";
$a->strings["Interests"] = "Интересы";
$a->strings["Address"] = "Адрес";
$a->strings["Location"] = "Место";
$a->strings["Profile updated."] = "Профиль обновлен.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "";
$a->strings["Edit Profile Details"] = "Редактирование профиля";
$a->strings["View this profile"] = "Посмотреть этот профиль";
$a->strings["Change Profile Photo"] = "Изменить фотографию профиля";
$a->strings["Create a new profile using these settings"] = "";
$a->strings["Clone this profile"] = "Клонировать этот профиль";
$a->strings["Delete this profile"] = "Удалить этот профиль";
$a->strings["Profile Name:"] = "Имя профиля:";
$a->strings["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Название / Описание:";
$a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["Birthday (%s):"] = "Ваш День Рождения (%s):";
$a->strings["Street Address:"] = "Улица:";
$a->strings["Locality/City:"] = "Населенный пункт / город:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
$a->strings["Country:"] = "Страна:";
$a->strings["Region/State:"] = "Регион / Область:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
$a->strings["Who: (if applicable)"] = "Кто: (если это применимо)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
$a->strings["Since [date]:"] = "С тех пор [date]:";
$a->strings["Homepage URL:"] = "URL-адрес домашней страницы:";
$a->strings["Religious Views:"] = "Религиозные взгляды:";
$a->strings["Keywords:"] = "Ключевые слова:";
$a->strings["Example: fishing photography software"] = "Пример: fishing photography software";
$a->strings["Used in directory listings"] = "";
$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
$a->strings["Hobbies/Interests"] = "Хобби / интересы";
$a->strings["Contact information and Social Networks"] = "Информация и социальные сети канала";
$a->strings["My other channels"] = "Мои другие каналы";
$a->strings["Musical interests"] = "Музыкальные интересы";
$a->strings["Books, literature"] = "Книги, литература";
$a->strings["Television"] = "Телевидение";
$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
$a->strings["Love/romance"] = "Любовь / Романс";
$a->strings["Work/employment"] = "Работа / Занятость";
$a->strings["School/education"] = "Школа / образование";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
$a->strings["Edit/Manage Profiles"] = "Редактирование  / Управление профилей";
$a->strings["Change profile photo"] = "Изменить фотографию профиля";
$a->strings["Create New Profile"] = "Создать новый профиль";
$a->strings["Profile Image"] = "Изображение профиля";
$a->strings["visible to everybody"] = "видно всем";
$a->strings["Edit visibility"] = "Редактировать видимость";
$a->strings["Add a Channel"] = "Добавить канал";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "";
$a->strings["Channel Name"] = "Имя канала";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "";
$a->strings["Choose a short nickname"] = "Выберите короткий псевдоним";
$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "";
$a->strings["Create"] = "Создать";
$a->strings["No valid account found."] = "Действительный аккаунт не найден.";
$a->strings["Password reset request issued. Check your email."] = "";
$a->strings["Site Member (%s)"] = "Участник сайта (%s)";
$a->strings["Password reset requested at %s"] = "Требуется сброс пароля на %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
$a->strings["Password Reset"] = "Сбросить пароль";
$a->strings["Your password has been reset as requested."] = "";
$a->strings["Your new password is"] = "Ваш новый пароль";
$a->strings["Save or copy your new password - and then"] = "";
$a->strings["click here to login"] = "нажмите здесь чтобы выйти";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
$a->strings["Your password has changed at %s"] = "Пароль изменен на %s";
$a->strings["Forgot your Password?"] = "Забыли пароль или логин?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
$a->strings["Email Address"] = "Адрес электронной почты";
$a->strings["Reset"] = "Сброс";
$a->strings["Nothing to import."] = "Ничего импортировать.";
$a->strings["Unable to download data from old server"] = "Невозможно загрузить данные из старого сервера";
$a->strings["Imported file is empty."] = "Импортированный файл пуст.";
$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "";
$a->strings["Channel clone failed. Import failed."] = "";
$a->strings["Cloned channel not found. Import failed."] = "";
$a->strings["Import completed."] = "Импорт завершен.";
$a->strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию.";
$a->strings["Import Channel"] = "Импорт канала";
$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "";
$a->strings["File to Upload"] = "Файл для загрузки";
$a->strings["Or provide the old server/hub details"] = "";
$a->strings["Your old identity address (xyz@example.com)"] = "";
$a->strings["Your old login email address"] = "";
$a->strings["Your old login password"] = "";
$a->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."] = "";
$a->strings["Make this hub my primary location"] = "";
$a->strings["Create a new channel"] = "Создать новый канал";
$a->strings["Channel Manager"] = "Настройки канала";
$a->strings["Current Channel"] = "Текущий канал";
$a->strings["Attach to one of your channels by selecting it."] = "";
$a->strings["Default Channel"] = "Канал по умолчанию";
$a->strings["Make Default"] = "Сделать стандартным";
$a->strings["Profile Match"] = "";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "";
$a->strings["is interested in:"] = "заинтересован в:";
$a->strings["Contact settings applied."] = "";
$a->strings["Contact update failed."] = "Ошибка обновления канала.";
$a->strings["Contact not found."] = "Канал не найден.";
$a->strings["Repair Contact Settings"] = "Починить настройки канала";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "";
$a->strings["Return to contact editor"] = "Вернуться к редактору канала";
$a->strings["Account Nickname"] = "Псевдоним аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = "";
$a->strings["Account URL"] = "URL аккаунта";
$a->strings["Friend Request URL"] = "";
$a->strings["Friend Confirm URL"] = "";
$a->strings["Notification Endpoint URL"] = "";
$a->strings["Poll/Feed URL"] = "";
$a->strings["New photo from this URL"] = "Новое фото из этого URL";
$a->strings["invalid target signature"] = "";
$a->strings["Channel added."] = "Канал добавлен.";
$a->strings["Contacts who are not members of a group"] = "";
$a->strings["Image uploaded but image cropping failed."] = "";
$a->strings["Image resize failed."] = "Изменение размера изображения не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
$a->strings["Image exceeds size limit of %d"] = "";
$a->strings["Unable to process image."] = "";
$a->strings["Photo not available."] = "Фотография не доступна.";
$a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Select a profile:"] = "Выберите профиль:";
$a->strings["Upload Profile Photo"] = "Загрузить фотографию профиля";
$a->strings["Upload"] = "Загрузка";
$a->strings["skip this step"] = "пропустить этот шаг";
$a->strings["select a photo from your photo albums"] = "";
$a->strings["Crop Image"] = "Обрезать изображение";
$a->strings["Please adjust the image cropping for optimum viewing."] = "";
$a->strings["Done Editing"] = "Закончить редактирование";
$a->strings["Image uploaded successfully."] = "Загрузка изображениея прошла успешно.";
$a->strings["Image upload failed."] = "Загрузка изображениея прошла безуспешно.";
$a->strings["Image size reduction [%s] failed."] = "";
$a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["Insert YouTube video"] = "Вставить YouTube видео";
$a->strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео";
$a->strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] музыку";
$a->strings["Invalid request identifier."] = "";
$a->strings["System"] = "Система";
$a->strings["Introductions"] = "Введения";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
$a->strings["Notification type: "] = "Тип оповещения:";
$a->strings["Friend Suggestion"] = "";
$a->strings["suggested by %s"] = "";
$a->strings["Claims to be known to you: "] = "";
$a->strings["yes"] = "да";
$a->strings["no"] = "нет";
$a->strings["Approve as: "] = "Утвердить в качестве:";
$a->strings["Friend"] = "Друг";
$a->strings["Sharer"] = "";
$a->strings["Fan/Admirer"] = "Поклонник";
$a->strings["Friend/Connect Request"] = "";
$a->strings["New Follower"] = "Новый последователь";
$a->strings["No introductions."] = "Введений нет.";
$a->strings["%s liked %s's post"] = "%s нравится %s's сообщение";
$a->strings["%s disliked %s's post"] = "%s не нравится %s's сообщение";
$a->strings["%s is now friends with %s"] = "%s теперь в друзьях с %s";
$a->strings["%s created a new post"] = "%s создал новое сообщение";
$a->strings["%s commented on %s's post"] = "%s прокомментировал %s's сообщение";
$a->strings["No more network notifications."] = "Новых оповещений сети пока нет.";
$a->strings["Network Notifications"] = "Оповещения сети";
$a->strings["No more system notifications."] = "Новых оповещений системы пока нет.";
$a->strings["System Notifications"] = "Системные оповещения ";
$a->strings["No more personal notifications."] = "Новых личных оповещений пока нет.";
$a->strings["Personal Notifications"] = "Личные оповещения ";
$a->strings["No more home notifications."] = "Новых домашних оповещений пока нет.";
$a->strings["Home Notifications"] = "Домашние оповещения";
$a->strings["Post successful."] = "Публикация прошла успешно.";
$a->strings["Item is not editable"] = "Элемент нельзя редактировать";
$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "Получатель";
$a->strings["Choose what you wish to do to recipient"] = "";
$a->strings["Make this post private"] = "Сделать это сообщение личным";
$a->strings["Not available."] = "Недоступно.";
$a->strings["Community"] = "Сообщество";
$a->strings["No results."] = "Ничего не найдено.";
$a->strings["Files"] = "Файлы";
$a->strings["Friend suggestion sent."] = "";
$a->strings["Suggest Friends"] = "Пригласить друзей";
$a->strings["Suggest a friend for %s"] = "";
$a->strings["Invalid profile identifier."] = "";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Click on a contact to add or remove."] = "";
$a->strings["Visible To"] = "Видно";
$a->strings["All Contacts (with secure profile access)"] = "Все каналы (с доступом защищенному профилю)";
$a->strings["Version %s"] = "Версия %s";
$a->strings["Installed plugins/addons/apps:"] = "";
$a->strings["No installed plugins/addons/apps"] = "";
$a->strings["Red"] = "Red";
$a->strings["This is Red - another decentralized, distributed communications project by the folks at Friendica."] = "";
$a->strings["Running at web location"] = "";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica and/or Red project."] = "";
$a->strings["Bug reports and issues: please visit"] = "";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Игнорировать / Скрыть";
$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "";
$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "";
$a->strings["Registration successful. Please check your email for validation instructions."] = "";
$a->strings["Your registration is pending approval by the site owner."] = "";
$a->strings["Your registration can not be processed."] = "";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
$a->strings["Terms of Service"] = "";
$a->strings["I accept the %s for this website"] = "";
$a->strings["I am over 13 years of age and accept the %s for this website"] = "";
$a->strings["Membership on this site is by invitation only."] = "";
$a->strings["Please enter your invitation code"] = "";
$a->strings["Your email address"] = "Ваш адрес электронной почты";
$a->strings["Choose a password"] = "Выберите пароль";
$a->strings["Please re-enter your password"] = "";
$a->strings["Please login."] = "Войдите пожалуйста.";
$a->strings["Remove My Account"] = "Удалить мой аккаунт";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "";
$a->strings["Please enter your password for verification:"] = "";
$a->strings["Mood"] = "";
$a->strings["Set your current mood and tell your friends"] = "";
$a->strings["Theme settings"] = "Настройки темы";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set colour scheme"] = "Установите цветовую схему";
$a->strings["Draw shadows"] = "";
$a->strings["Navigation bar colour"] = "";
$a->strings["Display style"] = "Стиль отображения";
$a->strings["Display colour of links - hex value, do not include the #"] = "";
$a->strings["Icons"] = "Значки";
$a->strings["Shiny style"] = "";
$a->strings["Corner radius"] = "Угловой радиус";
$a->strings["0-99 default: 5"] = "0-99 по умолчанию: 5";
$a->strings["Update %s failed. See error logs."] = "";
$a->strings["Update Error at %s"] = "Ошибка обновления на %s";
$a->strings["Create a New Account"] = "Создать новый аккаунт";
$a->strings["Password"] = "Пароль";
$a->strings["Remember me"] = "Запомнить";
$a->strings["Forgot your password?"] = "Забыли пароль или логин?";
$a->strings["Requested channel is not available."] = "Запрашиваемый канал не доступен.";
$a->strings[" Sorry, you don't have the permission to view this profile. "] = "";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/edit profiles"] = "Управление / Редактирование профилей";
$a->strings["Edit Profile"] = "Редактировать профиль";
$a->strings["F d"] = "F d";
$a->strings["Birthday Reminders"] = "Напоминания о Днях Рождения";
$a->strings["Birthdays this week:"] = "Дни Рождения на этой неделе:";
$a->strings["[No description]"] = "[без описания]";
$a->strings["Event Reminders"] = "Напоминания мероприятий";
$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
$a->strings["Channel"] = "Канал";
$a->strings["Status Messages and Posts"] = "";
$a->strings["About"] = "О себе";
$a->strings["Profile Details"] = "Сведения о профиле";
$a->strings["Events and Calendar"] = "Мероприятия и календарь";
$a->strings["Webpages"] = "Веб-страницы";
$a->strings["Manage Webpages"] = "";
$a->strings["toggle mobile"] = "мобильное подключение";