File: vitables_ru_RU.ts

package info (click to toggle)
vitables 3.0.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,764 kB
  • sloc: python: 8,883; makefile: 226; sh: 56
file content (2883 lines) | stat: -rw-r--r-- 137,827 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
<?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>&amp;Group Arrays</source>
        <comment>Group separated arrays with the same number of rows</comment>
        <translation type="obsolete">С&amp;группировать</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>&lt;qt&gt;&lt;p&gt;Plugin that provides an alternative view for arrays with the same number of rows. &lt;p&gt;The user selects the arrays which he want to see in a unique viewer. Then clicks on the Node -&gt; Linked View menu entry and the arrays are displayed as expected by the user.&lt;/qt&gt;</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>&lt;qt&gt;&lt;p&gt;Plugin that provides an alternative view for arrays with the same number of rows. &lt;p&gt;The user selects the arrays which he want to see in a unique viewer. Then clicks on the Node -&gt; Linked View menu entry and the arrays are displayed as expected by the user.&lt;/qt&gt;</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: &quot;{0}&quot; value mismatches its data type.</source>
        <comment>User attributes table editing error</comment>
        <translation>Ошибка: &quot;{0}&quot; значение не совпадает с типом данных.</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attreditor.py" line="201"/>
        <source>
Error: &quot;{0}&quot; value is out of range.</source>
        <comment>User attributes table editing error</comment>
        <translation>Ошибка: &quot;{0}&quot; превышение значения.</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attreditor.py" line="207"/>
        <source>
Error: &quot;{0}&quot; value is out of range or mismatches its data type.</source>
        <comment>User attributes table editing error</comment>
        <translation>Ошибка: &quot;{0}&quot; превышения допустимого значение или несовпадение типа.</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attreditor.py" line="212"/>
        <source>
Error: &quot;{0}&quot; cannot be converted to a Python object.</source>
        <comment>User attributes table editing error</comment>
        <translation>Ошибка: &quot;{0}&quot; не может быть преобразовано в объект 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 &quot;{0}&quot; is repeated.</source>
        <comment>User attrs table editing error</comment>
        <translation>Ошибка: повторное использование &quot;{0}&quot; для имени аттрибута.  </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>&amp;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>&amp;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>&lt;qt&gt;
        &lt;h3&gt;User&apos;s attributes editing table&lt;/h3&gt;
        Here you can perform the editing of user&apos;s attributes for
        this node. It is quite straightforward. &lt;p&gt;For adding an
        attribute click the &lt;b&gt;Add&lt;/b&gt; 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 &lt;b&gt;Delete&lt;/b&gt; button.&lt;/p&gt;
        &lt;p&gt;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.&lt;/p&gt;
        &lt;/qt&gt;</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>&amp;Add</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="444"/>
        <source>&amp;Delete</source>
        <translation type="unfinished">&amp;Удалить</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="451"/>
        <source>&amp;What&apos;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>&amp;OK</source>
        <comment>Button label</comment>
        <translation>&amp;Применить</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="86"/>
        <source>&amp;Delete</source>
        <comment>Button label</comment>
        <translation>&amp;Удалить</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="89"/>
        <source>&amp;Cancel</source>
        <comment>Button label</comment>
        <translation>&amp;Отменить</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>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Saved expressions.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Сохраненные выражения.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="88"/>
        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Store expression for future use.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Сохранить выражения для дальнейшего использования.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="90"/>
        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Remove the selected expression from the saved expressions list.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Удалить выделенное выражения из списка.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="93"/>
        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;Набор выражений языка python, которые будут выполненеы перед вычислением выражния. Данное поле может быть использовано для импорта модулей или предварительных вычислений для упрощения выражения.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="97"/>
        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;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.&lt;/p&gt;
&lt;p&gt;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: &amp;quot;filename.h5.some_group.sub_group.mydata&amp;quot;. If &amp;quot;sub_group&amp;quot; is the current group then the string &amp;quot;mydata&amp;quot; can  be used as reference.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;Результат вычисления данного выражения будет сохранен в таблице. Данное поле должно содержать выражение, которое возвращает pytables массив, список или скаляр.&lt;/p&gt;
&lt;p&gt;Выражения могут содержать ссылки на загруженные данные. Ссылки могут быть либо абсолютными и начинаться с имени файла или относительными. Ссылка на набор данных представляет собой строку, состоящую из имен групп разделенных точками. Например: &amp;quot;filename.h5.some_group.sub_group.mydata&amp;quot;. Если &amp;quot;sub_group&amp;quot; является текущей группой, то в качестве ссылки можно использовать строку &amp;quot;mydata&amp;quot;.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="102"/>
        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;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: &amp;quot;filename.h5.some_group.sub_group.myresult&amp;quot;. If &amp;quot;sub_group&amp;quot; is the current group then the string &amp;quot;myresult&amp;quot; can  be used as reference.&lt;/p&gt;
