-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathvitables_ru_RU.ts
2883 lines (2872 loc) · 135 KB
/
vitables_ru_RU.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="ru_RU" sourcelanguage="">
<context>
<name>AboutPage</name>
<message>
<location filename="vitables/plugins/about_page.ui" line="14"/>
<source>Form</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/about_page.ui" line="20"/>
<source>Plugin description</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/about_page.ui" line="26"/>
<source>Version: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/about_page.ui" line="77"/>
<source>Module name: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/about_page.ui" line="128"/>
<source>Folder: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/about_page.ui" line="179"/>
<source>Author: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/about_page.ui" line="230"/>
<source>Desription: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ArrayColsOrganizer</name>
<message>
<location filename="vitables/plugins/columnorg/columnar_org.py" line="185"/>
<source>&Group Arrays</source>
<comment>Group separated arrays with the same number of rows</comment>
<translation type="obsolete">С&группировать</translation>
</message>
<message>
<location filename="vitables/plugins/columnorg/columnar_org.py" line="111"/>
<source>Group Arrays into a unique view</source>
<comment>Checkbox tooltip text</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/columnorg/columnar_org.py" line="147"/>
<source><qt><p>Plugin that provides an alternative view for arrays with the same number of rows. <p>The user selects the arrays which he want to see in a unique viewer. Then clicks on the Node -> Linked View menu entry and the arrays are displayed as expected by the user.</qt></source>
<comment>Text of an About plugin message box</comment>
<translation type="unfinished">Альтернативный метод отображения массивов</translation>
</message>
</context>
<context>
<name>ArraysColsOrganizer</name>
<message>
<location filename="vitables/plugins/columnorg/columnar_org.py" line="147"/>
<source><qt><p>Plugin that provides an alternative view for arrays with the same number of rows. <p>The user selects the arrays which he want to see in a unique viewer. Then clicks on the Node -> Linked View menu entry and the arrays are displayed as expected by the user.</qt></source>
<comment>Text of an About plugin message box</comment>
<translation type="obsolete">Альтернативный метод отображения массивов</translation>
</message>
</context>
<context>
<name>AttrEditor</name>
<message>
<location filename="vitables/nodeprops/attreditor.py" line="196"/>
<source>
Error: "{0}" value mismatches its data type.</source>
<comment>User attributes table editing error</comment>
<translation>Ошибка: "{0}" значение не совпадает с типом данных.</translation>
</message>
<message>
<location filename="vitables/nodeprops/attreditor.py" line="201"/>
<source>
Error: "{0}" value is out of range.</source>
<comment>User attributes table editing error</comment>
<translation>Ошибка: "{0}" превышение значения.</translation>
</message>
<message>
<location filename="vitables/nodeprops/attreditor.py" line="207"/>
<source>
Error: "{0}" value is out of range or mismatches its data type.</source>
<comment>User attributes table editing error</comment>
<translation>Ошибка: "{0}" превышения допустимого значение или несовпадение типа.</translation>
</message>
<message>
<location filename="vitables/nodeprops/attreditor.py" line="212"/>
<source>
Error: "{0}" cannot be converted to a Python object.</source>
<comment>User attributes table editing error</comment>
<translation>Ошибка: "{0}" не может быть преобразовано в объект Python.</translation>
</message>
<message>
<location filename="vitables/nodeprops/attreditor.py" line="224"/>
<source>
Error: empty field Name in the row {0:d}</source>
<comment>User attrs editing error</comment>
<translation>Ошибка: пустое поле Name в строке{0:d} </translation>
</message>
<message>
<location filename="vitables/nodeprops/attreditor.py" line="236"/>
<source>
Error: attribute name "{0}" is repeated.</source>
<comment>User attrs table editing error</comment>
<translation>Ошибка: повторное использование "{0}" для имени аттрибута. </translation>
</message>
</context>
<context>
<name>AttrPropDialog</name>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="57"/>
<source>Dialog</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="177"/>
<source>&System attributes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="185"/>
<source>System attributes:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="292"/>
<source>&User Attributes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="300"/>
<source>User attributes:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="387"/>
<source><qt>
<h3>User's attributes editing table</h3>
Here you can perform the editing of user's attributes for
this node. It is quite straightforward. <p>For adding an
attribute click the <b>Add</b> button. A new row will
be added to the table. Enter the attribute name and its
value in the corresponding cells. Finally, select the
attribute datatype in the combobox of the DataType column.
In order to delete an attribute just select it by clicking
any of its cells, then click the <b>Delete</b> button.</p>
<p>Beware that PyTables stores scalar attributes as numpy
scalar arrays so you will be unable to save them as Python
objects even if you choose the Python datatype in the
combobox selector. Also note that multidimensional attributes
other than Python lists and tuples are not supported.</p>
</qt></source>
<comment>Help text for the User Attributes page</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="437"/>
<source>&Add</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="444"/>
<source>&Delete</source>
<translation type="unfinished">&Удалить</translation>
</message>
<message>
<location filename="vitables/nodeprops/attr_prop_dlg.ui" line="451"/>
<source>&What's this</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AttrPropDlg</name>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="188"/>
<source>Name</source>
<comment>First column header of the table</comment>
<translation>Имя</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="188"/>
<source>Value</source>
<comment>Second column header of the table</comment>
<translation>Значение</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="188"/>
<source>Datatype</source>
<comment>Third column header of the table</comment>
<translation>Тип данных</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="325"/>
<source>Please, select the attribute to be deleted.</source>
<comment>A usage text</comment>
<translation>Выберите аттрибут для удаления.</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="339"/>
<source>User attribute deletion</source>
<comment>Caption of the attr deletion dialog</comment>
<translation>Удаление аттрибута</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="341"/>
<source>
You are about to delete the attribute:
{0}
</source>
<comment>Ask for confirmation</comment>
<translation>Подтверждение удаления аттрибута {0}</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="350"/>
<source>Delete</source>
<comment>Button text</comment>
<translation>Удалить</translation>
</message>
<message>
<location filename="vitables/nodeprops/attrpropdlg.py" line="353"/>
<source>Cancel</source>
<comment>Button text</comment>
<translation>Отменить</translation>
</message>
</context>
<context>
<name>BookmarksDlg</name>
<message>
<location filename="vitables/docbrowser/bookmarksdlg.py" line="65"/>
<source>Bookmarks editor</source>
<comment>Dialog caption</comment>
<translation>Редактор закладок</translation>
</message>
<message>
<location filename="vitables/docbrowser/bookmarksdlg.py" line="74"/>
<source>Bookmark</source>
<comment>First column header of the bookmarks table</comment>
<translation>Закладка</translation>
</message>
<message>
<location filename="vitables/docbrowser/bookmarksdlg.py" line="74"/>
<source>URL</source>
<comment>Second column header of the bookmarks table</comment>
<translation>Ссылка</translation>
</message>
<message>
<location filename="vitables/docbrowser/bookmarksdlg.py" line="83"/>
<source>&OK</source>
<comment>Button label</comment>
<translation>&Применить</translation>
</message>
<message>
<location filename="vitables/docbrowser/bookmarksdlg.py" line="86"/>
<source>&Delete</source>
<comment>Button label</comment>
<translation>&Удалить</translation>
</message>
<message>
<location filename="vitables/docbrowser/bookmarksdlg.py" line="89"/>
<source>&Cancel</source>
<comment>Button label</comment>
<translation>&Отменить</translation>
</message>
</context>
<context>
<name>Buffer</name>
<message>
<location filename="vitables/vttables/buffer.py" line="210"/>
<source>Problems reading records. The dataset seems to be compressed with the {0} library. Check that it is installed in your system, please.</source>
<comment>A dataset readability error</comment>
<translation>Ошибка чтения записей. Набор данных может быть сжат при помощи библиотеки {0}. Убедитесь в ее установке на Вашей системе.</translation>
</message>
<message>
<location filename="vitables/vttables/buffer.py" line="220"/>
<source>Data read error: {}</source>
<comment>A dataset read error</comment>
<translation>Ошибка чтения данных: {}</translation>
</message>
<message>
<location filename="vitables/vttables/buffer.py" line="254"/>
<source>
Error: problems reading records. The dataset maybe corrupted.</source>
<comment>A dataset readability error</comment>
<translation>Ошибка чтения записей. Возможно повреждения набора данных.</translation>
</message>
</context>
<context>
<name>Calculator</name>
<message>
<location filename="vitables/calculator/calculator.py" line="28"/>
<source>No group is selected. Relative references are disabled. Continue?</source>
<translation>Группа не выбрана. Относительные ссылки не возможные. Продолжить?</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="32"/>
<source>Multiple groups are selected. Relative references are disabled. Continue?</source>
<translation>Выбрано более одной группы. Относительные ссылки не возможные. Продолжить?</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="37"/>
<source>Relative references are disabled</source>
<translation>Относительные ссылка заблокированы</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="169"/>
<source>Save expression as</source>
<translation>Сохранить выражение как</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="169"/>
<source>Name:</source>
<translation>Имя:</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="245"/>
<source>Node not found</source>
<translation>Узел не найден</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="251"/>
<source>Node type</source>
<translation>Тип узла</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="314"/>
<source>Result name</source>
<translation>Имя для результатов</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="276"/>
<source>The location to store results is not specified</source>
<translation>Не задано место для сохранения результатов</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="290"/>
<source>Create group</source>
<translation>Создать группу</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="351"/>
<source>Evaluation error</source>
<translation>Ошибка вычисления</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="351"/>
<source>An exception was raised during evaluation, see log for details.</source>
<translation>В процессе вычисления возникло исключения, детали в журнале.</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="364"/>
<source>Result save error</source>
<translation>Ошибка при сохранении результата</translation>
</message>
<message>
<location filename="vitables/calculator/calculator.py" line="364"/>
<source>An exception was raised while trying to store results, see log for details.</source>
<translation>В процессе сохранения результата возникло исключения, детали в журнале.</translation>
</message>
</context>
<context>
<name>CalculatorDialog</name>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="85"/>
<source>Evaluate expression</source>
<translation>Вычислить выражение</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="86"/>
<source>Saved expressions:</source>
<translation>Сохраненные выражения:</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="89"/>
<source>Save</source>
<translation>Сохранить</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="91"/>
<source>Remove</source>
<translation>Удалить</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="92"/>
<source>Statements:</source>
<translation>Комманды:</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="96"/>
<source>Expression:</source>
<translation>Выражения:</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="101"/>
<source>Result table:</source>
<translation>Таблица для результатов:</translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="87"/>
<source><html><head/><body><p>Saved expressions.</p></body></html></source>
<translation><html><head/><body><p>Сохраненные выражения.</p></body></html></translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="88"/>
<source><html><head/><body><p>Store expression for future use.</p></body></html></source>
<translation><html><head/><body><p>Сохранить выражения для дальнейшего использования.</p></body></html></translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="90"/>
<source><html><head/><body><p>Remove the selected expression from the saved expressions list.</p></body></html></source>
<translation><html><head/><body><p>Удалить выделенное выражения из списка.</p></body></html></translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="93"/>
<source><html><head/><body>
<p>Set of python statements that will be executed before the expression is evaluated. This can be used to import additional modules or do preliminary calculations to simplify the expression.</p>
</body></html></source>
<translation><html><head/><body>
<p>Набор выражений языка python, которые будут выполненеы перед вычислением выражния. Данное поле может быть использовано для импорта модулей или предварительных вычислений для упрощения выражения.</p>
</body></html></translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="97"/>
<source><html><head/><body>
<p>The results of the expression will be saved in the result table. This field must contain a valid expression that returns a pytables array, list or scalar.</p>
<p>The expression can contain references to open data nodes. A reference can either be absolute and start from a file name or relative to the current group. Data refenrence is a string which is build by joining group names that lead to the data by dots. For example: &quot;filename.h5.some_group.sub_group.mydata&quot;. If &quot;sub_group&quot; is the current group then the string &quot;mydata&quot; can be used as reference.</p>
</body></html></source>
<translation><html><head/><body>
<p>Результат вычисления данного выражения будет сохранен в таблице. Данное поле должно содержать выражение, которое возвращает pytables массив, список или скаляр.</p>
<p>Выражения могут содержать ссылки на загруженные данные. Ссылки могут быть либо абсолютными и начинаться с имени файла или относительными. Ссылка на набор данных представляет собой строку, состоящую из имен групп разделенных точками. Например: &quot;filename.h5.some_group.sub_group.mydata&quot;. Если &quot;sub_group&quot; является текущей группой, то в качестве ссылки можно использовать строку &quot;mydata&quot;.</p>
</body></html></translation>
</message>
<message>
<location filename="vitables/calculator/calculator_dlg.py" line="102"/>
<source><html><head/><body>
<p>Reference to the destination for the expression result. Data refenrence is a string which is build by joining group names that lead to the data by dots. For example: &quot;filename.h5.some_group.sub_group.myresult&quot;. If &quot;sub_group&quot; is the current group then the string &quot;myresult&quot; can be used as reference.</p>
<p>The result table must not exitst.</p>
</body></html></source>
<translation><html><head/><body>
<p>Место для сохранения результатов вычислений. Ссылка на набор данных представляет собой строку, состоящую из имен групп разделенных точками. Например: &quot;filename.h5.some_group.sub_group.myresult&quot;. Если &quot;sub_group&quot; является текущей группой, то в качестве ссылки можно использовать строку &quot;myresult&quot;.</p>
<p>Таблица, в которую будет сохранен результат, не должна существовать.</p>
</body></html></translation>
</message>
</context>
<context>
<name>ConfigFileIOException</name>
<message>
<location filename="vitables/preferences/cfgexception.py" line="51"/>
<source>
Configuration error: the application setting {0} cannot be saved.</source>
<comment>A logger error message</comment>
<translation>Ошибка конфигурации: настройки приложения {0} не могут быть сохранены.</translation>
</message>
<message>
<location filename="vitables/preferences/cfgexception.py" line="56"/>
<source>
Configuration warning: the application setting {0} cannot be read. Its default value will be used.</source>
<comment>A logger error message</comment>
<translation>Предупреждение: настройки приложения {0} не могут бытьпрочитаны. Будут использованы значения по умолчанию.</translation>
</message>
</context>
<context>
<name>DBDoc</name>
<message>
<location filename="vitables/h5db/dbdoc.py" line="103"/>
<source>
Warning: file access in read-write mode is denied. It will be opened in read-only mode.</source>
<comment>A logger error message</comment>
<translation>Предупреждение: отказано в открытии файла в режиме чтение/запись. Файл будет открыт только для чтения.</translation>
</message>
<message>
<location filename="vitables/h5db/dbdoc.py" line="112"/>
<source>{0}</source>
<comment>A logger error message</comment>
<translation>{0}</translation>
</message>
<message>
<location filename="vitables/h5db/dbdoc.py" line="116"/>
<source>Please, if you think it is a bug, report it to developers.</source>
<comment>A logger error message</comment>
<translation>Пожалуйста, если у Вас есть подозрение о некорректной работе программы, сообщите разработчикам.</translation>
</message>
<message>
<location filename="vitables/h5db/dbdoc.py" line="161"/>
<source>
Error: cannot open node {0} in file {1} </source>
<comment>Error message</comment>
<translation>Ошибка: не возможно открыть узел {0} в файле {1}</translation>
</message>
<message>
<location filename="vitables/h5db/dbdoc.py" line="195"/>
<source>Unable to save the file {0} as {1}. Beware that only closed files can be safely overwritten via Save As...</source>
<comment>A logger error message</comment>
<translation>Не возможно сохранить файл {0} как {1}. Только закрытые файлы могут быть безопасно перезаписаны через Save As...</translation>
</message>
</context>
<context>
<name>DBTreeSortPage</name>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="14"/>
<source>Form</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="20"/>
<source>Plugin description</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="26"/>
<source>Version: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="77"/>
<source>Module name: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="128"/>
<source>Folder: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="179"/>
<source>Author: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="230"/>
<source>Desription: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="284"/>
<source>Sorting algorithm</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>DBsTreeModel</name>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="168"/>
<source>Openning cancelled: {0} is a folder.</source>
<comment>A logger error message</comment>
<translation>Отмена открытия: {0} является папкой.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="174"/>
<source>Opening failed: file {0} cannot be found.</source>
<comment>A logger error message</comment>
<translation>Ошибка: файл {0} не найден.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="181"/>
<source>Opening cancelled: file {0} already open.</source>
<comment>A logger error message</comment>
<translation>Отмена: файл {0} уже открыт.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="194"/>
<source>Opening cancelled: file {0} has not HDF5 format.</source>
<comment>A logger error message</comment>
<translation>Отмена: файл {0} не в формате HDF5.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="200"/>
<source>Opening failed: I cannot find out if file {0} has HDF5 format.</source>
<comment>A logger error message</comment>
<translation>Ошибка: не возможно определить формат файла {0}.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="286"/>
<source>
File creation failed due to unknownreasons! Please, have a look to the last error displayed in the logger. If you think it's a bug, please report it to developers.</source>
<comment>A file creation error</comment>
<translation>Неизвестная ошибка при создании файла. Обратите внимание на последнюю ошибку. Если она связана с некорректной работой программы, то сообщите разработчикам.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="319"/>
<source>Creating the Query results file...</source>
<comment>A logger info message</comment>
<translation>Создание файла с результатами запроса...</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="644"/>
<source>Node move: nodename already exists</source>
<comment>A dialog caption</comment>
<translation>Перемещение узла: узел уже существует</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="647"/>
<source>Source file: {0}
Moved node: {1}
Destination file: {2}
Parent group: {3}
Node name '{4}' already in use in that group.
</source>
<comment>A dialog label</comment>
<translation>Исходный файл: {0}
Перемещенный узел: {1}
Файл назначения: {2}
Родительская группа: {3}
Узел с именем {4} уже существует в этой группе.</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="654"/>
<source>Rename</source>
<comment>A button label</comment>
<translation>Переименовать</translation>
</message>
<message>
<location filename="vitables/h5db/dbstreemodel.py" line="834"/>
<source>Tree of databases</source>
<comment>Header of the only column of the tree of databases view</comment>
<translation>Дерево базы данных</translation>
</message>
</context>
<context>
<name>DBsTreeSortingPage</name>
<message>
<location filename="vitables/plugins/dbstreesort/dbs_tree_sort.py" line="210"/>
<source><qt><p>Plugin that provides sorting capabilities to the tree of DBs.<p>At the moment only two sorting algorithms are supported: human (a.k.a. natural sorting) and alphabetical.</qt></source>
<comment>Text of an About plugin message box</comment>
<translation>Плагин позволяющий сортировать дерево базы данных</translation>
</message>
</context>
<context>
<name>DBsTreeView</name>
<message>
<location filename="vitables/h5db/dbstreeview.py" line="89"/>
<source><qt>
<h3>The Tree of databases</h3>
For every open database this widget shows the object tree,
a graphical representation<br>of the data hierarchy stored
in the database.</qt></source>
<comment>WhatsThis help for the tree pane</comment>
<translation>Дерево базы данных</translation>
</message>
</context>
<context>
<name>ExportToCSV</name>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="108"/>
<source>E&xport to CSV...</source>
<comment>Save dataset as CSV</comment>
<translation>&Экспорт в CSV...</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="108"/>
<source>Save the dataset as a plain text with CSV format</source>
<comment>Status bar text for the Dataset -> Export to CSV... action</comment>
<translation>Сохранить набор данных в формате CSV</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="150"/>
<source>Exporting dataset to CSV format</source>
<comment>Caption of the Export to CSV dialog</comment>
<translation>Экспорт набора данных в формате CSV</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="150"/>
<source>CSV Files (*.csv);;All Files (*)</source>
<comment>Filter for the Export to CSV dialog</comment>
<translation>CSV файл (*.csv);;Все файлы (*)</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="150"/>
<source>Export</source>
<comment>Accept button text for QFileDialog</comment>
<translation>Экспорт</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="200"/>
<source>Export failed because destination file already exists.</source>
<comment>A file creation error</comment>
<translation>Ошибка при создании нового файла, так как он уже существует.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="207"/>
<source>Export failed because destination container is a directory.</source>
<comment>A file creation error</comment>
<translation>Экспорт не удался так, как выбраный объект подкаталог.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="228"/>
<source>Empty dataset. Nothing to export.</source>
<translation>Пустой набор данных.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="234"/>
<source>Scalar array. Nothing to export.</source>
<translation>Одномерный массив, экспорт не возможен.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="240"/>
<source>The selected node has more than 2 dimensions. I can't export it to CSV format.</source>
<translation>Выбранный узел имеет размерность больше 2-х. Экспорт в CSV не возможен.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="247"/>
<source>The selected node is a VLArray. I can't export it to CSV format.</source>
<translation>Выбранный узел является VLArray. Экспорт в CSV не возможен.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="258"/>
<source>Some fields aren't scalars. I can't export the table to CSV format.</source>
<translation>Некоторые из полей не являются числами. Экспорт не возможен.</translation>
</message>
<message>
<location filename="vitables/plugins/csv/export_csv.py" line="316"/>
<source><qt><p>Plugin that provides export to CSV files capabilities.<p>Any kind of PyTables dataset can be exported. When exporting tables, a header with the field names can be inserted at top of the CSV file.</qt></source>
<comment>Text of an About plugin message box</comment>
<translation>Надстройка для экспорта в формате CSV</translation>
</message>
</context>
<context>
<name>FilePropPage</name>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="14"/>
<source>Form</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="20"/>
<source>Database</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="28"/>
<source>Name:</source>
<translation type="unfinished">Имя:</translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="35"/>
<source>Path:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="42"/>
<source>Type:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="49"/>
<source>Access mode: </source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="253"/>
<source>Root group</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="vitables/nodeprops/group_prop_page.ui" line="259"/>
<source>Number of children: </source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GroupPropDlg</name>
<message>
<location filename="vitables/nodeprops/grouppropdlg.py" line="75"/>
<source>File properties</source>
<comment>Dlg caption</comment>
<translation>Свойства файла</translation>
</message>
<message>
<location filename="vitables/nodeprops/grouppropdlg.py" line="78"/>
<source>Group properties</source>
<comment>Dlg caption</comment>
<translation>Свойства группы</translation>
</message>
</context>
<context>
<name>GroupPropPage</name>
<message>
<location filename="vitables/nodeprops/groupproppage.py" line="111"/>
<source>Child name</source>
<comment>First column header of the table</comment>
<translation>Имя наследника</translation>
</message>
<message>
<location filename="vitables/nodeprops/groupproppage.py" line="111"/>
<source>Type</source>
<comment>Second column header of the table</comment>
<translation>Тип</translation>
</message>
<message>
<location filename="vitables/nodeprops/groupproppage.py" line="119"/>
<source>group</source>
<translation>группа</translation>
</message>
<message>
<location filename="vitables/nodeprops/groupproppage.py" line="124"/>
<source>leaf</source>
<translation>лист</translation>
</message>
<message>
<location filename="vitables/nodeprops/groupproppage.py" line="128"/>
<source>link</source>
<translation>ссылка</translation>
</message>
<message>
<location filename="vitables/nodeprops/groupproppage.py" line="143"/>
<source>Group</source>
<comment>Title of the group box</comment>
<translation>Группа</translation>
</message>
</context>
<context>
<name>GroupedArrays</name>
<message>
<location filename="vitables/plugins/columnorg/columnar_org.py" line="511"/>
<source>Group Arrays into a unique view</source>
<comment>Checkbox tooltip</comment>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HelpBrowser</name>
<message>
<location filename="vitables/docbrowser/helpbrowser.py" line="270"/>
<source>About HelpBrowser</source>
<comment>A dialog caption</comment>
<translation>О HelpBrowser</translation>
</message>
<message>
<location filename="vitables/docbrowser/helpbrowser.py" line="270"/>
<source><html><h3>HelpBrowser</h3>
HelpBrowser is a very simple tool for displaying the HTML
version of the ViTables' Guide without using external programs.
<p>Best of all... it is written using PyQt, the Python
bindings for the Qt GUI toolkit.</html></source>
<comment>About Help browser text</comment>
<translation>HelpBrowser</translation>
</message>
<message>
<location filename="vitables/docbrowser/helpbrowser.py" line="286"/>
<source>About Qt</source>
<comment>A dialog caption</comment>
<translation>О Qt</translation>
</message>
</context>
<context>
<name>HelpBrowserGUI</name>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="61"/>
<source>Documentation browser</source>
<comment>The window title</comment>
<translation>Просмотр документации</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="80"/>
<source>Ready...</source>
<comment>Status bar startup message</comment>
<translation>Готов...</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="90"/>
<source>E&xit</source>
<comment>File --> Exit</comment>
<translation>&Выход</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="90"/>
<source>Close Help Browser</source>
<comment>Status bar text for the File --> Exit action</comment>
<translation>Закрытие документации</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="98"/>
<source>Zoom &in</source>
<comment>View --> Zoom in</comment>
<translation>&Увеличить</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="98"/>
<source>Increases the font size</source>
<comment>Status bar text for the View --> Zoom in action</comment>
<translation>Увеличить размер шрифта</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="106"/>
<source>Zoom &out</source>
<comment>View --> Zoom out</comment>
<translation>У&меньшить</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="106"/>
<source>Decreases the font size</source>
<comment>Status bar text for the View --> Zoom out action</comment>
<translation>Уменьшить размер шрифта</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="115"/>
<source>&Home</source>
<comment>Go --> Home</comment>
<translation>&Домой</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="115"/>
<source>Go to the first visited page</source>
<comment>Status bar text for the Go --> Home action</comment>
<translation>Перейти к первой посещенной странице</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="124"/>
<source>&Backward</source>
<comment> Go --> Backward</comment>
<translation>&Назад</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="124"/>
<source>Go to previous page</source>
<comment>Status bar text for the Go --> Backward action</comment>
<translation>Перейти к предыдущей странице</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="133"/>
<source>&Forward</source>
<comment> Go --> Forward</comment>
<translation>&Вперед</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="133"/>
<source>Go to next page</source>
<comment>Status bar text for the Go --> Forward action</comment>
<translation>Перейти к следующей странице</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="141"/>
<source>&Reload</source>
<comment>Go --> Reload</comment>
<translation>&Обновить</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="141"/>
<source>Reload the current page</source>
<comment>Status bar text for the Go --> Reload action</comment>
<translation>Обновить текущую страницу</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="149"/>
<source>&Add bookmark</source>
<comment>Bookmarks --> Add bookmark</comment>
<translation>Добавить &закладку</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="149"/>
<source>Bookmark the current page</source>
<comment>Status bar text for Bookmarks --> Add bookmark action</comment>
<translation>Создать закладку с текущей страницей</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="159"/>
<source>&Edit bookmarks...</source>
<comment>Bookmarks --> Edit bookmarks</comment>
<translation>&Редактировать закладки...</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="159"/>
<source>Edit bookmarks</source>
<comment>Status bar text for Bookmarks --> Edit bookmarks action</comment>
<translation>Редактировать закладки</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="169"/>
<source>&Clear All</source>
<comment>Bookmarks --> Clear bookmark</comment>
<translation>&Очистить все</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="169"/>
<source>Clear all existing bookmarks</source>
<comment>Status bar text for Bookmarks --> Add bookmark action</comment>
<translation>Очистить все существующие закладки</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="179"/>
<source>&About HelpBrowser</source>
<comment>Help --> About HelpBrowser</comment>
<translation>О &HelpBrowser</translation>
</message>
<message>
<location filename="vitables/docbrowser/browsergui.py" line="179"/>
<source>About HelpBrowser</source>
<comment>Status bar text for Help --> About HelpBrowser action</comment>
<translation>О HelpBrowser</translation>
</message>