~adrian-wilkins/ubuntu/quantal/freemind/fix-file-association

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
#translated partially and edited by Sergey Kotkin - sergeykotkin
about = \u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435...

add=&\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c
about_text = FreeMind - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0430\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043a\u0430\u0440\u0442 \u0438 \u0444\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0431\u0430\u0437 \u0437\u043d\u0430\u043d\u0438\u0439\nCopyright \u00a9 2000-2010 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev \u0438 \u0434\u0440\u0443\u0433\u0438\u0435.\n\u042d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 - \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u0435, \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 GNU,\n\n\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430: http://freemind.sourceforge.net/\n\u0412\u0435\u0440\u0441\u0438\u044f: 
antialias_all = \u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c \u0432\u0441\u0451
antialias_edges = \u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0451\u0431\u0440\u0430
antialias_none = \u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u0441\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c
apply=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c
background = \u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430
bezier = \u041a\u0440\u0438\u0432\u0430\u044f
blend_color = \u0412\u044b\u0441\u0432\u0435\u0442\u043b\u0438\u0442\u044c \u0443\u0437\u0435\u043b
bold = \u0416\u0438\u0440\u043d\u044b\u0439
boldify_branch = \u0412\u0441\u044e \u0432\u0435\u0442\u0432\u044c \u0436\u0438\u0440\u043d\u043e
branch = \u0412\u0435\u0442\u0432\u044c
bubble = \u0422\u0438\u043f \u0443\u0437\u043b\u0430 "&\u041e\u0432\u0430\u043b"
cancel = \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
cannot_join_nodes_with_children = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0431\u044a\u0435\u0434\u0438\u043d\u044f\u0442\u044c \u0443\u0437\u043b\u044b \u0441 \u0438\u0445 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c\u0438 \u0443\u0437\u043b\u0430\u043c\u0438
center = \u0426\u0435\u043d\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c
cloud = \u041e\u0431\u043b\u0430\u043a\u043e
cloud_color = \u0426\u0432\u0435\u0442 \u043e\u0431\u043b\u0430\u043a\u0430 ...
close = \u0417\u0430\u043a\u0440\u044b\u0442\u044c
copy = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
copy_single = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u044d\u0442\u043e\u0442 \u0443\u0437\u0435\u043b
cut = \u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c
decrease_branch_font_size = \u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u0448\u0440\u0438\u0444\u0442 \u0432\u0441\u0435\u0439 \u0432\u0435\u0442\u0432\u0438
decrease_node_font_size = \u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u0448\u0440\u0438\u0444\u0442 \u0443\u0437\u043b\u0430
delete=&\u0423\u0434\u0430\u043b\u0438\u0442\u044c
documentation = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f
edge = \u0420\u0435\u0431\u0440\u043e
edge_color = \u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430...
edge_width_parent = \u041a\u0430\u043a \u0443 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0437\u043b\u0430
edge_width_thin = \u0422\u043e\u043d\u043a\u043e \u0440\u0435\u0431\u0440\u043e
edit = &\u041f\u0440\u0430\u0432\u043a\u0430
edit_link_manually = \u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432\u0440\u0443\u0447\u043d\u0443\u044e...
edit_long_node = \u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u0432 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0435...
enter_base_url = \u0411\u0443\u0434\u0435\u0442 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0441\u0441\u044b\u043b\u043a\u0430. \u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 URL...
enter_confirms = \u041a\u043b\u0430\u0432\u0438\u0448\u0430 Enter \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0435\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435.
error = Error
export_branch = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0442\u0432\u044c...
export_branch_to_html = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0442\u0432\u044c \u0432 HTML
export_to_html = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 HTML
extension_menu = &\u0421\u0442\u0438\u043b\u044c
file = &\u0424\u0430\u0439\u043b
file_not_found = \u041e\u0448\u0438\u0431\u043a\u0430: \u0444\u0430\u0439\u043b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d.
find = \u0418\u0441\u043a\u0430\u0442\u044c...
find_what = \u0418\u0441\u043a\u043e\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442
find_next = \u0418\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043b\u0435\u0435
fold = \u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c
font = \u0428\u0440\u0438\u0444\u0442
fork = \u0422\u0438\u043f \u0443\u0437\u043b\u0430 "&\u041a\u0440\u0438\u0432\u0430\u044f"
help = \u041f\u043e&\u043c\u043e\u0449\u044c
html_export_based_on_headings = \u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0432 HTML - \u041d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u0432
html_export_no_folding = \u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0432 HTML - \u0411\u0435\u0437 \u0441\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u044f
html_export_fold_currently_folded = \u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0432 HTML - \u0421\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0442\u044c \u043a\u0430\u043a \u0441\u0435\u0439\u0447\u0430\u0441
html_export_fold_all = \u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0432 HTML - \u0421\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0442\u044c \u0432\u0441\u0435
# Daniel Polansky: This way of maintaining icon text
# will ultimately lead to unbearable overheads.
icon_menu = &\u041f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b
icon_help = \u0412\u043e\u043f\u0440\u043e\u0441
icon_messagebox_warning = \u0412\u0430\u0436\u043d\u043e
icon_idea = \u0418\u0434\u0435\u044f
icon_button_ok = OK
icon_button_cancel = \u041d\u0435 OK
icon_back = \u041d\u0430\u0437\u0430\u0434
icon_forward = \u0412\u043f\u0435\u0440\u0451\u0434
icon_attach = \u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435
icon_ksmiletris = \u042f \u0434\u043e\u0432\u043e\u043b\u0435\u043d
icon_clanbomber = \u041e\u043f\u0430\u0441\u043d\u043e
icon_desktop_new = \u041d\u0435 \u0437\u0430\u0431\u044b\u0442\u044c
#icon_flag = \u0424\u043b\u0430\u0436\u043e\u043a
icon_gohome = \u0414\u043e\u043c
icon_kaddressbook = \u0422\u0435\u043b\u0435\u0444\u043e\u043d
icon_knotify = \u041c\u0443\u0437\u044b\u043a\u0430
icon_korn = \u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u044f\u0449\u0438\u043a
icon_Mail = \u041f\u0438\u0441\u044c\u043c\u043e
icon_password = \u041a\u043b\u044e\u0447
icon_pencil = \u0423\u0442\u043e\u0447\u043d\u0438\u0442\u044c
icon_stop = \u041a\u0440\u0430\u0441\u043d\u044b\u0439 \u0441\u0438\u0433\u043d\u0430\u043b \u0441\u0432\u0435\u0442\u043e\u0444\u043e\u0440\u0430
icon_wizard = \u041c\u0430\u0433\u0438\u044f
icon_xmag = \u041e\u0431\u0441\u0443\u0434\u0438\u0442\u044c
icon_bell = \u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c
icon_bookmark = \u041e\u0442\u043b\u0438\u0447\u043d\u043e
icon_penguin = Linux
icon_licq = \u041c\u0438\u043b\u043e
import = \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
import_branch = \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0442\u0432\u044c \u0438\u0437 (mm-) \u0444\u0430\u0439\u043b\u0430...
import_explorer_favorites = \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0438 \u0438\u0437 IE...
import_folder_structure = \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043e\u0432...
import_linked_branch = \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0442\u0432\u044c \u0438\u0437 \u0441\u0441\u044b\u043b\u043a\u0438
import_linked_branch_without_root = \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438\u0437 \u0441\u0441\u044b\u043b\u043a\u0438 \u0431\u0435\u0437 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
increase_branch_font_size = \u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u0448\u0440\u0438\u0444\u0442 \u0432\u0441\u0435\u0439 \u0432\u0435\u0442\u0432\u0438
increase_node_font_size = \u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u0448\u0440\u0438\u0444\u0442 \u0443\u0437\u043b\u0430
italic = \u041a\u0443\u0440\u0441\u0438\u0432
italicise_branch = \u0428\u0440\u0438\u0444\u0442 \u0432\u0441\u0435\u0439 \u0432\u0435\u0442\u0432\u0438 \u043a\u0443\u0440\u0441\u0438\u0432
join_nodes = \u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0443\u0437\u043b\u044b
license = \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044f FreeMind
license_text = FreeMind - \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u044b\u0445 \u043a\u0430\u0440\u0442\nCopyright (C) 2000-2010  Joerg Mueller <joergmueller@bigfoot.com>\n\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u0444\u0430\u0439\u043b COPYING \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438\n\n\u042d\u0442\u043e \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0430\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430; \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0442\u044c \u0435\u0435 \u0438/\u0438\u043b\u0438\n\u043c\u043e\u0434\u0438\u0444\u0438\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0435 \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0435\u0439 GNU,\n\u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0424\u043e\u043d\u0434\u043e\u043c \u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0433\u043e \u041f\u041e; \u043b\u0438\u0431\u043e \u0432\u0435\u0440\u0441\u0438\u0438 2,\n\u043b\u0438\u0431\u043e (\u043f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u0432\u044b\u0431\u043e\u0440\u0443) \u043b\u044e\u0431\u043e\u0439 \u0431\u043e\u043b\u0435\u0435 \u043f\u043e\u0437\u0434\u043d\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438.\n\n\u042d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u044f\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u0434\u0435\u0436\u0434\u0435, \u0447\u0442\u043e \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043b\u0435\u0437\u043d\u043e\u0439,\n\u043d\u043e \u0411\u0415\u0417 \u041a\u0410\u041a\u0418\u0425-\u041b\u0418\u0411\u041e \u0413\u0410\u0420\u0410\u041d\u0422\u0418\u0419; \u0434\u0430\u0436\u0435 \u0431\u0435\u0437 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u0435\u043c\u044b\u0445 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0439\n\u041a\u041e\u041c\u041c\u0415\u0420\u0427\u0415\u0421\u041a\u041e\u0419 \u0426\u0415\u041d\u041d\u041e\u0421\u0422\u0418 \u0438\u043b\u0438 \u041f\u0420\u0418\u0413\u041e\u0414\u041d\u041e\u0421\u0422\u0418 \u0414\u041b\u042f \u041a\u041e\u041d\u041a\u0420\u0415\u0422\u041d\u041e\u0419 \u0426\u0415\u041b\u0418.  \u0414\u043b\u044f\n\u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0445 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u0443\u044e \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0443\u044e \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u044e GNU.\n\n\u0412\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u043b\u0438 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043a\u043e\u043f\u0438\u044e \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0430\u043b\u044c\u043d\u043e\u0439 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439 \u041b\u0438\u0446\u0435\u043d\u0437\u0438\u0438 GNU\n\u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u044d\u0442\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439; \u0435\u0441\u043b\u0438 \u043d\u0435\u0442, \u043d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 \u043f\u043e \u0430\u0434\u0440\u0435\u0441\u0443: Free Software\nFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
linear = \u041f\u0440\u044f\u043c\u0430\u044f
load = &\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c
locking_failed_by_open = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 $1 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u0440\u0443\u0433\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439 \u0438 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f
locking_failed_by_save_as = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 $1 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u0440\u0443\u0433\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d.
locking_old_lock_removed = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 $1 \u0431\u044b\u043b \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c $2. \u042d\u0442\u0430 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430 \u043a\u0430\u043a \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f
map_already_exists = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. \u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u043f\u0438\u0441\u0430\u0442\u044c \u0435\u0433\u043e?
map_corrupted = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d. \u0421\u043e\u043e\u0431\u0449\u0438\u0442\u044c \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438?
map_locked_by_open = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 $1 \u0443\u0436\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c $2. \u041e\u043d \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043a\u0440\u044b\u0442\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f.
map_locked_by_save_as = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 $1 \u0443\u0436\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c $2 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d.
mindmap = \u0410\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430
mindmaps = &\u041a\u0430\u0440\u0442\u044b
mindmaps_desc = \u041a\u0430\u0440\u0442\u044b (*.mm)
mindmaps_filter_desc = \u0424\u0438\u043b\u044c\u0442\u0440\u044b (*.mmfilter)
mode_na = \u0420\u0435\u0436\u0438\u043c \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d
modes = \u0420\u0435\u0436\u0438\u043c\u044b
move_to_root = \u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b
new = \u0421\u043e\u0437\u0434&\u0430\u0442\u044c
new_child = \u041d\u043e\u0432\u044b\u0439 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b
new_mindmap = \u041d\u043e\u0432\u0430\u044f \u043a\u0430\u0440\u0442\u0430
new_node = \u041d\u043e\u0432\u044b\u0439 \u0443\u0437\u0435\u043b
new_sibling_before = \u041d\u043e\u0432\u044b\u0439 \u0441\u043c\u0435\u0436\u043d\u044b\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u0434 \u0442\u0435\u043a\u0443\u0449\u0438\u043c
new_sibling_behind = \u041d\u043e\u0432\u044b\u0439 \u0441\u043c\u0435\u0436\u043d\u044b\u0439 \u0443\u0437\u0435\u043b \u043f\u043e\u0441\u043b\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e
next_map = \u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043a\u0430\u0440\u0442\u0430
no = \u041d\u0435\u0442
node = \u0423\u0437\u0435\u043b
node_changed_discard_changes = \u0412\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0438 \u0443\u0437\u0435\u043b. \u0425\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439?
long_node_changed_submit =\u0412\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0438 \u0443\u0437\u0435\u043b. \u0425\u043e\u0442\u0438\u0442\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f?
long_node_changed_cancel =\u0412\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u0438 \u0443\u0437\u0435\u043b. \u0425\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439?
node_color = \u0426\u0432\u0435\u0442 \u0443\u0437\u043b\u0430...
node_down = \u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u043d\u0438\u0437
node_up = \u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u0432\u0435\u0440\u0445
nonboldify_branch = \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u043e\u0435 \u043d\u0430\u0447\u0435\u0440\u0442\u0430\u043d\u0438\u0435
nonitalicise_branch = \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u0443\u0440\u0441\u0438\u0432\u043d\u043e\u0435 \u043d\u0430\u0447\u0435\u0440\u0442\u0430\u043d\u0438\u0435
normal = \u041e\u0431\u044b\u0447\u043d\u044b\u0439
no_found_from = \u0422\u0435\u043a\u0441\u0442 "$1" \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u0432 "$2" .
no_more_found_from = \u0422\u0435\u043a\u0441\u0442 "$1" \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u0435\u0442\u0441\u044f \u0432 "$2"
no_previous_find = \u0411\u043e\u043b\u0435\u0435 \u0440\u0430\u043d\u043d\u0438\u0445 \u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0439 \u043d\u0435\u0442.
not_saved_for_link_error = \u041a\u0430\u0440\u0442\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u043f\u0435\u0440\u0435\u0434 \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u0441\u0441\u044b\u043b\u043a\u0438
open = \u041e\u0442\u043a\u0440\u044b\u0442\u044c
page = \u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b &\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b...
paste = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c
new_node_as_sibling_not_possible_for_the_root = \u0423 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u043c\u0435\u0436\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430
preferences = \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438
previous_map = \u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u043a\u0430\u0440\u0442\u0430
print = \u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u0442\u044c
print_dialog = &\u041f\u0435\u0447\u0430\u0442\u044c...
print_preview = \u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440...
print_preview_title = \u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440
quit = \u0412&\u044b\u0445\u043e\u0434
read_only = \u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f
remove_node = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0437\u0435\u043b
rename=\u041f\u0435&\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c
repair_link = \u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443?
repair_link_question = \u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443. \u0412\u0432\u0435\u0441\u0442\u0438 \u0432\u0440\u0443\u0447\u043d\u0443\u044e?
replace=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c
save = \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
save_as = \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a...
save_failed = \u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043a\u0430\u0440\u0442\u044b $1 \u043d\u0435 \u0443\u0434\u0430\u043b\u0430\u0441\u044c.
save_unsaved = \u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u043a\u0430\u0440\u0442\u0443? :
saved = \u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043e
scheme_evaluate = \u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c!
select_favorites_folder = \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435  \u043f\u0430\u043f\u043a\u0443, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0445\u0440\u0430\u043d\u044f\u0442\u0441\u044f \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0438
select_folder_for_importing = \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435  \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0438\u043c\u043f\u043e\u0440\u0442\u0430
set_image_by_filechooser = \u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u0437 \u0444\u0430\u0439\u043b\u0430
set_link_by_filechooser = \u0421\u0441\u044b\u043b\u043a\u0443 (\u0432\u044b\u0431\u043e\u0440 \u0444\u0430\u0439\u043b\u0430)
set_link_by_textfield = \u0421\u0441\u044b\u043b\u043a\u0443 (\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435)
sharp_bezier = \u0417\u0430\u043e\u0441\u0442\u0440\u0451\u043d\u043d\u0430\u044f \u043a\u0440\u0438\u0432\u0430\u044f
sharp_linear = \u0417\u0430\u043e\u0441\u0442\u0440\u0451\u043d\u043d\u0430\u044f \u043f\u0440\u044f\u043c\u0430\u044f
split = \u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c
style = \u0421\u0442\u0438\u043b\u044c
toggle_bold_branch = \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u043e\u0435 \u043d\u0430\u0447\u0435\u0440\u0442\u0430\u043d\u0438\u0435 \u0432\u0435\u0442\u0432\u0438
toggle_children_folded = \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c / \u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0435  \u0443\u0437\u043b\u044b
toggle_folded = \u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c / \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044c
toggle_italic_branch = \u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043d\u0430\u043a\u043b\u043e\u043d\u043d\u043e\u0435 \u043d\u0430\u0447\u0435\u0440\u0442\u0430\u043d\u0438\u0435 \u0432\u0435\u0442\u0432\u0438
underline = \u041f\u043e\u0434\u0447\u0451\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435
unfold = \u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c
url_error = \u041e\u0448\u0438\u0431\u043a\u0430 \u0432 \u0430\u0434\u0440\u0435\u0441\u0435 URL
#url_load_error = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043a\u0430\u0440\u0442\u0443 \u0441 URL:
width = \u0422\u043e\u043b\u0449\u0438\u043d\u0430
yes = \u0414\u0430
zoom_in = \u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c
zoom_out = \u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c
remove_last_icon = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u0443
remove_all_icons = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b
lots_of_links_warning = \u0412\u044b \u0441\u043e\u0431\u0438\u0440\u0430\u0435\u0442\u0435\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043c\u043d\u043e\u0433\u043e \u0441\u0432\u044f\u0437\u0435\u0439 \u0441\u0440\u0430\u0437\u0443. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u044d\u0442\u043e\u0433\u043e \u0445\u043e\u0442\u0438\u0442\u0435?
remove_arrow_link = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0432\u044f\u0437\u044c
arrow_link_color = \u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0446\u0432\u0435\u0442 \u0441\u0432\u044f\u0437\u0438
# removed: follow_link = \u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043f\u043e \u0441\u0432\u044f\u0437\u0438
user_defined_zoom = \u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c..
user_defined_zoom_status_bar = \u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430 \u043f\u043e \u0432\u044b\u0431\u043e\u0440\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043d\u0430 {0}%.
# new from 14.12.2003, fc
FAQ = \u0427\u0430\u0441\u0442\u043e \u0417\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0412\u043e\u043f\u0440\u043e\u0441\u044b
webDocu = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0435
# new from 20.12.2003, fc
printing_settings = \u041c\u0430\u0441\u0448\u0442\u0430\u0431 \u043f\u0435\u0447\u0430\u0442\u0438
fit_to_page = \u0423\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435
user_zoom = \u041c\u0430\u0441\u0448\u0442\u0430\u0431 \u043f\u0435\u0447\u0430\u0442\u0438 (0.0 - 2.0):
ok = OK
# changed from 23.1.2004, fc.
selection_method_by_click = \u0412\u044b\u0431\u043e\u0440 \u043e\u0434\u0438\u043d\u043e\u0447\u043d\u044b\u043c \u0449\u0435\u043b\u0447\u043a\u043e\u043c
selection_method_direct = \u0412\u044b\u0431\u043e\u0440 \u043d\u0430\u0435\u0437\u0434\u043e\u043c
#new from 30.08.2004, Dimitri
combined = \u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439
as_parent = \u041a\u0430\u043a \u0443 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f
# added at 2.5.2004, fc:
undo=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
redo=\u0412\u0435\u0440\u043d\u0443\u0442\u044c
delete_child=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0437\u0435\u043b
# added at 22.5.2004, fc:
most_recent_files=&\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u044b
menu_view=&\u0412\u0438\u0434
menu_navigate=&\u0423\u0437\u0435\u043b
menu_format=\u0424&\u043e\u0440\u043c\u0430\u0442
menu_extras=&\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e
menu_insert=\u0412\u0441\u0442&\u0430\u0432\u043a\u0430
menu_attributes = \u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b
# Beware: "Edge Width " and "Edge Style " must end with space.
edge_style = \u0422\u0438\u043f \u043b\u0438\u043d\u0438\u0438 \u0440\u0435\u0431\u0440\u0430
edge_width = \u0422\u043e\u043b\u0449\u0438\u043d\u0430 \u0440\u0435\u0431\u0440\u0430
menu_file_import = &\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
menu_file_export = &\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
edit_node = \u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
# added at 5.6.2004, fc:
node_background_color = &\u0424\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442 \u0443\u0437\u043b\u0430
# added at 25.8.2004, fc:
choose_edge_color = \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0446\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430
# added at 27.8.2004, fc:
underlined = \u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u043e
font_size= \u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430
font_family= \u0428\u0440\u0438\u0444\u0442
# add at 16.9.2004, fc:
import_linked_branch_no_link= \u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0441\u0441\u044b\u043b\u043a\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0443, \u043f\u0440\u0438\u0433\u043e\u0434\u043d\u0443\u044e \u0434\u043b\u044f \u0438\u043c\u043f\u043e\u0440\u0442\u0430
# added at 09.10.2004
add_link=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0432\u044f\u0437\u044c
less_than_two_selected_nodes=\u0427\u0442\u043e\u0431\u044b \u043d\u0430\u0440\u0438\u0441\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u044f\u0437\u044c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0438\u043d\u0438\u043c\u0443\u043c \u0434\u0432\u0430 \u0443\u0437\u043b\u0430
choose_node_background_color=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442 \u0443\u0437\u043b\u0430
choose_node_color=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0446\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430 \u0443\u0437\u043b\u0430
choose_background_color=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442
choose_cloud_color=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0446\u0432\u0435\u0442 \u043e\u0431\u043b\u0430\u043a\u0430
change_arrows_in_arrow_link=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u043d\u0430 \u0441\u0432\u044f\u0437\u0438
add_local_link=\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u0441\u044b\u043b\u043a\u0443
link_not_available_any_more=\u0421\u0432\u044f\u0437\u044c \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0430, \u0443\u0437\u0435\u043b \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0435\u043d
file_already_exists = \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. \u041f\u0435\u0440\u0435\u043f\u0438\u0441\u0430\u0442\u044c?
error_creating_directory=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0438 \u043f\u0430\u043f\u043a\u0438
export_svg_text=\u041c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u0443\u0435\u043c\u0430\u044f \u0412\u0435\u043a\u0442\u043e\u0440\u043d\u0430\u044f \u0413\u0440\u0430\u0444\u0438\u043a\u0430 (SVG)
export_pdf_text=\u0444\u043e\u0440\u043c\u0430\u0442 PDF
goto_link_node_action=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043f\u043e \u0441\u0432\u044f\u0437\u0438
#fc, 14.11.2004:
undefined_error=\u041d\u0435\u043e\u0436\u0438\u0434\u0430\u043d\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0441\u043e\u043e\u0431\u0449\u0438\u0442\u0435 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u043c \u0447\u0435\u0440\u0435\u0437 \u0444\u043e\u0440\u0443\u043c
cannot_add_parent_to_root=\u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0441\u0442\u0430\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c
cannot_delete_root = \u041a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b \u043d\u0435\u043b\u044c\u0437\u044f \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u043b\u0438 \u0432\u044b\u0440\u0435\u0437\u0430\u0442\u044c
cannot_add_parent_diff_parents=\u0414\u043b\u044f \u044d\u0442\u043e\u0439 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0432\u0441\u0435 \u0443\u0437\u043b\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0438\u043c\u0435\u0442\u044c \u043e\u0431\u0449\u0435\u0433\u043e \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044f
no_format_copy_before_format_paste=\u041f\u0435\u0440\u0435\u0434 \u0442\u0435\u043c \u043a\u0430\u043a \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442, \u043d\u0443\u0436\u043d\u043e \u0435\u0433\u043e \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
#fc, 15.11.2004:
accessories/plugins/AutomaticLayout.properties_documentation = <html>\u0424\u0438\u043a\u0441\u0438\u0440\u0443\u0435\u0442 \u0432\u0438\u0434 \u043a\u0430\u0440\u0442\u044b <br>\u0423\u0437\u043b\u044b \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f \u0441\u0442\u0430\u043d\u0443\u0442 \u0447\u0435\u0440\u043d\u044b\u043c\u0438, \u0432\u0442\u043e\u0440\u043e\u0433\u043e - \u0441\u0438\u043d\u0438\u043c\u0438 \u0438 \u0442.\u0434.</html>
accessories/plugins/AutomaticLayout.properties_name = &\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435
accessories/plugins/BlinkingNodeHook.properties_documentation = <html>\u0423\u0437\u0435\u043b \u0431\u0443\u0434\u0435\u0442 \u043c\u0438\u0433\u0430\u0442\u044c. \u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435! \u042d\u0442\u043e\u0442 \u0444\u043e\u0440\u043c\u0430\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u043c\u0443 \u0447\u0438\u0441\u043b\u0443 \u0443\u0437\u043b\u043e\u0432 \u0438  <strong> \u0438\u0441\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u043b\u044e\u0431\u043e\u0435 \u0434\u0440\u0443\u0433\u043e\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0442\u0430\u043a\u0438\u0445 \u0443\u0437\u043b\u043e\u0432</strong></html>
accessories/plugins/BlinkingNodeHook.properties_name = \u041c\u0438\u0433\u0430\u044e\u0449\u0438\u0439 \u0443\u0437\u0435\u043b
accessories/plugins/CreationModificationPlugin.properties_documentation=<html>\u042d\u0442\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442 \u0432\u0440\u0435\u043c\u0435\u043d\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0443\u0437\u043b\u043e\u0432</html>
accessories/plugins/CreationModificationPlugin.properties_name = \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c &\u0432\u0440\u0435\u043c\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
accessories/plugins/ExportToImage_PNG.properties_documentation = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u0440\u0442\u0443 \u043a\u0430\u043a \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0443 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 PNG
accessories/plugins/ExportToImage_PNG.properties_name = \u041a\u0430\u043a PNG...
accessories/plugins/ExportToImage_JPEG.properties_documentation = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u0440\u0442\u0443 \u043a\u0430\u043a \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0443 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435  JPEG.
accessories/plugins/ExportToImage_JPEG.properties_name = \u041a\u0430\u043a JPEG...
accessories/plugins/ExportWithXSLT.properties_documentation = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 XSLT - \u0441\u043a\u0440\u0438\u043f\u0442
accessories/plugins/ExportWithXSLT.properties_name = \u0427\u0435\u0440\u0435\u0437 XSLT...
accessories/plugins/ExportWithXSLT_HTML.properties_documentation=
accessories/plugins/ExportWithXSLT_HTML.properties_name = \u041a\u0430\u043a XHTML (\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c JavaScript)...
accessories/plugins/ExportWithXSLT_HTML3.properties_documentation=
accessories/plugins/ExportWithXSLT_HTML3.properties_name = \u041a\u0430\u043a XHTML (\u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u0441 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u043e\u0439)...
accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_name = \u041a\u0430\u043a \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u0443\u044e \u043a\u0430\u0440\u0442\u0443 MindManager...
accessories/plugins/ExportWithXSLT_MINDMANAGER.properties_documentation=
accessories/plugins/FitToPage.properties_documentation = \u041f\u043e\u0434\u0431\u0438\u0440\u0430\u0435\u0442  \u043c\u0430\u0441\u0448\u0442\u0430\u0431 \u0442\u0430\u043a, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u0441\u044e \u043a\u0430\u0440\u0442\u0443 \u0432 \u043e\u043a\u043d\u0435
accessories/plugins/FitToPage.properties_name = \u0423\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u043d\u0430 \u044d\u043a\u0440\u0430\u043d \u043a\u0430\u0440\u0442\u0443 \u0446\u0435\u043b\u0438\u043a\u043e\u043c
accessories/plugins/FormatCopy.properties_documentation = <html>\u041a\u043e\u043f\u0438\u0440\u0443\u0435\u0442 \u0444\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430</html>
accessories/plugins/FormatCopy.properties_name = \u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442
accessories/plugins/FormatPaste.properties_documentation = <html>\u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442 \u043a \u0443\u0437\u043b\u0443 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442</html>
accessories/plugins/FormatPaste.properties_name = \u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442
accessories/plugins/FormularEditor.properties_documentation = <html>\u0421\u0432\u044f\u0437\u044b\u0432\u0430\u0435\u0442 \u0441 \u0443\u0437\u043b\u043e\u043c \u0444\u043e\u0440\u043c\u0443\u043b\u044f\u0440</html>
accessories/plugins/FormularEditor.properties_name= \u0424\u043e\u0440\u043c\u0443\u043b\u044f\u0440
accessories/plugins/IconSelectionPlugin.properties_documentation = <html>\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043e\u043a\u043d\u043e \u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b</html>
accessories/plugins/IconSelectionPlugin.properties_name = \u0412\u044b\u0431\u043e\u0440 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b...
accessories/plugins/NewParentNode.properties_documentation = <html>\u0412\u0441\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u043e\u0431\u0449\u0438\u0439 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0443\u0437\u0435\u043b</html>
accessories/plugins/NewParentNode.properties_name = \u041e\u0431\u0449\u0438\u0439 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0443\u0437\u0435\u043b
accessories/plugins/NodeNote.properties_documentation = <html>\u0421\u0432\u044f\u0437\u044b\u0432\u0430\u0435\u0442 \u0441 \u0443\u0437\u043b\u043e\u043c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435</html>
accessories/plugins/NodeNote.properties_name = \u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435
accessories/plugins/PMCalculation.properties_documentation = <html>\u0421\u0447\u0438\u0442\u0430\u0435\u0442 \u0432\u0440\u0435\u043c\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b</html>
accessories/plugins/PMCalculation.properties_name = \u0412\u0440\u0435\u043c\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u044b
accessories/plugins/RemoveNote.properties_documentation = <html>\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f \u0443 \u0432\u0441\u0435\u0445 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432.</html>
accessories/plugins/RemoveNote.properties_name = \u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
accessories/plugins/RevisionPlugin.properties_documentation = <html>\u0424\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442 \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u0431\u0443\u0434\u0435\u0442 \u0436\u0435\u043b\u0442\u044b\u0439</html>
accessories/plugins/RevisionPlugin.properties_name = \u041e\u0442\u043c\u0435\u0447\u0430\u0442\u044c &\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f
accessories/plugins/SplitNode.properties_documentation = <html>\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0438\u0437 \u043a\u0430\u0436\u0434\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 \u0443\u0437\u043b\u0430 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0443\u0437\u0435\u043b</html>
accessories/plugins/SplitNode.properties_name = &\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u0443\u0437\u0435\u043b
accessories/plugins/UnfoldAll.properties_documentation = <html>\u0420\u0430\u0437\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0435\u0442 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u0438 \u0432\u0441\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0443\u0437\u043b\u044b</html>
accessories/plugins/UnfoldAll.properties_name = \u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0441\u0451
accessories/plugins/FoldAll.properties_documentation = <html>\u0421\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0435\u0442 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u0438 \u0432\u0441\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0443\u0437\u043b\u044b</html>
accessories/plugins/FoldAll.properties_name = \u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0441\u0451
accessories/plugins/UnfoldOneLevel.properties_documentation = <html>\u0420\u0430\u0437\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0435\u0442 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u043d\u0430 \u043e\u0434\u0438\u043d \u0443\u0440\u043e\u0432\u0435\u043d\u044c</html>
accessories/plugins/UnfoldOneLevel.properties_name = \u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0443\u0440\u043e\u0432\u0435\u043d\u044c
accessories/plugins/FoldOneLevel.properties_documentation = <html>\u0421\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0435\u0442 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u043d\u0430 \u043e\u0434\u0438\u043d \u0443\u0440\u043e\u0432\u0435\u043d\u044c</html>
accessories/plugins/FoldOneLevel.properties_name = \u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0443\u0440\u043e\u0432\u0435\u043d\u044c
plugins/FreemindHelp.xml_documentation = \u041f\u043e\u043c\u043e\u0449\u044c...
plugins/FreemindHelp.xml_name = \u041f\u043e\u043c\u043e\u0449\u044c ...
plugins/ExportPdf.xml_documentation = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a PDF
plugins/ExportPdf.xml_name = \u041a\u0430\u043a PDF...
plugins/ExportSvg.xml_documentation = \u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a SVG
plugins/ExportSvg.xml_name = \u041a\u0430\u043a SVG...