&lt;p&gt;The result table must not exitst.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head/&gt;&lt;body&gt;
&lt;p&gt;Место для сохранения результатов вычислений. Ссылка на набор данных представляет собой строку, состоящую из имен групп разделенных точками. Например: &amp;quot;filename.h5.some_group.sub_group.myresult&amp;quot;. Если &amp;quot;sub_group&amp;quot; является текущей группой, то в качестве ссылки можно использовать строку &amp;quot;myresult&amp;quot;.&lt;/p&gt;
&lt;p&gt;Таблица, в которую будет сохранен результат, не должна существовать.&lt;/p&gt;
&lt;/body&gt;&lt;/html&gt;</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&apos;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 &apos;{4}&apos; 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>&lt;qt&gt;&lt;p&gt;Plugin that provides sorting capabilities to the tree of DBs.&lt;p&gt;At the moment only two sorting algorithms are supported: human (a.k.a. natural sorting) and alphabetical.&lt;/qt&gt;</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>&lt;qt&gt;
            &lt;h3&gt;The Tree of databases&lt;/h3&gt;
            For every open database this widget shows the object tree,
            a graphical representation&lt;br&gt;of the data hierarchy stored
            in the database.&lt;/qt&gt;</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&amp;xport to CSV...</source>
        <comment>Save dataset as CSV</comment>
        <translation>&amp;Экспорт в 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 -&gt; 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&apos;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&apos;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&apos;t scalars. I can&apos;t export the table to CSV format.</source>
        <translation>Некоторые из полей не являются числами. Экспорт не возможен.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/export_csv.py" line="316"/>
        <source>&lt;qt&gt;&lt;p&gt;Plugin that provides export to CSV files capabilities.&lt;p&gt;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.&lt;/qt&gt;</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>&lt;html&gt;&lt;h3&gt;HelpBrowser&lt;/h3&gt;
                HelpBrowser is a very simple tool for displaying the HTML
                version of the ViTables&apos; Guide without using external programs.
                &lt;p&gt;Best of all... it is written using PyQt, the Python
                bindings for the Qt GUI toolkit.&lt;/html&gt;</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&amp;xit</source>
        <comment>File --&gt; Exit</comment>
        <translation>&amp;Выход</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="90"/>
        <source>Close Help Browser</source>
        <comment>Status bar text for the File --&gt; Exit action</comment>
        <translation>Закрытие документации</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="98"/>
        <source>Zoom &amp;in</source>
        <comment>View --&gt; Zoom in</comment>
        <translation>&amp;Увеличить</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="98"/>
        <source>Increases the font size</source>
        <comment>Status bar text for the View --&gt; Zoom in action</comment>
        <translation>Увеличить размер шрифта</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="106"/>
        <source>Zoom &amp;out</source>
        <comment>View --&gt; Zoom out</comment>
        <translation>У&amp;меньшить</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="106"/>
        <source>Decreases the font size</source>
        <comment>Status bar text for the View --&gt; Zoom out action</comment>
        <translation>Уменьшить размер шрифта</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="115"/>
        <source>&amp;Home</source>
        <comment>Go --&gt; Home</comment>
        <translation>&amp;Домой</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 --&gt; Home action</comment>
        <translation>Перейти к первой посещенной странице</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="124"/>
        <source>&amp;Backward</source>
        <comment> Go --&gt; Backward</comment>
        <translation>&amp;Назад</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="124"/>
        <source>Go to previous page</source>
        <comment>Status bar text for the  Go --&gt; Backward action</comment>
        <translation>Перейти к предыдущей странице</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="133"/>
        <source>&amp;Forward</source>
        <comment> Go --&gt; Forward</comment>
        <translation>&amp;Вперед</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="133"/>
        <source>Go to next page</source>
        <comment>Status bar text for the  Go --&gt; Forward action</comment>
        <translation>Перейти к следующей странице</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="141"/>
        <source>&amp;Reload</source>
        <comment>Go --&gt; Reload</comment>
        <translation>&amp;Обновить</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="141"/>
        <source>Reload the current page</source>
        <comment>Status bar text for the  Go --&gt; Reload action</comment>
        <translation>Обновить текущую страницу</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="149"/>
        <source>&amp;Add bookmark</source>
        <comment>Bookmarks --&gt; Add bookmark</comment>
        <translation>Добавить &amp;закладку</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="149"/>
        <source>Bookmark the current page</source>
        <comment>Status bar text for Bookmarks --&gt; Add bookmark action</comment>
        <translation>Создать закладку с текущей страницей</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="159"/>
        <source>&amp;Edit bookmarks...</source>
        <comment>Bookmarks --&gt; Edit bookmarks</comment>
        <translation>&amp;Редактировать закладки...</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="159"/>
        <source>Edit bookmarks</source>
        <comment>Status bar text for Bookmarks --&gt; Edit bookmarks action</comment>
        <translation>Редактировать закладки</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="169"/>
        <source>&amp;Clear All</source>
        <comment>Bookmarks --&gt; Clear bookmark</comment>
        <translation>&amp;Очистить все</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="169"/>
        <source>Clear all existing bookmarks</source>
        <comment>Status bar text for Bookmarks --&gt; Add bookmark action</comment>
        <translation>Очистить все существующие закладки</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="179"/>
        <source>&amp;About HelpBrowser</source>
        <comment>Help --&gt; About HelpBrowser</comment>
        <translation>О &amp;HelpBrowser</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="179"/>
        <source>About HelpBrowser</source>
        <comment>Status bar text for Help --&gt; About HelpBrowser action</comment>
        <translation>О HelpBrowser</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="188"/>
        <source>About &amp;Qt</source>
        <comment>Help --&gt; About Qt</comment>
        <translation>О &amp;Qt</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="188"/>
        <source>About Qt</source>
        <comment>Status bar text for the Help --&gt; About Qt action</comment>
        <translation>О Qt</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="196"/>
        <source>Clear history</source>
        <translation>Очистить историю</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="196"/>
        <source>Clear the content of the history combobox</source>
        <translation>Очистить историю</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="217"/>
        <source>&amp;File</source>
        <comment>The File menu entry</comment>
        <translation>&amp;Файл</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="224"/>
        <source>&amp;View</source>
        <comment>The View menu entry</comment>
        <translation>&amp;Вид</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="226"/>
        <source>View operations</source>
        <comment>Toolbar title</comment>
        <translation>Управление видом</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="235"/>
        <source>&amp;Go</source>
        <comment>The Go menu entry</comment>
        <translation>&amp;Перейти</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="237"/>
        <source>Go operations</source>
        <comment>Toolbar title</comment>
        <translation>Управлением переходом</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="247"/>
        <source>&amp;Bookmarks</source>
        <comment>Bookmarks menu entry</comment>
        <translation>&amp;Закладки</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="249"/>
        <source>Bookmarks operations</source>
        <comment>Toolbar title</comment>
        <translation>Управление закладками</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="261"/>
        <source>&amp;Help</source>
        <comment>The Help menu entry</comment>
        <translation>&amp;Справка</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="267"/>
        <source>History operations</source>
        <comment>Toolbar title</comment>
        <translation>Справка</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="274"/>
        <source>Go: </source>
        <comment>Text of the Go: label</comment>
        <translation>Перейти:</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="339"/>
        <source>&lt;qt&gt;
            &lt;h3&gt;Page selector&lt;/h3&gt;Select the page you want to visit.
            &lt;/qt&gt;</source>
        <comment>WhatsThis text for the combobox of visited pages</comment>
        <translation>Выбор странице</translation>
    </message>
</context>
<context>
    <name>ImportCSV</name>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="274"/>
        <source>Resolving first line role</source>
        <comment>Message box title</comment>
        <translation>Определение типа первой строки</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="276"/>
        <source>Does the first line of the file contain a table header or regular data?</source>
        <comment>Message box text</comment>
        <translation>Что содержит первая строка? Заголовок таблицы или данные?</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="287"/>
        <source>Header</source>
        <comment>Button text</comment>
        <translation>Заголовок</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="290"/>
        <source>Data</source>
        <comment>Button text</comment>
        <translation>Данные</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="472"/>
        <source>I&amp;mport from CSV...</source>
        <comment>File -&gt; Import CSV</comment>
        <translation>&amp;Импорт из CSV...</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="480"/>
        <source>Import &amp;Table...</source>
        <comment>Import table from CSV file</comment>
        <translation>Импортировать &amp;таблицу...</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="480"/>
        <source>Import Table from plain CSV file</source>
        <comment>Status bar text for File -&gt; Import CSV... -&gt; Import Table</comment>
        <translation>Импорт таблицы из файла CSV</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="491"/>
        <source>Import &amp;Array...</source>
        <comment>Import array from CSV file</comment>
        <translation>Импортировать &amp;массив...</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="491"/>
        <source>Import Array from plain CSV file</source>
        <comment>Status bar text for File -&gt; Import CSV... -&gt; Import Array</comment>
        <translation>Импортировать массив из файла CSV</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="502"/>
        <source>Import &amp;CArray...</source>
        <comment>Import carray from CSV file</comment>
        <translation>Импортировать &amp;CArray...</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="502"/>
        <source>Import CArray from plain CSV file</source>
        <comment>Status bar text for File -&gt; Import CSV... -&gt; Import CArray</comment>
        <translation>Импортировать массив из файла CSV</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="513"/>
        <source>Import &amp;EArray...</source>
        <comment>Import earray from CSV file</comment>
        <translation>Импортировать &amp;EArray...</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="513"/>
        <source>Import EArray from plain CSV file</source>
        <comment>Status bar text for File -&gt; Import CSV... -&gt; Import EArray</comment>
        <translation>Импортировать массив из файла CSV</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="572"/>
        <source>Importing CSV file into {0}</source>
        <comment>Caption of the Import from CSV dialog</comment>
        <translation>Импорт CSV файла в {0}</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="572"/>
        <source>CSV Files (*.csv);;All Files (*)</source>
        <comment>Filter for the Import from CSV dialog</comment>
        <translation>CSV файл (*.csv);;Все файлы (*)</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="572"/>
        <source>Import</source>
        <comment>Accept button text for QFileDialog</comment>
        <translation>Импорт</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="76"/>
        <source>Please, make sure that you are importing a homogeneous dataset.</source>
        <comment>CSV file not imported error</comment>
        <translation>Убедитесь, что импортируемые данные однородны.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="418"/>
        <source>Import failed because destination file already exists.</source>
        <comment>A file creation error</comment>
        <translation>Импорт не удался так, как файл уже существует.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="425"/>
        <source>Import failed because destination container is a directory.</source>
        <comment>A file creation error</comment>
        <translation>Импорт не удался, так как объект уже существует.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="557"/>
        <source>Import failed because destination file cannot be created.</source>
        <comment>A file creation error</comment>
        <translation>Импорт не удался, так как файл не может быть создан.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="832"/>
        <source>&lt;qt&gt;&lt;p&gt;Plugin that provides import CSV files capabilities.&lt;p&gt;CSV files can be imported into any of the following PyTables containers: Array, EArray, CArray and Table.&lt;p&gt;When a file is imported into a Table automatic header detection is provided. &lt;p&gt;Beware that importing large files is a potentially slow process because the whole file has to be read from disk, transformed and write back to disk again so there is a lot of disk IO.&lt;/qt&gt;</source>
        <comment>Text of an About plugin message box</comment>
        <translation>Надстройка для импорта данных из CSV файла</translation>
    </message>
