File: vitables_es_ES.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 (3032 lines) | stat: -rw-r--r-- 142,637 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
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="es_ES" sourcelanguage="en_GB">
<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>Descripción del plugin</translation>
    </message>
    <message>
        <location filename="vitables/plugins/about_page.ui" line="26"/>
        <source>Version: </source>
        <translation>Versión:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/about_page.ui" line="77"/>
        <source>Module name: </source>
        <translation>Nombre del módulo:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/about_page.ui" line="128"/>
        <source>Folder: </source>
        <translation>Carpeta:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/about_page.ui" line="179"/>
        <source>Author: </source>
        <translation>Autor:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/about_page.ui" line="230"/>
        <source>Desription: </source>
        <translation>Descripción:</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">A&amp;grupa arrays</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>Agrupa arrays en una vista única</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>&lt;qt&gt;&lt;p&gt;Plugin que proporciona una vista alternativa para arrays con el mismo número de filas. &lt;p&gt;El usuario selecciona los arrays que desea ver agrupados. Entonces selecciona la entrada de menú Nodo -&gt; Agrupa arrays y los arrays se visualizan de la forma esperada por el usuario.&lt;/qt&gt;</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">&lt;qt&gt;&lt;p&gt;Plugin que proporciona una vista alternativa para arrays con el mismo número de filas. &lt;p&gt;El usuario selecciona los arrays que desea ver agrupados. Entonces selecciona la entrada de menú Nodo -&gt; Agrupa arrays y los arrays se visualizan de la forma esperada por el usuario.&lt;/qt&gt;</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>
