aboutsummaryrefslogtreecommitdiffstats
path: root/view/ru/strings.php
blob: 90e08ca4ac57cc9cdcb4e3006f01832df683247a (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
1502
1503
<?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;"] = "";
$a->strings["Visit %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"] = "";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "";
$a->strings["a private message"] = "личное сообщение";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "";
$a->strings["%1\$s commented on [zrl=%2\$s]a %3\$s[/zrl]"] = "";
$a->strings["%1\$s commented on [zrl=%2\$s]%3\$s's %4\$s[/zrl]"] = "";
$a->strings["%1\$s commented on [zrl=%2\$s]your %3\$s[/zrl]"] = "";
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
$a->strings["[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"] = "";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "";
$a->strings["[Red:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "";
$a->strings["[Red:Notify] %s tagged your post"] = "";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "";
$a->strings["[Red:Notify] Introduction received"] = "";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [zrl=%1\$s]an introduction[/zrl] from %2\$s."] = "";
$a->strings["You may visit their profile at %s"] = "";
$a->strings["Please visit %s to approve or reject the introduction."] = "";
$a->strings["[Red:Notify] Friend suggestion received"] = "";
$a->strings["You've received a friend suggestion from '%1\$s' at %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"] = "Отправить 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"] = "Email";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Add New Connection"] = "Добавить новую связь";
$a->strings["Enter the channel address"] = "";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "";
$a->strings["%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:"] = "";
$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"] = "";
$a->strings["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"] = "";
$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"] = "";
$a->strings["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["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["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"] = "";
$a->strings["Click to authenticate to your home hub"] = "";
$a->strings["Home Page"] = "Моя страница";
$a->strings["Register"] = "Регистрация";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help"] = "Помощь";
$a->strings["Help and documentation"] = "Справочная информация и документация";
$a->strings["Apps"] = "Apps";
$a->strings["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"] = "Mail";
$a->strings["Private mail"] = "Личные 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"] = "";
$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"] = "";
$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"] = "";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
$a->strings["%1\$s is now connected with %2\$s"] = "";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["View %s's profile @ %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."] = "";
$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = "";
$a->strings["and"] = "и";
$a->strings[", and %d other people"] = "";
$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["%s's birthday"] = "%s's День Рождения";
$a->strings["Happy Birthday %s"] = "С Днем Рождения %s";
$a->strings["[Name Withheld]"] = "";
$a->strings["A new person is sharing with you at "] = "";
$a->strings["You have a new follower at "] = "";
$a->strings["Item not found."] = "Элемент не найден.";
$a->strings["Archives"] = "Архивы";
$a->strings["Collection not found."] = "Коллекция не найдена.";
$a->strings["Collection has no members."] = "";
$a->strings["Connection not found."] = "Связь не найдена.";
$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"] = "";
$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:"] = "";
$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."] = "";
$a->strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
$a->strings["%s : Message delivery failed."] = "";
$a->strings["%d message sent."] = array(
	0 => "",
	1 => "",
	2 => "",
);
$a->strings["You have no more invitations available"] = "";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
$a->strings["Send invitations"] = "";
$a->strings["Enter email addresses, one per line:"] = "";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
$a->strings["Friends of %s"] = "";
$a->strings["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["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\"."] = "";
$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"] = "";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
$a->strings["This is required for message delivery to work."] = "";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
$a->strings["Generate encryption keys"] = "";
$a->strings["libCurl PHP module"] = "";
$a->strings["GD graphics PHP module"] = "";
$a->strings["OpenSSL PHP module"] = "";
$a->strings["mysqli PHP module"] = "";
$a->strings["mb_string PHP module"] = "";
$a->strings["mcrypt PHP module"] = "";
$a->strings["Apache mod_rewrite module"] = "";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
$a->strings["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"] = "";
$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = "";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
$a->strings["Note: as a security measure, you should give the web server write access to view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = "";
$a->strings["view/tpl/smarty3 is writable"] = "";
$a->strings["SSL certificate validation"] = "";
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["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"] = "Подключенные 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"] = "";
$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:"] = "Email адрес:";
$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"] = "";
$a->strings["Maximum number of conversations to load at any time:"] = "";
$a->strings["Maximum of 100 items"] = "";
$a->strings["Don't show emoticons"] = "";
$a->strings["Nobody except yourself"] = "";
$a->strings["Only those you specifically allow"] = "";
$a->strings["Anybody in your address book"] = "";
$a->strings["Anybody on this website"] = "";
$a->strings["Anybody in this network"] = "";
$a->strings["Anybody on the internet"] = "";
$a->strings["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->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 connections."] = "Создать новую коллекцию связей.";
$a->strings["Collection Name: "] = "";
$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)"] = "";
$a->strings["Rotate CCW (left)"] = "";
$a->strings["New album name"] = "";
$a->strings["Caption"] = "";
$a->strings["Add a Tag"] = "";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "";
$a->strings["View Album"] = "";
$a->strings["Recent Photos"] = "";
$a->strings["sent you a private message"] = "";
$a->strings["added your channel"] = "";
$a->strings["g A l F d"] = "";
$a->strings["[today]"] = "";
$a->strings["posted an event"] = "";
$a->strings["Not found."] = "";
$a->strings["- select -"] = "";
$a->strings["Welcome to %s"] = "";
$a->strings["Check Mail"] = "Проверить 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"] = "";
$a->strings["Message not found."] = "";
$a->strings["Delete conversation"] = "";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Отправить снова";
$a->strings["No profile"] = "";
$a->strings["Help:"] = "";
$a->strings["Not Found"] = "";
$a->strings["Page not found."] = "";
$a->strings["Remote Authentication"] = "";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "";
$a->strings["Authenticate"] = "";
$a->strings["Unable to locate original post."] = "";
$a->strings["Empty post discarded."] = "";
$a->strings["System error. Post not saved."] = "";
$a->strings["Wall Photos"] = "";
$a->strings["Remove term"] = "";
$a->strings["Commented Order"] = "";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "";
$a->strings["Sort by Post Date"] = "";
$a->strings["Personal"] = "";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "";
$a->strings["Activity Stream - by date"] = "";
$a->strings["Starred"] = "";
$a->strings["Favourite Posts"] = "";
$a->strings["Spam"] = "";
$a->strings["Posts flagged as SPAM"] = "";
$a->strings["Refresh"] = "";
$a->strings["Me"] = "";
$a->strings["Best Friends"] = "";
$a->strings["Co-workers"] = "";
$a->strings["Former Friends"] = "";
$a->strings["Acquaintances"] = "";
$a->strings["Everybody"] = "Все";
$a->strings["Search Results For:"] = "";
$a->strings["No such group"] = "";
$a->strings["Group is empty"] = "";
$a->strings["Contact: "] = "";
$a->strings["Invalid contact."] = "";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "";
$a->strings["Users"] = "";
$a->strings["Plugins"] = "";
$a->strings["Themes"] = "";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "";
$a->strings["Summary"] = "";
$a->strings["Registered users"] = "";
$a->strings["Pending registrations"] = "";
$a->strings["Version"] = "";
$a->strings["Active plugins"] = "";
$a->strings["Site settings updated."] = "";
$a->strings["No special theme for accessibility"] = "";
$a->strings["Closed"] = "";
$a->strings["Requires approval"] = "";
$a->strings["Open"] = "";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "";
$a->strings["Registration"] = "";
$a->strings["File upload"] = "";
$a->strings["Policies"] = "";
$a->strings["Advanced"] = "";
$a->strings["Site name"] = "";
$a->strings["Banner/Logo"] = "";
$a->strings["System language"] = "";
$a->strings["System theme"] = "";
$a->strings["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"] = "";
$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["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"] = "";
$a->strings["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 => "",
	1 => "",
	2 => "",
);
$a->strings["Account not found"] = "Аккаунт не найден";
$a->strings["User '%s' deleted"] = "";
$a->strings["User '%s' unblocked"] = "";
$a->strings["User '%s' blocked"] = "";
$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."] = "";
$a->strings["Plugin %s enabled."] = "";
$a->strings["Disable"] = "";
$a->strings["Enable"] = "";
$a->strings["Toggle"] = "";
$a->strings["Author: "] = "";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "";
$a->strings["Screenshot"] = "";
$a->strings["[Experimental]"] = "";
$a->strings["[Unsupported]"] = "";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "";
$a->strings["Debugging"] = "";
$a->strings["Log file"] = "";
$a->strings["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"] = "";
$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"] = "";
$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"] = "";
$a->strings["Block/Unblock contact"] = "";
$a->strings["Ignore contact"] = "";
$a->strings["Repair URL settings"] = "";
$a->strings["View conversations"] = "";
$a->strings["Delete contact"] = "";
$a->strings["Last update:"] = "";
$a->strings["Update public posts"] = "";
$a->strings["Update now"] = "";
$a->strings["Currently blocked"] = "";
$a->strings["Currently ignored"] = "";
$a->strings["Currently archived"] = "";
$a->strings["Currently pending"] = "";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["Blocked"] = "";
$a->strings["Ignored"] = "";
$a->strings["Hidden"] = "";
$a->strings["Archived"] = "";
$a->strings["All"] = "";
$a->strings["Suggestions"] = "";
$a->strings["Suggest new connections"] = "Предлагать новые связи";
$a->strings["Show pending (new) connections"] = "Просмотр (новых) связей в ожидании";
$a->strings["All Connections"] = "Все связи";
$a->strings["Show all connections"] = "Просмотр всех связей";
$a->strings["Unblocked"] = "";
$a->strings["Only show unblocked connections"] = "Показать только разрешенные связи";
$a->strings["Only show blocked connections"] = "Показать только заблокированные связи";
$a->strings["Only show ignored connections"] = "Показать только проигнорированные связи";
$a->strings["Only show archived connections"] = "Показать только архивированные связи";
$a->strings["Only show hidden connections"] = "Показать только скрытые связи";
$a->strings["%1\$s [%2\$s]"] = "";
$a->strings["Edit contact"] = "";
$a->strings["Search your connections"] = "Поиск ваших связей";
$a->strings["Finding: "] = "";
$a->strings["This site is not a directory server"] = "";
$a->strings["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):"] = "";
$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]:"] = "";
$a->strings["Homepage URL:"] = "";
$a->strings["Religious Views:"] = "";
$a->strings["Keywords:"] = "";
$a->strings["Example: 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)"] = "";
$a->strings["Password reset requested at %s"] = "";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
$a->strings["Password Reset"] = "Вбросить пароль";
$a->strings["Your password has been reset as requested."] = "";
$a->strings["Your new password is"] = "";
$a->strings["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"] = "";
$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"] = "";
$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"] = "";
$a->strings["Insert Vorbis [.ogg] video"] = "";
$a->strings["Insert Vorbis [.ogg] audio"] = "";
$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"] = "";
$a->strings["%s disliked %s's post"] = "";
$a->strings["%s is now friends with %s"] = "";
$a->strings["%s created a new post"] = "";
$a->strings["%s commented on %s's post"] = "";
$a->strings["No more network notifications."] = "";
$a->strings["Network Notifications"] = "";
$a->strings["No more system notifications."] = "";
$a->strings["System Notifications"] = "";
$a->strings["No more personal notifications."] = "";
$a->strings["Personal Notifications"] = "";
$a->strings["No more home notifications."] = "";
$a->strings["Home Notifications"] = "";
$a->strings["Post successful."] = "";
$a->strings["Item is not editable"] = "";
$a->strings["Access to this profile has been restricted."] = "";
$a->strings["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"] = "";
$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"] = "";
$a->strings["Update %s failed. See error logs."] = "";
$a->strings["Update Error at %s"] = "";
$a->strings["Create a New Account"] = "Создать новый аккаунт";
$a->strings["Password"] = "Пароль";
$a->strings["Remember me"] = "";
$a->strings["Forgot your password?"] = "";
$a->strings["Requested channel is not available."] = "Запрашиваемый канал не доступен.";
$a->strings[" Sorry, you don't have the permission to view this profile. "] = "";
$a->strings["Profiles"] = "";
$a->strings["Manage/edit profiles"] = "";
$a->strings["Edit Profile"] = "";
$a->strings["F d"] = "";
$a->strings["Birthday Reminders"] = "";
$a->strings["Birthdays this week:"] = "";
$a->strings["[No description]"] = "";
$a->strings["Event Reminders"] = "";
$a->strings["Events this week:"] = "";
$a->strings["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"] = "";