</context>
<context>
    <name>InputNodeNameDlg</name>
    <message>
        <location filename="vitables/vtwidgets/nodename_dlg.ui" line="17"/>
        <source>Dialog</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/nodename_dlg.ui" line="25"/>
        <source>InfoLabel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/nodename_dlg.ui" line="34"/>
        <source>Node name: </source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>LeafPropDlg</name>
    <message>
        <location filename="vitables/nodeprops/leafpropdlg.py" line="75"/>
        <source>Table properties</source>
        <comment>Dlg caption</comment>
        <translation>Свойства листа</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafpropdlg.py" line="78"/>
        <source>Array properties</source>
        <comment>Dlg caption</comment>
        <translation>Свойства массива</translation>
    </message>
</context>
<context>
    <name>LeafPropPage</name>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="112"/>
        <source>Field name</source>
        <comment>First column header of the table</comment>
        <translation>Имя поля</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="112"/>
        <source>Type</source>
        <comment>Second column header of the table</comment>
        <translation>Тип</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="112"/>
        <source>Shape</source>
        <comment>Third column header of the table</comment>
        <translation>Форма</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="131"/>
        <source>nested</source>
        <translation>вложенный</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="133"/>
        <source>-</source>
        <translation>-</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="14"/>
        <source>Form</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="20"/>
        <source>Database</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="28"/>
        <source>Name:</source>
        <translation type="unfinished">Имя:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="35"/>
        <source>Path:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="42"/>
        <source>Type:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="199"/>
        <source>Dataspace</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="209"/>
        <source>Dimensions: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="263"/>
        <source>Shape: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="317"/>
        <source>Data Type: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="371"/>
        <source>Compression: </source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>LinkPropDialog</name>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="14"/>
        <source>Dialog</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="20"/>
        <source>General</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="28"/>
        <source>Name:</source>
        <translation type="unfinished">Имя:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="82"/>
        <source>Path:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="136"/>
        <source>Type:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="187"/>
        <source>Target:</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>LinkPropDlg</name>
    <message>
        <location filename="vitables/nodeprops/linkpropdlg.py" line="69"/>
        <source>Link properties</source>
        <comment>Dlg caption</comment>
        <translation>Свойства ссылки</translation>
    </message>
</context>
<context>
    <name>Logger</name>
    <message>
        <location filename="vitables/logger.py" line="66"/>
        <source>&lt;qt&gt;
            &lt;h3&gt;The Logger&lt;/h3&gt;
            This is the screen region where info about the currently
            selected item is displayed. It also logs the result of all
            operations requested by the user.
            &lt;p&gt;Also execution errors and exceptions are logged in the
            console.
            &lt;/qt&gt;</source>
        <comment>WhatsThis help for the logger</comment>
        <translation>Журнал</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="141"/>
        <source>&amp;Copy</source>
        <comment>Logger menu entry</comment>
        <translation>&amp;Копировать</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="141"/>
        <source>Copy selected text to clipboard</source>
        <comment>Status bar text for the logger context menu -&gt; Copy action</comment>
        <translation>Скопировать выделенный узел в буффер обмена</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="148"/>
        <source>Cl&amp;ear All</source>
        <comment>Logger menu entry</comment>
        <translation>&amp;Очистить все</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="148"/>
        <source>Empty the Logger</source>
        <comment>Status bar text for the logger context menu -&gt; Clear action</comment>
        <translation>Очистить журнал</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="156"/>
        <source>Select &amp;All</source>
        <comment>Logger menu entry</comment>
        <translation>&amp;Выделить все</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="156"/>
        <source>Select the whole Logger contents</source>
        <comment>Status bar text for the logger context menu -&gt; Select All</comment>
        <translation>Выделить все содержимое журнала</translation>
    </message>
</context>
<context>
    <name>MenuUpdater</name>
    <message>
        <location filename="vitables/plugins/columnorg/columnar_org.py" line="185"/>
        <source>Use a unique widget to display Arrays as if they where columns of a Table</source>
        <comment>Status bar text for the Node -&gt; Group Arrays action</comment>
        <translation>Использовать специализированный элемент для отображения массивов в виде столбцов таблицы</translation>
    </message>
    <message>
        <location filename="vitables/plugins/columnorg/columnar_org.py" line="205"/>
        <source>&amp;Ungroup Arrays</source>
        <comment>Ungroup previously grouped arrays.</comment>
        <translation>&amp;Разбить группу</translation>
    </message>
    <message>
        <location filename="vitables/plugins/columnorg/columnar_org.py" line="205"/>
        <source>Ungroup previously grouped arrays.</source>
        <comment>Status bar text for the Node -&gt; Ungroup Arrays action</comment>
        <translation>Убрать группирование массивов.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/columnorg/columnar_org.py" line="185"/>
        <source>&amp;Group Arrays</source>
        <comment>Group separated arrays with the same number of rows</comment>
        <translation type="unfinished">С&amp;группировать</translation>
    </message>
    <message>
        <location filename="vitables/plugins/columnorg/columnar_org.py" line="261"/>
        <source>
Error: grouping arrays, operation cancelled. Not all the selected arrays have the same number of rows.</source>
        <comment>An error message in the ArraysColsOrganizer plugin</comment>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>NodeItemDelegate</name>
    <message>
        <location filename="vitables/h5db/nodeitemdelegate.py" line="103"/>
        <source>Renaming a node: name already in use</source>
        <comment>A dialog caption</comment>
        <translation>Переименование узла: имя уже используется</translation>
    </message>
    <message>
        <location filename="vitables/h5db/nodeitemdelegate.py" line="106"/>
        <source>Source file: {0}