# fc, 28.11.2004:
cannot_move_to_child = \u0423\u0437\u0435\u043b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d \u0432 \u0441\u0432\u043e\u0439 \u0434\u043e\u0447\u0435\u0440\u043d\u0438\u0439 \u0443\u0437\u0435\u043b
# fc, 14.12.2004:
accessories/plugins/EnterPassword.properties_name = &\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043e / \u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043e
accessories/plugins/EnterPassword.properties_documentation=
accessories/plugins/EncryptNode.properties_name = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c &\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b ...
accessories/plugins/EncryptNode.properties_documentation = \u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b, \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0443\u0442 \u0445\u0440\u0430\u043d\u0438\u0442\u0441\u044f \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u043c\u0438.
accessories/plugins/EncryptNode.properties_0 = \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430
accessories/plugins/EncryptNode.properties_1 = \u041f\u0430\u0440\u043e\u043b\u044c \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442 \u0438\u043b\u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043a\u043e\u0440\u043e\u0442\u043a\u0438\u043c.
accessories/plugins/EncryptNode.properties_2 = \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c:
accessories/plugins/EncryptNode.properties_3 = \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c:
accessories/plugins/EncryptNode.properties_4 = \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c.
accessories/plugins/EncryptNode.properties_5 = <html>\u0423\u0447\u0442\u0438\u0442\u0435 \u0447\u0442\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f<br> \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043f\u0430\u0440\u043e\u043b\u044f
accessories/plugins/EncryptNode.properties_6 = OK
accessories/plugins/EncryptNode.properties_7 = \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
accessories/plugins/EncryptNode.properties_wrong_password = \u041d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c
accessories/plugins/NewEncryptedMap.properties_documentation = \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d
accessories/plugins/NewEncryptedMap.properties_name = \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0430\u0441\u0441\u043e\u0446\u0438\u0430\u0442\u0438\u0432\u043d\u0443\u044e \u043a\u0430\u0440\u0442\u0443...
accessories/plugins/EncryptNode.properties_select_me = \u0412\u044b\u0431\u0435\u0440\u0438 \u043c\u0435\u043d\u044f.
accessories/plugins/EncryptNode.properties_insert_encrypted_node_first = <html>\u042d\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u043c\u0443 \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c\u0443 \u0443\u0437\u043b\u0443<br> \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0439 \u0443\u0437\u0435\u043b \u0447\u0435\u0440\u0435\u0437 \u043c\u0435\u043d\u044e "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e"
# fc, 2.2.05:
selection_method_delayed=\u0412\u044b\u0431\u043e\u0440 \u043d\u0430\u0435\u0437\u0434\u043e\u043c \u0441 \u0437\u0430\u0434\u0435\u0440\u0436\u043a\u043e\u0439
# fc, 4.2.05:
plugins/TimeManagement.xml_documentation=<html>\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c \u043e\u0442 \u041a\u0430\u044f \u0422\u043e\u0434\u0442\u0435\u0440\u0430.</html>
plugins/TimeManagement.xml_name= \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u044c...
plugins/TimeManagement.xml_appendButton= \u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u0434\u0430\u0442\u0443 \u043a \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0443\u0437\u043b\u0443
plugins/TimeManagement.xml_reminderButton= \u041d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435
plugins/TimeManagement.xml_cancelButton=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
plugins/TimeManagementReminder.xml_documentation=\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043c\u043e\u0434\u0443\u043b\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f
plugins/TimeManagementReminder.xml_name=\u0412\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u0438\u0439 \u043c\u043e\u0434\u0443\u043b\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f
plugins/TimeManagement.xml_reminderNode_tooltip=\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c {0,date} \u0432 {0,time}
plugins/TimeManagement.xml_reminderNode_showNode=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0443\u0437\u0435\u043b " {0} ". \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c \u0447\u0435\u0440\u0435\u0437 10 \u043c\u0438\u043d\u0443\u0442?
plugins/TimeManagement.xml_reminderNode_onlyOneDate=<html>\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0441 \u0443\u0437\u043b\u043e\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0434\u043d\u0443 \u0434\u0430\u0442\u0443<br>\u0423\u0436\u0435 \u0437\u0430\u043f\u043e\u043c\u043d\u0435\u043d\u043e {0,date} {0,time}, \u0412\u044b \u0432\u0432\u043e\u0434\u0438\u0442\u0435 {1,date} {1,time}. <br><br>\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u0442\u0443 (\u0414\u0410), <br>\u0438\u043b\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0440\u0435\u0436\u043d\u044e\u044e \u0434\u0430\u0442\u0443 (\u041d\u0415\u0422)?</html>
plugins/TimeManagement.xml_removeReminderButton = \u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435
plugins/TimeManagement.xml_removeReminderButton_tooltip = \u041e\u0442\u043c\u0435\u043d\u0430 \u0432\u0441\u0435\u0445 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430
plugins/TimeManagement.xml_minute= \u041c\u0438\u043d\u0443\u0442\u0430:
plugins/TimeManagement.xml_hour= \u0427\u0430\u0441:
plugins/TimeManagement.xml_WindowTitle=\u0412\u0440\u0435\u043c\u044f

plugins/latex/LatexNodeHook.properties_name = \u0424\u043e\u0440\u043c\u0443\u043b\u0443 &Latex
plugins/latex/LatexNodeHook.properties_documentation = <html>\u0424\u043e\u0440\u043c\u0443\u043b\u0430 Latex</html>
plugins/latex/LatexNodeHook.editorTitle = \u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440. \u0427\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043d\u044f\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u0442\u043e \u0437\u0430\u043a\u0440\u043e\u0439\u0442\u0435 \u043e\u043a\u043d\u043e