Error: el valor &quot;{0}&quot; no concuerda con su tipo de datos.</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>
Error: el valor &quot;{0}&quot; está fuera de rango.</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>
Error: el valor &quot;{0}&quot; esta fuera de rango o no concuerda con su tipo de datos.</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>
Error: &quot;{0}&quot; no puede convertirse a un objeto 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>
Error: el campo Nombre está vacío en la fila {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>
Error: el nombre de atributo &quot;{0}&quot; está repetido.</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>Atributos de &amp;Sistema</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="185"/>
        <source>System attributes:</source>
        <translation>Atributos de sistema:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="292"/>
        <source>&amp;User Attributes</source>
        <translation>Atributos de &amp;Usuario</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="300"/>
        <source>User attributes:</source>
        <translation>Atributos de usuario:</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>&lt;qt&gt;
        &lt;h3&gt;Tabla de edición de atributos de usuario&lt;/h3&gt;
        Aquí puedes editar los atributos de usuario para este nodo.
        Es bastante fácil. &lt;p&gt;Para añadir un atributo pulsa el botón
        &lt;b&gt;Añadir&lt;/b&gt;. En la tabla se insertará una nueva fila.
         Introduce el nombre del atributo y su valor en las celdas
        correspondientes. Por último, selecciona el tipo de dato del
        atributo en el combobox de la columna Tipo de Dato.
        Para borrar un atributo seleccionalo pulsando en cualquiera
        de sus celdas y pulsa el botón &lt;b&gt;Borrar&lt;/b&gt;.&lt;/p&gt;
        &lt;p&gt;Ten en cuenta que PyTables almacena los atributos escalares
        como arrays escalares de Numpy, por eso no pueden guardarse
        como objetos Python, ni siquiera si eliges el tipo de dato Python
        en el combobox. Ten en cuenta también que los atributos multidimensionales
         (aparte de listas y tuplas de Python) no están soportados.&lt;/p&gt;
        &lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="437"/>
        <source>&amp;Add</source>
        <translation>&amp;Añadir</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="444"/>
        <source>&amp;Delete</source>
        <translation>&amp;Borrar</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attr_prop_dlg.ui" line="451"/>
        <source>&amp;What&apos;s this</source>
        <translation>&amp;Qué es esto</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>Nombre</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attrpropdlg.py" line="188"/>
        <source>Value</source>
        <comment>Second column header of the table</comment>
        <translation>Valor</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attrpropdlg.py" line="188"/>
        <source>Datatype</source>
        <comment>Third column header of the table</comment>
        <translation>Tipo de dato</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>Por favor, selecciona el atributo que quieres borrar.</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>Borrar atributo de usuario</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>

Estás a punto de borrar el atributo:
{0}

</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attrpropdlg.py" line="350"/>
        <source>Delete</source>
        <comment>Button text</comment>
        <translation>Borrar</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/attrpropdlg.py" line="353"/>
        <source>Cancel</source>
        <comment>Button text</comment>
        <translation>Cancelar</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>Editor de marcadores</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="83"/>
        <source>&amp;OK</source>
        <comment>Button label</comment>
        <translation>&amp;Aceptar</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="86"/>
        <source>&amp;Delete</source>
        <comment>Button label</comment>
        <translation>&amp;Borrar</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="89"/>
        <source>&amp;Cancel</source>
        <comment>Button label</comment>
        <translation>&amp;Cancelar</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="74"/>
        <source>Bookmark</source>
        <comment>First column header of the bookmarks table</comment>
        <translation>Marcador</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/bookmarksdlg.py" line="74"/>
        <source>URL</source>
        <comment>Second column header of the bookmarks table</comment>
        <translation>URL</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>Problemas leyendo los registros. El conjunto de datos parece estar comprimido con la librería {0}. Comprueba que esta librería está instalada, por favor.</translation>
    </message>
    <message>
        <location filename="vitables/vttables/buffer.py" line="220"/>
        <source>Data read error: {}</source>
        <comment>A dataset read error</comment>
        <translation>Error de lectura de datos: {}</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>
Error: se han detectado problemas durante la lectura de registros. El conjunto de datos podría estar corrompido.</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>No se ha seleccionado ningún grupo. Las referencias relativas están desactivadas.¿Continuar?</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="32"/>
        <source>Multiple groups are selected. Relative references are disabled. Continue?</source>
        <translation>Se han seleccionado varios grupos. Las referencias relativas están desactivadas ¿Continuar?</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="37"/>
        <source>Relative references are disabled</source>
        <translation>Referencias relativas desactivadas</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="169"/>
        <source>Save expression as</source>
        <translation>Guardar expresión como </translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="169"/>
        <source>Name:</source>
        <translation>Nombre:</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="245"/>
        <source>Node not found</source>
        <translation>Nodo no encontrado</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="251"/>
        <source>Node type</source>
        <translation>Tipo de nodo</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="314"/>
        <source>Result name</source>
        <translation>Nombre del resultado</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="276"/>
        <source>The location to store results is not specified</source>
        <translation>No se ha especificado ningún lugar para almacenar los resultados</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="290"/>
        <source>Create group</source>
        <translation>Crear grupo</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="351"/>
        <source>Evaluation error</source>
        <translation>Error de evaluación</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="351"/>
        <source>An exception was raised during evaluation, see log for details.</source>
        <translation>Se lanzó una excepción durante la evaluación, consulta el fichero de log para ver los detalles.</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator.py" line="364"/>
        <source>Result save error</source>
        <translation>Error al guardar el resultado</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>Se lanzó una excepción mientras se intentaba almacenar los resultados, consulta el fichero de log para ver los detalles.</translation>
    </message>
</context>
<context>
    <name>CalculatorDialog</name>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="85"/>
        <source>Evaluate expression</source>
        <translation>Evaluar la expresión</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="86"/>
        <source>Saved expressions:</source>
        <translation>Expresiones guardadas:</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="89"/>
        <source>Save</source>
        <translation>Guardar</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="91"/>
        <source>Remove</source>
        <translation>Borrar</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="92"/>
        <source>Statements:</source>
        <translation>Sentencias:</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="96"/>
        <source>Expression:</source>
        <translation>Expresión:</translation>
    </message>
    <message>
        <location filename="vitables/calculator/calculator_dlg.py" line="101"/>
        <source>Result table:</source>
        <translation>Tabla de resultados:</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;Expresiones guardadas.&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;Almacenar la expresión para su uso futuro.&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;Borra la expresión seleccionada de la lista de expresiones guardadas.&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;Conjunto de sentencias de Python que se ejecutarán antes de evaluar la expresión. Puede usarse para importar módulos adicionales o realizar cálculos preliminares para simplificar la expresión.&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;Los resultados de la expresión se guardarán en la tabla de resultados. Este campo debe contener una expresión válida que devuelva un array de PyTables, una lista o un escalar.&lt;/p&gt;
&lt;p&gt;La expresión puede contener referencias a nodos abiertos. Una referencia puede ser absoluta y empezar con un nombre de fichero o relativa al grupo actual. Una referencia es un string construido mediante la unión de nombres de grupos que lleva a los datos por puntos. Por ejemplo: &amp;quot;filename.h5.some_group.sub_group.mydata&amp;quot;. Si &amp;quot;sub_group&amp;quot; es el grupo actual entonces la cadena &amp;quot;mydata&amp;quot; puede usarse como referencia.&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;Referencia al destino para la expresión resultante. Una referencia es un string construido mediante la unión de nombres de grupos que lleva a los datos por puntos. Por ejemplo: &amp;quot;filename.h5.some_group.sub_group.myresult&amp;quot;. Si &amp;quot;sub_group&amp;quot; es el grupo actual entonces la cadena &amp;quot;myresult&amp;quot; puede usarse como referencia.&lt;/p&gt;
&lt;p&gt;La tabla de resultados no debe exisitir.&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>
Error de configuración: la configuración {0} de la aplicación no puede guardarse.</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>Aviso de configuración: la configuración {0} de la aplicación no puede leerse. Se utilizará su valor por defecto.</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>
Aviso: se ha denegado el acceso al fichero en modo lectura-escritura. El fichero se abrirá en modo solo lectura.</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>Por favor, si crees que esto es un bug, informa de ello a los desarrolladores.</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>Error: no puede abrirse el nodo {0} del fichero {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>No se puede guardar el fichero {0} como {1}. Ten en cuenta que solamente los ficheros cerrados se pueden sobreescribir con garantías via Guardar como...</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>Descripción del plugin</translation>
    </message>
    <message>
        <location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="26"/>
        <source>Version: </source>
        <translation>Versión:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="77"/>
        <source>Module name: </source>
        <translation>Nombre del módulo:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="128"/>
        <source>Folder: </source>
        <translation>Carpeta:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="179"/>
        <source>Author: </source>
        <translation>Autor:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="230"/>
        <source>Desription: </source>
        <translation>Descripción:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/dbstreesort/dbs_tree_sort_page.ui" line="284"/>
        <source>Sorting algorithm</source>
        <translation>Algoritmo de ordenación</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>Apertura cancelada: {0} es una carpeta.</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>Fallo de apertura: no se encuentra el fichero {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>Apertura cancelada: el fichero {0} ya está abierto.</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>Apertura cancelada: el fichero {0} no tiene formato 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>Fallo de apertura: no se puede averiguar si el fichero {0} tiene formato HDF5.</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>
La creación del fichero falló debido a razones desconocidas! Por favor, consulta el último error mostrado en el panel de log. Si crees que es un bug, por favor informa de ello a los desarrolladores.</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>Creando el fichero Query results...</translation>
    </message>
    <message>
        <location filename="vitables/h5db/dbstreemodel.py" line="644"/>
        <source>Node move: nodename already exists</source>
        <comment>A dialog caption</comment>
        <translation>Mover nodo: el nombre de nodo ya existe</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>Fichero fuente: {0}
Nodo movido: {1}
Fichero destino: {2}
Grupo padre: {3}

Nombre de node &apos;{4}&apos; ya existe en ese grupo.
</translation>
    </message>
    <message>
        <location filename="vitables/h5db/dbstreemodel.py" line="654"/>
        <source>Rename</source>
        <comment>A button label</comment>
        <translation>Renombrar</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>Árbol de bases de datos</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>&lt;qt&gt;&lt;p&gt;Plugin que proporciona capacidades de ordenación al árbol de DBs.&lt;p&gt;Por el momento solo dos algoritmos están soportados: ordenación humana (o natural) y alfabética.&lt;/qt&gt;</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>&lt;qt&gt;
            &lt;h3&gt;El árbol de bases de datos&lt;/h3&gt;
            Para cada base de datos abierta este panel muestra
            el árbol de objetos, una representación gráfica&lt;br&gt;
            de la jerarquía de datos almacenada en esa base de
            datos.&lt;/qt&gt;</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>E&amp;xportar a 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>Salvar el conjunto de datos como texto plano con formato 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>Exportando conjunto de datos a formato 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>Ficheros CSV (**.csv);; Todos los ficheros (*)</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/export_csv.py" line="150"/>
        <source>Export</source>
        <comment>Accept button text for QFileDialog</comment>
        <translation>Exportar</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>Exportar ha fallado porque el fichero de destino ya existe.</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>Exportar ha fallado porque el contenedor de destino es una carpeta.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/export_csv.py" line="228"/>
        <source>Empty dataset. Nothing to export.</source>
        <translation>El conjunto de datos está vacío. No hay nada que exportar.</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/export_csv.py" line="234"/>
        <source>Scalar array. Nothing to export.</source>
        <translation>Array escalar. No hay nada que exportar.</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>El nodo seleccionado tiene más de 2 dimensiones. No puede ser exportado a formato 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>El nodo seleccionado es un VLArray. No puede ser exportado a formato 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>Algunos campos no son escalares. No se puede exportar la tabla a formato CSV.</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>&lt;qt&gt;&lt;p&gt;plugin que ofrece la posibilidad de exportar a formato CSV.&lt;p&gt;Casi cualquier conjunto de datos de PyTables puede ser exportado. Cuando se exportan tablas, una cabecera con el nombre de los campos puede insertarse en la primera línea del fichero CSV.&lt;/qt&gt;</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>Base de datos</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/group_prop_page.ui" line="28"/>
        <source>Name:</source>
        <translation>Nombre:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/group_prop_page.ui" line="35"/>
        <source>Path:</source>
        <translation>Ruta:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/group_prop_page.ui" line="42"/>
        <source>Type:</source>
        <translation>Tipo:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/group_prop_page.ui" line="49"/>
        <source>Access mode: </source>
        <translation>Modo de acceso:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/group_prop_page.ui" line="253"/>
        <source>Root group</source>
        <translation>Grupo raíz</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/group_prop_page.ui" line="259"/>
        <source>Number of children: </source>
        <translation>Número de hijos: </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>Propiedades del fichero</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/grouppropdlg.py" line="78"/>
        <source>Group properties</source>
        <comment>Dlg caption</comment>
        <translation>Propiedades del grupo</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>Nombre del hijo</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/groupproppage.py" line="111"/>
        <source>Type</source>
        <comment>Second column header of the table</comment>
        <translation>Tipo</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/groupproppage.py" line="119"/>
        <source>group</source>
        <translation>grupo</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/groupproppage.py" line="124"/>
        <source>leaf</source>
        <translation>hoja</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/groupproppage.py" line="128"/>
        <source>link</source>
        <translation>enlace</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/groupproppage.py" line="143"/>
        <source>Group</source>
        <comment>Title of the group box</comment>
        <translation>Grupo</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>Agrupa Arrays en una única vista</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>Acerca del Navegador de Ayuda</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/helpbrowser.py" line="286"/>
        <source>About Qt</source>
        <comment>A dialog caption</comment>
        <translation>Acerca de Qt</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>&lt;html&gt;&lt;h3&gt;Navegador de Ayuda&lt;/h3&gt;
                El Navegador de Ayuda es un instrumento muy simple para mostrar 
                la versión HTML de la Guía del Usuario sin necesidad de usar programas externos.
                &lt;p&gt;Y lo mejor de todo... está escrita en PyQt, el binding de Python para Qt.
&lt;/html&gt;</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>Navegador de documentación</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="80"/>
        <source>Ready...</source>
        <comment>Status bar startup message</comment>
        <translation>Listo...</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>Cerrar Navegador de Ayuda</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="90"/>
        <source>E&amp;xit</source>
        <comment>File --&gt; Exit</comment>
        <translation>&amp;Salir</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>Aumenta el tamaño de la fuente</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="98"/>
        <source>Zoom &amp;in</source>
        <comment>View --&gt; Zoom in</comment>
        <translation>&amp;Aumentar</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>Reduce el tamaño de la fuente</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="106"/>
        <source>Zoom &amp;out</source>
        <comment>View --&gt; Zoom out</comment>
        <translation>&amp;Reducir</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>Ir a la primera página visitada</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="115"/>
        <source>&amp;Home</source>
        <comment>Go --&gt; Home</comment>
        <translation>&amp;Inicio</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>Ir a la página anterior</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="124"/>
        <source>&amp;Backward</source>
        <comment> Go --&gt; Backward</comment>
        <translation>&amp;Atrás</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>Ir a la página siguiente</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>Recargar esta página</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="141"/>
        <source>&amp;Reload</source>
        <comment>Go --&gt; Reload</comment>
        <translation>&amp;Recargar</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>Marcar esta página</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="149"/>
        <source>&amp;Add bookmark</source>
        <comment>Bookmarks --&gt; Add bookmark</comment>
        <translation>&amp;Añadir marcador</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>Editar los marcadores del documento</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>Borrar todos los marcadores</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>Acerca del Navegador de Ayuda</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="179"/>
        <source>&amp;About HelpBrowser</source>
        <comment>Help --&gt; About HelpBrowser</comment>
        <translation>&amp;Acerca del Navegador de Ayuda</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>Acerca de Qt</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="188"/>
        <source>About &amp;Qt</source>
        <comment>Help --&gt; About Qt</comment>
        <translation>Acerca de &amp;Qt</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="274"/>
        <source>Go: </source>
        <comment>Text of the Go: label</comment>
        <translation>Ir a:</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="159"/>
        <source>&amp;Edit bookmarks...</source>
        <comment>Bookmarks --&gt; Edit bookmarks</comment>
        <translation>&amp;Editar marcadores...</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>&lt;qt&gt;&lt;h3&gt;Selector de página&lt;/h3&gt;Selecciona la página que quieres visitar.&lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="133"/>
        <source>&amp;Forward</source>
        <comment> Go --&gt; Forward</comment>
        <translation>A&amp;delante</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="169"/>
        <source>&amp;Clear All</source>
        <comment>Bookmarks --&gt; Clear bookmark</comment>
        <translation>&amp;Borrar Todos</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="196"/>
        <source>Clear history</source>
        <translation>Borrar el historial de navegación</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="196"/>
        <source>Clear the content of the history combobox</source>
        <translation>Borra el contenido del combobox del historial de navegación</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="217"/>
        <source>&amp;File</source>
        <comment>The File menu entry</comment>
        <translation>&amp;Fichero</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="224"/>
        <source>&amp;View</source>
        <comment>The View menu entry</comment>
        <translation>&amp;Tamaño</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="226"/>
        <source>View operations</source>
        <comment>Toolbar title</comment>
        <translation>Operaciones con el tamaño</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="235"/>
        <source>&amp;Go</source>
        <comment>The Go menu entry</comment>
        <translation>&amp;Ir</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="237"/>
        <source>Go operations</source>
        <comment>Toolbar title</comment>
        <translation>Operaciones de navegación</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="247"/>
        <source>&amp;Bookmarks</source>
        <comment>Bookmarks menu entry</comment>
        <translation>&amp;Marcadores</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="249"/>
        <source>Bookmarks operations</source>
        <comment>Toolbar title</comment>
        <translation>Operaciones con marcadores</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="261"/>
        <source>&amp;Help</source>
        <comment>The Help menu entry</comment>
        <translation>&amp;Ayuda</translation>
    </message>
    <message>
        <location filename="vitables/docbrowser/browsergui.py" line="267"/>
        <source>History operations</source>
        <comment>Toolbar title</comment>
        <translation>Operaciones con el historial de navegación</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>Resolviendo el rol de la primera línea</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>¿La primera línea contiene una cabecera de tabla o contiene datos?</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="287"/>
        <source>Header</source>
        <comment>Button text</comment>
        <translation>Cabecera</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="290"/>
        <source>Data</source>
        <comment>Button text</comment>
        <translation>Datos</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>I&amp;mportar desde 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>Importar &amp;Tabla...</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>Importar una tabla desde un fichero 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>Importar &amp;Array...</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>Importar un Array desde un fichero 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>Importar &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>Importar un CArray desde un fichero 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>Importar &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>Importar un EArray desde un fichero 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>Importando fichero CSV en {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>Ficheros CSV (*.csv);; Todos los Ficheros (*)</translation>
    </message>
    <message>
        <location filename="vitables/plugins/csv/import_csv.py" line="572"/>
        <source>Import</source>
        <comment>Accept button text for QFileDialog</comment>
        <translation>Importar</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>Por favor, asegúrate de que estás importando un conjunto de datos homogéneo.</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>Importar ha fallado porque el fichero de destino ya existe.</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>Importar ha fallado porque el contenedor de destino es una carpeta.</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>Importar ha fallado porque no puede crearse el fichero de destino.</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>&lt;qt&gt;&lt;p&gt;Plugin que proporciona la capacidad para importar ficheros CSV.&lt;p&gt;Los ficheros CSV pueden importarse en cualquiera de los siguientes contenedores de PyTables: Array, EArray, CArray y Table.&lt;p&gt;Cuando se importa el fichero a una tabla se dispone de detección automática de cabeceras &lt;p&gt;Hay que tener en cuenta que importar ficheros grandes es una operación potencialmente lenta porque el fichero completo tiene que leerse del disco, transformarse y almacenarse nuevamente en el disco, por tanto hay una gran cantidad de lectura/escritura al disco.&lt;/qt&gt;</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>Etiqueta informativa</translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/nodename_dlg.ui" line="34"/>
        <source>Node name: </source>
        <translation>Nombre del nodo: </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>Propiedades de la tabla</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafpropdlg.py" line="78"/>
        <source>Array properties</source>
        <comment>Dlg caption</comment>
        <translation>Propiedades del array</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>Campo</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="112"/>
        <source>Type</source>
        <comment>Second column header of the table</comment>
        <translation>Tipo</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="112"/>
        <source>Shape</source>
        <comment>Third column header of the table</comment>
        <translation>Forma</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leafproppage.py" line="131"/>
        <source>nested</source>
        <translation>anidado</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>Base de datos</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="28"/>
        <source>Name:</source>
        <translation>Nombre:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="35"/>
        <source>Path:</source>
        <translation>Ruta:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="42"/>
        <source>Type:</source>
        <translation>Tipo:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="199"/>
        <source>Dataspace</source>
        <translation>Espacio de datos</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="209"/>
        <source>Dimensions: </source>
        <translation>Dimensiones:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="263"/>
        <source>Shape: </source>
        <translation>Forma:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="317"/>
        <source>Data Type: </source>
        <translation>Tipo de dato:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/leaf_prop_page.ui" line="371"/>
        <source>Compression: </source>
        <translation>Compresión:</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>General</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="28"/>
        <source>Name:</source>
        <translation>Nombre:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="82"/>
        <source>Path:</source>
        <translation>Ruta:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="136"/>
        <source>Type:</source>
        <translation>Tipo:</translation>
    </message>
    <message>
        <location filename="vitables/nodeprops/link_prop_dlg.ui" line="187"/>
        <source>Target:</source>
        <translation>Destino:</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>Propiedades del enlace</translation>
    </message>
</context>
<context>
    <name>Logger</name>
    <message>
        <location filename="vitables/logger.py" line="141"/>
        <source>&amp;Copy</source>
        <comment>Logger menu entry</comment>
        <translation>&amp;Copiar</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="156"/>
        <source>Select &amp;All</source>
        <comment>Logger menu entry</comment>
        <translation>Seleccionar &amp;Todo</translation>
    </message>
    <message>
        <location filename="vitables/logger.py" line="148"/>
        <source>Cl&amp;ear All</source>
        <comment>Logger menu entry</comment>
        <translation>&amp;Borrar Todo</translation>
    </message>
    <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>&lt;qt&gt;&lt;h3&gt;La Consola&lt;/h3&gt;Es el panel en el que queda registrado el resultado de determinadas operaciones ejecutadas por el usuario.&lt;p&gt;Los errores de ejecución y las excepciones también se registran en la consola.&lt;/qt&gt;</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>Copia el texto seleccionado al Portapapeles</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>Borra la consola</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>Selecciona todo el contenido de la consola</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>Usa un único widget para mostrar Arrays como si fueran columnas de una Table</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;Desagrupa Arrays</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>Desagrupa arrays agrupados anteriormente.</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>A&amp;grupa arrays</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>
Error: agrupamiento de Arrays cancelado. No todos los arrays seleccionados tienen el mismo número de filas.</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>Renombrar un nodo: el nombre ya está en uso</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>Fichero fuente: {0}
Grupo padre: {1}

Ya hay un nodo llamado &apos;{2}&apos; en el grupo padre.
</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>General</translation>
    </message>
    <message>
        <location filename="vitables/preferences/preferences.py" line="167"/>
        <source>Look &amp; Feel</source>
        <comment>Text for page selector icon</comment>
        <translation>Apariencia</translation>
    </message>
    <message>
        <location filename="vitables/preferences/preferences.py" line="175"/>
        <source>  Plugins  </source>
        <comment>Text for page selector icon</comment>
        <translation>Plugins</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>Lo sentimos, no hay disponible información acerca de este plugin</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>La tabla {0} está vacía. No hay nada que consultar.</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>La tabla {0} no contiene columnas que puedan ser consultadas. Todas las columnas están anidadas, son multidimensionales o tienen el tipo de datos Complex.</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>Algunas columnas de la tabla contienen datos multidimensionales, anidados o de tipo Complex. Estos campos no pueden consultarse y no se han incluído en el selector Columna del diálogo de consultas.</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>Limpiando el fichero Query results</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="271"/>
        <source>Delete</source>
        <comment>Button text</comment>
        <translation>Borrar</translation>
    </message>
    <message>
        <location filename="vitables/queries/querymgr.py" line="273"/>
        <source>Cancel</source>
        <comment>Button text</comment>
        <translation>Cancelar</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>La consulta a la tabla {0} ha fallado!</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>Opciones globales</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="59"/>
        <source>Name:</source>
        <translation>Nombre:</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>&lt;qt&gt;
        Nombre de la tabla a la que se añadirán los resultados de la consulta.
        &lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="92"/>
        <source>Original indices into column:</source>
        <translation>Índices originales en la columna:</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>&lt;qt&gt;
        El nombre de la columna en la que se añadirán los índices de las filas seleccionadas.
        &lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="105"/>
        <source>Orig_idx</source>
        <translation>Orig_índices</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="119"/>
        <source>Query condition</source>
        <translation>Consulta</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>&lt;qt&gt;
        &lt;h3&gt;Sintaxis de las consultas&lt;/h3&gt;
        Una consulta en una tabla es simplemente una &lt;em&gt;cadena&lt;/em&gt; que contiene una
        expresión Python que implica &lt;em&gt;como mínimo una columna&lt;/em&gt;
        , y quizás algunas constantes y variables externas, todo ello combinado
        con operadores algebraicos o funciones.
        Ten en cuenta que los operadores &lt;tt&gt;&amp;&lt;/tt&gt;, &lt;tt&gt;|&lt;/tt&gt; and &lt;tt&gt;~&lt;/tt&gt;
        se usan para las comparaciones lógicas y tienen mayor precedencia
        que los operadores lógicos, así que recomendamos &lt;em&gt;usar siempre
        paréntesis con los operadores lógicos&lt;/em&gt;.&lt;/p&gt;
        &lt;p&gt;La siguiente tabla muestra algunas consultas y
        sus expresiones equivalentes en Python.&lt;/p&gt;
        &lt;div align=&apos;center&apos;&gt;&lt;table border=&apos;1&apos;&gt;
        &lt;tr&gt;&lt;th&gt;Consulta&lt;/th&gt;&lt;th&gt;Expresión Python&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;Puedes encontrar información detallada acerca de las consultas en el
        Apéndice B de la guía de usuarios de PyTables.&lt;/p&gt;
        &lt;/qt&gt;</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>&lt;qt&gt;
        Los nombres de las columnas que pueden ser consultadas. Deben
        cumplir los siguientes requerimientos:
        &lt;ul&gt;&lt;li&gt;no deben estar anidados&lt;/li&gt;
        &lt;li&gt;deben tener un tipo de datos escalar&lt;/li&gt;
        &lt;li&gt;su tipo de datos no puede ser &lt;code&gt;complejo&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;
        Las columnas cuyos nombres contengan blancos se asignan automáticamente
        a variables cuyos nombres no contienen blancos. Para consultar estas columnas
        se usarán los nombres de sus variables asociadas.
        &lt;/qt&gt;</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>&lt;qt&gt;
        Los operadores que pueden usarse en una consulta dada. Estos operadores
        pueden ser lógicos, de comparación y aritméticos.&lt;br&gt;No todos los operadores
        están disponibles en todos los tipos de dato.
        &lt;/qt&gt;</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>&lt;qt&gt;
        El conjunto de funciones que puede aparecer en una consulta.
        Incluye funciones para seleccionar datos, funciones trigonométricas
        y funciones para números complejos. Para facilitar el uso,
        los argumentos se incluyen automáticamente cuando se inserta
        una función. El significado de los argumentos es:
        &lt;ul&gt;&lt;li&gt;N: número&lt;/li&gt;&lt;li&gt;B: booleano&lt;/li&gt;
        &lt;li&gt;F: número en coma flotante&lt;/li&gt;&lt;li&gt;C: número complejo&lt;/li&gt;&lt;/ul&gt;
        &lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="248"/>
        <source>The range of rows included in the query.</source>
        <translation>El rango de filas incluídas en la consulta.</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="251"/>
        <source>Range of rows</source>
        <translation>Rango de filas</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="265"/>
        <source>Start:</source>
        <translation>Inicio:</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="309"/>
        <source>1</source>
        <comment>A range selector label</comment>
        <translation>1</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="279"/>
        <source>Stop:</source>
        <translation>Fin:</translation>
    </message>
    <message>
        <location filename="vitables/queries/query_dlg.ui" line="302"/>
        <source>Step:</source>
        <translation>Intervalo:</translation>
    </message>
</context>
<context>
    <name>QueryDlg</name>
    <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>El nombre elegido ya está en uso. Por favor, utiliza un nombre diferente.</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>El nombre elegido para la columna de índices no es válido porque contiene el carácter &apos;/&apos;</translation>
    </message>
    <message>
        <location filename="vitables/queries/querydlg.py" line="125"/>
        <source>New query on table: {0}</source>
        <comment>A dialog caption</comment>
        <translation>Nueva consulta a la tabla: {0}</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>Introduce un nombre para la columna de índices, por favor</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>El nombre elegido para la columna de índices ya está en uso. Por favor, elige otro nombre.</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>El valor de stop es mayor que el número de filas. Por favor, elige otro valor.</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>El valor de inicio es mayor que el valor de finalización. Por favor, escoge otro valor.</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>El valor de inicio debe ser mayor que 0.</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>Sobreescribir</translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/renamedlg.py" line="118"/>
        <source>Rename</source>
        <comment>A button label</comment>
        <translation>Renombrar</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>Etiqueta informativa</translation>
    </message>
    <message>
        <location filename="vitables/vtwidgets/rename_dlg.ui" line="34"/>
        <source>New name: </source>
        <translation>Nuevo nombre: </translation>
    </message>
</context>
<context>
    <name>SettingsDialog</name>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="14"/>
        <source>ViTables settings</source>
        <translation>Apariencia</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>Pulsa sobre un elemento en este árbol para seleccionar los ajustes que quieres cambiar.</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="84"/>
        <source>Configure the startup behavior of ViTables.</source>
        <translation>Configura el comportamiento inicial de ViTables.</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>Inicio</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>Si está seleccionado, recupera la última sesión de trabajo (ficheros abiertos y vistas). Si no, ViTables empieza con una sesión vacía.</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>Recupera la última sesión</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>La carpeta de trabajo usada para abrir el primer fichero. Su valor por defecto es la carpeta actual si ViTables se arranca desde una consola. Si arranca desde un menú o un icono de escritorio el valor por defecto es la carpeta home del usuario. Si el checkbox está seleccionado entonces se usa la última carpeta usada en la sesión anterior.</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>Empieza en l última carpeta de trabajo</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="139"/>
        <source>Configure the look and feel of ViTables.</source>
        <translation>Configura la apariencia de ViTables.</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="145"/>
        <source>Customise font and colors of the Logger.</source>
        <translation>Personaliza la fuente y los colores de la consola.</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="148"/>
        <source>Logger</source>
        <comment>The title of the logger groubox</comment>
        <translation>Consola</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="157"/>
        <source>You can preview your Font settings here.</source>
        <translation>Puedes previsualizar los ajustes de Fuente aquí.</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>&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;</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="183"/>
        <source>Setup the text color.</source>
        <translation>Ajusta el color del texto.</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>Color del &amp;texto</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="219"/>
        <source>Setup the background color.</source>
        <translation>Ajusta el color de fondo.</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>Color del f&amp;ondo</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>Aquí puedes ajustar la fuente usada en la consola.</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>&amp;Fuente</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="242"/>
        <source>Setup the background color of the workspace.</source>
        <translation>Ajusta el color de fondo del área de trabajo.</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="245"/>
        <source>Workspace</source>
        <comment>The title of the workspace groupbox</comment>
        <translation>Área de trabajo</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>&amp;Color del fondo</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>Ejemplo del color de fondo</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="274"/>
        <source>Choose the global style of ViTables here.</source>
        <translation>Ajusta el estilo global de ViTables.</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>Estilo</translation>
    </message>
    <message>
        <location filename="vitables/preferences/settings_dlg.ui" line="306"/>
        <source>Available plugins</source>
        <translation>Plugins disponibles</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>La lista de plugins disponibles. Los plugins marcados están activados (pero no necesariamente cargados), el resto están desactivados (pero no necesariamente descargados). Por favor, ten en cuenta que los cambios en esta lista tendrán efecto la próxima vez que arranques ViTables.</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>&lt;qt&gt;
            &lt;p&gt;Plugin que proporciona un formato agradable para los campos de tiempo.
            &lt;p&gt;Soporta no solo el tipo de datos de tiempo nativo de PyTables sino
            también series temporales generadas (y almacenadas en tablas de PyTables) via
            Pandas y scikits.timeseries.
            &lt;/qt&gt;</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>Descripción del plugin</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="26"/>
        <source>Version: </source>
        <translation>Versión:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="77"/>
        <source>Module name: </source>
        <translation>Nombre del módulo:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="128"/>
        <source>Folder: </source>
        <translation>Carpeta:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="179"/>
        <source>Author: </source>
        <translation>Autor:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="230"/>
        <source>Desription: </source>
        <translation>Descripción:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="284"/>
        <source>Configure time format</source>
        <translation>configura el formato de fechas y horas</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="290"/>
        <source>Time format: </source>
        <translation>Formato de fechas y horas:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="299"/>
        <source>Sample date: </source>
        <translation>Fecha de ejemplo:</translation>
    </message>
    <message>
        <location filename="vitables/plugins/timeseries/timeformatter_page.ui" line="319"/>
        <source>Today</source>
        <translation>Hoy</translation>
    </message>
</context>
<context>
    <name>VTApp</name>
    <message>
        <location filename="vitables/vtapp.py" line="1041"/>
        <source>Node deletion</source>
        <comment>Caption of the node deletion dialog</comment>
        <translation>Borrado de un nodo</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1229"/>
        <source>About Qt</source>
        <comment>Caption of the About Qt dialog</comment>
        <translation>Acerca de Qt</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1265"/>
        <source>Version Numbers</source>
        <comment>Caption of the Versions dialog</comment>
        <translation>Números de versión</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1260"/>
        <source>not available</source>
        <comment>Part of the library not found text</comment>
        <translation>no disponible</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="136"/>
        <source>Configuration setup...</source>
        <comment>A splash screen message</comment>
        <translation>Configurando la aplicación...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="129"/>
        <source>Creating the GUI...</source>
        <comment>A splash screen message</comment>
        <translation>Creando la interfaz gráfica...</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.
Todos los derechos reservados.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="183"/>
        <source>Recovering last session...</source>
        <comment>A splash screen message</comment>
        <translation>Recuperando la última sesión...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="189"/>
        <source>Opening files...</source>
        <comment>A splash screen message</comment>
        <translation>Abriendo ficheros...</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="193"/>
        <source>Opening the list of files...</source>
        <comment>A splash screen message</comment>
        <translation>Abriendo la lista de ficheros...</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>Fallo de apertura: {0} incorrecto en la línea {1} de {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>No se ha leído la lista de ficheros HDF5</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="440"/>
        <source>Create</source>
        <comment>Accept button text for QFileDialog</comment>
        <translation>Crear</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>Creando un fichero nuevo...</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>Ficheros HDF5 (*.hdf *.h5 *.hd5 *.hdf5);;Todos los Ficheros (*)</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>La creación del nuevo fichero falló porque el fichero ya existe.</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>Copiando un fichero...</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>Ficheros HDF5 (*.hdf *.h5 *.hd5 *.hdf5);;Todos los Ficheros (*)</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="465"/>
        <source>File Save as: file already exists</source>
        <comment>A dialog caption</comment>
        <translation>Fichero Guardar Como: el fichero ya existe</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>Carpeta de destino: {0}

La base de datos Query results no puede sobreescribirse.</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>Carpeta de destino: {0}

El fichero que se está guardando no puede sobreescribirse a sí mismo.</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>Carpeta de destino: {0}

El nombre de fichero {1} ya está en uso en esa carpeta.
</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="608"/>
        <source>Open</source>
        <comment>Accept text for QFileDialog</comment>
        <translation>Abrir</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>Selecciona un fichero para abrirlo</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="745"/>
        <source>About UnImplemented nodes</source>
        <comment>A dialog caption</comment>
        <translation>Acerca de los nodos de tipo UnImplemented</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>Los datos contenidos en este nodo no son accesibles.&lt;br&gt; La combinación de tipos de datos y/o espacios de datos de este nodo todavía no está disponible en PyTables.&lt;br&gt;Si quieres ver está clase de nodo implementada en PyTables, por favor, contacta con los desarrolladores.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="805"/>
        <source>Creating a new group</source>
        <comment>A dialog caption</comment>
        <translation>Creando un nuevo grupo</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="805"/>
        <source>Source file: {0}
Parent group: {1}

 </source>
        <comment>A dialog label</comment>
        <translation>Fichero origen: {0}
Grupo padre: {1}

 </translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="805"/>
        <source>Create</source>
        <comment>A button label</comment>
        <translation>Crear</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>Creando un nuevo grupo: el nombre ya está en uso</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>Fichero origen: {0}
Grupo padre: {1}

Ya hay un nodo llamado &apos;{2}&apos; en ese grupo padre.
</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="862"/>
        <source>Renaming a node</source>
        <comment>A dialog caption</comment>
        <translation>Renombrando un nodo</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="862"/>
        <source>Source file: {0}
Parent group: {1}

</source>
        <comment>A dialog label</comment>
        <translation>Fichero origen: {0}
Grupo padre: {1}

</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="862"/>
        <source>Rename</source>
        <comment>A button label</comment>
        <translation>Renombrar</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>Renombrando un nodo: el nombre ya está en uso</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="941"/>
        <source>About unreadable datasets</source>
        <comment>Dialog caption</comment>
        <translation>Acerca de conjuntos de datos ilegibles</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>Lo siento, los datos de este nodo no están accesibles.&lt;br&gt;El nodo no se copiará.</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="997"/>
        <source>Node paste: nodename already exists</source>
        <comment>A dialog caption</comment>
        <translation>Pegar un nodo: el nombre de nodo ya existe</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>Fichero origen: {0}
Nodo copiado: {1}
Fichero destino: {2}
Grupo padre: {3}

El nombre de nodo &apos;{4}&apos; ya está en uso en ese grupo.
</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1005"/>
        <source>Paste</source>
        <comment>A button label</comment>
        <translation>Pegar</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>
Estás a punto de borrar el nodo:
{0}
</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1052"/>
        <source>Delete</source>
        <comment>Button text</comment>
        <translation>Borrar</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1055"/>
        <source>Cancel</source>
        <comment>Button text</comment>
        <translation>Cancelar</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>&lt;qt&gt;
            &lt;h3&gt;ViTables {0}&lt;/h3&gt;
            ViTables es una herramienta gráfica para ver conjuntos de datos
            almacenados en ficheros PyTables y HDF5. Está escrita en PyQt
            , los binding de Python para Qt.&lt;p&gt;
            Para más información ver &lt;b&gt;http://www.vitables.org&lt;/b&gt;.&lt;p&gt;
            Por favor, informa de los bugs que encuentres y de la funcionalidad
            que eches en falta al &lt;em&gt;Grupo de Usuarios de ViTables&lt;/em&gt;.&lt;p&gt;
            ViTables usa software de terceros, que tiene su propio copyright.
            Para más detalles ver la nota de copyright de los paquetes individuales.
            &lt;/qt&gt;</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>&lt;qt&gt;
            Alexey Naydenov por sus numerosas y valiosas contribuciones.&lt;p&gt;
            Kamil Kisiel y Max Bohnet por solucionar bugs.&lt;p&gt;
            Dmitrijs Ledkovs por sus contribuciones al sistema de empaquetado.&lt;p&gt;
            y por sus paquetes para Debian. Al equipo Oxygen por su fantástico conjunto de iconos.&lt;p&gt;
            Toda la gente que ha informado de bugs y ha hecho sugerencias.
            &lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/vtapp.py" line="1195"/>
        <source>About ViTables {0}</source>
        <comment>Caption of the About ViTables dialog</comment>
        <translation>Acerca de 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;Acerca</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;Gracias A</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;Licencia</translation>
    </message>
</context>
<context>
    <name>VTGUI</name>
    <message>
        <location filename="vitables/vtgui.py" line="511"/>
        <source>Ready...</source>
        <comment>The status bar startup message</comment>
        <translation>Listo...</translation>
    </message>
    <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>&lt;qt&gt;
                      &lt;h3&gt;El área de trabajo&lt;/h3&gt;
                      Es el área donde se muestran las hojas abiertas del árbol de objetos.
                      Pueden mostrarse al mismo tiempo una gran cantidad de tablas y arrays.
                      &lt;p&gt;Las diferentes vistas se pueden mostrar en mosaico o en cascada.
                      &lt;/qt&gt;</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="157"/>
        <source>&amp;New...</source>
        <comment>File -&gt; New</comment>
        <translation>&amp;Nuevo...</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>Crea un nuevo fichero</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="167"/>
        <source>&amp;Open...</source>
        <comment>File -&gt; Open</comment>
        <translation>&amp;Abrir...</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>Abre un fichero</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="177"/>
        <source>Read-only open...</source>
        <comment>File -&gt; Open</comment>
        <translation>Abrir en Solo-Lectura...</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>Abrir un fichero en modo solo-lectura</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="186"/>
        <source>&amp;Close</source>
        <comment>File -&gt; Close</comment>
        <translation>&amp;Cerrar</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>Cierra el fichero seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="196"/>
        <source>Close &amp;All</source>
        <comment>File -&gt; Close All</comment>
        <translation>Cerrar &amp;Todos</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>Cierra todos los ficheros</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="204"/>
        <source>&amp;Save as...</source>
        <comment>File -&gt; Save As</comment>
        <translation>&amp;Guardar como...</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>Guarda una copia renombrada del fichero seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="214"/>
        <source>E&amp;xit</source>
        <comment>File -&gt; Exit</comment>
        <translation>&amp;Salir</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>Cierra ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="224"/>
        <source>&amp;Open view</source>
        <comment>Node -&gt; Open View</comment>
        <translation>&amp;Abrir Vista</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>Muestra el contenido del nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="233"/>
        <source>C&amp;lose view</source>
        <comment>Node -&gt; Close View</comment>
        <translation>C&amp;errar Vista</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>Cierra la vista del nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="242"/>
        <source>Prop&amp;erties...</source>
        <comment>Node -&gt; Properties</comment>
        <translation>Prop&amp;iedades...</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>Muestra el diálogo de propiedades para el nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="252"/>
        <source>&amp;New group...</source>
        <comment>Node -&gt; New group</comment>
        <translation>&amp;Nuevo Grupo...</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>Crea un nuevo grupo bajo el nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="262"/>
        <source>&amp;Rename...</source>
        <comment>Node -&gt; Rename</comment>
        <translation>&amp;Renombrar...</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>Renombra el nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="272"/>
        <source>Cu&amp;t</source>
        <comment>Node -&gt; Cut</comment>
        <translation>Cor&amp;tar</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>Corta el nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="281"/>
        <source>&amp;Copy</source>
        <comment>Node -&gt; Copy</comment>
        <translation>&amp;Copiar</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>Copia el nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="290"/>
        <source>&amp;Paste</source>
        <comment>Node -&gt; Paste</comment>
        <translation>&amp;Pegar</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>Pega el último nodo copiado/cortado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="299"/>
        <source>&amp;Delete</source>
        <comment>Node -&gt; Delete</comment>
        <translation>&amp;Borrar</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>Borra el nodo seleccionado</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="308"/>
        <source>&amp;Query...</source>
        <comment>Query -&gt; New...</comment>
        <translation>&amp;Consulta...</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>Crea un nuevo filtro para la tabla seleccionada</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="317"/>
        <source>Delete &amp;All</source>
        <comment>Query -&gt; Delete All</comment>
        <translation>Borrar &amp;Todos</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>Borra todos los filtros</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="326"/>
        <source>&amp;Preferences...</source>
        <comment>Settings -&gt; Preferences</comment>
        <translation>&amp;Preferencias...</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>Configura ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="337"/>
        <source>&amp;Cascade</source>
        <comment>Windows -&gt; Cascade</comment>
        <translation>&amp;Cascada</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>Distribuye las vistas del área de trabajo en cascada</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="345"/>
        <source>&amp;Tile</source>
        <comment>Windows -&gt; Tile</comment>
        <translation>&amp;Mosaico</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>Distribuye las vistas del área de trabajo en mosaico</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="353"/>
        <source>&amp;Restore All</source>
        <comment>Windows -&gt; Restore All</comment>
        <translation>&amp;Recuperar Todo</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>Recupera todas las vistas minimizadas del área de trabajo</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="362"/>
        <source>&amp;Minimize All</source>
        <comment>Windows -&gt; Minimize All</comment>
        <translation>M&amp;inimizar Todo</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>Minimiza todas las vistas del área de trabajo</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="371"/>
        <source>C&amp;lose</source>
        <comment>Windows -&gt; Close</comment>
        <translation>C&amp;errar</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>Cierra la vista seleccionada</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="379"/>
        <source>Close &amp;All</source>
        <comment>Windows -&gt; Close All</comment>
        <translation>Cerrar &amp;Todo</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>Cierra todas las vistas</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="387"/>
        <source>Current View</source>
        <comment>Windows -&gt; separator</comment>
        <translation>Vista actual</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="392"/>
        <source>Change view mode</source>
        <comment>MDI -&gt; Tabbed</comment>
        <translation>Cambiar modo de visualización</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>Cambia el modo de visualización del área de trabajo</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="400"/>
        <source>&amp;User&apos;s Guide</source>
        <comment>Help -&gt; Users Guide</comment>
        <translation>Guía del &amp;Usuario</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>Abre la Guía del Usuario</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="410"/>
        <source>&amp;About ViTables</source>
        <comment>Help -&gt; About</comment>
        <translation>&amp;Acerca de 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>Muestra información acerca de ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="419"/>
        <source>About &amp;Qt</source>
        <comment>Help -&gt; About Qt</comment>
        <translation>Acerca de &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>Muestra información acerca de la biblioteca Qt</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="427"/>
        <source>Show &amp;Versions</source>
        <comment>Help -&gt; Show Versions</comment>
        <translation>Mostrar &amp;Versiones</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>Muestra las versiones de las bibliotecas usadas por ViTables</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="455"/>
        <source>File operations</source>
        <comment>Toolbar title</comment>
        <translation>Operaciones Sobre Ficheros</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>Pulsa para abrir un fichero
Mantén pulsado para abrir un fichero reciente</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="473"/>
        <source>Node operations</source>
        <comment>Toolbar title</comment>
        <translation>Operaciones Sobre Nodos</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="480"/>
        <source>Queries on tables</source>
        <comment>Toolbar title</comment>
        <translation>Consultas a Tablas</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="488"/>
        <source>Help system</source>
        <comment>Toolbar title</comment>
        <translation>Sistema de Ayuda</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>Ayuda del tipo ¿Qué es esto? para un widget</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>El nodo actualmente seleccionado en el árbol de bases de datos</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="526"/>
        <source>&amp;File</source>
        <comment>The File menu entry</comment>
        <translation>&amp;Fichero</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>Abrir Ficheros &amp;Recientes</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="548"/>
        <source>&amp;Node</source>
        <comment>The Node menu entry</comment>
        <translation>&amp;Nodo</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="558"/>
        <source>&amp;Dataset</source>
        <comment>The Dataset menu entry</comment>
        <translation>&amp;Conjunto de datos</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="566"/>
        <source>&amp;Settings</source>
        <comment>The Settings menu entry</comment>
        <translation>C&amp;onfiguración</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="570"/>
        <source>ToolBars</source>
        <comment>Tools -&gt; ToolBars action</comment>
        <translation>Barras de herramientas</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="578"/>
        <source>&amp;Window</source>
        <comment>The Windows menu entry</comment>
        <translation>&amp;Ventana</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="590"/>
        <source>&amp;Help</source>
        <comment>The Help menu entry</comment>
        <translation>&amp;Ayuda</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>Ayuda contextual</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="796"/>
        <source>&amp;Clear</source>
        <comment>Recent File submenu entry</comment>
        <translation>&amp;Borrar</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="836"/>
        <source>&amp;More...</source>
        <comment>A Windows submenu</comment>
        <translation>&amp;Más...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="436"/>
        <source>Calculate...</source>
        <comment>Calculate action</comment>
        <translation>Calcular...</translation>
    </message>
    <message>
        <location filename="vitables/vtgui.py" line="436"/>
        <source>Run calculation on opened tables.</source>
        <comment>Action tip</comment>
        <translation>Ejecuta un cálculo en tablas abiertas.</translation>
    </message>
</context>
</TS>