Parent group: {1}

There is already a node named &apos;{2}&apos; in that parent group.
</source>
        <comment>A dialog label</comment>
        <translation>Исходный файл: {0}
Родительская группа: {1}
Узел с именем {2} уже существует в родительской группе.</translation>
    </message>
</context>
<context>
    <name>Preferences</name>
    <message>
        <location filename="vitables/preferences/preferences.py" line="159"/>
        <source>  General  </source>
        <comment>Text for page selector icon</comment>
        <translation>Общие</translation>
    </message>
    <message>
        <location filename="vitables/preferences/preferences.py" line="167"/>
        <source>Look &amp; Feel</source>
        <comment>Text for page selector icon</comment>
        <translation>Внешний вид</translation>
    </message>
    <message>
        <location filename="vitables/preferences/preferences.py" line="175"/>
        <source>  Plugins  </source>
        <comment>Text for page selector icon</comment>
        <translation>Плагин</translation>
    </message>
    <message>
        <location filename="vitables/preferences/preferences.py" line="438"/>
        <source>Sorry, there are no info available for this plugin</source>
        <comment>A text label</comment>
        <translation>Описание плагина отсутствует</translation>
    </message>
</context>
<context>
    <name>QueriesManager</name>
    <message>
        <location filename="vitables/queries/querymgr.py" line="70"/>
        <source>Table {0} is empty. Nothing to query.</source>
        <comment>Warning message for users</comment>
        <translation>Таблица {0} пустая. Запрос невозможен.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="108"/>
        <source>Table {0} has no columns suitable to be queried. All columns are nested, multidimensional or have a Complex data type.</source>
        <comment>An error when trying to query a table</comment>
        <translation>Таблица {0} не содержит столбцов, которые могут быть использованы в запросе. Все столбцы вложены, большой размерности или содержат комплексные данные.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="118"/>
        <source>Some table columns contain multidimensional, nested or Complex data. They cannot be queried so are not included in the Column selector of the query dialog.</source>
        <comment>An informational note for users</comment>
        <translation>Некоторые из столбцов содержат много размерные, вложенные или комплексные данные. Запрос к ним не возможен.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="261"/>
        <source>Cleaning the Query results file</source>
        <comment>Caption of the QueryDeleteAll dialog</comment>
        <translation>Очистка файла с результатами запроса</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="271"/>
        <source>Delete</source>
        <comment>Button text</comment>
        <translation>Удалить</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="273"/>
        <source>Cancel</source>
        <comment>Button text</comment>
        <translation>Отменить</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="308"/>
        <source>Query on table {0} failed!</source>
        <comment>Warning log message about a failed query</comment>
        <translation>Ошибка при запросе из таблицы {0}!</translation>
    </message>
</context>
<context>
    <name>QueryDialog</name>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="17"/>
        <source>Dialog</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="37"/>
        <source>Global options</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="59"/>
        <source>Name:</source>
        <translation type="unfinished">Имя:</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="66"/>
        <source>&lt;qt&gt;
        The name of the table where the query results will be added.
        &lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="92"/>
        <source>Original indices into column:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="99"/>
        <source>&lt;qt&gt;
        The name of the column where the indices of the selected rows
        will be added.
        &lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="105"/>
        <source>Orig_idx</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="119"/>
        <source>Query condition</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="133"/>
        <source>&lt;qt&gt;
        &lt;h3&gt;Conditions syntax&lt;/h3&gt;
        A condition on a table is just a &lt;em&gt;string&lt;/em&gt; containing a
        Python expression that involves &lt;em&gt;at least one column&lt;/em&gt;
        , and maybe some constants and external variables, all combined
        with algebraic operators or functions.
        Beware that &lt;tt&gt;&amp;&lt;/tt&gt;, &lt;tt&gt;|&lt;/tt&gt; and &lt;tt&gt;~&lt;/tt&gt; operators
        are used for logical comparisons. They have higher precedence
        than logical operators so we recommend to &lt;em&gt;always use
        parenthesis around logical operators&lt;/em&gt;.&lt;/p&gt;
        &lt;p&gt;The following table shows some examples of conditions and
        their equivalent Python expressions.&lt;/p&gt;
        &lt;div align=&apos;center&apos;&gt;&lt;table border=&apos;1&apos;&gt;
        &lt;tr&gt;&lt;th&gt;Condition&lt;/th&gt;&lt;th&gt;Python expression&lt;/th&gt;&lt;/tr&gt;
        &lt;tr&gt;&lt;td&gt;&lt;code&gt;a &amp; (b == c)&lt;/code&gt;&lt;/td&gt;
        &lt;td&gt;&lt;code&gt;a and b == c&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
        &lt;tr&gt;&lt;td&gt;&lt;code&gt;(0 &amp;lt; x) &amp; (x &amp;lt; 1)&lt;/code&gt;&lt;/td&gt;
        &lt;td&gt;&lt;code&gt;0 &amp;lt; x &amp;lt; 1&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
        &lt;tr&gt;&lt;td&gt;&lt;code&gt;a + b  &amp;gt; c&lt;/code&gt;&lt;/td&gt;
        &lt;td&gt;&lt;code&gt;a + b  &amp;gt; c&lt;/code&gt;&lt;/td&gt;&lt;/tr&gt;
        &lt;tr&gt;&lt;td&gt;&lt;code&gt;where(a &gt; b, 3, 4)&lt;/code&gt;&lt;/td&gt;
        &lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
        &lt;/table&gt;&lt;/div&gt;
        &lt;p&gt;You can find detailed information about conditions in the
        Appendix B of the PyTables users guide.&lt;/p&gt;
        &lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="186"/>
        <source>&lt;qt&gt;
        The names of the searchable columns. They must
        fulfill the following requirements:
        &lt;ul&gt;&lt;li&gt;must be not nested&lt;/li&gt;
        &lt;li&gt;must have a scalar data type&lt;/li&gt;
        &lt;li&gt;their data type cannot be &lt;code&gt;complex&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;
        Columns whose names contains blanks are automatically mapped
        to variables whose names contain no blanks. For querying
        those columns the mapped variables will be used.
        &lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="202"/>
        <source>&lt;qt&gt;
        The operators that can be used in a given condition. Operators
        can be logical, comparison and arithmetic.&lt;br&gt;Not all operators
        are available for every data type.
        &lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="213"/>
        <source>&lt;qt&gt;
        The set of functions that can appear in a condition.
        It includes functions for doing selections, trigonometric
        functions and functions on complex numbers. For ease
        of use, arguments are automatically included when a
        function is inserted. The arguments meaning is:
        &lt;ul&gt;&lt;li&gt;N: number&lt;/li&gt;&lt;li&gt;B: boolean&lt;/li&gt;
        &lt;li&gt;F: float&lt;/li&gt;&lt;li&gt;C: complex&lt;/li&gt;&lt;/ul&gt;
        &lt;/qt&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="248"/>
        <source>The range of rows included in the query.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="251"/>
        <source>Range of rows</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="265"/>
        <source>Start:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="309"/>
        <source>1</source>
        <comment>A range selector label</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="279"/>
        <source>Stop:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="302"/>
        <source>Step:</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>QueryDlg</name>
    <message>
        <location filename="vitables/queries/querydlg.py" line="125"/>
        <source>New query on table: {0}</source>
        <comment>A dialog caption</comment>
        <translation>Новый запрос из таблицы: {0}</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="286"/>
        <source>The chosen name is already in use. Please, choose another one.</source>
        <comment>A logger info message</comment>
        <translation>Выранное имя уже используется. Выберете другое.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="297"/>
        <source>Enter a name for the column of indices, please</source>
        <comment>A logger info message</comment>
        <translation>Введите имя для столбца с индексами</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="303"/>
        <source>The chosen name for the column of indicesis not valid. It contains &apos;/&apos; characters</source>
        <comment>A logger info message</comment>
        <translation>Выранное имя столбца с индексами не может быть использовано</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="310"/>
        <source>The chosen name for the column of indices is already in use. &quot;Please, choose another one.</source>
        <comment>A logger info message</comment>
        <translation>Выранное имя столбца уже используется. Выберите другое.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="333"/>
        <source>The stop value is greater than the number of rows. Please, choose another one.</source>
        <comment>A logger info message</comment>
        <translation>Максимальное значение больше числа строк. Выберите другое значение.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="340"/>
        <source>The start value is greater than the stop value. Please, choose another one.</source>
        <comment>A logger info message</comment>
        <translation>Начальное значение больше конечного. Выберите другое.</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="347"/>
        <source>The start value must be greater than 0.</source>
        <comment>A logger info message</comment>
        <translation>Начальное значение должно быть больше нуля.</translation>
    </message>