# fc, 18.2.2005:
accessories/plugins/HierarchicalIcons.properties_documentation=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432
accessories/plugins/HierarchicalIcons.properties_name=\u0414\u043e\u0447\u0435\u0440\u043d\u0438\u0435 &\u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b
# fc, 1.3.2005:
icon_full-1 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 1
icon_full-2 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 2
icon_full-3 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 3
icon_full-4 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 4
icon_full-5 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 5
icon_full-6 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 6
icon_full-7 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 7
# fc, 11.3.2005:
RevertAction=\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438
# the prefix for the reconstructed map (revert + undo).
freemind_reverted=Freemind_Reverted_
# fc, 5.4.2005
plugins/TimeManagement.xml_todayButton=\u0421\u0435\u0433\u043e\u0434\u043d\u044f
plugins/TimeList.xml_documentation=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0430 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439 \u0441\u043e \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u043c\u0438 \u0443\u0437\u043b\u0430\u043c\u0438
plugins/TimeList.xml_name=&\u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435...
remove_node_background_color = &\u0423\u0431\u0440\u0430\u0442\u044c \u0444\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442
#plugins/NodeList.xml_documentation=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f / \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0443\u0437\u043b\u043e\u0432
#plugins/NodeList.xml_name=\u0418\u0441\u0442\u043e\u0440\u0438\u044f...
plugins/TimeList.xml_Modified=\u0418\u0437\u043c\u0435\u043d\u0435\u043d
plugins/TimeList.xml_Created=\u0421\u043e\u0437\u0434\u0430\u043d
plugins/TimeList.xml_Date=\u0414\u0430\u0442\u0430
plugins/TimeList.xml_Text=\u0422\u0435\u043a\u0441\u0442
plugins/TimeList.xml_Icons=\u041f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b
#fc, 26.4.2005:
select_branch=\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u044e \u0432\u0435\u0442\u0432\u044c
select_all=\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435
change_link_arrows=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0440\u0435\u043b\u043a\u0438 \u043d\u0430 \u0441\u0432\u044f\u0437\u0438
# fc, 27.4.2005:
reset_node_position=\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c &\u0438\u0441\u0445\u043e\u0434\u043d\u0443\u044e \u043f\u043e\u0437\u0438\u0446\u0438\u044e
RevertAction=\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043a \u0441\u043e&\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u043e\u043c\u0443 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0443