</context>
<context>
    <name>RenameDlg</name>
    <message>
        <location filename="vitables/vtwidgets/renamedlg.py" line="115"/>
        <source>Overwrite</source>
        <comment>A button label</comment>
        <translation>Перезаписать</translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/renamedlg.py" line="118"/>
        <source>Rename</source>
        <comment>A button label</comment>
        <translation>Переименовать</translation>
    </message>
</context>
<context>
    <name>RenameNodeDlg</name>
    <message>
        <location filename="vitables/vtwidgets/rename_dlg.ui" line="17"/>
        <source>Dialog</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/rename_dlg.ui" line="25"/>
        <source>InfoLabel</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/rename_dlg.ui" line="34"/>
        <source>New name: </source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>SettingsDialog</name>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="14"/>
        <source>ViTables settings</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="40"/>
        <source>Click an item in this tree to select the settings you want to change. Beware that the listed plugins are *loaded* plugins (i.e. the are working in the current ViTables session) not just enabled plugins.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="84"/>
        <source>Configure the startup behavior of ViTables.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="105"/>
        <source>Startup</source>
        <comment>The name of the groupbox where startup is configured</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="111"/>
        <source>If checked, the last working session -i.e. open files and views- will be restored. If not, ViTables will start with an empty session.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="114"/>
        <source>Restore last session</source>
        <comment>Label of the restore last session check button</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="121"/>
        <source>The working directory used when opening the very first file. It defaults to the current directory if ViTables has been launched from the command line or to the user&apos;s home directory if ViTables started from a menu or a desktop icon. If the checkbox is checked then the last entered directory will be used.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="124"/>
        <source>Start in last working directory</source>
        <comment>Label of the startup in the last open directory check box</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="139"/>
        <source>Configure the look and feel of ViTables.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="145"/>
        <source>Customise font and colors of the Logger.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="148"/>
        <source>Logger</source>
        <comment>The title of the logger groubox</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="157"/>
        <source>You can preview your Font settings here.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="163"/>
        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;DejaVu Sans&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;table border=&quot;0&quot; style=&quot;-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;&quot;&gt;
&lt;tr&gt;
&lt;td style=&quot;border: none;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;En un lugar de La Mancha,&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;de cuyo nombre no quiero acordarme,&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;no ha mucho tiempo vivia un hidalgo..&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="183"/>
        <source>Setup the text color.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="186"/>
        <source>F&amp;oreground</source>
        <comment>The label of the logger text color button</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="219"/>
        <source>Setup the background color.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="222"/>
        <source>&amp;Background</source>
        <comment>The label of the logger color button</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="229"/>
        <source>Here you can choose the font used in the Logger.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="232"/>
        <source>&amp;Font</source>
        <comment>The label of the logger font chooser button</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="242"/>
        <source>Setup the background color of the workspace.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="245"/>
        <source>Workspace</source>
        <comment>The title of the workspace groupbox</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="254"/>
        <source>&amp;Background</source>
        <comment>The label of the workspace color button</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="264"/>
        <source>Background color sample</source>
        <comment>A label for the workspace color sample</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="274"/>
        <source>Choose the global style of ViTables here.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="277"/>
        <source>Style</source>
        <comment>The title of the global aspect groupbox</comment>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="306"/>
        <source>Available plugins</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="318"/>
        <source>The list of all available plugins. If a plugin is checked then it is enabled (but not necessarely loaded), if it is unchecked then it is disabled (but not necessarely unloaded). Please, note that changes in the check state of plugins will take effect the next time you start ViTables.</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>TimeFormatterPage</name>
    <message>
        <location filename="vitables/plugins/timeseries/time_series.py" line="262"/>
        <source>&lt;qt&gt;
            &lt;p&gt;Plugin that provides nice string formatting for time fields.
            &lt;p&gt;It supports not only native PyTables time datatypes but
            also time series generated (and stored in PyTables tables) via
            Pandas and scikits.timeseries packages.
            &lt;/qt&gt;</source>
        <comment>Text of an About plugin message box</comment>
        <translation>Плагин для отображения поля времени</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="14"/>
        <source>Form</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="20"/>
        <source>Plugin description</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="26"/>
        <source>Version: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="77"/>
        <source>Module name: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="128"/>
        <source>Folder: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="179"/>
        <source>Author: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="230"/>
        <source>Desription: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="284"/>
        <source>Configure time format</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="290"/>
        <source>Time format: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="299"/>
        <source>Sample date: </source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="319"/>
        <source>Today</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>VTApp</name>
    <message>
        <location filename="vitables/vtapp.py" line="129"/>
        <source>Creating the GUI...</source>
        <comment>A splash screen message</comment>
        <translation>Создание GUI...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="136"/>
        <source>Configuration setup...</source>
        <comment>A splash screen message</comment>
        <translation>Создание конфигурации...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="160"/>
        <source>ViTables {0}
Copyright (c) 2008-2017 Vicent Mas.
All rights reserved.</source>
        <comment>Application startup message</comment>
        <translation>ViTables {0}
Copyright (c) 2008-2017 Vicent Mas.
All rights reserved.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="183"/>
        <source>Recovering last session...</source>
        <comment>A splash screen message</comment>
        <translation>Восстановление предыдущей сессии...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="189"/>
        <source>Opening files...</source>
        <comment>A splash screen message</comment>
        <translation>Открытие файла...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="193"/>
        <source>Opening the list of files...</source>
        <comment>A splash screen message</comment>
        <translation>Открытие списка файлов...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="296"/>
        <source>Opening failed: wrong {0} in line {1} of {2}</source>
        <comment>Bad line format</comment>
        <translation>Ошибка при открытии: ошибка {0} в строке {1} из {2}</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="335"/>
        <source>List of HDF5 files not read</source>
        <comment>File not updated error</comment>
        <translation>Ошибка при чтении списка файлов HDF5</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="440"/>
        <source>Create</source>
        <comment>Accept button text for QFileDialog</comment>
        <translation>Создать</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="386"/>
        <source>Creating a new file...</source>
        <comment>Caption of the File New... dialog</comment>
        <translation>Создание нового файла...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="609"/>
        <source>HDF5 Files (*.hdf *.h5 *.hd5 *.hdf5);;All Files (*)</source>
        <comment>Filter for the Open New dialog</comment>
        <translation>Файлы HDF5 (*.hdf *.h5 *.hd5 *.hdf5);;Все файлы (*)</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="407"/>
        <source>New file creation failed because file already exists.</source>
        <comment>A file creation error</comment>
        <translation>Ошибка при создании нового файла, так как он уже существует.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="442"/>
        <source>Copying a file...</source>
        <comment>Caption of the File Save as... dialog</comment>
        <translation>Копирование файла...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="442"/>
        <source>HDF5 Files (*.hdf *.h5 *.hd5 *.hdf5);;All Files (*)</source>
        <comment>Filter for the Save As... dialog</comment>
        <translation>Файлы HDF5 (*.hdf *.h5 *.hd5 *.hdf5);;Все файлы (*)</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="465"/>
        <source>File Save as: file already exists</source>
        <comment>A dialog caption</comment>
        <translation>Сохранение файла как: файл уже существует</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="481"/>
        <source>Target directory: {0}

The Query results database cannot be overwritten.</source>
        <comment>Overwrite file dialog label</comment>
        <translation>Подкаталог {0}. База данных с запросами не может быть перезаписана.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="489"/>
        <source>Target directory: {0}

The file being saved cannot overwrite itself.</source>
        <comment>Overwrite file dialog label</comment>
        <translation>Подкаталог{0}. Файл не может перезаписать сам себя.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="497"/>
        <source>Target directory: {0}

File name {1} already in use in that directory.
</source>
        <comment>Overwrite file dialog label</comment>
        <translation>Подкаталог {0}. Файл {1} уже используется.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="608"/>
        <source>Open</source>
        <comment>Accept text for QFileDialog</comment>
        <translation>Открыть</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="609"/>
        <source>Select a file for opening</source>
        <comment>Caption of the File Open... dialog</comment>
        <translation>Выберите файл</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="745"/>
        <source>About UnImplemented nodes</source>
        <comment>A dialog caption</comment>
        <translation>О нереализованных узлах</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="745"/>
        <source>Actual data for this node are not accesible.&lt;br&gt; The combination of datatypes and/or dataspaces in this node is not yet supported by PyTables.&lt;br&gt;If you want to see this kind of dataset implemented in PyTables, please, contact the developers.</source>
        <comment>Text of the Unimplemented node dialog</comment>
        <translation>Actual data for this node are not accesible.&lt;br&gt; The combination of datatypes and/or dataspaces in this node is not yet supported by PyTables.&lt;br&gt;If you want to see this kind of dataset implemented in PyTables, please, contact the developers.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="805"/>
        <source>Creating a new group</source>
        <comment>A dialog caption</comment>
        <translation>Создание новой группы</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="805"/>
        <source>Source file: {0}
Parent group: {1}

 </source>
        <comment>A dialog label</comment>
        <translation>Исходный файл: {0}
Родительская группа: {1}</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="805"/>
        <source>Create</source>
        <comment>A button label</comment>
        <translation>Создать</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="825"/>
        <source>Creating a new group: name already in use</source>
        <comment>A dialog caption</comment>
        <translation>Создание новой группы: име уже используется</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="886"/>
        <source>Source file: {0}
Parent group: {1}

There is already a node named &apos;{2}&apos; in that parent group.
</source>
        <comment>A dialog label</comment>
        <translation>Исходный файл: {0}
Родительская группа: {1}
Узел с именем {2} уже существует в родительской группе.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="862"/>
        <source>Renaming a node</source>
        <comment>A dialog caption</comment>
        <translation>Переименование узла</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="862"/>
        <source>Source file: {0}
Parent group: {1}

</source>
        <comment>A dialog label</comment>
        <translation>Исходный файл: {0}
Родительская группа: {1}</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="862"/>
        <source>Rename</source>
        <comment>A button label</comment>
        <translation>Переименование</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="884"/>
        <source>Renaming a node: name already in use</source>
        <comment>A dialog caption</comment>
        <translation>Переименование узла: имя уже используется</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="941"/>
        <source>About unreadable datasets</source>
        <comment>Dialog caption</comment>
        <translation>О нечитаемых наборе данных</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="941"/>
        <source>Sorry, actual data for this node are not accesible.&lt;br&gt;The node will not be copied.</source>
        <comment>Text of the Unimplemented node dialog</comment>
        <translation>Данные для данного узла недоступны. Узел не будет скопирован.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="997"/>
        <source>Node paste: nodename already exists</source>
        <comment>A dialog caption</comment>
        <translation>Вставка узла: узел с данным именем уже существует</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="999"/>
        <source>Source file: {0}
Copied node: {1}
Destination file: {2}
Parent group: {3}

Node name &apos;{4}&apos; already in use in that group.
</source>
        <comment>A dialog label</comment>
        <translation>Исходный файл: {0}
Перемещенный узел: {1}
Файл назначения: {2}
Родительская группа: {3}
Узел с именем {4} уже существует в этой группе.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1005"/>
        <source>Paste</source>
        <comment>A button label</comment>
        <translation>Вставить</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1041"/>
        <source>Node deletion</source>
        <comment>Caption of the node deletion dialog</comment>
        <translation>Удаление узла</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1043"/>
        <source>
You are about to delete the node:
{0}
</source>
        <comment>Ask for confirmation</comment>
        <translation>Подтверждение удаления узла {0}</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1052"/>
        <source>Delete</source>
        <comment>Button text</comment>
        <translation>Удалить</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1055"/>
        <source>Cancel</source>
        <comment>Button text</comment>
        <translation>Отменить</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1165"/>
        <source>&lt;qt&gt;
            &lt;h3&gt;ViTables {0}&lt;/h3&gt;
            ViTables is a graphical tool for displaying datasets
            stored in PyTables and HDF5 files. It is written using PyQt
            , the Python bindings for the Qt GUI toolkit.&lt;p&gt;
            For more information see
            &lt;b&gt;http://www.vitables.org&lt;/b&gt;.&lt;p&gt;
            Please send bug reports or feature requests to the
            &lt;em&gt;ViTables Users Group&lt;/em&gt;.&lt;p&gt;
            ViTables uses third party software which is copyrighted by
            its respective copyright holder. For details see the
            copyright notice of the individual packages.
            &lt;/qt&gt;</source>
        <comment>Text of the About ViTables dialog</comment>
        <translation></translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1180"/>
        <source>&lt;qt&gt;
            Alexey Naydenov for his contributions to the plugins system and for
            providing logging support to the application.&lt;p&gt;
            Kamil Kisiel and Max Bohnet for fixing bugs.&lt;p&gt;
            Dmitrijs Ledkovs for contributing the new and greatly enhanced
            build system and for making Debian packages.&lt;p&gt;
            Oxygen team for a wonderful icons set.&lt;p&gt;
            All the people who reported bugs and made suggestions.
            &lt;/qt&gt;</source>
        <comment>Text of the About ViTables dialog (Thanks to page)</comment>
        <translation></translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1195"/>
        <source>About ViTables {0}</source>
        <comment>Caption of the About ViTables dialog</comment>
        <translation>О ViTables {0}</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1209"/>
        <source>&amp;About</source>
        <comment>Title of the first tab of the About dialog</comment>
        <translation>&amp;О программе</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1211"/>
        <source>&amp;Thanks To</source>
        <comment>Title of the second tab of the About dialog</comment>
        <translation>&amp;Благодарности</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1213"/>
        <source>&amp;License</source>
        <comment>Title of the third tab of the About dialog</comment>
        <translation>&amp;Лицензия</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1229"/>
        <source>About Qt</source>
        <comment>Caption of the About Qt dialog</comment>
        <translation>О Qt</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1265"/>
        <source>Version Numbers</source>
        <comment>Caption of the Versions dialog</comment>
        <translation>Версии</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1260"/>
        <source>not available</source>
        <comment>Part of the library not found text</comment>
        <translation>не доступно</translation>
    </message>