# fc, 2.5.2005:
plugins/RemoveReminder.xml_documentation=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435
plugins/RemoveReminder.xml_name=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435
# fc, 3.5.2005:
plugins/TimeManagement.xml_reminderButton_tooltip=<html>\u0412 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f  \u043c\u0438\u0433\u0430\u043d\u0438\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0430 \u043f\u043e\u0441\u043b\u0443\u0436\u0438\u0442 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0435\u043c,  - \u0442\u043e\u043b\u044c\u043a\u043e \u0435\u0441\u043b\u0438 \u044d\u0442\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430.<br>\u041f\u0440\u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e\u043c \u0441\u0442\u0430\u0440\u0442\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b, \u0442\u0430\u0439\u043c\u0435\u0440 \u0431\u0443\u0434\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u0441\u043d\u043e\u0432\u0430.</html>
filter_toolbar=\u0424\u0438\u043b\u044c\u0442\u0440
filter_dialog=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0424\u0438\u043b\u044c\u0442\u0440
filter_no_filtering=\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0444\u0438\u043b\u044c\u0442\u0440
filter_selected_node_view=\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b
filter_conditions = \u0424\u0438\u043b\u044c\u0442\u0440\u044b
filter_edit=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
filter_edit_description=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0438\u043b\u044c\u0442\u0440\u044b
filter_unfold_ancestors=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043e\u0442\u0444\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b
filter_icon=\u0418\u043a\u043e\u043d\u043a\u0430
filter_node=\u0422\u0435\u043a\u0441\u0442 \u0443\u0437\u043b\u0430
filter_exist=\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442
filter_does_not_exist=\u041d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442
filter_contains=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u0442
filter_is_equal_to=\u0420\u0430\u0432\u0435\u043d
filter_is_not_equal_to=\u041d\u0435\u0440\u0430\u0432\u0435\u043d
filter_ignore_case=A=a
filter_enter_value=\u0412\u0432\u0435\u0441\u0442\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
filter_add=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c
filter_delete=\u0423\u0431\u0440\u0430\u0442\u044c
filter_select=\u0412\u044b\u0431\u0440\u0430\u0442\u044c
filter_not=\u041a\u0440\u043e\u043c\u0435
filter_and=\u0418
filter_or=\u0418\u043b\u0438
filter_show_ancestors=\u0421 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c\u0438 \u0443\u0437\u043b\u0430\u043c\u0438
filter_show_descendants=\u0421 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c\u0438 \u0443\u0437\u0434\u0430\u043c\u0438
attributes_all=\u0412\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
attributes_attribute=\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b
attributes_close=\u0417\u0430\u043a\u0440\u044b\u0442\u044c
attribute_delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0432\u0441\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
attribute_delete_value=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
attributes_edit=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
attributes_edit_in_place=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
attributes_edit_tooltip=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e
attribute_font_size_tooltip=\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0434\u043b\u044f \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432
attributes_dialog=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 &\u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438...
attributes_dialog_title=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438
attributes_import=\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
attributes_import_tooltip=\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u0438\u0437 \u0434\u0440\u0443\u0433\u0438\u0445 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043d\u044b\u0445 \u043a\u0430\u0440\u0442
attributes_assign_dialog=&\u041f\u0440\u0438\u0441\u0432\u043e\u0438\u0442\u044c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b...
attributes_visible=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435
attributes_visible_tooltip=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435
attributes_refresh=\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c
attribute_replace=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430
attributes_restriction=\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c
attributes_restricted_attributes_tooltip=\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432
attributes_restricted_values_tooltip=\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u043c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0442\u0435\u043a\u0443\u0449\u0435\u0433\u043e \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430
attributes_select_all=\u0412\u0441\u0435
attributes_select_all_tooltip=\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c / \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435
attributes_for_selected=\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b
attributes_for_visible=\u0412\u0441\u0435 \u0432\u0438\u0434\u0438\u043c\u044b\u0435 \u0443\u0437\u043b\u044b
attributes_deselect_all=\u041d\u0438\u0447\u0435\u0433\u043e
attribute_list_box_label_text=\u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f
attributes_popup_edit=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
attributes_popup_optimal_width=\u041e\u043f\u0442\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430
attributes_popup_hide=\u0421\u043f\u0440\u044f\u0442\u0430\u0442\u044c
attributes_popup_new=\u041d\u043e\u0432\u044b\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442
attributes_popup_delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
attributes_popup_up=\u0412\u0432\u0435\u0440\u0445
attributes_popup_down=\u0412\u043d\u0438\u0437
attributes_show=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c
attributes_show_all = \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
attributes_show_selected = \u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
attributes_hide_all = \u0421\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u0432\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
attribute_top=\u0412\u0441\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u0430\u0440\u0442
attributes_skip_root=\u041a\u0440\u043e\u043c\u0435 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
attributes_no_import_candidates_found=\u041d\u043e\u0432\u044b\u0445 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e
attributes_adding_empty_attribute_error=\u041f\u0443\u0441\u0442\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u043c\u0435\u043d\u0435\u043c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430
# fc, 10.5.2005:
property_dialog=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 ...
OptionPanel.automatic=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438
OptionPanel.de=\u041d\u0435\u043c\u0435\u0446\u043a\u0438\u0439
OptionPanel.dk=\u0414\u0430\u0442\u0441\u043a\u0438\u0439
OptionPanel.en=\u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439
OptionPanel.es=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439
OptionPanel.fr=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439
OptionPanel.gl=\u0413\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438\u0439
OptionPanel.hu=\u0412\u0435\u043d\u0433\u0435\u0440\u0441\u043a\u0438\u0439
OptionPanel.it=\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439
OptionPanel.ja=\u042f\u043f\u043e\u043d\u0441\u043a\u0438\u0439
OptionPanel.ko=\u041a\u043e\u0440\u0435\u0439\u0441\u043a\u0438\u0439
OptionPanel.nl=\u0413\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0439
OptionPanel.pl=\u041f\u043e\u043b\u044c\u0441\u043a\u0438\u0439
OptionPanel.pt_BR=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 (\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f)
OptionPanel.pt_PT=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 (\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f)
OptionPanel.ru=\u0420\u0443\u0441\u0441\u043a\u0438\u0439
OptionPanel.sl=\u0421\u043b\u043e\u0432\u0435\u043d\u0441\u043a\u0438\u0439
OptionPanel.zh=\u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439
OptionPanel.zh_TW=\u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439
OptionPanel.zh_CN=\u0423\u043f\u0440\u043e\u0449\u0435\u043d\u043d\u044b\u0439 \u043a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439
OptionPanel.fork=\u041a\u0440\u0438\u0432\u0430\u044f
OptionPanel.bubble=\u041e\u0432\u0430\u043b
OptionPanel.as_parent=\u041a\u0430\u043a \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c
OptionPanel.combined=\u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439
OptionPanel.bezier=\u041a\u0440\u0438\u0432\u0430\u044f
OptionPanel.linear=\u041f\u0440\u044f\u043c\u0430\u044f
OptionPanel.default=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442
OptionPanel.metal=\u041c\u0435\u0442\u0430\u043b\u043b
OptionPanel.windows=Windows
OptionPanel.motif=Motif
OptionPanel.gtk=Gtk
OptionPanel.nothing=\u041d\u0438\u0447\u0435\u0433\u043e
OptionPanel.relative=\u041e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e
OptionPanel.absolute=\u0410\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u043e
OptionPanel.first=\u041f\u0435\u0440\u0432\u044b\u0439
OptionPanel.last=\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439
OptionPanel.selection_method_direct=\u0421\u0440\u0430\u0437\u0443
OptionPanel.selection_method_delayed=\u0421 \u0437\u0430\u0434\u0435\u0440\u0436\u043a\u043e\u0439
OptionPanel.selection_method_by_click=\u0429\u0435\u043b\u0447\u043a\u043e\u043c
OptionPanel.html_export_no_folding=\u0411\u0435\u0437 \u0441\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u044f
OptionPanel.html_export_fold_currently_folded=\u041a\u0430\u043a \u043d\u0430 \u043a\u0430\u0440\u0442\u0435
OptionPanel.html_export_fold_all=\u0412\u0441\u0435 \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u043e
OptionPanel.html_export_based_on_headings=\u041f\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0430\u043c
OptionPanel.Environment=\u041e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0435
OptionPanel.Files=\u0424\u0430\u0439\u043b\u044b
OptionPanel.language=\u042f\u0437\u044b\u043a
OptionPanel.language.tooltip=<html>\u042f\u0437\u044b\u043a, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439. '\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438' \u0432\u044b\u0431\u0438\u0440\u0430\u0435\u0442 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u044f\u0437\u044b\u043a \u0441\u0438\u0441\u0442\u0435\u043c\u044b</html>
OptionPanel.experimental_file_locking_on=(\u041f\u0440\u043e\u0431\u043d\u0430\u044f) \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432
OptionPanel.experimental_file_locking_on.tooltip=<html> \u041f\u0440\u043e\u0431\u043d\u0430\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u044f</html>
OptionPanel.draganddrop=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c Drag && Drop
OptionPanel.draganddrop.tooltip=<html>\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u043b\u0438 \u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u043a\u0430\u0440\u0442\u044b</html>
OptionPanel.userproperties=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f
OptionPanel.patternsfile=\u0424\u0430\u0439\u043b \u0441 \u043e\u0431\u0440\u0430\u0437\u0446\u043e\u043c
OptionPanel.docmapurl_since_version_0_7_0=\u0410\u0434\u0440\u0435\u0441 (URL) \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438
OptionPanel.browsemode_initial_map=\u0418\u0441\u0445\u043e\u0434\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430 \u0434\u043b\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430
OptionPanel.browsemode_initial_map.tooltip=<html>\u041a\u0430\u0440\u0442\u0430, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u0430\u044f \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0435 \u0432 \u0440\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430</html>
OptionPanel.last_opened_list_length=\u0420\u0430\u0437\u043c\u0435\u0440 \u043f\u0435\u0440\u0435\u0447\u043d\u044f \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432
OptionPanel.time_for_automatic_save=\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u043e\u043a\u0443\u043c\u0443\u043d\u0442\u043e\u0432
OptionPanel.time_for_automatic_save.tooltip=<html> \u041f\u0440\u043e\u043c\u0435\u0436\u0443\u0442\u043e\u043a \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u043c\u0435\u0436\u0434\u0443 \u0434\u0432\u0443\u043c\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f\u043c\u0438 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0432 \u043c\u0438\u043b\u0438\u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445. \u041e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f .</html>
OptionPanel.delete_automatic_saves_at_exit=\u0423\u0434\u0430\u043b\u044f\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u043f\u0440\u0438 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439?
OptionPanel.delete_automatic_saves_at_exit.tooltip=<html> \u041f\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0433\u0430\u043b\u043e\u0447\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u0431\u044b\u043b\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u044b \u043f\u043e\u0441\u043b\u0435 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u0438 \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439</html>
OptionPanel.number_of_different_files_for_automatic_save=\u0427\u0438\u0441\u043b\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439
OptionPanel.number_of_different_files_for_automatic_save.tooltip=<html> \u0422\u043e\u043b\u044c\u043a\u043e \u0437\u0430\u0434\u0430\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0432\u0435\u0440\u0441\u0438\u0439 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b, \u0432\u0441\u0435 \u043f\u0440\u0435\u0434\u0448\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0432\u0435\u0440\u0441\u0438\u0438 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043b\u044f\u0442\u044c\u0441\u044f.</html>
OptionPanel.path_to_automatic_saves=\u041f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432
OptionPanel.path_to_automatic_saves.tooltip=<html> \u041f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u044b\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u043e\u0432, 'default' \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432.</html>
OptionPanel.Defaults=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u044b
OptionPanel.standardnodestyle=\u0422\u0438\u043f \u0443\u0437\u043b\u043e\u0432
OptionPanel.standardnodestyle.tooltip=<html>\u0422\u0438\u043f \u043d\u043e\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f "\u041a\u0440\u0438\u0432\u0430\u044f", "\u041e\u0432\u0430\u043b", "\u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439" \u0438 "\u041a\u0430\u043a \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c"</html>
OptionPanel.standardrootnodestyle=\u0422\u0438\u043f \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
OptionPanel.standardrootnodestyle.tooltip=<html>\u0422\u0438\u043f \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f "\u041a\u0440\u0438\u0432\u0430\u044f", "\u041e\u0432\u0430\u043b" \u0438 "\u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439"</html>
OptionPanel.standardnodetextcolor=\u0426\u0432\u0435\u0442 \u0443\u0437\u043b\u043e\u0432
OptionPanel.standardnodetextcolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u0443\u0437\u043b\u043e\u0432 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0412 HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u0438 (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 #RRGGBB)</html>
OptionPanel.standardselectednodecolor=\u0426\u0432\u0435\u0442 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430
OptionPanel.standardselectednodecolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0412 HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u0438 (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 #RRGGBB)</html>
OptionPanel.standardselectednoderectanglecolor=\u0426\u0432\u0435\u0442 \u043e\u0431\u0432\u043e\u0434\u043a\u0438 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432
OptionPanel.standardselectednoderectanglecolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d\u0438\u043a\u0430, \u043e\u0442\u043c\u0435\u0447\u0430\u044e\u0449\u0435\u0433\u043e \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b. \u0426\u0432\u0435\u0442 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432 HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u0438 (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432 \u0432\u0438\u0434\u0435 #RRGGBB)</html>
OptionPanel.standarddrawrectangleforselection=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u0432 \u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d\u0438\u043a\u0430\u0445
OptionPanel.standarddrawrectangleforselection.tooltip=<html>\u0420\u0438\u0441\u043e\u0432\u0430\u0442\u044c \u0432\u043e\u043a\u0440\u0443\u0433 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432 \u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d\u0438\u043a\u0438.</html>
OptionPanel.standardedgecolor=\u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430
OptionPanel.standardedgecolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0426\u0432\u0435\u0442 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432 HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u0438 (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432 \u0432\u0438\u0434\u0435 #RRGGBB)</html>
OptionPanel.standardlinkcolor=\u0426\u0432\u0435\u0442 \u0441\u0432\u044f\u0437\u0438
OptionPanel.standardlinkcolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u043b\u0438\u043d\u0438\u0438, \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0449\u0435\u0439 \u0441\u0432\u044f\u0437\u044c \u043c\u0435\u0436\u0434\u0443 \u0443\u0437\u043b\u0430\u043c\u0438. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u044f (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432 \u0432\u0438\u0434\u0435 #RRGGBB)</html>
OptionPanel.standardbackgroundcolor=\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430
OptionPanel.standardbackgroundcolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u044f (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432 \u0432\u0438\u0434\u0435 #RRGGBB)</html>
OptionPanel.printonwhitebackground=<html>\u041f\u0435\u0447\u0430\u0442\u0430\u0442\u044c \u043d\u0430 \u0431\u0435\u043b\u043e\u043c \u0444\u043e\u043d\u0435</html>
OptionPanel.printonwhitebackground.tooltip=<html>\u0412\u0441\u0435\u0433\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u043f\u0435\u0447\u0430\u0442\u0438 \u0431\u0435\u043b\u044b\u0439 \u0444\u043e\u043d</html>

OptionPanel.standardcloudcolor=\u0426\u0432\u0435\u0442 \u043e\u0431\u043b\u0430\u043a\u043e\u0432
OptionPanel.standardcloudcolor.tooltip=<html>\u0426\u0432\u0435\u0442 \u043e\u0431\u043b\u0430\u043a\u043e\u0432 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f HTML-\u043d\u043e\u0442\u0430\u0446\u0438\u044f (\u0448\u0435\u0441\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u0435\u0440\u0438\u0447\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0432 \u0432\u0438\u0434\u0435 #RRGGBB)</html>
OptionPanel.defaultfont=\u0428\u0440\u0438\u0444\u0442
OptionPanel.defaultfont.tooltip=<html>\u0428\u0440\u0438\u0444\u0442 \u0443\u0437\u043b\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0420\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0442\u043e\u043c \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u0448\u0440\u0438\u0444\u0442 \u0441 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u043c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c \u0443 \u0432\u0430\u0441 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d</html>
OptionPanel.defaultfontstyle=\u0421\u0442\u0438\u043b\u044c \u0448\u0440\u0438\u0444\u0442\u0430
OptionPanel.defaultfontsize=\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430
OptionPanel.max_node_width=\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430 \u0443\u0437\u043b\u043e\u0432
OptionPanel.max_node_width.tooltip=<html>\u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u044f\u0445</html>
OptionPanel.standardedgestyle=\u0421\u0442\u0438\u043b\u044c \u0440\u0435\u0431\u0440\u0430
OptionPanel.standardedgestyle.tooltip=<html>\u0421\u0442\u0438\u043b\u044c \u0440\u0435\u0431\u0440\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f "\u043f\u0440\u044f\u043c\u0430\u044f" \u0438 "\u043a\u0440\u0438\u0432\u0430\u044f" - \u043a\u0440\u0438\u0432\u0430\u044f \u0411\u0435\u0437\u044c\u0435</html>
OptionPanel.standardcloudestyle=\u0422\u0438\u043f \u043e\u0431\u043b\u0430\u043a\u043e\u0432
OptionPanel.standardcloudestyle.tooltip=<html>\u0421\u0442\u0438\u043b\u044c \u043e\u0431\u043b\u0430\u043a\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0421\u0435\u0439\u0447\u0430\u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e "\u0411\u0435\u0437\u044c\u0435"</html>
OptionPanel.standardlinkestyle=\u0421\u0442\u0438\u043b\u044c \u0441\u0432\u044f\u0437\u043e\u043a
OptionPanel.standardlinkestyle.tooltip=<html>\u0421\u0442\u0438\u043b\u044c \u0441\u0432\u044f\u0437\u043e\u043a \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. \u0421\u0435\u0439\u0447\u0430\u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e "\u0411\u0435\u0437\u044c\u0435"</html>
OptionPanel.Appearance=\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u0432\u0438\u0434
OptionPanel.lookandfeel=\u0421\u0442\u0438\u043b\u044c \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f
OptionPanel.lookandfeel.tooltip=<html>\u0421\u0442\u0438\u043b\u044c \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b. \u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f 'metal','windows','motif', 'gtk'.<br>\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 'mac' \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 MacOS.<br>"\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442" \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442 \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e (\u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b).<br>\u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0439 \u0441\u0442\u0438\u043b\u044c \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044c \u0438\u043c\u044f \u043a\u043b\u0430\u0441\u0441\u0430, \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0435\u043c\u0443 \u0444\u0430\u0439\u043b\u043e\u0432 .jar.<br>\u0415\u0441\u043b\u0438 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0438 \u043a\u0430\u043a\u0438\u0435-\u043b\u0438\u0431\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441\u043e \u0441\u0442\u0438\u043b\u0435\u043c \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u044f, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044c "\u041d\u0438\u0447\u0435\u0433\u043e". \u042d\u0442\u043e \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u043f\u043f\u043b\u0435\u0442\u043e\u0432.</html>
OptionPanel.mapxsize=\u0428\u0438\u0440\u0438\u043d\u0430 \u043a\u0430\u0440\u0442\u044b
OptionPanel.mapxsize.tooltip=<html>\u0428\u0438\u0440\u0438\u043d\u0430 \u043d\u043e\u0432\u043e\u0439 \u043a\u0430\u0440\u0442\u044b</html>
OptionPanel.mapysize=\u0412\u044b\u0441\u043e\u0442\u0430 \u043a\u0430\u0440\u0442\u044b
OptionPanel.links=\u0421\u0441\u044b\u043b\u043a\u0438
OptionPanel.links.tooltip=<html>\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442 \u0441\u0441\u044b\u043b\u043a\u0438 \u043b\u0438\u0431\u043e \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u043b\u0438\u0431\u043e \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u044b\u043c\u0438</html>
OptionPanel.el__buttons_position=\u041f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043a\u043d\u043e\u043f\u043e\u043a
OptionPanel.el__buttons_position.tooltip=<html> \u0441\u0432\u0435\u0440\u0445\u0443 / \u0441\u043d\u0438\u0437\u0443 </html>
OptionPanel.el__position_window_below_node=\u041f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043e\u043a\u043d\u0430 \u043f\u043e\u0434 \u043a\u043d\u043e\u043f\u043a\u0430\u043c\u0438
OptionPanel.el__min_default_window_height=\u041d\u0430\u0438\u043c\u0435\u043d\u044c\u0448\u0430\u044f \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f \u0432\u044b\u0441\u043e\u0442\u0430 \u043e\u043a\u043d\u0430
OptionPanel.el__max_default_window_height=\u041d\u0430\u0438\u0431\u043e\u043b\u044c\u0448\u0430\u044f \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f \u0432\u044b\u0441\u043e\u0442\u0430 \u043e\u043a\u043d\u0430
OptionPanel.el__min_default_window_width=\u041d\u0430\u0438\u043c\u0435\u043d\u044c\u0448\u0430\u044f \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430 \u043e\u043a\u043d\u0430
OptionPanel.el__max_default_window_width=\u041d\u0430\u0438\u0431\u043e\u043b\u044c\u0448\u0430\u044f \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430 \u043e\u043a\u043d\u0430
OptionPanel.el__enter_confirms_by_default=<\u0412\u0412\u041e\u0414> \u0437\u0430\u043a\u0440\u044b\u0432\u0430\u0435\u0442 \u0434\u0438\u0430\u043b\u043e\u0433
OptionPanel.el__show_icon_for_attributes=\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0434\u043b\u044f \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432
OptionPanel.Keystrokes=\u041a\u043b\u0430\u0432\u0438\u0448\u0438
OptionPanel.keystroke_newMap=\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
OptionPanel.keystroke_open=\u041e\u0442\u043a\u0440\u044b\u0442\u044c
OptionPanel.keystroke_save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
OptionPanel.keystroke_saveAs=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a
OptionPanel.keystroke_print=\u041f\u0435\u0447\u0430\u0442\u044c
OptionPanel.keystroke_close=\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442
OptionPanel.keystroke_quit=\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0441 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439
OptionPanel.keystroke_export_to_html=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 HTML
OptionPanel.keystroke_export_branch_to_html=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0442\u0432\u044c \u0432 HTML
OptionPanel.keystroke_open_first_in_history=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0435\u043c\u0443\u044e \u043a\u0430\u0440\u0442\u0443
OptionPanel.keystroke_previousMap=\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u043a\u0430\u0440\u0442\u0430
OptionPanel.keystroke_nextMap=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043a\u0430\u0440\u0442\u0430
OptionPanel.keystroke_mode_MindMap=\u0420\u0435\u0436\u0438\u043c \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
OptionPanel.keystroke_mode_Browse=\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430
OptionPanel.keystroke_mode_File=\u0424\u0430\u0439\u043b\u043e\u0432\u044b\u0439 \u0440\u0435\u0436\u0438\u043c
OptionPanel.keystroke_node_toggle_italic=\u0423\u0437\u0435\u043b \u043a\u0443\u0440\u0441\u0438\u0432\u043e\u043c
OptionPanel.keystroke_node_toggle_boldface=\u0423\u0437\u0435\u043b \u0436\u0438\u0440\u043d\u043e
OptionPanel.keystroke_node_toggle_underlined=\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044c \u0443\u0437\u0435\u043b
OptionPanel.keystroke_node_toggle_cloud=\u041d\u0430\u0440\u0438\u0441\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u043b\u0430\u043a\u043e
OptionPanel.keystroke_undo=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
OptionPanel.keystroke_redo=\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c
OptionPanel.keystroke_delete_child=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0437\u0435\u043b
OptionPanel.keystroke_select_all=\u041f\u043e\u043c\u0435\u0442\u0438\u0442\u044c \u0432\u0441\u0435
OptionPanel.keystroke_select_branch=\u041f\u043e\u043c\u0435\u0442\u0438\u0442\u044c \u0432\u0435\u0442\u0432\u044c
OptionPanel.keystroke_zoom_out=\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c
OptionPanel.keystroke_zoom_in=\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c
OptionPanel.keystroke_cut=\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c
OptionPanel.keystroke_copy=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
OptionPanel.keystroke_copy_single=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0434\u0438\u043d \u0443\u0437\u0435\u043b
OptionPanel.keystroke_paste=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c
OptionPanel.keystroke_remove=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
OptionPanel.keystroke_add_arrow_link_action=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0432\u044f\u0437\u044c
OptionPanel.keystroke_add_local_link_action=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u0441\u044b\u043b\u043a\u0443
OptionPanel.keystroke_moveToRoot=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u043c\u0443 \u0443\u0437\u043b\u0443
OptionPanel.keystroke_move_up=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430\u0432\u0435\u0440\u0445
OptionPanel.keystroke_move_down=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432\u043d\u0438\u0437
OptionPanel.keystroke_move_left=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430\u043b\u0435\u0432\u043e
OptionPanel.keystroke_move_right=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430\u043f\u0440\u0430\u0432\u043e
OptionPanel.keystroke_follow_link=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0433\u0438\u043f\u0435\u0440\u0441\u0441\u044b\u043b\u043a\u0443
OptionPanel.keystroke_add=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c
OptionPanel.keystroke_add_child=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b
OptionPanel.keystroke_add_child_mac=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0439 \u0443\u0437\u0435\u043b (\u0434\u043b\u044f Mac OS X)
OptionPanel.keystroke_add_sibling_before=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u043c\u0435\u0436\u043d\u044b\u0439 \u0443\u0437\u0435\u043b \u043f\u0435\u0440\u0435\u0434 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u043c
OptionPanel.keystroke_edit=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
OptionPanel.keystroke_edit_long_node=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u0443\u0437\u0435\u043b
OptionPanel.keystroke_join_nodes=\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0443\u0437\u043b\u044b
OptionPanel.keystroke_toggle_folded=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c / \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0443\u0437\u043b\u044b
OptionPanel.keystroke_toggle_children_folded=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c / \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b
OptionPanel.keystroke_set_link_by_filechooser=\u0417\u0430\u0434\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u0444\u0430\u0439\u043b\u0430
OptionPanel.keystroke_set_link_by_textfield=\u0417\u0430\u0434\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u0432\u0432\u043e\u0434\u043e\u043c \u0442\u0435\u043a\u0441\u0442\u0430
OptionPanel.keystroke_set_image_by_filechooser=\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0443 \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u0444\u0430\u0439\u043b\u0430
OptionPanel.keystroke_node_up=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0443\u0437\u0435\u043b \u0432\u0432\u0435\u0440\u0445
OptionPanel.keystroke_node_down=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0443\u0437\u0435\u043b \u0432\u043d\u0438\u0437
OptionPanel.keystroke_node_increase_font_size=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0443\u0437\u043b\u0430
OptionPanel.keystroke_node_decrease_font_size=\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0443\u0437\u043b\u0430
OptionPanel.keystroke_export_branch=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0442\u0432\u044c
OptionPanel.keystroke_node_color=\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430 \u0443\u0437\u043b\u0430
OptionPanel.keystroke_node_color_blend=\u041e\u0441\u0432\u0435\u0442\u043b\u0438\u0442\u044c \u0446\u0432\u0435\u0442 \u0443\u0437\u043b\u0430
OptionPanel.keystroke_edge_color=\u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430
OptionPanel.keystroke_find=\u0418\u0441\u043a\u0430\u0442\u044c
OptionPanel.keystroke_find_next=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a
OptionPanel.keystroke_apply_pattern_1=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 1
OptionPanel.keystroke_apply_pattern_2=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 2
OptionPanel.keystroke_apply_pattern_3=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 3
OptionPanel.keystroke_apply_pattern_4=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 4
OptionPanel.keystroke_apply_pattern_5=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 5
OptionPanel.keystroke_apply_pattern_6=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 6
OptionPanel.keystroke_apply_pattern_7=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 7
OptionPanel.keystroke_apply_pattern_8=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 8
OptionPanel.keystroke_apply_pattern_9=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 9
OptionPanel.keystroke_apply_pattern_10=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 10
OptionPanel.keystroke_apply_pattern_11=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 11
OptionPanel.keystroke_apply_pattern_12=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 12
OptionPanel.keystroke_apply_pattern_13=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 13
OptionPanel.keystroke_apply_pattern_14=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 14
OptionPanel.keystroke_apply_pattern_15=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 15
OptionPanel.keystroke_apply_pattern_16=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 16
OptionPanel.keystroke_apply_pattern_17=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 17
OptionPanel.keystroke_apply_pattern_18=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c 18
OptionPanel.Behaviour=\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435
OptionPanel.placenewbranches=\u041f\u043e\u0437\u0438\u0446\u0438\u044f \u043d\u043e\u0432\u044b\u0445 \u0443\u0437\u043b\u043e\u0432
OptionPanel.placenewbranches.tooltip=<html>\u0413\u0434\u0435 \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u0443\u0437\u043b\u044b. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f "\u043f\u0435\u0440\u0432\u044b\u0439" \u0438 "\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439" </html>
OptionPanel.disable_cursor_move_paper=\u0421\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u043a\u0443\u0440\u0441\u043e\u0440 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0438 \u043a\u0430\u0440\u0442\u044b
OptionPanel.disable_cursor_move_paper.tooltip=<html>\u041d\u0435 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u0443\u0440\u0441\u043e\u0440 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u044f \u043a\u0430\u0440\u0442\u044b</html>
OptionPanel.enable_leaves_folding=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u0443\u0437\u043b\u043e\u0432 \u043d\u0435 \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432
OptionPanel.enable_leaves_folding.tooltip=<html>\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0432\u0435\u0440\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u0443\u0437\u043b\u043e\u0432 \u043d\u0435 \u0438\u043c\u0435\u044e\u0449\u0438\u0445 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0443\u0437\u043b\u043e\u0432?</html>
OptionPanel.foldingsymbolwidth=\u0420\u0430\u0437\u043c\u0435\u0440 \u0437\u043d\u0430\u043a\u0430 \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044b\u0445 \u0443\u0437\u043b\u043e\u0432
OptionPanel.foldingsymbolwidth.tooltip=<html> \u0420\u0430\u0437\u043c\u0435\u0440 \u0437\u043d\u0430\u043a\u0430, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0430\u044e\u0449\u0435\u0433\u043e \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044b\u0439 \u0443\u0437\u0435\u043b<html>
OptionPanel.disable_key_type=\u0417\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u0432\u043e\u0434\u043e\u043c \u0442\u0435\u043a\u0441\u0442\u0430
OptionPanel.disable_key_type.tooltip=<html>\u0415\u0441\u043b\u0438 \u043e\u043f\u0446\u0438\u044f \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430, \u0442\u043e \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043d\u0430\u0431\u043e\u0440\u0430 \u0442\u0435\u043a\u0441\u0442\u0430 \u043f\u0440\u0438 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u043c \u0443\u0437\u043b\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435</html>
OptionPanel.key_type_adds_new=\u0412\u0432\u043e\u0434 \u0442\u0435\u043a\u0441\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043d\u043e\u0432\u044b\u0439 \u0443\u0437\u0435\u043b
OptionPanel.key_type_adds_new.tooltip=<html>\u041d\u0430\u0447\u0430\u043b\u043e \u043d\u0430\u0431\u043e\u0440\u0430 \u0442\u0435\u043a\u0441\u0442\u0430: \u0437\u0430\u043c\u0435\u043d\u044f\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0443\u0437\u0430\u043b (\u043e\u043f\u0446\u0438\u044f \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430) /<br> \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u043d\u043e\u0432\u044b\u0439 \u0441\u043c\u0435\u0436\u043d\u044b\u0439 \u0443\u0437\u0435\u043b (\u043e\u043f\u0446\u0438\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430)<br>  (\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f, \u0447\u0442\u043e\u0431\u044b \u043e\u043f\u0446\u0438\u044f "\u0417\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u043d\u0430\u0447\u0430\u043b\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u0432\u043e\u0434\u043e\u043c \u0442\u0435\u043a\u0441\u0442\u0430" \u0431\u044b\u043b\u0430 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0430)</html>
OptionPanel.selection_method=\u041c\u0435\u0442\u043e\u0434 \u0432\u044b\u0431\u043e\u0440\u0430 \u0443\u0437\u043b\u0430
OptionPanel.selection_method.tooltip=<html> \u0421 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0433\u043e \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b\u044f \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c/\u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u0432\u044b\u0431\u043e\u0440 \u0443\u0437\u043b\u0430 \u0441 \u0437\u0430\u0434\u0435\u0440\u0436\u043a\u043e\u0439. \u041d\u0435 \u0438\u0437\u043c\u0435\u043d\u044f\u0439\u0442\u0435 \u0435\u0451, \u0442\u0430\u043a \u043a\u0430\u043a \u043e\u043d\u0430 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0432 \u0444\u0430\u0439\u043b auto.properties \u0432 \u043b\u044e\u0431\u043e\u043c \u0441\u043b\u0443\u0447\u0430\u0435.<br><i>\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0447\u0438\u043a\u0430: \u0438\u043c\u0435\u043d\u043d\u043e \u0442\u0430\u043a \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u043e \u0438 \u0437\u0434\u0435\u0441\u044c \u0438 \u0432 \u0444\u0430\u0439\u043b\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438. \u041d\u0435\u043f\u043e\u043d\u044f\u0442\u043d\u043e, \u0437\u0430\u0447\u0435\u043c \u044d\u0442\u0430 \u043e\u043f\u0446\u0438\u044f \u0432\u044b\u043d\u0435\u0441\u0435\u043d\u0430 \u0432 \u0434\u0438\u0430\u043b\u043e\u0433\u043e\u0432\u043e\u0435 \u043e\u043a\u043d\u043e.</i></html>
OptionPanel.time_for_delayed_selection=\u0412\u0440\u0435\u043c\u044f \u0437\u0430\u0434\u0435\u0440\u0436\u043a\u0438
OptionPanel.time_for_delayed_selection.tooltip=<html> \u0417\u0430\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u0435\u0440\u0435\u0434 \u0442\u0435\u043c, \u043a\u0430\u043a \u0443\u0437\u0435\u043b \u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0441\u044f \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u043c, \u043a\u043e\u0433\u0434\u0430 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043c\u044b\u0448\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0434 \u043d\u0438\u043c (\u0432 \u043c\u0438\u043b\u043b\u0438\u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445).<br>\u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435, \u0447\u0442\u043e\u0431 \u0443\u0437\u0435\u043b \u0432\u044b\u0431\u0438\u0440\u0430\u043b\u0441\u044f \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 1.</html>
OptionPanel.HTML=HTML
OptionPanel.default_browser_command_windows_nt=\u0411\u0440\u0430\u0443\u0437\u0435\u0440 \u0434\u043b\u044f  Windows NT
OptionPanel.default_browser_command_windows_nt.tooltip=<html>\u0414\u043b\u044f  Windows (\u043a\u0430\u0432\u044b\u0447\u043a\u0438 "" \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b \u0438\u0437-\u0437\u0430 \u0430\u0434\u0440\u0435\u0441\u043e\u0432 (URL), \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 "=").</html>
OptionPanel.default_browser_command_windows_9x=\u0411\u0440\u0430\u0443\u0437\u0435\u0440 \u0434\u043b\u044f Windows 9x
OptionPanel.default_browser_command_windows_9x.tooltip=<html>\u0414\u043b\u044f  Windows (\u043a\u0430\u0432\u044b\u0447\u043a\u0438 "" \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u044b \u0438\u0437-\u0437\u0430 \u0430\u0434\u0440\u0435\u0441\u043e\u0432 (URL), \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 "=").</html>
OptionPanel.default_browser_command_other_os=\u0411\u0440\u0430\u0443\u0437\u0435\u0440 \u0434\u043b\u044f  \u043f\u0440\u043e\u0447\u0438\u0445 \u041e\u0421
OptionPanel.default_browser_command_other_os.tooltip=<html> \u041a\u0430\u043a \u043f\u0440\u0430\u0432\u0438\u043b\u043e Linux:</html>
OptionPanel.default_browser_command_mac=\u0411\u0440\u0430\u0443\u0437\u0435\u0440 \u0434\u043b\u044f Mac
OptionPanel.default_browser_command_mac.tooltip=<html> \u0438 MAC: (\u0441\u043f\u0430\u0441\u0438\u0431\u043e \u041d\u0438\u043a\u0443)</html>
OptionPanel.html_export_folding=\u0421\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0438 \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u0435 \u0432 HTML
OptionPanel.export_icons_in_html=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c \u0432 HTML
OptionPanel.export_icons_in_html.tooltip=<html> \u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0430\u0442\u044c, \u0435\u0441\u043b\u0438 HTML \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b. \u042d\u0442\u0438 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u044b </html>
OptionPanel.Cancel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
OptionPanel.OK=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
option_changes_may_require_restart=\u0411\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432\u0441\u0442\u0443\u043f\u0438\u0442 \u0432 \u0441\u0438\u043b\u0443 \u043f\u043e\u0441\u043b\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b.
# fc, 12.5.2005:
GrabKeyDialog.grab-key.title=\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u043a\u043b\u0430\u0432\u0438\u0448\u0443
GrabKeyDialog.grab-key.caption=\u041a\u043b\u0430\u0432\u0438\u0448\u0430
GrabKeyDialog.grab-key.clear=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
GrabKeyDialog.grab-key.assigned-to.none=\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442
GrabKeyDialog.grab-key.assigned-to=\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e
GrabKeyDialog.common.ok=OK
GrabKeyDialog.grab-key.remove=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
GrabKeyDialog.common.cancel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c
GrabKeyDialog.grab-key.remove-ask=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438?
OptionPanel.separator.language=\u042f\u0437\u044b\u043a
OptionPanel.separator.files=\u041f\u0430\u043f\u043a\u0438
OptionPanel.separator.automatic_save=\u0410\u0432\u0442\u043e\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
OptionPanel.separator.default_styles=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0441\u0442\u0438\u043b\u044c
OptionPanel.separator.default_colors=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0446\u0432\u0435\u0442
OptionPanel.separator.default_fonts=\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442
OptionPanel.separator.other_defaults=\u041f\u0440\u043e\u0447\u0438\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u044b
OptionPanel.separator.look_and_feel=\u041f\u0440\u0438\u043a\u0438\u0434
OptionPanel.separator.anti_alias=\u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u043d\u0438\u0435
OptionPanel.separator.initial_map_size=\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u043a\u0430\u0440\u0442\u044b
OptionPanel.separator.hyperlink_types=\u0422\u0438\u043f \u0433\u0438\u043f\u0435\u0440\u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0441\u0441\u044b\u043b\u043e\u043a
OptionPanel.separator.edit_long_node_window=\u041e\u043a\u043d\u043e \u0434\u043b\u044f \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u0443\u0437\u043b\u043e\u0432
OptionPanel.separator.commands_for_the_program=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043e\u0439
OptionPanel.separator.node_editing_commands=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0443\u0437\u043b\u043e\u0432
OptionPanel.separator.node_navigation_commands=\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f
OptionPanel.separator.new_node_commands=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0443\u0437\u043b\u043e\u0432
OptionPanel.separator.patterns=\u0421\u0442\u0438\u043b\u044c
OptionPanel.separator.behaviour=\u041f\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0435
OptionPanel.separator.key_typing=\u0412\u0432\u043e\u0434 \u0441 \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u044b
OptionPanel.separator.selection_method=\u041c\u0435\u0442\u043e\u0434 \u0432\u044b\u0431\u043e\u0440\u0430 \u0443\u0437\u043b\u043e\u0432
OptionPanel.separator.browser=\u041d\u0430\u0432\u0438\u0433\u0430\u0442\u043e\u0440
OptionPanel.separator.html_export=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0432 HTML
OptionPanel.separator.attributes=\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b
OptionPanel.keystroke_edit_attributes=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
OptionPanel.keystroke_show_all_attributes=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
OptionPanel.keystroke_show_selected_attributes=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
OptionPanel.keystroke_hide_all_attributes=\u0421\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u0432\u0441\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b
OptionPanel.keystroke_show_attribute_manager=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0430\u043c\u0438
OptionPanel.keystroke_assign_attributes=\u041f\u0440\u0438\u0441\u0432\u043e\u0438\u0442\u044c \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b ...
 # fc, 2.6.2005:
OptionPanel.antialias.tooltip=<html>\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.</html>
OptionPanel.antialias=\u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u043d\u0438\u0435
OptionPanel.antialias_edges=\u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c \u0440\u0451\u0431\u0440\u0430
OptionPanel.antialias_all=\u0421\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c \u0432\u0441\u0435
OptionPanel.antialias_none=\u041d\u0435 \u0441\u0433\u043b\u0430\u0436\u0438\u0432\u0430\u0442\u044c
OptionPanel.cs=\u0427\u0435\u0448\u0441\u043a\u0438\u0439
#\u0412\u044b\u044f\u0441\u043d\u0438\u0442\u044c, \u0447\u0442\u043e \u044d\u0442\u043e \u0442\u0430\u043a\u043e\u0435
OptionPanel.nb=\u041d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 Bokm\u00e5l
# fc, 12.6.2005: correction, please remove the other translation of "follow_link" above
follow_link = \u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0433\u0438\u043f\u0435\u0440\u0441\u0441\u044b\u043b\u043a\u0443
OptionPanel.ColorProperty.ResetColor=\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0446\u0432\u0435\u0442
# fc,15.6.2005
# fc, 16.6.2005:
OptionPanel.keystroke_option_dialog=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438
format_menu_edge_styles=&\u0422\u0438\u043f \u0440\u0435\u0431\u0440\u0430
format_menu_edge_widths=\u0422&\u043e\u043b\u0449\u0438\u043d\u0430 \u0440\u0435\u0431\u0440\u0430
# fc, 3.7.2005:
accessories/plugins/ImportMindmanagerFiles.properties_name=\u041a\u0430\u0440\u0442\u0430 \u0434\u043b\u044f MindManager X5 ...
# fc, 5.7.2005:
accessories/plugins/ExportToOoWriter.properties_documentation=<html><body>\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 (\u0442\u043e \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044b\u0435 \u0443\u0437\u043b\u044b) \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442 \u0433\u043b\u0430\u0432\u044b, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u043e\u0441\u0442\u043e\u0438\u0442 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442, .<br/>\u0421\u043f\u0440\u044f\u0442\u0430\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b (\u0442.\u0435., \u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044b\u0435 \u0443\u0437\u043b\u044b) \u043f\u043e\u043c\u0435\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u043d\u0443\u0442\u0440\u044c \u044d\u0442\u0438\u0445 \u0433\u043b\u0430\u0432 \u043a\u0430\u043a \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444\u043e\u0444.</body></html>
#accessories/plugins/ExportToOoWriter.properties_documentation=<html><body>The visible structure (ie. all unfolded nodes) build up the chapter structure of the document.<br/>The hidden nodes (ie. the folded nodes) are put inside these chapters as lists or paragraphs. </body></html>
accessories/plugins/ExportToOoWriter.properties_name= \u041a\u0430\u043a Open Office Writer Document...
# fc, 10.7.2005:
OptionPanel.separator.undo=\u041e\u0442\u043c\u0435\u043d\u0430
OptionPanel.undo_levels=\u0427\u0438\u0441\u043b\u043e \u043e\u0442\u043c\u0435\u043d\u044f\u0435\u043c\u044b\u0445 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439
OptionPanel.undo_levels.tooltip=<html>\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0447\u0438\u0441\u043b\u043e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c.</html>
# fc, 13.8.2005
OptionPanel.lt=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439
# fc, 12.1.2006: if you create a translation of the documentation file, change this value (see german translation):
browsemode_initial_map = ./doc/freemind_ru.mm
# fc, 1.2.06
link_not_found = \u0421\u0441\u044b\u043b\u043a\u0430 $1 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430.
# fc, 15.2.06
icon_smily_bad = \u041c\u043d\u0435 \u043d\u0435 \u0434\u043e \u0432\u0435\u0441\u0435\u043b\u044c\u044f
OptionPanel.hr=\u0425\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439
OptionPanel.nn=\u041d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 Nynorsk
OptionPanel.se=\u0428\u0432\u0435\u0434\u0441\u043a\u0438\u0439

# fc, 16.2.06
accessories/plugins/ExportWithXSLT_Applet.properties_documentation=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a java-\u0430\u043f\u043f\u043b\u0435\u0442 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435.
accessories/plugins/ExportWithXSLT_Applet.properties_name=\u041a\u0430\u043a java-\u0430\u043f\u043f\u043b\u0435\u0442...
accessories/plugins/ExportWithXSLT_Applet.properties_webpage=\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430
accessories/plugins/ExportWithXSLT_Flash.properties_documentation=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a flash \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0443.
accessories/plugins/ExportWithXSLT_Flash.properties_name=\u041a\u0430\u043a Flash...
# fc, 21.2.06
accessories/plugins/ChangeNodeLevelAction_left.properties_documentation=\u0421 \u043b\u0435\u0432\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043e\u0442 \u043a\u043e\u0440\u043d\u044f \u0443\u0437\u043b\u044b \u0441\u043c\u0435\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u043d\u0438\u0437 \u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c\u0438 \u0443\u0437\u043b\u0430\u043c\u0438 \u0432\u044b\u0448\u0435\u043b\u0435\u0436\u0430\u0449\u0435\u0433\u043e \u0443\u0437\u043b\u0430. \u0421 \u043f\u0440\u0430\u0432\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043e\u0442 \u043a\u043e\u0440\u043d\u044f \u0443\u0437\u043b\u044b \u0441\u043c\u0435\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u0432\u0435\u0440\u0445. \u0420\u044f\u0434\u043e\u043c \u0441 \u043a\u043e\u0440\u043d\u0435\u043c \u0443\u0437\u043b\u044b \u043c\u0435\u043d\u044f\u044e\u0442 \u0441\u0442\u043e\u0440\u043e\u043d\u0443.
accessories/plugins/ChangeNodeLevelAction_left.properties_name=\u0423\u0437\u0435\u043b \u0432\u043b\u0435\u0432\u043e
accessories/plugins/ChangeNodeLevelAction_right.properties_documentation=\u0421 \u043f\u0440\u0430\u0432\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043e\u0442 \u043a\u043e\u0440\u043d\u044f \u0443\u0437\u043b\u044b \u0441\u043c\u0435\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u043d\u0438\u0437 \u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c\u0438 \u0443\u0437\u043b\u0430\u043c\u0438 \u0432\u044b\u0448\u0435\u043b\u0435\u0436\u0430\u0449\u0435\u0433\u043e \u0443\u0437\u043b\u0430. \u0421 \u043b\u0435\u0432\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u044b \u043e\u0442 \u043a\u043e\u0440\u043d\u044f \u0443\u0437\u043b\u044b \u0441\u043c\u0435\u0449\u0430\u044e\u0442\u0441\u044f \u0432\u0432\u0435\u0440\u0445. \u0420\u044f\u0434\u043e\u043c \u0441 \u043a\u043e\u0440\u043d\u0435\u043c \u0443\u0437\u043b\u044b \u043c\u0435\u043d\u044f\u044e\u0442 \u0441\u0442\u043e\u0440\u043e\u043d\u0443.
accessories/plugins/ChangeNodeLevelAction_right.properties_name=\u0423\u0437\u0435\u043b \u0432\u043f\u0440\u0430\u0432\u043e
# fc, 27.2.06:
PatternDialog.ColorProperty.ResetColor=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0446\u0432\u0435\u0442
PatternDialog.EdgeWidth_1=1
PatternDialog.EdgeWidth_2=2
PatternDialog.EdgeWidth_4=4
PatternDialog.EdgeWidth_8=8
PatternDialog.EdgeWidth_parent=\u041a\u0430\u043a \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c
PatternDialog.EdgeWidth_thin=\u0442\u043e\u043d\u043a\u0438\u0439
PatternDialog.as_parent=\u041a\u0430\u043a \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c
PatternDialog.bezier=\u041a\u0440\u0438\u0432\u0430\u044f
PatternDialog.bubble=\u041e\u0432\u0430\u043b
PatternDialog.combined=\u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c
PatternDialog.edgecolor.tooltip=\u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430 \u0434\u043e \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0437\u043b\u0430 (\u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0438 \u043a\u043e \u0432\u0441\u0435\u043c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u0430\u043c)
PatternDialog.edgecolor=\u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430
PatternDialog.edgestyle.tooltip=\u0421\u0442\u0438\u043b\u044c \u0440\u0435\u0431\u0440\u0430 \u0434\u043e \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0437\u043b\u0430 (\u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0438 \u043a\u043e \u0432\u0441\u0435\u043c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u0430\u043c)
PatternDialog.edgestyle=\u0421\u0442\u0438\u043b\u044c \u0440\u0435\u0431\u0440\u0430
PatternDialog.edgewidth.tooltip=\u0422\u043e\u043b\u0449\u0438\u043d\u0430 \u0440\u0435\u0431\u0440\u0430 \u0434\u043e \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0437\u043b\u0430 (\u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0438 \u043a\u043e \u0432\u0441\u0435\u043c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u0430\u043c)
PatternDialog.edgewidth=\u0422\u043e\u043b\u0449\u0438\u043d\u0430 \u0440\u0435\u0431\u0440\u0430
PatternDialog.fork=\u043a\u0440\u0438\u0432\u0430\u044f
PatternDialog.linear=\u043f\u0440\u044f\u043c\u0430\u044f
PatternDialog.nodebackgroundcolor.tooltip=nodebackgroundcolor.tooltip
PatternDialog.nodebackgroundcolor=\u0424\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442 \u0443\u0437\u043b\u0430
PatternDialog.nodecolor.tooltip=nodecolor.tooltip
PatternDialog.nodecolor=\u0426\u0432\u0435\u0442 \u0443\u0437\u043b\u0430
PatternDialog.nodestyle.tooltip=nodestyle.tooltip
PatternDialog.nodestyle=\u0421\u0442\u0438\u043b\u044c \u0443\u0437\u043b\u0430
PatternDialog.nodetext.tooltip=nodetext.tooltip
PatternDialog.nodetext=\u0422\u0435\u043a\u0441\u0442 \u0443\u0437\u043b\u0430
PatternDialog.separator.EdgeControls=\u0420\u0451\u0431\u0440\u0430
PatternDialog.separator.NodeColors=\u0426\u0432\u0435\u0442\u0430 \u0443\u0437\u043b\u043e\u0432
PatternDialog.separator.NodeStyles=\u0421\u0442\u0438\u043b\u0438 \u0443\u0437\u043b\u043e\u0432
PatternDialog.sharp_bezier=\u043e\u0441\u0442\u0440\u0430\u044f \u043a\u0440\u0438\u0432\u0430\u044f
PatternDialog.sharp_linear=\u043e\u0441\u0442\u0440\u0430\u044f \u043f\u0440\u044f\u043c\u0430\u044f
PatternDialog.undefined_font=\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u043e
accessories/plugins/ApplyFormatPlugin.properties_documentation=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0438\u0430\u043b\u043e\u0433 \u0434\u043b\u044f \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0443\u0437\u043b\u043e\u0432 \u0438 \u043b\u0438\u043d\u0438\u0439
accessories/plugins/ApplyFormatPlugin.properties_name=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442 ...
accessories/plugins/ApplyFormatPlugin.dialog.title=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u043e\u0432
OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_left.properties_key=\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043b\u0435\u0432\u043e
OptionPanel.keystroke_accessories/plugins/ChangeNodeLevelAction_right.properties_key=\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e
OptionPanel.keystroke_accessories/plugins/FormatCopy.properties.properties_key=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442
OptionPanel.keystroke_accessories/plugins/FormatPaste.properties.properties_key=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442
OptionPanel.keystroke_accessories/plugins/IconSelectionPlugin.properties.properties_key=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u043a\u043e\u043d\u043a\u0443
OptionPanel.keystroke_accessories/plugins/NewParentNode.properties_key=\u0421\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0443\u0437\u043b\u044b
OptionPanel.keystroke_accessories/plugins/SplitNode.properties_key=\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u0443\u0437\u043b\u044b
OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_UP=C\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c
OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_PAGE_DOWN=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c
OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_HOME=C\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0441\u0435
OptionPanel.keystroke_accessories/plugins/UnfoldAll.keystroke.alt_END=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0441\u0435
OptionPanel.separator.others=\u041e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u0433\u043e\u0440\u044f\u0447\u0438\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u0438
PatternDialog.separator.General=\u041e\u0431\u0449\u0438\u0435
PatternDialog.clear_all_setters=\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u0441\u0435
PatternDialog.clear_all_setters.tooltip=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u043b\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b
accessories/plugins/ManagePatterns.dialog.title=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0441\u0442\u0438\u043b\u0435\u0439
accessories/plugins/ManagePatterns.not_found=\u0424\u0430\u0439\u043b \u0441\u043e \u0441\u0442\u0438\u043b\u044f\u043c\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d.
accessories/plugins/ManagePatterns.properties_documentation=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0431\u0440\u0430\u0437\u0446\u044b \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u0432 \u0444\u0430\u0439\u043b\u0435 patterns.xml
accessories/plugins/ManagePatterns.properties_name=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0438\u043b\u044f\u043c\u0438...
PatternDialog.nodefontname.tooltip=nodefont.tooltip
PatternDialog.nodefontname=\u0428\u0440\u0438\u0444\u0442 \u0443\u0437\u043b\u0430
PatternDialog.nodefontsize.tooltip=nodefont.tooltip
PatternDialog.nodefontsize=\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0443\u0437\u043b\u0430
PatternDialog.nodefontbold.tooltip=nodefont.tooltip
PatternDialog.nodefontbold=\u0416\u0438\u0440\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442
PatternDialog.nodefontitalic.tooltip=nodefont.tooltip
PatternDialog.nodefontitalic=\u041a\u0443\u0440\u0441\u0438\u0432
PatternDialog.separator.NodeFont=\u0428\u0440\u0438\u0444\u0442 \u0443\u0437\u043b\u0430
ManagePatternsPopupDialog.remove=\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c
ManagePatternsPopupDialog.add=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u0441\u0442\u0438\u043b\u044c
PatternDialog.patternname=\u0418\u043c\u044f
PatternDialog.patternname.tooltip=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0438\u043c\u044f \u043e\u0431\u0440\u0430\u0437\u0446\u0430
PatternNewNameProperty=\u041d\u043e\u0432\u044b\u0439 \u0441\u0442\u0438\u043b\u044c
ManagePatternsPopupDialog.DuplicateNameMessage=\u0412\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u0438\u043c\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e. \u0418\u0437\u043c\u0435\u043d\u0438\u0442\u0435 \u0435\u0433\u043e \u0434\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u0438\u044f \u0434\u0438\u0430\u043b\u043e\u0433\u0430.
PatternDialog.childpattern.tooltip=\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u043e\u0431\u0440\u0430\u0437\u0435\u0446 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d \u043a\u043e \u0432\u0441\u0435\u043c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u0430\u043c.
PatternDialog.childpattern=\u0421\u0442\u0438\u043b\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430
ManagePatternsPopupDialog.Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u0437\u0430\u043a\u0440\u044b\u0442\u044c
PatternDialog.icon.tooltip=\u0423 \u0443\u0437\u043b\u0430 \u0431\u0443\u0434\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e \u044d\u0442\u0430 \u0438\u043a\u043e\u043d\u043a\u0430
PatternDialog.icon=\u0418\u043a\u043e\u043d\u043a\u0430
PatternDialog.set_property_text=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c
PatternDialog.set_property_text.tooltip=\u041f\u0443\u0441\u0442\u043e:\u043d\u0435 \u0442\u0440\u043e\u0433\u0430\u0442\u044c; \u041c\u0438\u043d\u0443\u0441=\u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c  (\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435); \u041f\u043b\u044e\u0441=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c
accessories/plugins/AutomaticLayout.properties_StyleDialogTitle=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c
OptionPanel.accessories/plugins/AutomaticLayout.properties_PatternTabName=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442
OptionPanel.separator.accessories/plugins/AutomaticLayout.properties_PatternSeparatorName=\u041e\u0431\u0440\u0430\u0437\u0446\u044b
PatternToString.color=\u0426\u0432\u0435\u0442
PatternToString.backgroundColor=\u0424\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442
#OptionPanel.automaticFormat_level1=\u0424\u043e\u0440\u043c\u0430\u0442 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
#OptionPanel.automaticFormat_level2=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f
PatternToString.NodeFontSize=\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430
OptionPanel.level1=\u0424\u043e\u0440\u043c\u0430\u0442 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
OptionPanel.level2=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u043f\u0435\u0440\u0432\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f
OptionPanel.level3=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u0432\u0442\u043e\u0440\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f
OptionPanel.level4=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u0442\u0440\u0435\u0442\u044c\u0435\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f
OptionPanel.level5=\u0424\u043e\u0440\u043c\u0430\u0442 \u0443\u0437\u043b\u0430 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0445 \u0443\u0440\u043e\u0432\u043d\u0435\u0439
OptionPanel.automaticFormat_level=\u0421\u0442\u0438\u043b\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f
ManagePatternsPopupDialog.duplicate=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u0440\u0430\u0437\u0435\u0446
ManagePatternsPopupDialog.from_nodes=\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0431\u0440\u0430\u0437\u0435\u0446 \u043f\u043e \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u0430\u043c
accessories/plugins/SaveAll.properties_documentation=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0432\u0441\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0435 \u043a\u0430\u0440\u0442\u044b.
accessories/plugins/SaveAll.properties_name=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c &\u0432\u0441\u0435
accessories/plugins/SaveAll.properties_save_all_cancelled=\u041e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u0430.
OptionPanel.loadLastMap=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043a\u0430\u0440\u0442\u0443
OptionPanel.loadLastMap.tooltip=<html>\u041f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u043a\u0430\u0440\u0442\u0443.</html>
use_rich_formatting = \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442
use_plain_text = \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0442\u0435\u043a\u0441\u0442
FreeMind.progress.gettingPreferenceDirectories=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u0430\u043f\u043e\u043a \u0441 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0435\u0439...
FreeMind.progress.gettingPreferences=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438...
FreeMind.progress.updateLookAndFeel=\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0432\u0438\u0434\u0430...
FreeMind.progress.createController=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440\u0430...
FreeMind.progress.settingPreferences=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438...
FreeMind.progress.propageteLookAndFeel=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0432\u0438\u0434\u0430...
FreeMind.progress.createInitialMode=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430
FreeMind.progress.startCreateController=\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440\u0430...
FreeMind.progress.loadMaps=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043a\u0430\u0440\u0442\u044b...
FreeMind.progress.buildScreen=\u0424\u043e\u0440\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d...
FreeMind.progress.endStartup=\u0417\u0430\u043f\u0443\u0441\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d.
OptionPanel.tr=\u0422\u0443\u0440\u0435\u0446\u043a\u0438\u0439
OptionPanel.level=\u0423\u0440\u043e\u0432\u0435\u043d\u044c
map_not_saved=\u042d\u0442\u0430 \u043a\u0430\u0440\u0442\u0430 \u043d\u0435 \u0431\u044b\u043b\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0440\u0430\u043d\u0435\u0435
plugins/TimeManagement.xml_Find=\u041d\u0430\u0439\u0442\u0438
plugins/TimeManagement.xml_Replace=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c
plugins/TimeManagement.xml_Select=\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c
plugins/TimeManagement.xml_Export=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b
plugins/TimeManagement.xml_Replace_All=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435
plugins/TimeManagement.xml_Replace_Selected=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u043d\u043e\u0435
plugins/TimeManagement.xml_Goto=\u041f\u0435\u0440\u0435\u0439\u0442\u0438
plugins/TimeManagement.xml_Cancel=\u041e\u0442\u043c\u0435\u043d\u0430
automatically_save_message=\u041a\u0430\u0440\u0442\u0430 \u0431\u044b\u043b\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 (\u0432 \u0444\u0430\u0439\u043b {0}) ...
plugins/ScriptingEngine.xml_documentation=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0432\u0441\u0435 \u0441\u043a\u0440\u0438\u043f\u0442\u044b (\u0438\u0442\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u043e, \u043d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0443\u0437\u043b\u043e\u0432-\u043b\u0438\u0441\u0442\u044c\u0435\u0432).
plugins/ScriptingEngine.xml_name=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u044c
OptionPanel.keystroke_plugins/ScriptingEngine.keystroke.evaluate=\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u044c
error_applying_template=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u0438 XSLT \u0442\u0440\u0430\u043d\u0441\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.
accessories/plugins/NodeNote_jumpto.properties_documentation=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043e\u0442 \u0443\u0437\u043b\u0430 \u043a \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044e \u0438 \u043d\u0430\u043e\u0431\u043e\u0440\u043e\u0442
accessories/plugins/NodeNote_jumpto.properties_name=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044e \u0443\u0437\u043b\u0430
OptionPanel.max_tooltip_width=\u0420\u0430\u0437\u043c\u0435\u0440 \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438
OptionPanel.max_tooltip_width.tooltip=<html>\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u0440\u0430\u0437\u043c\u0435\u0440 \u043f\u043e\u0434\u0441\u043a\u0430\u0437\u043a\u0438 \u0432 \u043f\u0438\u043a\u0441\u0435\u043b\u044f\u0445.</html>
plugins/NodeList.xml_documentation=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0441\u0435 \u0443\u0437\u043b\u044b \u043a\u0430\u043a \u0441\u043f\u0438\u0441\u043e\u043a \u0441 \u043f\u043e\u0438\u0441\u043a\u043e\u043c \u0438 \u0444\u0438\u043b\u044c\u0442\u0440\u043e\u043c.
OptionPanel.keystroke_accessories/plugins/NodeNote_jumpto.keystroke.alt_N=\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u0443\u0437\u0435\u043b-\u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435
OptionPanel.keystroke_accessories/plugins/NodeNote_hide_show.keystroke.control_shift_less=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c/\u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435
accessories/plugins/ExportWithXSLT_Applet.properties_tji= Include \u0444\u0430\u0439\u043b\u044b \u0434\u043b\u044f Task Juggler
accessories/plugins/ExportWithXSLT_TASKSTJI.properties_documentation=<html>\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u0437\u0430\u0434\u0430\u0447\u0438 \u0438\u0437 \u0443\u0437\u043b\u0430 TASKS \u0434\u043b\u044f \u043c\u043e\u0434\u0443\u043b\u044f Taskjuggler. </html>
accessories/plugins/ExportWithXSLT_TASKSTJI.properties_name=\u0417\u0430\u0434\u0430\u0447\u0438 \u0438\u0437 \u0443\u0437\u043b\u0430 TASKS \u0432 \u0444\u0430\u0439\u043b \u0434\u043b\u044f Taskjuggler...
accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_documentation=<html>\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u0442 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u0438\u0437 \u0443\u0437\u043b\u0430 RESOURCES \u0434\u043b\u044f \u043c\u043e\u0434\u0443\u043b\u044f Taskjuggler. </html>
accessories/plugins/ExportWithXSLT_RESOURCESTJI.properties_name=\u0420\u0435\u0441\u0443\u0440\u0441\u044b \u0438\u0437 \u0443\u0437\u043b\u0430 RESOURCES \u0432 \u0444\u0430\u0439\u043b \u0434\u043b\u044f Taskjuggler...
plugins/NodeList.xml_name=\u041d\u0430\u0439\u0442\u0438 \u0438 \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c...
plugins/TimeManagement.xml_menu_actions=\u041a\u043e\u043c\u0430\u043d\u0434\u044b
plugins/TimeList.xml_Notes=\u041f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f
accessories/plugins/SortNodes.properties_documentation=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b \u043f\u043e \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0443.
accessories/plugins/SortNodes.properties_name=\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c \u0443\u0437\u043b\u044b
OptionPanel.ar=\u0410\u0440\u0430\u0431\u0441\u043a\u0438\u0439
plugins/TimeManagement.xml_WindowTitle_All_Nodes=\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430
plugins/ScriptEditor.xml_documentation=\u041f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0434\u043b\u0438\u043d\u043d\u044b\u0435 \u0441\u043a\u0440\u0438\u043f\u0442\u044b \u0432\u043e FreeMind.
plugins/ScriptEditor.xml_name=\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432...
plugins/ScriptEditor/window.title=\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0432
plugins/ScriptEditor.menu_actions=\u041a\u043e\u043c\u0430\u043d\u0434\u044b
plugins/ScriptEditor.run=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c
plugins/ScriptEditor.exit=\u0412\u044b\u0445\u043e\u0434
plugins/ScriptEditor/window.Result=\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:
simplyhtml.editLabel=\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c
simplyhtml.undoLabel=\u041e\u0442\u043c\u0435\u043d\u0430
simplyhtml.undoTip=\u043e\u0442\u043c\u0435\u043d\u0430
simplyhtml.redoLabel=\u041f\u043e\u0432\u0442\u043e\u0440
simplyhtml.redoTip=\u043f\u043e\u0432\u0442\u043e\u0440
simplyhtml.cutLabel=\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c
simplyhtml.cutTip=\u0432\u044b\u0440\u0435\u0437\u0430\u0442\u044c
simplyhtml.copyLabel=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
simplyhtml.copyTip=\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c
simplyhtml.pasteLabel=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c
simplyhtml.pasteTip=\u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044c
simplyhtml.selectAllLabel=\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0435
simplyhtml.findReplaceLabel=\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430
simplyhtml.findReplaceTip=\u043f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430
simplyhtml.insertTableLabel=\u0422\u0430\u0431\u043b\u0438\u0446\u0430...
simplyhtml.formatLabel=\u0424\u043e\u0440\u043c\u0430\u0442
simplyhtml.fontLabel=\u0428\u0440\u0438\u0444\u0442...
simplyhtml.fontTip=\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0448\u0440\u0438\u0444\u0442...
simplyhtml.clearFormatLabel=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435
simplyhtml.clearFormatTip=\u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435
simplyhtml.fontBoldLabel=\u0416\u0438\u0440\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442
simplyhtml.fontBoldImage=resources/bold.gif
simplyhtml.fontBoldSelectedIcon=resources/bold_on.gif
simplyhtml.fontBoldTip=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c/\u0443\u0431\u0440\u0430\u0442\u044c \u0436\u0438\u0440\u043d\u043e\u0435 \u043d\u0430\u0447\u0435\u0440\u0442\u0430\u043d\u0438\u0435
simplyhtml.fontColorTip=\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430
simplyhtml.fontColorLabel=\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430
simplyhtml.fontColorImage=resources/fontColor.gif
simplyhtml.fontItalicLabel=\u041a\u0443\u0440\u0441\u0438\u0432
simplyhtml.fontItalicImage=resources/italic.gif
simplyhtml.fontItalicSelectedIcon=resources/italic_on.gif
simplyhtml.fontItalicTip=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c/\u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u041a\u0443\u0440\u0441\u0438\u0432
simplyhtml.fontUnderlineLabel=\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435
simplyhtml.fontUnderlineImage=resources/uline.gif
simplyhtml.fontUnderlineTip=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c/\u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u043e\u0434\u0447\u0435\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u0435
simplyhtml.formatTableLabel=\u0422\u0430\u0431\u043b\u0438\u0446\u0430...
simplyhtml.formatTableTip=\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443
simplyhtml.toggleBulletsLabel=\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a
simplyhtml.toggleBulletsTip=\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a
simplyhtml.toggleNumbersLabel=\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044e
simplyhtml.toggleNumbersTip=\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044e
simplyhtml.formatListLabel=\u0421\u043f\u0438\u0441\u043a\u0438...
simplyhtml.formatListTip=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442 \u0441\u043f\u0438\u0441\u043a\u0430
simplyhtml.formatParaLabel=\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444...
simplyhtml.formatParaTip=\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u0433\u0440\u0430\u0444
simplyhtml.paraAlignLeftLabel=\u0421\u043b\u0435\u0432\u0430
simplyhtml.paraAlignLeftTip=\u041f\u043e \u043b\u0435\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e
simplyhtml.paraAlignCenterLabel=\u0426\u0435\u043d\u0442\u0440
simplyhtml.paraAlignCenterTip=\u0420\u0430\u0437\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432 \u0446\u0435\u043d\u0442\u0440\u0435
simplyhtml.paraAlignRightLabel=\u0421\u043f\u0440\u0430\u0432\u0430
simplyhtml.paraAlignRightTip=\u041f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u043a\u0440\u0430\u044e
simplyhtml.tableLabel=\u0422\u0430\u0431\u043b\u0438\u0446\u0430
simplyhtml.nextTableCellLabel=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u043a\u043b\u0435\u0442\u043a\u0430
simplyhtml.prevTableCellLabel=\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u043a\u043b\u0435\u0442\u043a\u0430
simplyhtml.insertTableRowLabel=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443
simplyhtml.insertTableColLabel=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446
simplyhtml.appendTableRowLabel=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443
simplyhtml.appendTableColLabel=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446
simplyhtml.deleteTableRowLabel=\u0423\u0431\u0440\u0430\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u0443
simplyhtml.deleteTableColLabel=\u0423\u0431\u0440\u0430\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446

# help menu items
simplyhtml.helpLabel=\u041f\u043e\u043c\u043e\u0449\u044c
simplyhtml.aboutLabel=\u041e SimplyHTML...

# About frame
simplyhtml.aboutFrameTitle=\u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435...

# Font Dialog
simplyhtml.fontDialogTitle=\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0448\u0440\u0438\u0444\u0442

# Font panel
simplyhtml.uLineLabel=\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u043e
simplyhtml.strikeLabel=\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u043e
simplyhtml.previewLabel=\u041f&\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c
simplyhtml.previewText=\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0442\u0435\u043a\u0441\u0442
simplyhtml.familyLabel=\u0412\u0438\u0434 \u0448\u0440\u0438\u0444\u0442\u0430
simplyhtml.sizeLabel=\u0420\u0430\u0437\u043c\u0435\u0440
simplyhtml.plainName=\u041e\u0431\u044b\u0447\u043d\u044b\u0439
simplyhtml.boldName=\u0416\u0438\u0440\u043d\u044b\u0439
simplyhtml.italicName=\u041a\u0443\u0440\u0441\u0438\u0432
simplyhtml.boldItalicName=\u0416\u0438\u0440\u043d\u044b\u0439 \u043a\u0443\u0440\u0441\u0438\u0432
simplyhtml.styleLabel=\u0421\u0442\u0438\u043b\u044c
simplyhtml.effectLabel=\u042d\u0444\u0444\u0435\u043a\u0442
simplyhtml.colorLabel=\u0426\u0432\u0435\u0442
simplyhtml.foregroundLabel=\u0422\u0435\u043a\u0441\u0442:
simplyhtml.backgroundLabel=\u0424\u043e\u043d:
simplyhtml.noLineLabel=\u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442

# Paragraph style panel
simplyhtml.textIndentLabel=\u041e\u0442\u0441\u0442\u0443\u043f:
simplyhtml.alignLabel=\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0433\u043e\u0440.:
simplyhtml.alignLeft=\u0441\u043b\u0435\u0432\u0430
simplyhtml.alignCenter=\u043f\u043e \u0446\u0435\u043d\u0442\u0440\u0443
simplyhtml.alignRight=\u0441\u043f\u0440\u0430\u0432\u0430
simplyhtml.valignLabel=\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0432\u0435\u0440\u0442.:
simplyhtml.valignTop=\u0441\u0432\u0435\u0440\u0445\u0443
simplyhtml.valignMiddle=\u0432 \u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0435
simplyhtml.valignBottom=\u0441\u043d\u0438\u0437\u0443
simplyhtml.valignBaseline=\u043f\u043e \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u044e
simplyhtml.marginLabel=\u0421\u043d\u0430\u0440\u0443\u0436\u0438
simplyhtml.paddingLabel=\u0412\u043d\u0443\u0442\u0440\u0438
simplyhtml.tableDialogTitle=\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0430\u0431\u043b\u0438\u0446\u0443
simplyhtml.tablePanelTitle=\u0442\u0430\u0431\u043b\u0438\u0446\u0430
simplyhtml.cellPanelTitle=\u043a\u043b\u0435\u0442\u043a\u0430
simplyhtml.tableWidthLabel=\u0428\u0438\u0440\u0438\u043d\u0430:
simplyhtml.tableBgColLabel=\u0424\u043e\u043d\u043e\u0432\u044b\u0439 \u0446\u0432\u0435\u0442:
simplyhtml.cellMarginTabLabel=\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e
simplyhtml.cellBorderTabLabel=\u041b\u0438\u043d\u0438\u0438
simplyhtml.borderWidthLabel=\u0428\u0438\u0440\u0438\u043d\u0430
simplyhtml.borderColorLabel=\u0426\u0432\u0435\u0442:
simplyhtml.thisCellRangeLabel=\u043a\u043b\u0435\u0442\u043a\u0435
simplyhtml.thisColRangeLabel=\u0441\u0442\u043e\u043b\u0431\u0446\u0443
simplyhtml.thisRowRangeLabel=\u0441\u0442\u0440\u043e\u043a\u0435
simplyhtml.allCellsRangeLabel=\u0432\u0441\u0435\u043c \u043a\u043b\u0435\u0442\u043a\u0430\u043c
simplyhtml.applyCellAttrLabel=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u043a
simplyhtml.cellGenTabLabel=\u041f\u0440\u043e\u0447\u0435\u0435
simplyhtml.paraStyleDialogTitle=\u0421\u0442\u0438\u043b\u0438
simplyhtml.fontTabLabel=\u0428\u0440\u0438\u0444\u0442
simplyhtml.paraTabLabel=\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444
simplyhtml.cTagNamePara=\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444
simplyhtml.cTagNameHead1=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1
simplyhtml.cTagNameHead2=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2
simplyhtml.cTagNameHead3=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3
simplyhtml.cTagNameHead4=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4
simplyhtml.cTagNameHead5=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5
simplyhtml.cTagNameHead6=\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6
simplyhtml.cTagNameLink=\u0421\u0441\u044b\u043b\u043a\u0430
simplyhtml.cTagNameUL=\u041e\u0431\u044b\u0447\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a
simplyhtml.cTagNameOL=\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a
simplyhtml.listDialogTitle=\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043f\u0438\u0441\u043a\u0430
simplyhtml.listTypeLabel=\u0422\u0438\u043f:
simplyhtml.listPositionLabel=\u041f\u043e\u0437\u0438\u0446\u0438\u044f:
simplyhtml.listIndentTitle=\u0421\u043c\u0435\u0448\u0435\u043d\u0438\u0435:
simplyhtml.listTypeNone=\u041e\u0431\u044b\u0447\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442
simplyhtml.listTypeDecimal=1.,2.,3.,4.
simplyhtml.listTypeLowerRoman=i.,ii.,iii.,iv.
simplyhtml.listTypeUpperRoman=I.,II.,III.,IV.
simplyhtml.listTypeLowerAlpha=a.,b.,c.,d.
simplyhtml.listTypeUpperAlpha=A.,B.,C.,D.
simplyhtml.listTypeDisc=\u0414\u0438\u0441\u043a
simplyhtml.listTypeCircle=\u041a\u0440\u0443\u0433
simplyhtml.listTypeSquare=\u041a\u0432\u0430\u0434\u0440\u0430\u0442
simplyhtml.listPosInside=\u0432\u043d\u0443\u0442\u0440\u0438
simplyhtml.listPosOutside=\u0441\u043d\u0430\u0440\u0443\u0436\u0438
simplyhtml.findReplaceDialogTitle=\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430
simplyhtml.findNext=\u041d\u0430\u0439\u0442\u0438 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439...
simplyhtml.searchFromStart=\u0418\u0441\u043a\u0430\u0442\u044c \u0441\u043d\u0430\u0447\u0430\u043b\u0430
simplyhtml.searchDown=\u0418\u0441\u043a\u0430\u0442\u044c \u0432\u043d\u0438\u0437
simplyhtml.wholeWordsOnly=\u0422\u043e\u043b\u044c\u043a\u043e \u0441\u043b\u043e\u0432\u0430
simplyhtml.searchUp=\u0418\u0441\u043a\u0430\u0442\u044c \u0432\u0432\u0435\u0440\u0445
simplyhtml.matchCase=\u0410!=\u0430
simplyhtml.replaceWith=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430:
simplyhtml.textToFind=\u0418\u0441\u043a\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442:
simplyhtml.replace=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c...
simplyhtml.noMoreOccurrencesFound=(\u0431\u043e\u043b\u044c\u0448\u0435) \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e
simplyhtml.allOccurrencesReplaced=\u0412\u0441\u0435 \u0437\u0430\u043c\u0435\u043d\u0435\u043d\u043e
simplyhtml.replaceThisQuery=\u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u0439\u0434\u0435\u043d\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442
simplyhtml.replaceYes=\u0414\u0430
simplyhtml.replaceNo=\u041d\u0435\u0442
simplyhtml.replaceAll=\u0412\u0441\u0435
simplyhtml.replaceDone=\u0413\u043e\u0442\u043e\u0432\u043e
simplyhtml.unableToUndoError=\u041e\u0442\u043c\u0435\u043d\u0430 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430:
simplyhtml.unableToRedoError=\u041f\u043e\u0432\u0442\u043e\u0440 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d:
simplyhtml.unableToOpenFileError=\u0424\u0430\u0439\u043b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d

# Miscellaneous text
simplyhtml.imageFileDesc=\u0424\u0430\u0439\u043b \u0441 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043c
simplyhtml.defaultDocName=\u0411\u0435\u0437\u044b\u043c\u044f\u043d\u043d\u044b\u0439
simplyhtml.cancelBtnName=\u041e\u0442\u043c\u0435\u043d\u0430
simplyhtml.closeBtnName=\u0417\u0430\u043a\u0440\u044b\u0442\u044c
simplyhtml.okBtnName=OK
simplyhtml.leftLabel=\u043b\u0435\u0432\u043e:
simplyhtml.rightLabel=\u043f\u0440\u0430\u0432\u043e:
simplyhtml.topLabel=\u0432\u0435\u0440\u0445:
simplyhtml.bottomLabel=\u043d\u0438\u0437:
simplyhtml.insertTableTitle=\u0412\u0441\u0442\u0430\u0432\u0438\u0442 \u0442\u0430\u0431\u043b\u0438\u0446\u0443
simplyhtml.insertTableMsg=\u0421\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0442\u043e\u043b\u0431\u0446\u043e\u0432?
simplyhtml.close=\u0417\u0430\u043a\u0440\u044b\u0442\u044c
simplyhtml.standardStyleName=standard
simplyhtml.styleNameInputTitle=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u0442\u0438\u043b\u044c
simplyhtml.styleNameInputText=\u0418\u043c\u044f \u0441\u0442\u0438\u043b\u044f?
simplyhtml.newStyleDefaultName=\u043d\u043e\u0432\u044b\u0439 \u0441\u0442\u0438\u043b\u044c
simplyhtml.docTitleTitle=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430
simplyhtml.docTitleQuery=\u041d\u043e\u0432\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:
simplyhtml.layoutTabTitle=\u0422\u0435\u043a\u0441\u0442
simplyhtml.htmlTabTitle=HTML \u041a\u043e\u0434

#fc, 14.2.07:
ScriptEditorPanel.changed_cancel=\u0421\u043a\u0440\u0438\u043f\u0442 \u0431\u044b\u043b \u0438\u0437\u043c\u0435\u043d\u0435\u043d. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u043e\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439?


# fc, 2.3.07:
OptionPanel.separator.mouse_wheel=\u041a\u043e\u043b\u0435\u0441\u043e \u043c\u044b\u0448\u0438
OptionPanel.wheel_velocity=\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c
OptionPanel.wheel_velocity.tooltip=\u0411\u043e\u043b\u044c\u0448\u0435\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0435\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u044f \u043a\u0430\u0440\u0442\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u043b\u0435\u0441\u0438\u043a\u0430.


# fc, 15.5.07:
accessories/plugins/NodeHistoryBack.properties_name=\u041d\u0430\u0437\u0430\u0434
accessories/plugins/NodeHistoryBack.properties_documentation=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0441\u044f \u043a \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u043c\u0443 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0443\u0437\u043b\u0443
accessories/plugins/NodeHistoryForward.properties_name=\u0412\u043f\u0435\u0440\u0435\u0434
accessories/plugins/NodeHistoryForward.properties_documentation=\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c\u0441\u044f \u043a \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u043c\u0443 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0443\u0437\u043b\u0443

# fc, 25.5.07:
OptionPanel.use_tabbed_pane.tooltip=\u0415\u0441\u043b\u0438 \u043e\u043f\u0446\u0438\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430, \u043a\u0430\u0440\u0442\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u0432\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0430\u0445 (\u043a\u0430\u043a \u0432 FireFox).
OptionPanel.use_tabbed_pane=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u043a\u043b\u0430\u0434\u043a\u0438

# fc, 11.6.07:
accessories/plugins/ExportWithTWiki.properties_name=\u041a\u0430\u043a TWiki...
accessories/plugins/ExportWithTWiki.properties_documentation=\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u0440\u0442\u0443 \u043a\u0430\u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 TWiki.
accessories/plugins/ExportWithTWiki.properties=\u0424\u0430\u0439\u043b TWiki (*.twi)

# fc, 31.7.07
really_remove_node=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0437\u0435\u043b(\u0443\u0437\u043b\u044b)?
confirmation=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435
OptionalDontShowMeAgainDialog.dontShowAgain=&\u0411\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c.
OptionalDontShowMeAgainDialog.rememberMyDescision=&\u0417\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043c\u043e\u0439 \u0432\u044b\u0431\u043e\u0440.
OptionalDontShowMeAgainDialog.cancel=&\u041d\u0435\u0442
OptionalDontShowMeAgainDialog.ok=&\u0414\u0430
OptionPanel.separator.resources_notifications=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
OptionPanel.delete_nodes_without_question=\u0423\u0434\u0430\u043b\u044f\u0442\u044c \u0443\u0437\u043b\u044b \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
OptionPanel.delete_nodes_without_question.tooltip=\u0415\u0441\u043b\u0438 \u044d\u0442\u043e\u0442 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0443\u0437\u043b\u044b \u0443\u0434\u0430\u043b\u044f\u044e\u0442\u0441\u044f \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043f\u043e\u0442\u0435\u0440\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0435\u0441\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u043d\u0435\u043f\u0440\u0435\u0434\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u043e.

edit.decision=\u0420\u0435\u0434\u0430\u043a\u0442\u043e\u0440 HTML
edit.edit_rich_text=\u0425\u043e\u0442\u0438\u0442\u0435 \u043b\u0438 \u0432\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439 \u0438\u043b\u0438 \u043d\u0430\u043a\u043b\u043e\u043d\u043d\u044b\u0439 \u0448\u0440\u0438\u0444\u0442\u044b?
#OptionPanel.remind_use_rich_text_in_new_long_nodes=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0443\u0437\u043b\u043e\u0432 \u0441 \u0434\u043b\u0438\u043d\u043d\u044b\u043c \u0442\u0435\u043a\u0441\u0442\u043e\u043c
OptionPanel.remind_type_of_new_nodes.tooltip=<html>"\u0421\u043f\u0440\u043e\u0441\u0438\u0442\u044c" \u0437\u0430\u0434\u0430\u0441\u0442 \u0432\u043e\u043f\u0440\u043e\u0441 (\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0435\u0441\u043b\u0438 \u0441\u043e\u043c\u043d\u0435\u0432\u0430\u0435\u0442\u0435\u0441\u044c).<br>"\u0414\u0430" \u043e\u0442\u043e\u0431\u0440\u0430\u0437\u0438\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430.<br>"\u041d\u0435\u0442" \u043e\u0442\u043e\u0431\u0440\u0430\u0437\u0438\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 \u043e\u0431\u044b\u0447\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0430.</html>
OptionPanel.ask=\u0421\u043f\u0440\u043e\u0441\u0438\u0442\u044c

OptionPanel.standardselectednodetextcolor.tooltip=

# fc, 4.9.07:
really_execute_script=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442\u044b, \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0435 \u0432 \u044d\u0442\u0443 \u043a\u0430\u0440\u0442\u0443? \u041e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043d\u0435\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0433\u043e \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430.
OptionPanel.resources_execute_scripts_without_asking=\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442\u044b \u0431\u0435\u0437 \u0437\u0430\u043f\u0440\u043e\u0441\u0430
OptionPanel.execute_scripts_without_asking.tooltip=<html>\u0421\u043a\u0440\u0438\u043f\u0442\u044b \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0435 \u0432 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435 FreeMind \u0432 \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0435 \u043c\u043e\u0433\u0443\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043b\u044e\u0431\u0443\u044e \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e \u043d\u0430 \u0432\u0430\u0448\u0435\u043c \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0435r. <br>\u0422\u0430\u043a \u0447\u0442\u043e \u0432\u0430\u043d \u043d\u0435 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442\u044b, \u0432 \u0447\u044c\u0435\u0439 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0432\u044b \u043d\u0435 \u0443\u0432\u0435\u0440\u0435\u043d\u043d\u044b.</html>

#fc, 13.9.07:
PatternToString.EdgeStyle=\u0421\u0442\u0438\u043b\u044c \u0440\u0435\u0431\u0440\u0430
PatternToString.EdgeColor=\u0426\u0432\u0435\u0442 \u0440\u0435\u0431\u0440\u0430
PatternToString.EdgeWidth=\u0422\u043e\u043b\u0449\u0438\u043d\u0430 \u0440\u0435\u0431\u0440\u0430
PatternToString.FontBold=\u0416\u0438\u0440\u043d\u044b\u0439
PatternToString.FontItalic=\u041d\u0430\u043a\u043b\u043e\u043d\u043d\u044b\u0439
PatternToString.FontName=\u0418\u043c\u044f \u0448\u0440\u0438\u0444\u0442\u0430
PatternToString.Icon=\u041f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u0430
PatternToString.Child=\u0421\u0442\u0438\u043b\u044c \u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430
ManagePatternsPopupDialog.Actions=\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f

#Dimitry 19.10.07:
node_location_help=\u041f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u044f\u0435\u0442 \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0443\u0437\u043b\u0430, <ctrl>+\u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u044f\u0435\u0442 \u0440\u0430\u0441\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u0443\u0437\u043b\u0430\u043c\u0438, \u0434\u0432\u043e\u0439\u043d\u043e\u0439 \u0449\u0435\u043b\u0447\u043e\u043a \u0438 <ctrl>+\u0434\u0432\u043e\u0439\u043d\u043e\u0439 \u0449\u0435\u043b\u0447\u043e\u043a \u0441\u0431\u0440\u0430\u0441\u044b\u0432\u0430\u044e\u0442 \u0438\u0445.

#fc, 19.10.07:
really_convert_to_current_version=<html>\u042d\u0442\u0430 \u043a\u0430\u0440\u0442\u0430 \u0431\u044b\u043b\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0431\u043e\u043b\u0435\u0435 \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 FreeMind. <br>\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043a \u043d\u043e\u0432\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 (\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f)? <br>(\u0418\u043d\u0430\u0447\u0435 \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0435\u0441\u0442\u044c \u0431\u0435\u0437\u043e \u0432\u0441\u044f\u043a\u043e\u0439 \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0438)</html>
OptionPanel.resources_convert_to_current_version=<html>\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u043a\u0430\u0440\u0442\u044b \u0441\u0442\u0430\u0440\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439 FreeMind <br>\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 \u044d\u0442\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438</html>
OptionPanel.resources_convert_to_current_version.tooltip=<html>\u0422\u043e\u043b\u044c\u043a\u043e \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u0438\u0435 \u043a\u0430\u0440\u0442\u044b \u0438\u043c\u0435\u0435\u0442 \u0441\u043c\u044b\u0441\u043b \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0431\u0435\u0437 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0444\u043e\u0440\u043c\u0430\u0442\u0430<br> (\u043d\u0430 \u0443\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u0438\u0435 \u044d\u043a\u0441\u043f\u0435\u0440\u0442\u043e\u0432).</html>

#Dimitry 25.10.07
OptionPanel.separator.root_node_appearance=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
OptionPanel.use_common_out_point_for_root_node=\u0412\u0435\u0442\u0432\u0438 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442\u0441\u044f \u043e\u0442 \u043e\u0434\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438 \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430
OptionPanel.use_common_out_point_for_root_node.tooltip=<html>\u0412\u0435\u0442\u0432\u0438 \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0442\u0441\u044f \u043e\u0442 \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0442\u043e\u0447\u0435\u043a, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043d\u0430 \u043b\u0435\u0432\u043e\u043c \u0438\u043b\u0438 \u043f\u0440\u0430\u0432\u043e\u043c \u043a\u0440\u0430\u044e \u044d\u043b\u043b\u0438\u043f\u0441\u0430, \u043e\u0431\u0440\u0430\u043c\u043b\u044f\u044e\u0449\u0435\u0433\u043e \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0439 \u0443\u0437\u0435\u043b</html>

#fc, 9.11.07:
plugins/ScriptEditor.cancel=&\u041e\u0442\u043c\u0435\u043d\u0430
ManagePatternsPopupDialog.apply=\u041f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c
PatternDialog.setscript=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c
PatternDialog.setscript.tooltip=\u0421\u043a\u0440\u0438\u043f\u0442 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u043d \u043a \u0441\u0442\u0438\u043b\u044e.
PatternDialog.script=\u0421\u043a\u0440\u0438\u043f\u0442
PatternDialog.script.tooltip=\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u043a\u043e\u0434 Groovy-\u0441\u043a\u0440\u0438\u043f\u0442\u0430.

#fc, 12.11.07:
OptionPanel.keystroke_accessories/plugins/ManagePatterns_manage_patterns_dialog=\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0442\u0438\u043b\u044f\u043c\u0438

#fc, 4.1.2008 changed:
toggle_menubar=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c/\u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u043c\u0435\u043d\u044e
toggle_toolbar=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c/\u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u0432\u0435\u0440\u0445\u043d\u044e\u044e \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432
toggle_left_toolbar=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c/\u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u043f\u0430\u043d\u0435\u043b\u044c \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u0441 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u043c\u0438
accessories/plugins/NodeNote_hide_show.properties_name=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c/\u0441\u043f\u0440\u044f\u0442\u0430\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u0435
selection_as_rectangle=\u041e\u0431\u0440\u0430\u043c\u043b\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u0443\u0437\u043b\u044b

# fc, 8.1.2008
really_cut_node=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0437\u0435\u043b(\u0443\u0437\u043b\u044b)?
OptionPanel.resources_cut_nodes_without_question=\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c \u0443\u0437\u043b\u044b \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
OptionPanel.cut_nodes_without_question.tooltip=\u0415\u0441\u043b\u0438 \u044d\u0442\u043e\u0442 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0443\u0437\u043b\u044b \u0432\u044b\u0440\u0435\u0437\u0430\u044e\u0442\u0441\u044f \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043f\u043e\u0442\u0435\u0440\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0435\u0441\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u043d\u0435\u043f\u0440\u0435\u0434\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u043e.

# fc, 9.1.2008:
follow_graphical_link=\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043a:

#fc 10.1.2008: changed:
accessories/plugins/NodeNote_hide_show.properties_documentation=\u042d\u0442\u043e \u0433\u043e\u0440\u044f\u0447\u0430\u044f \u043a\u043b\u0430\u0432\u0438\u0448\u0430 \u0434\u043b\u044f \u0441\u0442\u0440\u0435\u043b\u043e\u0447\u0435\u043a \u043d\u0430 \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0449\u0435\u0439 \u043b\u0438\u043d\u0438\u0438.
#accessories/plugins/NodeNote_hide_show.properties_documentation=Lets the note window appear resp. disappear.

#fc, 16.1.2008
plugins/ScriptEditor.new_script=\u041d\u043e\u0432\u044b\u0439 \u0441\u043a\u0440\u0438\u043f\u0442

#fc, 20.2.2008:
OptionPanel.separator.save=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435
OptionPanel.save_only_intrisically_needed_ids=\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0443\u0437\u043b\u043e\u0432
OptionPanel.save_only_intrisically_needed_ids.tooltip=\u041a\u043e\u0433\u0434\u0430 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u043d\u0435\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0432 \u043a\u0430\u0440\u0442\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0443\u0437\u043b\u043e\u0432 \u0432 \u0444\u0430\u0439\u043b \u043d\u0435 \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0432\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u044e\u044e \u043a\u0430\u0440\u0442\u0443 \u0441 \u0442\u0435\u043c \u0443\u0437\u043b\u043e\u043c \u0432 \u044d\u0442\u043e\u0439 \u043a\u0430\u0440\u0442\u0435, \u0443 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u0430.


# fc, 10.3.2008:
OptionPanel.plugins/scripting/tab_name=\u0421\u043a\u0440\u0438\u043f\u0442\u044b
OptionPanel.separator.plugins/scripting/separatorPropertyName=\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f
OptionPanel.resources_execute_scripts_without_file_restriction=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0441 \u0444\u0430\u0439\u043b\u0430\u043c\u0438 (\u041d\u0415 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f)
OptionPanel.resources_execute_scripts_without_file_restriction.tooltip=<html><body>\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0435\u043c\u0443 Groovy-\u0441\u043a\u0440\u0438\u043f\u0442\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0441 \u0444\u0430\u0439\u043b\u0430\u043c\u0438 (\u043e\u0442\u043a\u0440\u044b\u0442\u044c, \u0437\u0430\u043a\u0440\u044b\u0442\u044c, \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c, \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c, \u0443\u0434\u0430\u043b\u0438\u0442\u044c(!)),<br>\u0432\u0430\u043c \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e. <br>\u041e\u0434\u043d\u0430\u043a\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e \u043e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e, \u0442\u0430\u043a \u043a\u0430\u043a \u0437\u043b\u043e\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u044b\u0435 \u0441\u043a\u0440\u0438\u043f\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0432\u0440\u0435\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0435\u043c\u0443 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0443!</body></html>
OptionPanel.resources_execute_scripts_without_network_restriction=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u0441 \u0441\u0435\u0442\u044c\u044e (\u041d\u0415 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f)
OptionPanel.resources_execute_scripts_without_network_restriction.tooltip=<html><body>\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0438\u043c Groovy-\u0441\u043a\u0440\u0438\u043f\u0442\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0441 \u0441\u0435\u0442\u044c\u044e,<br>\u0432\u0430\u043c \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e. <br>\u041e\u0434\u043d\u0430\u043a\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e \u0441 \u043e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e, \u0442\u0430\u043a \u043a\u0430\u043a \u0437\u043b\u043e\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u044b\u0435 \u0441\u043a\u0440\u0438\u043f\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u044c \u0432\u0430\u0448\u0438 \u0441\u0435\u043a\u0440\u0435\u0442\u044b!</body></html>
OptionPanel.resources_execute_scripts_without_exec_restriction=\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b (\u041d\u0415 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f)
OptionPanel.resources_execute_scripts_without_exec_restriction.tooltip=<html><body>\u0415\u0441\u043b\u0438 \u0432\u0430\u0448\u0438\u043c Groovy-\u0441\u043a\u0440\u0438\u043f\u0442\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0431\u0440\u0430\u0443\u0437\u0435\u0440) \u0431\u0435\u0437 \u0432\u0430\u0448\u0435\u0433\u043e \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f(!),<br>\u0432\u0430\u043c \u043d\u0430\u0434\u043e \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u0442\u0443 \u043e\u043f\u0446\u0438\u044e. <br>\u041e\u0434\u043d\u0430\u043a\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u044d\u0442\u043e \u0441 \u043e\u0441\u0442\u043e\u0440\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e, \u0442\u0430\u043a \u043a\u0430\u043a \u0437\u043b\u043e\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u044b\u0435 \u0441\u043a\u0440\u0438\u043f\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0432\u0440\u0435\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0435\u043c\u0443 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0443!</body></html>
#\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c, \u043a\u0430\u043a \u044d\u0442\u043e \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0438\u0442\u044c
#TODO**************** \u041f\u0435\u0440\u0435\u0432\u0435\u0441\u0442\u0438 setFactory, Link
plugins/ScriptEditor.FORBIDDEN_ACTION=FreeMind \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442 Groovy-\u0441\u043a\u0440\u0438\u043f\u0442\u044b \u0432 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435. \u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 {0,\u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435,0#\u0424\u0430\u0439\u043b|1#\u0421\u0435\u0442\u044c|2#\u0417\u0430\u043f\u0443\u0441\u043a} \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u044b: {1,\u0432\u044b\u0431\u043e\u0440,0#\u041f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u044c|1#\u0421\u043e\u0435\u0434\u0438\u043d\u044f\u0442\u044c|2#\u0421\u043b\u0443\u0448\u0430\u0442\u044c|3#\u0428\u0438\u0440\u043e\u043a\u043e\u0432\u0435\u0449\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439|4#SetFactory|5#\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c|6#\u0421\u0441\u044b\u043b\u043a\u0430|7#\u0423\u0434\u0430\u043b\u044f\u0442\u044c|8#\u0427\u0442\u0435\u043d\u0438\u0435|9#\u0417\u0430\u043f\u0438\u0441\u044c}.


# changed, fc, 11.3.2008: 
plugins/ScriptEditor.cancel=\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0438 \u0432\u044b\u0439\u0442\u0438
plugins/ScriptEditor.exit=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u0432\u044b\u0439\u0442\u0438

# changed, fc, 26.3.2008:
plugins/TimeManagement.xml_closeButton=\u0417\u0430\u043a\u0440\u044b\u0442\u044c

# changed, fc, 7.4.2008:
PatternDialog.nodebackgroundcolor.tooltip=\u0426\u0432\u0435\u0442 \u0444\u043e\u043d\u0430 \u043d\u0435\u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430.
PatternDialog.nodecolor.tooltip=\u0426\u0432\u0435\u0442 \u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0435\u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0437\u043b\u0430.
PatternDialog.nodestyle.tooltip=<html>\u0421\u0442\u0438\u043b\u044c \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 \u0432\u0438\u0434 \u0443\u0437\u043b\u0430. <br>\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f:<br><table border="1"><tr><td>\u043a\u0440\u0438\u0432\u0430\u044f: </td><td> \u0431\u0435\u0437 \u0433\u0440\u0430\u043d\u0438\u0446\u044b,</td></tr><tr><td>\u041f\u0443\u0437\u044b\u0440\u044c: </td><td> \u0443\u0437\u0435\u043b \u043e\u0431\u0440\u0430\u043c\u043b\u0435\u043d \u043f\u0440\u044f\u043c\u043e\u0443\u0433\u043e\u043b\u044c\u043d\u0438\u043a\u043e\u043c,</td></tr><tr><td>\u041a\u0430\u043a \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c: </td><td> \u0441\u0442\u0438\u043b\u044c \u043d\u0430\u0441\u043b\u0435\u0434\u0443\u0435\u0442\u0441\u044f \u043e\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0437\u043b\u0430 <br>\u0438\u043b\u0438 \u0441\u0442\u0438\u043b\u044c \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0434\u043b\u044f \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u0433\u043e \u0443\u0437\u043b\u0430,</td></tr><tr><td>\u041a\u043e\u043c\u0431\u0438\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439: </td><td> \u041f\u0443\u0437\u044b\u0440\u044c, \u043a\u043e\u0433\u0434\u0430 \u0443\u0437\u0435\u043b \u0441\u0432\u0435\u0440\u043d\u0443\u0442, \u0438\u043d\u0430\u0447\u0435 \u043a\u0440\u0438\u0432\u0430\u044f.</td></tr></table></html>
PatternDialog.nodetext.tooltip=\u0417\u0434\u0435\u0441\u044c \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0434\u0430\u0442\u044c \u0442\u0435\u043a\u0441\u0442 \u0443\u0437\u043b\u0430. \u0421\u0442\u0430\u0440\u044b\u0439 \u0442\u0435\u043a\u0441\u0442 \u043e\u0442\u0431\u0440\u0430\u0441\u044b\u0432\u0430\u0435\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u0439 \u0448\u0430\u0431\u043b\u043e\u043d.
PatternDialog.nodefontname=\u0428\u0440\u0438\u0444\u0442 \u0443\u0437\u043b\u0430
PatternDialog.nodefontsize=\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0443\u0437\u043b\u0430
PatternDialog.nodefontname.tooltip=
PatternDialog.nodefontsize.tooltip=
PatternDialog.nodefontbold.tooltip=
PatternDialog.nodefontitalic.tooltip=

# new, fc, 8.4.2008:
PatternDialog.separator.ScriptingControl=\u0421\u043a\u0440\u0438\u043f\u0442\u044b

# new, fc, 10.4.2008:
OptionPanel.resources_don_t_show_note_icons=\u041d\u0435 \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f

#new, fc, 11.4.2008:
FreeMind=\u0414\u043e\u043c\u0430\u0448\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b FreeMind

# new, fc, 12.4.2008:
really_remove_notes=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f?
OptionPanel.resources_remove_notes_without_question=\u0423\u0434\u0430\u043b\u044f\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f \u0431\u0435\u0437 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f
OptionPanel.remove_notes_without_question.tooltip=\u0415\u0441\u043b\u0438 \u044d\u0442\u043e\u0442 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u043f\u0440\u0438\u043c\u0435\u0447\u0430\u043d\u0438\u044f \u043a \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u043c \u0443\u0437\u043b\u0430\u043c \u0443\u0434\u0430\u043b\u044f\u044e\u0442\u0441\u044f \u0431\u0435\u0437 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f.  \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043f\u043e\u0442\u0435\u0440\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0435\u0441\u043b\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \u043d\u0435\u043f\u0440\u0435\u0434\u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043d\u043e.
OptionPanel.resources_save_folding_state=\u0412\u0441\u0435\u0433\u0434\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0438 \u0443\u0437\u043b\u043e\u0432 (\u0441\u0432\u0435\u0440\u043d\u0443\u0442\u044b\u0435/\u0440\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044b\u0435) \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0441\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u0438 \u0443\u0437\u043b\u043e\u0432 
OptionPanel.resources_save_folding_state.tooltip=\u0415\u0441\u043b\u0438 \u043e\u043f\u0446\u0438\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430, \u043a\u0430\u0436\u0434\u0430\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u043f\u043e \u0441\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u044e/\u0440\u0430\u0437\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u044e \u0443\u0437\u043b\u0430 \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u043a\u0430\u0440\u0442\u0430 \u043f\u043e\u043c\u0435\u0447\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043d\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u043d\u0430\u044f \u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u0435\u0442 \u0432\u0430\u043c \u044d\u0442\u0443 \u043a\u0430\u0440\u0442\u0443 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c.
   

#2008.04.12 in russian translation
OptionPanel.separator.selection_colors=\u0426\u0432\u0435\u0442 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u044f
OptionPanel.keystroke_accessories/plugins/RemoveNote.properties.properties_key=\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0437\u0430\u043c\u0435\u0442\u043a\u0443
OptionPanel.separator.icons=\u041f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0432 "\u0412\u044b\u0431\u043e\u0440 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b..."
OptionPanel.unfold_on_paste=\u0420\u0430\u0437\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0442\u044c \u0443\u0437\u0435\u043b \u043f\u0440\u0438 \u0432\u0441\u0442\u0430\u0432\u043a\u0435
OptionPanel.unfold_on_paste.tooltip=\u0420\u0430\u0437\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u0442\u044c \u0443\u0437\u0435\u043b \u043f\u0440\u0438 \u0432\u0441\u0442\u0430\u0432\u043a\u0435 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u0438

# new, fc, 17.4.2008:
plugins/ScriptEditor.sign=\u041f\u043e\u0434\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u043a\u0440\u0438\u043f\u0442...

# new, fc, 18.4.2008:
OptionPanel.resources_script_user_key_name_for_signing=\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c \u043a\u043b\u044e\u0447\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0434\u043b\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u0438
OptionPanel.resources_script_user_key_name_for_signing.tooltip=<html>\u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442\u0435 \u043f\u043e\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0438 \u0441\u043a\u0440\u0438\u043f\u0442\u044b, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044c \u043f\u0441\u0435\u0432\u0434\u043e\u043d\u0438\u043c \u043a\u043b\u044e\u0447\u0430. <br>\u041a\u043b\u044e\u0447 \u0431\u0435\u0440\u0435\u0442\u0441\u044f \u0438\u0437 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e. <br>\u041f\u0430\u0440\u043e\u043b\u044c \u0441\u0435\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u043a\u043b\u044e\u0447\u0430 \u0434\u043e\u043b\u0436\u0435\u043d \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0442\u044c \u0441 \u043f\u0430\u0440\u043e\u043b\u0435\u043c \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430 \u043a\u043b\u044e\u0447\u0435\u0439 (\u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e).</html>
OptionPanel.resources_signed_script_are_trusted=\u0414\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u043c \u0441\u043a\u0440\u0438\u043f\u0442\u0430\u043c (\u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f).
OptionPanel.resources_signed_script_are_trusted.tooltip=\u0415\u0441\u043b\u0438 \u0441\u043a\u0440\u0438\u043f\u0442 \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d \u0434\u043e\u0432\u0435\u0440\u0435\u043d\u043d\u043e\u0439 \u0441\u0442\u043e\u0440\u043e\u043d\u043e\u0439 (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0430\u0432\u0442\u043e\u0440\u0430\u043c\u0438 FreeMind \u0438\u043b\u0438 \u0432\u0430\u043c\u0438 \u0441\u0430\u043c\u0438\u043c\u0438), \u043e\u043d \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0431\u0435\u0437 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439. 

# changed, fc, 24.4.2008:
# this is still the old "export_branch", but as many users didn't find this feature, we 
# have to describe it better. Moreover, it is put into the node context menu.
export_branch_new = \u0412\u0435\u0442\u0432\u044c \u043a\u0430\u043a \u043d\u043e\u0432\u0443\u044e \u043a\u0430\u0440\u0442\u0443 ...

 new, fc, 28.4.2008:
icon_yes = \u0412\u0430\u0436\u043d\u043e
icon_folder = \u041f\u0430\u043f\u043a\u0430
icon_up = \u0412\u0435\u0440\u0445
icon_down = \u041d\u0438\u0437
icon_smiley-neutral = \u041d\u0435 \u0432\u0430\u0436\u043d\u043e
icon_smiley-oh = \u0423\u0434\u0438\u0432\u043b\u0435\u043d\u043d\u044b\u0439
icon_smiley-sad = \u0413\u0440\u0443\u0441\u0442\u043d\u044b\u0439
icon_smiley-angry = \u0421\u0435\u0440\u0434\u0438\u0442\u044b\u0439
icon_encrypted = \u0417\u0430\u043f\u0435\u0440\u0442\u044b\u0439
icon_decrypted = \u041d\u0435\u0437\u0430\u043f\u0435\u0440\u0442\u044b\u0439
icon_broken-line = \u041d\u0435\u0438\u0441\u043f\u0440\u0430\u0432\u043d\u043e\u0441\u0442\u044c
icon_flag-black = \u0427\u0435\u0440\u043d\u044b\u0439 \u0444\u043b\u0430\u0436\u043e\u043a
icon_flag-blue = \u0421\u0438\u043d\u0438\u0439 \u0444\u043b\u0430\u0436\u043e\u043a
icon_flag-green = \u0417\u0435\u043b\u0435\u043d\u044b\u0439 \u0444\u043b\u0430\u0436\u043e\u043a
icon_flag-orange = \u041e\u0440\u0430\u043d\u0436\u0435\u0432\u044b\u0439 \u0444\u043b\u0430\u0436\u043e\u043a
icon_flag-pink = \u0420\u043e\u0437\u043e\u0432\u044b\u0439 \u0444\u043b\u0430\u0436\u043e\u043a
icon_flag-yellow = \u0416\u0435\u043b\u0442\u044b\u0439 \u0444\u043b\u0430\u0436\u043e\u043a
icon_clock = \u0412\u0440\u0435\u043c\u044f
icon_hourglass = \u041e\u0436\u0438\u0434\u0430\u043d\u0438\u0435
icon_calendar = \u0414\u0430\u0442\u0430
icon_kmail = E-Mail
icon_edit = \u0421\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c
icon_stop-sign = \u0421\u0442\u043e\u043f
icon_closed = \u0412\u0445\u043e\u0434\u0430 \u043d\u0435\u0442
# changed:
icon_flag = \u041a\u0440\u0430\u0441\u043d\u044b\u0439 \u0444\u043b\u0430\u0436\u043e\u043a

#changed:
OptionPanel.remind_use_rich_text_in_new_long_nodes=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0443\u0437\u043b\u043e\u0432

# new, fc, 21.5.2008:
icon_freemind_butterfly = FreeMind
icon_full-8 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 8
icon_full-9 = \u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 9

# new, fc, 25.5.2008:
node_is_write_protected=\u0423\u0437\u0435\u043b-\u043f\u0440\u0438\u0435\u043c\u043d\u0438\u043a \u0437\u0430\u0449\u0438\u0449\u0435\u043d \u043e\u0442 \u0437\u0430\u043f\u0438\u0441\u0438
atributes_no_import_candidates_found=\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u043a\u0430\u043d\u0434\u0438\u0434\u0430\u0442\u044b \u0434\u043b\u044f \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432

# new, fc, 6.7.2008:
KeyDoc=\u041a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u043d\u044b\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u044b (PDF)
# translate only, when you have an own translation of this doc.
pdfKeyDocLocation=./doc/FM_Key_Mappings_Quick_Guide_ru.pdf

icon_info=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f
icon_full-0=\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442 0
icon_prepare=\u0416\u0435\u043b\u0442\u044b\u0439 \u0441\u0438\u0433\u043d\u0430\u043b \u0441\u0432\u0435\u0442\u043e\u0444\u043e\u0440\u0430
icon_go=\u0417\u0435\u043b\u0435\u043d\u044b\u0439 \u0441\u0438\u0433\u043d\u0430\u043b \u0441\u0432\u0435\u0442\u043e\u0444\u043e\u0440\u0430
icon_list=\u0421\u043f\u0438\u0441\u043e\u043a
icon_launch=Launch
icon_family=\u0421\u0435\u043c\u044c\u044f
icon_female1=\u0416\u0435\u043d\u0449\u0438\u043d\u04301
icon_female2=\u0416\u0435\u043d\u0449\u0438\u043d\u04302
icon_male1=\u041c\u0443\u0436\u0447\u0438\u043d\u04301
icon_male2=\u041c\u0443\u0436\u0447\u0438\u043d\u04302
icon_fema=\u0416\u0435\u043d\u0449\u0438\u043d\u044b
icon_group=\u0413\u0440\u0443\u043f\u043f\u0430

OptionPanel.separator.icon_properties=\u041f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b
OptionPanel.icons.list=\u0421\u043f\u0438\u0441\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0445 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0445 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c
OptionPanel.icon_order_description=\u0417\u0434\u0435\u0441\u044c \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c \u0438\u043b\u0438 \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b. \u041f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0440\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u043c ';'.

# new, fc, 16.7.2008:
OptionPanel.sk=\u0421\u043b\u043e\u0432\u0430\u0446\u043a\u0438\u0439
OptionPanel.el=\u0413\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0439
OptionPanel.et=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439
OptionPanel.id=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0438\u0439
OptionPanel.uk_UA=\u0423\u043a\u0440\u0430\u0438\u043d\u0441\u043a\u0438\u0439
OptionPanel.vi=\u0412\u044c\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438\u0439

# new, fc, 22.7.2008
select_icon=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0438\u043a\u0442\u043e\u0433\u0440\u0430\u043c\u043c\u0443
mode_MindMap=\u0420\u0435\u0436\u0438\u043c \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u044b
mode_Browse=\u0420\u0435\u0436\u0438\u043c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430
mode_File=\u0424\u0430\u0439\u043b\u043e\u0432\u044b\u0439 \u0440\u0435\u0436\u0438\u043c
# changed
mode_status=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u0440\u0435\u0436\u0438\u043c {0}
mode_title =FreeMind - {0}

# new, fc, 25.8.2008
OptionPanel.defaultfontsize.tooltip=\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0440\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0445 \u0443\u0437\u043b\u043e\u0432.

# new, fc, 20.12.2008
OptionPanel.ro=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439

#new, fc, 6.12.2009:
really_convert_to_current_version2=<html>\u0418\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0430 \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044c, \u0431\u044b\u043b\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0430 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b FreeMind, \u0438 \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0441\u0442\u0430\u0440\u043e\u043c \u0444\u043e\u0440\u043c\u0430\u0442\u0435.<br/>FreeMind \u0441\u043e\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u0443 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0443 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442 \u0442\u0435\u043a\u0443\u0449\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438. <br/>\u041f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0430 \u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430 \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0435 \u0442\u0435\u043a\u0443\u0449\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 FreeMind, \u0435\u0451 \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0441\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u0441\u0442\u0430\u0440\u044b\u043c\u0438 \u0432\u0435\u0440\u0441\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b.<br/>\u0414\u043e\u043b\u0436\u0435\u043d \u043b\u0438 FreeMind \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442-\u043a\u0430\u0440\u0442\u0443?</html>
OptionPanel.eu=Eu