</context>
<context>
    <name>VTGUI</name>
    <message>
        <location filename="vitables/vtgui.py" line="58"/>
        <source>ViTables {0}</source>
        <comment>Main window title</comment>
        <translation>ViTables {0}</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="132"/>
        <source>&lt;qt&gt;
                      &lt;h3&gt;The Workspace&lt;/h3&gt;
                      This is the area where open leaves of the object tree are
                      displayed. Many tables and arrays can be displayed
                      simultaneously.
                      &lt;p&gt;The diferent views can be tiled as a mosaic or
                      stacked as a cascade.
                      &lt;/qt&gt;</source>
        <comment>WhatsThis help for the workspace</comment>
        <translation>Основная рабочая область</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="157"/>
        <source>&amp;New...</source>
        <comment>File -&gt; New</comment>
        <translation>&amp;Создать...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="157"/>
        <source>Create a new file</source>
        <comment>Status bar text for the File -&gt; New action</comment>
        <translation>Создать новый файл</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="167"/>
        <source>&amp;Open...</source>
        <comment>File -&gt; Open</comment>
        <translation>&amp;Открыть...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="167"/>
        <source>Open an existing file</source>
        <comment>Status bar text for the File -&gt; Open action</comment>
        <translation>Открыть файл</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="177"/>
        <source>Read-only open...</source>
        <comment>File -&gt; Open</comment>
        <translation>Открыть для чтения...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="177"/>
        <source>Open an existing file in read-only mode</source>
        <comment>Status bar text for the File -&gt; Open action</comment>
        <translation>Открыть существующий файл только для чтения</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="186"/>
        <source>&amp;Close</source>
        <comment>File -&gt; Close</comment>
        <translation>&amp;Закрыть</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="186"/>
        <source>Close the selected file</source>
        <comment>Status bar text for the File -&gt; Close action</comment>
        <translation>Закрыть выделенный файл</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="196"/>
        <source>Close &amp;All</source>
        <comment>File -&gt; Close All</comment>
        <translation>Закрыть &amp;все</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="196"/>
        <source>Close all files</source>
        <comment>Status bar text for the File -&gt; Close All action</comment>
        <translation>Закрыть все файлы</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="204"/>
        <source>&amp;Save as...</source>
        <comment>File -&gt; Save As</comment>
        <translation>Сохранить &amp;как...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="204"/>
        <source>Save a renamed copy of the selected file</source>
        <comment>Status bar text for the File -&gt; Save As action</comment>
        <translation>Сохранить файл под новым именем</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="214"/>
        <source>E&amp;xit</source>
        <comment>File -&gt; Exit</comment>
        <translation>&amp;Выйти</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="214"/>
        <source>Quit ViTables</source>
        <comment>Status bar text for the File -&gt; Exit action</comment>
        <translation>Выйти из программы</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="224"/>
        <source>&amp;Open view</source>
        <comment>Node -&gt; Open View</comment>
        <translation>&amp;Открыть вид</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="224"/>
        <source>Display the contents of the selected node</source>
        <comment>Status bar text for the Node -&gt; Open View action</comment>
        <translation>Отобразить содержание выделенного узла</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="233"/>
        <source>C&amp;lose view</source>
        <comment>Node -&gt; Close View</comment>
        <translation>&amp;Закрыть вид</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="233"/>
        <source>Close the view of the selected node</source>
        <comment>Status bar text for the Node -&gt; Close View action</comment>
        <translation>Закрыть вид выделенного узла</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="242"/>
        <source>Prop&amp;erties...</source>
        <comment>Node -&gt; Properties</comment>
        <translation>&amp;Свойства...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="242"/>
        <source>Show the properties dialog for the selected node</source>
        <comment>Status bar text for the Node -&gt; Properties action</comment>
        <translation>Отобразить свойства выделенного узла</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="252"/>
        <source>&amp;New group...</source>
        <comment>Node -&gt; New group</comment>
        <translation>Создать &amp;группу...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="252"/>
        <source>Create a new group under the selected node</source>
        <comment>Status bar text for the Node -&gt; New group action</comment>
        <translation>Создать новую группу</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="262"/>
        <source>&amp;Rename...</source>
        <comment>Node -&gt; Rename</comment>
        <translation>&amp;Переименовать...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="262"/>
        <source>Rename the selected node</source>
        <comment>Status bar text for the Node -&gt; Rename action</comment>
        <translation>Переименовать выделенный узел</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="272"/>
        <source>Cu&amp;t</source>
        <comment>Node -&gt; Cut</comment>
        <translation>Вы&amp;резать</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="272"/>
        <source>Cut the selected node</source>
        <comment>Status bar text for the Node -&gt; Cut action</comment>
        <translation>Вырезать выделенный узел</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="281"/>
        <source>&amp;Copy</source>
        <comment>Node -&gt; Copy</comment>
        <translation>&amp;Копировать</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="281"/>
        <source>Copy the selected node</source>
        <comment>Status bar text for the Node -&gt; Copy action</comment>
        <translation>Копировать выделенный узел</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="290"/>
        <source>&amp;Paste</source>
        <comment>Node -&gt; Paste</comment>
        <translation>&amp;Вставить</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="290"/>
        <source>Paste the last copied/cut node</source>
        <comment>Status bar text for the Node -&gt; Copy action</comment>
        <translation>Вставить последний скопированный/вырезанный узел</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="299"/>
        <source>&amp;Delete</source>
        <comment>Node -&gt; Delete</comment>
        <translation>&amp;Удалить</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="299"/>
        <source>Delete the selected node</source>
        <comment>Status bar text for the Node -&gt; Copy action</comment>
        <translation>Удалить выделенный узел</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="308"/>
        <source>&amp;Query...</source>
        <comment>Query -&gt; New...</comment>
        <translation>За&amp;прос...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="308"/>
        <source>Create a new filter for the selected table</source>
        <comment>Status bar text for the Query -&gt; New... action</comment>
        <translation>Создать новый фильтр для выделенной таблицы</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="317"/>
        <source>Delete &amp;All</source>
        <comment>Query -&gt; Delete All</comment>
        <translation>Удалить &amp;все</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="317"/>
        <source>Remove all filters</source>
        <comment>Status bar text for the Query -&gt; Delete All action</comment>
        <translation>Удалить все фильтры</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="326"/>
        <source>&amp;Preferences...</source>
        <comment>Settings -&gt; Preferences</comment>
        <translation>&amp;Настройки...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="326"/>
        <source>Configure ViTables</source>
        <comment>Status bar text for the Settings -&gt; Preferences action</comment>
        <translation>Изменить настройки ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="337"/>
        <source>&amp;Cascade</source>
        <comment>Windows -&gt; Cascade</comment>
        <translation>Каска&amp;д</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="337"/>
        <source>Arranges open windows in a cascade pattern</source>
        <comment>Status bar text for the Windows -&gt; Cascade action</comment>
        <translation>Разместить выделенные окна каскадом</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="345"/>
        <source>&amp;Tile</source>
        <comment>Windows -&gt; Tile</comment>
        <translation>&amp;Плитки</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="345"/>
        <source>Arranges open windows in a tile pattern</source>
        <comment>Status bar text for the Windows -&gt; Tile action</comment>
        <translation>Разместить выделенные окна плитками</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="353"/>
        <source>&amp;Restore All</source>
        <comment>Windows -&gt; Restore All</comment>
        <translation>&amp;Восстановить все</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="353"/>
        <source>Restore all minimized windows on the workspace</source>
        <comment>Status bar text for the Windows -&gt; Restore All action</comment>
        <translation>Восстановить размер всех минимизированных окон</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="362"/>
        <source>&amp;Minimize All</source>
        <comment>Windows -&gt; Minimize All</comment>
        <translation>&amp;Минимизировать</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="362"/>
        <source>Minimize all windows on the workspace</source>
        <comment>Status bar text for the Windows -&gt; Restore All action</comment>
        <translation>Минимизировать все окна</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="371"/>
        <source>C&amp;lose</source>
        <comment>Windows -&gt; Close</comment>
        <translation>&amp;Закрыть</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="371"/>
        <source>Close the active view</source>
        <comment>Status bar text for the Windows -&gt; Close action</comment>
        <translation>Закрыть активный вид</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="379"/>
        <source>Close &amp;All</source>
        <comment>Windows -&gt; Close All</comment>
        <translation>Закрыть &amp;все</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="379"/>
        <source>Close all views</source>
        <comment>Status bar text for the Windows -&gt; Close All action</comment>
        <translation>Закрыть все окна</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="387"/>
        <source>Current View</source>
        <comment>Windows -&gt; separator</comment>
        <translation>Текущий вид</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="392"/>
        <source>Change view mode</source>
        <comment>MDI -&gt; Tabbed</comment>
        <translation>Изменить режим отображения</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="392"/>
        <source>Change the workspace view mode</source>
        <comment>Status bar text for the MDI -&gt; Tabbed action</comment>
        <translation>Изменить режим отображения рабочей среды</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="400"/>
        <source>&amp;User&apos;s Guide</source>
        <comment>Help -&gt; Users Guide</comment>
        <translation>&amp;Руководство</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="400"/>
        <source>Open the ViTables User&apos;s Guide</source>
        <comment>Status bar text for the Help -&gt; Users Guide action</comment>
        <translation>Открыть руководство пользователя</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="410"/>
        <source>&amp;About ViTables</source>
        <comment>Help -&gt; About</comment>
        <translation>&amp;О ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="410"/>
        <source>Display information about ViTables</source>
        <comment>Status bar text for the Help -&gt; About action</comment>
        <translation>Показать информацию о ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="419"/>
        <source>About &amp;Qt</source>
        <comment>Help -&gt; About Qt</comment>
        <translation>О &amp;Qt</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="419"/>
        <source>Display information about the Qt library</source>
        <comment>Status bar text for the Help -&gt; About Qt action</comment>
        <translation>Отобразить информацию о Qt</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="427"/>
        <source>Show &amp;Versions</source>
        <comment>Help -&gt; Show Versions</comment>
        <translation>Верс&amp;ии</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="427"/>
        <source>Show the versions of the libraries used by ViTables</source>
        <comment>Status bar text for the Help -&gt; Show Versions action</comment>
        <translation>Показать информацию о версиях используемых библиотек</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="455"/>
        <source>File operations</source>
        <comment>Toolbar title</comment>
        <translation>Работа с файлами</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="467"/>
        <source>Click to open a file
Click and hold to open a recent file</source>
        <comment>File toolbar -&gt; Open Recent Files</comment>
        <translation>Одно нажатие для открытия файла. Нажать и удерживать для открытия недавно использованного файла</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="473"/>
        <source>Node operations</source>
        <comment>Toolbar title</comment>
        <translation>Работа с узлами</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="480"/>
        <source>Queries on tables</source>
        <comment>Toolbar title</comment>
        <translation>Запрос из таблицы</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="488"/>
        <source>Help system</source>
        <comment>Toolbar title</comment>
        <translation>Система помощи</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="494"/>
        <source>Whats this? help for a widget</source>
        <comment>Status bar text for the Help -&gt; Whats This action</comment>
        <translation>Помощь для элемента</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="508"/>
        <source>The node currently selected in the Tree of databases pane</source>
        <comment>The Selected node box startup message</comment>
        <translation>Выделенный эелемент в окне дерева базы данных</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="511"/>
        <source>Ready...</source>
        <comment>The status bar startup message</comment>
        <translation>Готов...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="526"/>
        <source>&amp;File</source>
        <comment>The File menu entry</comment>
        <translation>&amp;Файл</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="529"/>
        <source>Open R&amp;ecent Files</source>
        <comment>File -&gt; Open Recent Files</comment>
        <translation>Открыть &amp;последние</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="548"/>
        <source>&amp;Node</source>
        <comment>The Node menu entry</comment>
        <translation>&amp;Узел</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="558"/>
        <source>&amp;Dataset</source>
        <comment>The Dataset menu entry</comment>
        <translation>Набор &amp;данных</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="566"/>
        <source>&amp;Settings</source>
        <comment>The Settings menu entry</comment>
        <translation>&amp;Настройки</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="570"/>
        <source>ToolBars</source>
        <comment>Tools -&gt; ToolBars action</comment>
        <translation>Кнопки управления</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="578"/>
        <source>&amp;Window</source>
        <comment>The Windows menu entry</comment>
        <translation>О&amp;кно</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="590"/>
        <source>&amp;Help</source>
        <comment>The Help menu entry</comment>
        <translation>&amp;Справка</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="597"/>
        <source>Context help</source>
        <comment>Status bar text for the Help -&gt; Whats This action</comment>
        <translation>Контекстная справка</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="796"/>
        <source>&amp;Clear</source>
        <comment>Recent File submenu entry</comment>
        <translation>О&amp;чистить</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="836"/>
        <source>&amp;More...</source>
        <comment>A Windows submenu</comment>
        <translation>&amp;Больше...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="436"/>
        <source>Calculate...</source>
        <comment>Calculate action</comment>
        <translation>Калькулятор...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="436"/>
        <source>Run calculation on opened tables.</source>
        <comment>Action tip</comment>
        <translation>Произвести вычисления над данными из открытых таблиц.</translation>
    </message>
</context>
</TS>