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
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
|
# synaptic po translation to Spanish
# Copyright (C) 2003, 2004, 2005, 2006, 2008
# This file is distributed under the same license as the synaptic package.
#
# Changes:
# - Initial translation
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2004, 2005, 2006.
#
# - Updates
# Jorge Bernal <koke@amedias.org>, 2005.
# Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2008.
#
# Traductores, si no conocen el formato PO, merece la pena leer la
# documentación de gettext, especialmente las secciones dedicadas a este
# formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
# http://www.debian.org/intl/spanish/
# especialmente las notas de traducción en
# http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
# /usr/share/doc/po-debconf/README-trans
# o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: synaptic 0.62.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-08-19 09:05+0200\n"
"PO-Revision-Date: 2009-06-16 15:57+0100\n"
"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. TRANSLATORS: Alias for the Debian package section "admin"
#: ../common/sections_trans.cc:12
msgid "System Administration"
msgstr "Administración del sistema"
#. TRANSLATORS: Alias for the Debian package section "base"
#: ../common/sections_trans.cc:14
msgid "Base System"
msgstr "Sistema base"
#. TRANSLATORS: Alias for the Debian package section "cli-mono"
#: ../common/sections_trans.cc:16
msgid "Mono/CLI Infrastructure"
msgstr "Mono/Infraestructura CLI"
#. TRANSLATORS: Alias for the Debian package section "comm"
#: ../common/sections_trans.cc:18
msgid "Communication"
msgstr "Comunicación"
#. TRANSLATORS: Alias for the Debian package section "database"
#: ../common/sections_trans.cc:20
msgid "Databases"
msgstr "Bases de datos"
#. TRANSLATORS: Alias for the Debian package section "devel"
#: ../common/sections_trans.cc:22
msgid "Development"
msgstr "Desarrollo"
#. TRANSLATORS: Alias for the Debian package section "doc"
#: ../common/sections_trans.cc:24
msgid "Documentation"
msgstr "Documentación"
#. TRANSLATORS: Alias for the Debian package section "debug"
#: ../common/sections_trans.cc:26
msgid "Debug"
msgstr "Depuración"
#. TRANSLATORS: Alias for the Debian package section "editors"
#: ../common/sections_trans.cc:28
msgid "Editors"
msgstr "Editores"
#. TRANSLATORS: Alias for the Debian package section "electronics"
#: ../common/sections_trans.cc:30
msgid "Electronics"
msgstr "Electrónica"
#. TRANSLATORS: Alias for the Debian package section "embedded"
#: ../common/sections_trans.cc:32
msgid "Embedded Devices"
msgstr "Dispositivos empotrados"
#. TRANSLATORS: Alias for the Debian package section "fonts"
#: ../common/sections_trans.cc:34
msgid "Fonts"
msgstr "Tipografías"
#. TRANSLATORS: Alias for the Debian package section "games"
#: ../common/sections_trans.cc:36
msgid "Games and Amusement"
msgstr "Juegos y entretenimientos"
#. TRANSLATORS: Alias for the Debian package section "gnome"
#: ../common/sections_trans.cc:38
msgid "GNOME Desktop Environment"
msgstr "Gnome (entorno de escritorio)"
#. TRANSLATORS: Alias for the Debian package section "graphics"
#: ../common/sections_trans.cc:40
msgid "Graphics"
msgstr "Gráficos"
#. TRANSLATORS: Alias for the Debian package section "gnu-r"
#: ../common/sections_trans.cc:42
msgid "GNU R staticial system"
msgstr "Sistema estadístico R de GNU"
#. TRANSLATORS: Alias for the Debian package section "gnustep"
#: ../common/sections_trans.cc:44
msgid "Gnustep Desktop Environment"
msgstr "Entorno de escritorio Gnustep"
#. TRANSLATORS: Alias for the Debian package section "hamradio"
#: ../common/sections_trans.cc:46
msgid "Amateur Radio"
msgstr "Radio aficionado"
#. TRANSLATORS: Alias for the Debian package section "haskell"
#: ../common/sections_trans.cc:48
#, fuzzy
msgid "Haskell Programming Language"
msgstr "Haskel, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "httpd"
#: ../common/sections_trans.cc:50
msgid "Web servers"
msgstr "Servidores web"
#. TRANSLATORS: Alias for the Debian package section "interpreters"
#: ../common/sections_trans.cc:52
msgid "Interpreted Computer Languages"
msgstr "Lenguajes de programación interpretados"
#. TRANSLATORS: Alias for the Debian package section "java"
#: ../common/sections_trans.cc:54
msgid "Java Programming Language"
msgstr "Java, lenguaje de programación Java"
#. TRANSLATORS: Alias for the Debian package section "KDE"
#: ../common/sections_trans.cc:56
msgid "KDE Desktop Environment"
msgstr "KDE (entorno de escritorio)"
#. TRANSLATORS: Alias for the Debian package section "kernel"
#: ../common/sections_trans.cc:58
msgid "Kernel and modules"
msgstr "Núcleo y módulos"
#. TRANSLATORS: Alias for the Debian package section "libdevel"
#: ../common/sections_trans.cc:60
msgid "Libraries - Development"
msgstr "Bibliotecas - Desarrollo"
#. TRANSLATORS: Alias for the Debian package section "libs"
#: ../common/sections_trans.cc:62
msgid "Libraries"
msgstr "Bibliotecas"
#. TRANSLATORS: Alias for the Debian package section "lisp"
#: ../common/sections_trans.cc:64
msgid "Lisp Programming Language"
msgstr "Lisp, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "localization"
#: ../common/sections_trans.cc:66
msgid "Localization"
msgstr "Regionalización"
#. TRANSLATORS: Alias for the Debian package section "mail"
#: ../common/sections_trans.cc:68
msgid "Email"
msgstr "Correo-e"
#. TRANSLATORS: Alias for the Debian package section "math"
#: ../common/sections_trans.cc:70
msgid "Mathematics"
msgstr "Matemáticas"
#. TRANSLATORS: Alias for the Debian package section "misc"
#: ../common/sections_trans.cc:72
msgid "Miscellaneous - Text Based"
msgstr "Varios - Basados en texto"
#. TRANSLATORS: Alias for the Debian package section "net"
#: ../common/sections_trans.cc:74
msgid "Networking"
msgstr "Red"
#. TRANSLATORS: Alias for the Debian package section "news"
#: ../common/sections_trans.cc:76
msgid "Newsgroup"
msgstr "Noticias"
#. TRANSLATORS: Alias for the Debian package section "ocaml"
#: ../common/sections_trans.cc:78
msgid "OCaml Programming Language"
msgstr "OCaml, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "oldlibs"
#: ../common/sections_trans.cc:80
msgid "Libraries - Old"
msgstr "Bibliotecas - Antiguo"
#. TRANSLATORS: Alias for the Debian package section "otherosfs"
#: ../common/sections_trans.cc:82
msgid "Cross Platform"
msgstr "Plataforma cruzada"
#. TRANSLATORS: Alias for the Debian package section "perl"
#: ../common/sections_trans.cc:84
msgid "Perl Programming Language"
msgstr "Perl, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "php"
#: ../common/sections_trans.cc:86
msgid "PHP Programming Language"
msgstr "PHP, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "python"
#: ../common/sections_trans.cc:88
msgid "Python Programming Language"
msgstr "Python, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "ruby"
#: ../common/sections_trans.cc:90
msgid "Ruby Programming Language"
msgstr "Ruby, lenguaje de programación"
#. TRANSLATORS: Alias for the Debian package section "science"
#: ../common/sections_trans.cc:92
msgid "Science"
msgstr "Ciencia"
#. TRANSLATORS: Alias for the Debian package section "shells"
#: ../common/sections_trans.cc:94
msgid "Shells"
msgstr "Shells"
#. TRANSLATORS: Alias for the Debian package section "sound"
#: ../common/sections_trans.cc:96
msgid "Multimedia"
msgstr "Multimedia"
#. TRANSLATORS: Alias for the Debian package section "tex"
#: ../common/sections_trans.cc:98
msgid "TeX Authoring"
msgstr "TeX, autoría"
#. TRANSLATORS: Alias for the Debian package section "text"
#: ../common/sections_trans.cc:100
msgid "Word Processing"
msgstr "Procesamiento de textos"
#. TRANSLATORS: Alias for the Debian package section "utils"
#: ../common/sections_trans.cc:102
msgid "Utilities"
msgstr "Utilidades"
#. TRANSLATORS: Alias for the Debian package section "vcs"
#: ../common/sections_trans.cc:104
msgid "Version Control Systems"
msgstr "Sistemas de Control de Versiones"
#. TRANSLATORS: Alias for the Debian package section "video"
#: ../common/sections_trans.cc:106
msgid "Video software"
msgstr "Programas de vídeo"
#. TRANSLATORS: Alias for the Debian package section "web"
#: ../common/sections_trans.cc:108
msgid "World Wide Web"
msgstr "World Wide Web"
#. TRANSLATORS: Alias for the Debian package section "x11"
#: ../common/sections_trans.cc:110
msgid "Miscellaneous - Graphical"
msgstr "Varios - Gráficos"
#. TRANSLATORS: Alias for the Debian package section "xfce"
#: ../common/sections_trans.cc:112
msgid "Xfce Desktop Environment"
msgstr "Entorno de escritorio Xfce"
#. TRANSLATORS: Alias for the Debian package section "zope"
#: ../common/sections_trans.cc:114
msgid "Zope/Plone Environment"
msgstr "Entorno Zope/Plone"
#. TRANSLATORS: The section of the package is not known
#: ../common/sections_trans.cc:116 ../common/rpackage.cc:110
#: ../common/rpackageview.cc:520
msgid "Unknown"
msgstr "Desconocido"
#. TRANSLATORS: Alias for the Debian package section "alien"
#: ../common/sections_trans.cc:118
msgid "Converted From RPM by Alien"
msgstr "Convertidos de RPM por Alien"
#. TRANSLATORS: Ubuntu translations section
#: ../common/sections_trans.cc:120
msgid "Internationalization and localization"
msgstr "Internacionalización y localización"
#. TRANSLATORS: Alias for the Debian package section "non-US"
#. Export to the outside of the USA is not allowed
#. or restricted
#: ../common/sections_trans.cc:125 ../common/sections_trans.cc:143
#: ../common/sections_trans.cc:147
msgid "Restricted On Export"
msgstr "Exportación restringida"
#. TRANSLATORS: Alias for the Debian package section "non free"
#: ../common/sections_trans.cc:127 ../common/sections_trans.cc:144
msgid "non free"
msgstr "no libres"
#. TRANSLATORS: Alias for the Debian package section "contrib"
#. Free software that depends on non-free software
#: ../common/sections_trans.cc:130 ../common/sections_trans.cc:148
msgid "contrib"
msgstr "contribuciones"
#: ../common/indexcopy.cc:51 ../common/rpmindexcopy.cc:75
#, c-format
msgid "Stat failed for %s"
msgstr "Falló la comprobación de %s"
#: ../common/indexcopy.cc:78 ../common/rpmindexcopy.cc:107
msgid "Unable to create a tmp file"
msgstr "No se ha podido crear un archivo temporal"
#: ../common/indexcopy.cc:107
msgid "gzip failed, perhaps the disk is full."
msgstr "Ha fallado gzip, quizá el disco esté lleno."
#: ../common/indexcopy.cc:128
msgid "Failed to reopen fd"
msgstr "Falló al reabrir fd"
#: ../common/indexcopy.cc:218 ../common/indexcopy.cc:242
#: ../common/rpmindexcopy.cc:169 ../common/rpmindexcopy.cc:205
msgid "Failed to rename"
msgstr "Falló al renombrar"
#: ../common/indexcopy.cc:266
msgid "No valid records were found."
msgstr "No se encontraron registros válidos."
#: ../common/indexcopy.cc:441
msgid "Cannot find filename or size tag"
msgstr "No se puede encontrar el etiqueta de nombre de archivo o de tamaño"
#: ../common/indexcopy.cc:485
msgid "Error parsing file record"
msgstr "Error al analizar el registro de archivo"
#: ../common/rcdscanner.cc:112 ../common/rcdscanner.cc:162
#, c-format
msgid "Failed to open %s.new"
msgstr "Falló al abrir: %s.new"
#: ../common/rcdscanner.cc:137 ../common/rcdscanner.cc:247
#, c-format
msgid "Failed to rename %s.new to %s"
msgstr "Falló al renombrar %s.new a %s"
#: ../common/rcdscanner.cc:202 ../common/rcdscanner.cc:235
msgid "Internal error"
msgstr "Error interno"
#: ../common/rcdscanner.cc:260
msgid "Preparing..."
msgstr "Preparando…"
#: ../common/rcdscanner.cc:273
#, c-format
msgid "Unable to read the cdrom database %s"
msgstr "No se ha podido leer la base de datos %s del cdrom"
#: ../common/rcdscanner.cc:280 ../common/rcdscanner.cc:322
#: ../common/rcdscanner.cc:421
msgid "Unmounting CD-ROM..."
msgstr "Desmontando el CD-ROM…"
#: ../common/rcdscanner.cc:283
msgid "Waiting for disc..."
msgstr "Esperando al disco…"
#: ../common/rcdscanner.cc:284
msgid "Insert a disc in the drive."
msgstr "Introduzca un disco en la unidad."
#. Mount the new CDROM
#: ../common/rcdscanner.cc:288
msgid "Mounting CD-ROM..."
msgstr "Montando el CD-ROM…"
#: ../common/rcdscanner.cc:291
msgid "Failed to mount the cdrom."
msgstr "Falló al montar el cdrom."
#: ../common/rcdscanner.cc:295
msgid "Identifying disc..."
msgstr "Identificando el disco…"
#: ../common/rcdscanner.cc:298
msgid "Couldn't identify disc."
msgstr "No se ha podido identificar el disco."
#: ../common/rcdscanner.cc:301
msgid "Scanning disc..."
msgstr "Inspeccionando el disco…"
#: ../common/rcdscanner.cc:316
msgid "Cleaning package lists..."
msgstr "Limpiando las listas de paquetes…"
#: ../common/rcdscanner.cc:329
msgid ""
"Unable to locate any package files. Perhaps this is not an APT enabled disc."
msgstr ""
"No se ha podido encontrar ningún archivo de paquetes. Quizá este disco no "
"esté preparado para APT."
#: ../common/rcdscanner.cc:380
msgid "Disc not successfully scanned."
msgstr "El disco no se ha inspeccionado de forma correcta."
#: ../common/rcdscanner.cc:384
msgid "Empty disc name."
msgstr "Nombre de disco vacío."
#: ../common/rcdscanner.cc:387
msgid "Registering disc..."
msgstr "Registrando el disco…"
#: ../common/rcdscanner.cc:401
msgid "Copying package lists..."
msgstr "Copiando listas de paquetes…"
#: ../common/rcdscanner.cc:410
msgid "Writing sources list..."
msgstr "Escribiendo listas de fuentes…"
#: ../common/rcdscanner.cc:425
msgid "Done!"
msgstr "¡Hecho!"
#: ../common/rcdscanner.cc:523
#, c-format
msgid "Failed to stat %s%s"
msgstr "Falló al comprobar %s%s"
#: ../common/rcdscanner.cc:625 ../common/rcdscanner.cc:721
#, c-format
msgid "Unable to change to %s"
msgstr "No se puede cambiar a %s"
#: ../common/rcdscanner.cc:663 ../common/rsources.cc:177
#, c-format
msgid "Unable to read %s"
msgstr "No se puede leer %s"
#: ../common/rconfiguration.cc:88 ../common/rconfiguration.cc:241
#, c-format
msgid "ERROR: couldn't open %s for writing"
msgstr "ERROR: No se ha podido abrir %s para escritura"
#: ../common/rconfiguration.cc:114
msgid "ERROR: Could not get password entry for superuser"
msgstr "ERROR: No se ha podido obtener la clave de superusuario"
#: ../common/rconfiguration.cc:123
#, c-format
msgid "ERROR: could not create configuration directory %s"
msgstr "ERROR: no se ha podido crear el directorio de configuración %s"
#: ../common/rconfiguration.cc:147
#, c-format
msgid "ERROR: could not create state directory %s"
msgstr "ERROR: no se ha podido crear el directorio de estado %s"
#: ../common/rconfiguration.cc:164
#, c-format
msgid "ERROR: could not create tmp directory %s"
msgstr "ERROR: no se ha podido crear el directorio temporal %s"
#: ../common/rconfiguration.cc:182
#, c-format
msgid "ERROR: could not create log directory %s"
msgstr "ERROR: no se ha podido crear el directorio informes de actividad %s"
#: ../common/rconfiguration.cc:266
#, c-format
msgid "couldn't open %s for writing"
msgstr "No se ha podido abrir %s para escribir"
#: ../common/rinstallprogress.cc:41
msgid ""
"\n"
"Successfully applied all changes. You can close the window now."
msgstr ""
"\n"
"Se han aplicado todos los cambios con éxito. Puede cerrar la ventana ahora."
#: ../common/rinstallprogress.cc:42
msgid ""
"\n"
"Not all changes and updates succeeded. For further details of the failure, "
"please expand the 'Details' panel below."
msgstr ""
"\n"
"No se han realizado todos los cambios y actualizaciones. Para más detalles "
"del fallo, por favor abra el panel «Detalles»."
#: ../common/rinstallprogress.cc:44
msgid ""
"\n"
"Successfully installed all packages of the current medium. To continue the "
"installation with the next medium close this window."
msgstr ""
"\n"
"Se han instalado con éxito todos los paquetes del soporte actual. Para "
"continuar la instalación con el siguiente soporte, cierre esta ventana."
#: ../common/rpackage.cc:203
msgid "The list of installed files is only available for installed packages"
msgstr ""
"La lista de archivos instalados está disponible únicamente para paquetes "
"instalados"
#: ../common/rpackage.cc:424
msgid "or dependency"
msgstr "o dependencia"
#: ../common/rpackage.cc:538
#, c-format
msgid ""
"\n"
"Package %s has no available version, but exists in the database.\n"
"This typically means that the package was mentioned in a dependency and "
"never uploaded, has been obsoleted or is not available with the contents of "
"sources.list\n"
msgstr ""
"\n"
"El paquete %s no tiene una versión disponible, pero existe en la base de "
"datos.\n"
"Esto generalmente significa que el paquete fue mencionado en una dependencia "
"y nunca fue subido, ha sido declarado obsoleto o no está disponible en el "
"contenido de sources.list\n"
#. TRANSLATORS: dependency error message, example:
#. "apt 0.5.4 but 0.5.3 is to be installed"
#: ../common/rpackage.cc:575
#, c-format
msgid "\t%s %s but %s is to be installed"
msgstr "\t%s %s pero se va a instalar %s"
#. TRANSLATORS: dependency error message, example:
#. "Depends: apt 0.5.4 but 0.5.3 is to be installed"
#: ../common/rpackage.cc:581
#, c-format
msgid " %s: %s %s but %s is to be installed"
msgstr " %s: %s %s pero se va a instalar %s"
#. TRANSLATORS: dependency error message, example:
#. "apt 0.5.4 but it is not installable"
#: ../common/rpackage.cc:591
#, c-format
msgid "\t%s %s but it is not installable"
msgstr "\t%s %s pero no es instalable"
#. TRANSLATORS: dependency error message, example:
#. "apt but it is a virtual package"
#: ../common/rpackage.cc:603
#, c-format
msgid "\t%s but it is a virtual package"
msgstr "\t%s pero es un paquete virtual"
#. TRANSLATORS: dependency error message, example:
#. "Depends: apt but it is a virtual package"
#: ../common/rpackage.cc:608
#, c-format
msgid "%s: %s but it is a virtual package"
msgstr "%s: %s pero es un paquete virtual"
#. TRANSLATORS: dependency error message, example:
#. "apt but it is not going to be installed"
#: ../common/rpackage.cc:613
#, c-format
msgid "\t%s but it is not going to be installed"
msgstr "\t%s pero no va a ser instalado"
#. TRANSLATORS: dependency error message, example:
#. "Depends: apt but it is not going to be installed"
#: ../common/rpackage.cc:618
#, c-format
msgid "%s: %s but it is not going to be installed"
msgstr "%s: %s pero no va a ser instalado"
#: ../common/rpackage.cc:637
msgid " or"
msgstr " o"
#: ../common/rpackage.cc:956
msgid "Invalid record in the preferences file, no Package header"
msgstr ""
"Registro inválido en el archivo de preferencias, falta la cabecera Package"
#: ../common/rpackage.h:52 ../common/rpackagefilter.cc:48
msgid "Depends"
msgstr "Depende"
#: ../common/rpackage.h:52
msgid "PreDepends"
msgstr "PreDepende"
#: ../common/rpackage.h:52 ../common/rpackagefilter.cc:53
msgid "Suggests"
msgstr "Sugiere"
#: ../common/rpackage.h:53 ../common/rpackagefilter.cc:52
msgid "Recommends"
msgstr "Recomienda"
#: ../common/rpackage.h:53 ../common/rpackagefilter.cc:50
msgid "Conflicts"
msgstr "Incompatibilidad"
#: ../common/rpackage.h:53 ../common/rpackagefilter.cc:51
msgid "Replaces"
msgstr "Reemplaza"
#: ../common/rpackage.h:54
msgid "Obsoletes"
msgstr "Hace obsoleto"
#: ../common/rpackage.h:54
msgid "Dependency of"
msgstr "Depende de"
#: ../common/rpackagestatus.cc:49
msgid "Marked for installation"
msgstr "Marcado para instalar"
#: ../common/rpackagestatus.cc:50
msgid "Marked for re-installation"
msgstr "Marcado para reinstalar"
#: ../common/rpackagestatus.cc:51
msgid "Marked for upgrade"
msgstr "Marcado para actualizar"
#: ../common/rpackagestatus.cc:52
msgid "Marked for downgrade"
msgstr "Marcado para desactualizar"
#: ../common/rpackagestatus.cc:53
msgid "Marked for removal"
msgstr "Marcado para eliminar"
#: ../common/rpackagestatus.cc:54
msgid "Marked for complete removal"
msgstr "Marcado para eliminar completamente"
#: ../common/rpackagestatus.cc:55 ../common/rpackageview.cc:136
#: ../gtk/glade/window_filters.glade.h:41
msgid "Not installed"
msgstr "No instalado"
#: ../common/rpackagestatus.cc:56
msgid "Not installed (locked)"
msgstr "No instalado (bloqueado)"
#: ../common/rpackagestatus.cc:57 ../common/rpackageview.cc:131
#: ../gtk/gsynaptic.cc:565 ../gtk/glade/window_filters.glade.h:30
msgid "Installed"
msgstr "Instalado"
#: ../common/rpackagestatus.cc:58 ../common/rpackageview.cc:167
#: ../gtk/gsynaptic.cc:554
msgid "Installed (upgradable)"
msgstr "Instalados (actualizables)"
#: ../common/rpackagestatus.cc:59
msgid "Installed (locked to the current version)"
msgstr "Instalado (bloqueado a la versión actual)"
#: ../common/rpackagestatus.cc:60 ../common/rpackageview.cc:476
#: ../gtk/glade/window_filters.glade.h:14
msgid "Broken"
msgstr "Roto"
#: ../common/rpackagestatus.cc:61
msgid "Not installed (new in repository)"
msgstr "No instalados (nuevos en el repositorio)"
#: ../common/rpackagecache.cc:62
msgid ""
"The list of sources could not be read.\n"
"Go to the repository dialog to correct the problem."
msgstr ""
"No se pudo leer la lista de fuentes.\n"
"Vaya al diálogo del repositorio para corregir el problema."
#: ../common/rpackagecache.cc:73
msgid "The package lists or status file could not be parsed or opened."
msgstr ""
"Las listas de paquetes o el archivo de estado no se pueden analizar "
"sintácticamente o abrir."
#: ../common/rpackagecache.cc:108
msgid "Internal Error, non-zero counts"
msgstr "Error Interno, contando no-cero"
#: ../common/rpackagefilter.cc:44 ../gtk/rgpreferenceswindow.cc:1046
#: ../gtk/glade/window_find.glade.h:5
msgid "Name"
msgstr "Nombre"
#: ../common/rpackagefilter.cc:45 ../gtk/rgpreferenceswindow.cc:51
#: ../gtk/rgmainwindow.cc:1044 ../gtk/rgvendorswindow.cc:62
#: ../gtk/rgvendorswindow.cc:94 ../gtk/glade/window_main.glade.h:21
#: ../gtk/glade/window_filters.glade.h:20
#: ../gtk/glade/window_details.glade.h:16 ../gtk/rgfiltermanager.h:70
msgid "Description"
msgstr "Descripción"
#: ../common/rpackagefilter.cc:46 ../gtk/glade/window_find.glade.h:4
#: ../gtk/glade/window_filters.glade.h:37 ../gtk/rgfiltermanager.h:71
msgid "Maintainer"
msgstr "Mantenedor"
#: ../common/rpackagefilter.cc:47 ../gtk/glade/window_find.glade.h:8
msgid "Version"
msgstr "Versión"
#: ../common/rpackagefilter.cc:49
msgid "Provides"
msgstr "Proporciona"
#: ../common/rpackagefilter.cc:54
msgid "ReverseDepends"
msgstr "Depende inversamente"
#. Reverse Depends
#: ../common/rpackagefilter.cc:55 ../common/rpackageview.h:123
#: ../gtk/glade/window_main.glade.h:36 ../gtk/glade/window_filters.glade.h:45
#: ../gtk/rgfiltermanager.h:80
msgid "Origin"
msgstr "Origen"
#. Origin (e.g. security.debian.org)
#: ../common/rpackagefilter.cc:56 ../gtk/rgpreferenceswindow.cc:50
#: ../gtk/rgmainwindow.cc:937 ../gtk/glade/window_filters.glade.h:15
#: ../gtk/rgfiltermanager.h:81
msgid "Component"
msgstr "Componente"
#: ../common/rpackagefilter.cc:61 ../common/rpackageview.h:139
#: ../gtk/rgpreferenceswindow.cc:49 ../gtk/rgfetchprogress.cc:88
#: ../gtk/glade/window_filters.glade.h:64
msgid "Status"
msgstr "Estado"
#. g_object_set(G_OBJECT(renderer), "editable", TRUE, NULL);
#: ../common/rpackagefilter.cc:62 ../gtk/rgfiltermanager.cc:180
msgid "Pattern"
msgstr "Patrón"
#: ../common/rpackagefilter.cc:63 ../gtk/rgpreferenceswindow.cc:49
#: ../gtk/rgmainwindow.cc:916 ../gtk/glade/window_filters.glade.h:63
msgid "Section"
msgstr "Sección"
#: ../common/rpackagefilter.cc:64
msgid "Priority"
msgstr "Prioridad"
#: ../common/rpackagefilter.cc:65
msgid "ReducedView"
msgstr "Vista reducida"
#: ../common/rpackagefilter.cc:66
msgid "File"
msgstr "Archivo"
#: ../common/rpackagefilter.cc:759
#, c-format
msgid "Bad regular expression '%s' in ReducedView file."
msgstr "Expresión regular errónea «%s» en el archivo de vista reducida."
#: ../common/rpackagelister.cc:317 ../common/rpackagelister.cc:323
#: ../common/rpackagelister.cc:333
#, c-format
msgid "Internal error opening cache (%d). Please report."
msgstr "Error interno al abrir el caché (%d). Por favor informe de este error."
#: ../common/rpackagelister.cc:472
msgid "Unable to correct dependencies"
msgstr "No se pueden corregir las dependencias"
#: ../common/rpackagelister.cc:474
msgid ""
"Unable to mark upgrades\n"
"Check your system for errors."
msgstr ""
"Imposible marcar actualizaciones\n"
"Compruebe si su sistema tiene errores."
#: ../common/rpackagelister.cc:486
msgid "Internal Error, AllUpgrade broke stuff. Please report."
msgstr ""
"Error interno, La actualización completa ha roto algo. Por favor, informe "
"del error."
#: ../common/rpackagelister.cc:504
msgid "dist upgrade Failed"
msgstr "dist-upgrade ha fallado"
#: ../common/rpackagelister.cc:1266
msgid "Unable to lock the list directory"
msgstr "No se ha podido bloquear el directorio de listas"
#: ../common/rpackagelister.cc:1288
msgid ""
"Release files for some repositories could not be retrieved or authenticated. "
"Such repositories are being ignored."
msgstr ""
"Los archivos de lanzamiento de algunos repositorios no se han podido obtener "
"o autenticar. Estos repositorios serán ignorados."
#: ../common/rpackagelister.cc:1379 ../gtk/rgrepositorywin.cc:356
msgid "Ignoring invalid record(s) in sources.list file!"
msgstr "Ignorando registro(s) inválido(s) en el archivo sources.list."
#. TRANSLATORS: Error message after a failed download.
#. The first %s is the URL and the second
#. one is a detailed error message that
#. is provided by apt
#: ../common/rpackagelister.cc:1430
#, c-format
msgid ""
"Failed to fetch %s\n"
" %s\n"
"\n"
msgstr ""
"Falló al obtener %s\n"
" %s\n"
"\n"
#: ../common/rpackagelister.cc:1454
msgid "Some of the packages could not be retrieved from the server(s).\n"
msgstr "Algunos de los paquetes no se han podido obtener del servidor/es.\n"
#: ../common/rpackagelister.cc:1457
msgid "Do you want to continue, ignoring these packages?"
msgstr "¿Seguro que quiere continuar, ignorando esos paquetes?"
#: ../common/rpackagelister.cc:1464
msgid "Unable to correct missing packages"
msgstr "No se pueden corregir los paquetes que faltan"
#. _logEntry += _("\n<b>Removed the following ESSENTIAL packages:</b>\n");
#: ../common/rpackagelister.cc:1602
msgid ""
"\n"
"Removed the following ESSENTIAL packages:\n"
msgstr ""
"\n"
"Quitó los siguientes paquetes ESENCIALES:\n"
#. _logEntry += _("\n<b>Downgraded the following packages:</b>\n");
#: ../common/rpackagelister.cc:1611
msgid ""
"\n"
"Downgraded the following packages:\n"
msgstr ""
"\n"
"Desactualizó los siguientes paquetes:\n"
#. _logEntry += _("\n<b>Completely removed the following packages:</b>\n");
#: ../common/rpackagelister.cc:1620
msgid ""
"\n"
"Completely removed the following packages:\n"
msgstr ""
"\n"
"Quitó completamente los siguientes paquetes:\n"
#. _logEntry += _("\n<b>Removed the following packages:</b>\n");
#: ../common/rpackagelister.cc:1629
msgid ""
"\n"
"Removed the following packages:\n"
msgstr ""
"\n"
"Quitó los paquetes siguientes:\n"
#. _logEntry += _("\n<b>Upgraded the following packages:</b>\n");
#: ../common/rpackagelister.cc:1638
msgid ""
"\n"
"Upgraded the following packages:\n"
msgstr ""
"\n"
"Actualizó los paquetes siguientes:\n"
#. _logEntry += _("\n<b>Installed the following packages:</b>\n");
#: ../common/rpackagelister.cc:1649
msgid ""
"\n"
"Installed the following packages:\n"
msgstr ""
"\n"
"Instaló los paquetes siguientes:\n"
#. _logEntry += _("\n<b>Reinstalled the following packages:</b>\n");
#: ../common/rpackagelister.cc:1659
msgid ""
"\n"
"Reinstalled the following packages:\n"
msgstr ""
"\n"
"Reinstaló los siguientes paquetes: %s\n"
#: ../common/rpackagelister.cc:1676
msgid "Unable to lock the download directory"
msgstr "No se ha podido bloquear el directorio de descargas"
#: ../common/rpackagelister.cc:1760
#, c-format
msgid "Line %u too long in markings file."
msgstr "La línea %u del archivo de selecciones es demasiado larga."
#: ../common/rpackagelister.cc:1774 ../common/rpackagelister.cc:1778
#, c-format
msgid "Malformed line %u in markings file"
msgstr "La línea %u del archivo de selecciones está mal formada"
#: ../common/rpackagelister.cc:1790
msgid "Setting markings..."
msgstr "Estableciendo las selecciones…"
#: ../common/rpmindexcopy.cc:135
msgid "bzip2 failed, perhaps the disk is full."
msgstr "ha fallado bzip2, quizá el disco esté lleno."
#: ../common/rpackageview.h:99
msgid "Sections"
msgstr "Secciones"
#: ../common/rpackageview.h:109
msgid "Alphabetic"
msgstr "Alfabético"
#: ../common/rpackageview.h:159
msgid "Search History"
msgstr "Histórico de búsqueda"
#: ../common/rpackageview.h:210
msgid "Custom"
msgstr "Personalizado"
#: ../common/rpackageview.cc:129
msgid "Installed (unsupported)"
msgstr "Instalado (no soportado)"
#: ../common/rpackageview.cc:134
msgid "Not installed (unsupported)"
msgstr "No instalado (no soportado)"
#: ../common/rpackageview.cc:143
msgid "Installed (auto removable)"
msgstr "Instalados (auto eliminables)"
#: ../common/rpackageview.cc:150
#, fuzzy
msgid "Installed (manual)"
msgstr "Instalados (actualizables)"
#: ../common/rpackageview.cc:156
msgid "Broken dependencies"
msgstr "Dependencias rotas"
#: ../common/rpackageview.cc:158 ../gtk/glade/window_filters.glade.h:39
msgid "New in repository"
msgstr "Nuevo en el repositorio"
#: ../common/rpackageview.cc:160 ../gtk/glade/window_filters.glade.h:55
msgid "Pinned"
msgstr "Clavados"
#: ../common/rpackageview.cc:164
msgid "Installed (local or obsolete)"
msgstr "Instalados (locales u obsoletos)"
#: ../common/rpackageview.cc:170
msgid "Not installed (residual config)"
msgstr "No instalados (conf. residual)"
#. setup search progress (0 done, _all.size() in total, 1 subtask)
#: ../common/rpackageview.cc:266
#, fuzzy
msgid "Searching"
msgstr "Buscar"
#: ../common/rpackageview.cc:454
msgid "Search Filter"
msgstr "Filtro de búsqueda"
#: ../common/rpackageview.cc:462
msgid "Tasks"
msgstr "Tareas"
#: ../common/rpackageview.cc:468
msgid "Reduced View"
msgstr "Vista reducida"
#: ../common/rpackageview.cc:485 ../gtk/gsynaptic.cc:579
#: ../gtk/rgsummarywindow.cc:357
msgid "Marked Changes"
msgstr "Cambios marcados"
#. TRANSLATORS: This is a filter that will give you all packages
#. with debconf support (that can be reconfigured with debconf)
#: ../common/rpackageview.cc:496
msgid "Package with Debconf"
msgstr "Paquete con Debconf"
#: ../common/rpackageview.cc:503 ../gtk/glade/window_filters.glade.h:68
msgid "Upgradable (upstream)"
msgstr "Actualizable (versión superior)"
#: ../common/rpackageview.cc:509
msgid "Missing Recommends"
msgstr "Recomendaciones perdidas"
#: ../common/rpackageview.cc:518
msgid "Local"
msgstr "Local"
#: ../common/rsources.cc:69 ../gtk/rgmainwindow.cc:2114
#: ../gtk/rgmainwindow.cc:2795 ../gtk/rgmainwindow.cc:2881
#: ../gtk/rgmainwindow.cc:3054
#, c-format
msgid "Can't read %s"
msgstr "No se puede leer %s"
#: ../common/rsources.cc:131
#, c-format
msgid "Syntax error in line %s"
msgstr "Error de sintaxis en la línea %s"
#: ../common/rsources.cc:469
#, c-format
msgid "Vendor block %s is invalid"
msgstr "El bloque del fabricante %s es inválido"
#: ../gtk/gsynaptic.cc:73
msgid "Usage: synaptic [options]\n"
msgstr "Uso: synaptic [opciones]\n"
#: ../gtk/gsynaptic.cc:74
msgid "-h This help text\n"
msgstr "-h Este texto de ayuda\n"
#: ../gtk/gsynaptic.cc:75
msgid "-r Open in the repository screen\n"
msgstr "-r Abrir en la pantalla del repositorio\n"
#: ../gtk/gsynaptic.cc:76
msgid "-f=? Give an alternative filter file\n"
msgstr "-f=? Usar un archivo de filtros alternativo\n"
#: ../gtk/gsynaptic.cc:77
msgid ""
"-t Give an alternative main window title (e.g. hostname with `uname -n`)\n"
msgstr ""
"-t Usar un título de ventana alternativo (por ejemplo el nombre de "
"anfitrión con `uname -n`)\n"
#: ../gtk/gsynaptic.cc:78
msgid "-i=? Start with the initial Filter with given name\n"
msgstr "-i=? Comenzar usando el filtro inicial con el nombre dado\n"
#: ../gtk/gsynaptic.cc:79
msgid "-o=? Set an arbitary configuration option, eg -o dir::cache=/tmp\n"
msgstr ""
"-o=? Poner una opción de configuración arbitraria, ej -o dir::cache=/tmp\n"
#: ../gtk/gsynaptic.cc:80
msgid "--upgrade-mode Call Upgrade and display changes\n"
msgstr "--upgrade-mode Llama a actualizar y muestra los cambios\n"
#: ../gtk/gsynaptic.cc:81
msgid "--dist-upgrade-mode Call DistUpgrade and display changes\n"
msgstr "--dist-upgrade-mode Llama a modernizar y muestra los cambios\n"
#: ../gtk/gsynaptic.cc:82
msgid "--update-at-startup Call \"Reload\" on startup\n"
msgstr "--update-at-startup Recargar la lista de paquetes al inicio\n"
#: ../gtk/gsynaptic.cc:83
msgid "--non-interactive Never prompt for user input\n"
msgstr "--non-interactive Nunca pregunta al usuario\n"
#: ../gtk/gsynaptic.cc:84
msgid "--task-window Open with task window\n"
msgstr "--task-window Abrir con la ventana de tareas\n"
#: ../gtk/gsynaptic.cc:85
msgid "--add-cdrom Add a cdrom at startup (needs path for cdrom)\n"
msgstr "--add-cdrom Añade un cdrom al inicio (necesita la ruta del cdrom)\n"
#: ../gtk/gsynaptic.cc:86
msgid "--ask-cdrom Ask for adding a cdrom and exit\n"
msgstr "--add-cdrom Pregunta si se añade un cdrom y sale\n"
#: ../gtk/gsynaptic.cc:87
msgid "--test-me-harder Run test in a loop\n"
msgstr "--test-me-harder Ejecuta la comprobación en un bucle\n"
#: ../gtk/gsynaptic.cc:336 ../gtk/gsynaptic.cc:342
msgid "Another synaptic is running"
msgstr "Ya hay otro synaptic en ejecución"
#: ../gtk/gsynaptic.cc:337
msgid ""
"There is another synaptic running in interactive mode. Please close it "
"first. "
msgstr "Hay otro synaptic funcionando en modo interactivo, ciérrelo primero. "
#: ../gtk/gsynaptic.cc:343
msgid ""
"There is another synaptic running in non-interactive mode. Please wait for "
"it to finish first."
msgstr ""
"Hay otro synaptic funcionando en modo no interactivo, espere hasta que "
"termine."
#: ../gtk/gsynaptic.cc:368
msgid "Unable to get exclusive lock"
msgstr "Incapaz de obtener un bloqueo exclusivo"
#: ../gtk/gsynaptic.cc:369
msgid ""
"This usually means that another package management application (like apt-get "
"or aptitude) is already running. Please close that application first."
msgstr ""
"Esto normalmente significa que otro gestor de paquetes (como apt-get o "
"aptitude) ya se está ejecutando. Cierre esta aplicación antes de continuar."
#: ../gtk/gsynaptic.cc:412
msgid "Starting without administrative privileges"
msgstr "Ejecutándose sin privilegios de administrador"
#: ../gtk/gsynaptic.cc:414
msgid ""
"You will not be able to apply any changes. But you can still export the "
"marked changes or create a download script for them."
msgstr ""
"No podrá aplicar ningún cambio. Pero puede exportar los cambios marcados o "
"generar un script de descarga para ellos."
#: ../gtk/gsynaptic.cc:480
msgid "Synaptic Package Manager "
msgstr "Gestor de paquetes Synaptic"
#: ../gtk/rgcdscanner.cc:63 ../gtk/rgpkgcdrom.cc:86
msgid "Scanning CD-ROM"
msgstr "Inspeccionando CD-ROM"
#: ../gtk/rgcdscanner.cc:109
msgid "Invalid disc name!"
msgstr "Nombre de disco inválido."
#: ../gtk/rgcdscanner.cc:121 ../gtk/rgpkgcdrom.cc:122
msgid "Disc Label"
msgstr "Etiqueta del disco"
#: ../gtk/rgaboutpanel.cc:64 ../gtk/glade/window_about.glade.h:5
msgid "Credits"
msgstr "Créditos"
#. skipTaskbar(true);
#: ../gtk/rgaboutpanel.cc:82 ../gtk/glade/window_about.glade.h:4
msgid "About Synaptic"
msgstr "Acerca de Synaptic"
#: ../gtk/rgchangeswindow.cc:53
msgid "Package changes"
msgstr "Cambios del paquete"
#: ../gtk/rgchangeswindow.cc:94 ../gtk/rgsummarywindow.cc:79
msgid "Warning"
msgstr "Aviso"
#: ../gtk/rgchangeswindow.cc:95 ../gtk/rgsummarywindow.cc:80
msgid ""
"You are about to install software that <b>can't be authenticated</b>! Doing "
"this could allow a malicious individual to damage or take control of your "
"system."
msgstr ""
"Está a punto de instalar software que <b>no puede ser autenticado</b>. Esto "
"puede permitir que un individuo malicioso dañe o tome el control de su "
"sistema."
#: ../gtk/rgchangeswindow.cc:106 ../gtk/rgsummarywindow.cc:92
msgid "NOT AUTHENTICATED"
msgstr "NO AUTENTICADO"
#. removed
#: ../gtk/rgchangeswindow.cc:117
msgid "To be removed"
msgstr "Para ser eliminado"
#: ../gtk/rgchangeswindow.cc:134
msgid "To be downgraded"
msgstr "Para ser desactualizado"
#: ../gtk/rgchangeswindow.cc:146 ../gtk/rgsummarywindow.cc:173
msgid "To be installed"
msgstr "Para ser instalado"
#: ../gtk/rgchangeswindow.cc:158 ../gtk/rgsummarywindow.cc:161
msgid "To be upgraded"
msgstr "Para ser actualizado"
#: ../gtk/rgchangeswindow.cc:170 ../gtk/rgsummarywindow.cc:185
msgid "To be re-installed"
msgstr "Para ser reinstalado"
#: ../gtk/rgchangeswindow.cc:181
msgid "To be kept"
msgstr "Para ser conservado"
#: ../gtk/rgdebinstallprogress.cc:215
#, c-format
msgid ""
"Replace configuration file\n"
"'%s'?"
msgstr ""
"¿Desea reemplazar el archivo de configuración\n"
"«%s»?"
#: ../gtk/rgdebinstallprogress.cc:216
#, c-format
msgid ""
"The configuration file %s was modified (by you or by a script). An updated "
"version is shipped in this package. If you want to keep your current version "
"say 'Keep'. Do you want to replace the current file and install the new "
"package maintainers version? "
msgstr ""
"El archivo de configuración %s ha sido modificado (por usted o algún "
"script). En este paquete se incluye una versión actualizada. Si quiere "
"conservar su versión actual pulse «Conservar». ¿Quiere reemplazar el archivo "
"actual e instalar la versión nueva del mantenedor del paquete? "
#: ../gtk/rgdebinstallprogress.cc:367 ../gtk/rginstallprogress.cc:286
#: ../gtk/rgterminstallprogress.cc:62
msgid "Applying Changes"
msgstr "Aplicando los cambios"
#: ../gtk/rgdebinstallprogress.cc:454
msgid "Ctrl-c pressed"
msgstr "Se ha pulsado Ctrl-c"
#: ../gtk/rgdebinstallprogress.cc:455
msgid ""
"This will abort the operation and may leave the system in a broken state. "
"Are you sure you want to do that?"
msgstr ""
"Esto abortará la operación y puede dejar el sistema roto. ¿Seguro que quiere "
"hacer eso?"
#. error from dpkg, needs to be parsed different
#: ../gtk/rgdebinstallprogress.cc:509
#, c-format
msgid "Error in package %s"
msgstr "Error en el paquete %s"
#: ../gtk/rgdebinstallprogress.cc:602
msgid "Error failed to fork pty"
msgstr "Error no se pudo realizar un «fork» de pty"
#: ../gtk/rgdebinstallprogress.cc:619
msgid "A package failed to install. Trying to recover:"
msgstr "Un paquete no se pudo instalar. Tratando de recuperarlo:"
#: ../gtk/rgdebinstallprogress.cc:676 ../gtk/rgdebinstallprogress.cc:679
msgid "Changes applied"
msgstr "Cambios aplicados"
#: ../gtk/rgdebinstallprogress.cc:735
msgid ""
"The marked changes are now being applied. This can take some time. Please "
"wait."
msgstr ""
"Los cambios marcados se están aplicando ahora. Esto puede llevar algo de "
"tiempo. Por favor, espere."
#: ../gtk/rgdebinstallprogress.cc:740
msgid "Installing and removing software"
msgstr "Instalar y quitar los paquetes de software"
#: ../gtk/rgdebinstallprogress.cc:742
msgid "Removing software"
msgstr "Quitando software"
#: ../gtk/rgdebinstallprogress.cc:744
msgid "Installing software"
msgstr "Instalar software"
#: ../gtk/rgpreferenceswindow.cc:49
msgid "Supported"
msgstr "Soportado"
#: ../gtk/rgpreferenceswindow.cc:49 ../gtk/glade/window_filters.glade.h:47
msgid "Package Name"
msgstr "Nombre del paquete"
#: ../gtk/rgpreferenceswindow.cc:50 ../gtk/rgmainwindow.cc:959
msgid "Installed Version"
msgstr "Versión instalada"
#: ../gtk/rgpreferenceswindow.cc:50
msgid "Available Version"
msgstr "Versión disponible"
#: ../gtk/rgpreferenceswindow.cc:51
msgid "Installed Size"
msgstr "Tamaño instalado"
#: ../gtk/rgpreferenceswindow.cc:51
msgid "Download Size"
msgstr "Tamaño de descarga"
#: ../gtk/rgpreferenceswindow.cc:407 ../gtk/rgmainwindow.cc:1779
#: ../gtk/rgterminstallprogress.cc:151
msgid "An error occurred while saving configurations."
msgstr "Se ha producido un error mientras se guardaban las configuraciones."
#: ../gtk/rgpreferenceswindow.cc:457
msgid "Choose font"
msgstr "Elija la tipografía"
#: ../gtk/rgpreferenceswindow.cc:886
msgid "Color selection"
msgstr "Selección de color"
#: ../gtk/rgpreferenceswindow.cc:987
msgid ""
"Prefer package versions from the selected distribution when upgrading "
"packages. If you manually force a version from a different distribution, the "
"package version will follow that distribution until it enters the default "
"distribution."
msgstr ""
"Preferir versiones de paquetes de la distribución seleccionada al "
"actualizar. Si fuerza manualmente una versión de una distribución diferente, "
"la versión del paquete seguirá a esa distribución hasta que entre en la "
"distribución predeterminada."
#: ../gtk/rgpreferenceswindow.cc:995
msgid ""
"Never upgrade to a new version automatically. Be _very_ careful with this "
"option as you will not get security updates automatically! If you manually "
"force a version the package version will follow the chosen distribution."
msgstr ""
"Nunca actualizar a una nueva versión automáticamente. Sea _muy_ cuidadoso "
"con esta opción ya que no tendrá actualizaciones automáticas de seguridad. "
"Si fuerza una versión manualmente, la versión del paquete seguirá la "
"distribución elegida."
#: ../gtk/rgpreferenceswindow.cc:1003
msgid "Let synaptic pick the best version for you. If unsure use this option. "
msgstr ""
"Deje a synaptic escoger la mejor versión para usted. Si no está seguro use "
"esta opción. "
#: ../gtk/rgpreferenceswindow.cc:1040
msgid "Visible"
msgstr "Visible"
#: ../gtk/rgpreferenceswindow.cc:1118
#: ../gtk/glade/window_preferences.glade.h:66
msgid "Preferences"
msgstr "Preferencias"
#: ../gtk/rgfetchprogress.cc:100 ../gtk/rgmainwindow.cc:1001
msgid "Size"
msgstr "Tamaño"
#: ../gtk/rgfetchprogress.cc:107 ../gtk/rgmainwindow.cc:894
msgid "Package"
msgstr "Paquete"
#: ../gtk/rgfetchprogress.cc:114 ../gtk/rgrepositorywin.cc:181
msgid "URI"
msgstr "URI"
#: ../gtk/rgfetchprogress.cc:198
#, c-format
msgid ""
"Please insert the disk labeled:\n"
"%s\n"
"in drive %s"
msgstr ""
"Por favor, introduzca el disco con la etiqueta:\n"
"%s\n"
"en la unidad %s"
#: ../gtk/rgfetchprogress.cc:326
#, c-format
msgid "Download rate: %s/s - %s remaining"
msgstr "Tasa de descarga: %s/s - quedan %s"
#: ../gtk/rgfetchprogress.cc:332
msgid "Download rate: unknown"
msgstr "Tasa de descarga: desconocida"
#: ../gtk/rgfetchprogress.cc:334
#, c-format
msgid "Downloading file %li of %li"
msgstr "Descargando el archivo %li de %li"
#: ../gtk/rgfetchprogress.cc:412
msgid "Queued"
msgstr "Marcado"
#: ../gtk/rgfetchprogress.cc:415
msgid "Done"
msgstr "Hecho"
#: ../gtk/rgfetchprogress.cc:418
msgid "Hit"
msgstr "Comprobado"
#: ../gtk/rgfetchprogress.cc:421
msgid "Failed"
msgstr "Falló"
#: ../gtk/rgfiltermanager.cc:40 ../gtk/glade/window_filters.glade.h:24
msgid "Filters"
msgstr "Filtros"
#: ../gtk/rgfiltermanager.cc:165
msgid "Field"
msgstr "Campo"
#: ../gtk/rgfiltermanager.cc:172
msgid "Operator"
msgstr "Operador"
#: ../gtk/rgfiltermanager.cc:750
#, c-format
msgid "New Filter %i"
msgstr "Filtro nuevo %i"
#: ../gtk/rginstallprogress.cc:44
#: ../gtk/glade/window_rginstall_progress_msgs.glade.h:2
msgid "Package Manager output"
msgstr "Salida del Gestor de Paquetes"
#: ../gtk/rginstallprogress.cc:85
#, c-format
msgid ""
"\n"
"While installing package %s:\n"
"\n"
msgstr ""
"\n"
"Mientras se instalaba el paquete %s:\n"
"\n"
#: ../gtk/rginstallprogress.cc:89
#, c-format
msgid ""
"\n"
"While preparing for installation:\n"
"\n"
msgstr ""
"\n"
"Mientras se preparaba la instalación:\n"
"\n"
#: ../gtk/rginstallprogress.cc:131
#, c-format
msgid ""
"APT system reports:\n"
"%s"
msgstr ""
"El sistema APT informa:\n"
"%s"
#: ../gtk/rglogview.cc:282
msgid "Not found"
msgstr "No encontrado"
#: ../gtk/rglogview.cc:284
msgid ""
"Expression was found, please see the list on the left for matching entries."
msgstr ""
"Se encontró una expresión, busque las entradas correspondientes en la lista "
"de la izquierda."
#: ../gtk/rgpkgdetails.cc:148
#, c-format
msgid "%s Properties"
msgstr "Propiedades de %s"
#: ../gtk/rgpkgdetails.cc:213
msgid "This application is supported by the distribution"
msgstr "La distribución da soporte a esta aplicación"
#: ../gtk/rgpkgdetails.cc:223
msgid "Get Screenshot"
msgstr "Obtener captura de pantalla"
#. TRANSLATORS: this the format of the available versions in
#. the "Properties/Available versions" window
#. e.g. "0.56 (unstable)"
#. "0.53.4 (testing)"
#: ../gtk/rgpkgdetails.cc:273
#, c-format
msgid "%s (%s)"
msgstr "%s (%s)"
#: ../gtk/rgmainwindow.cc:170
msgid "All"
msgstr "Todo"
#: ../gtk/rgmainwindow.cc:366 ../gtk/glade/window_main.glade.h:34
#: ../gtk/glade/window_details.glade.h:19
msgid "No package is selected.\n"
msgstr "No hay ningún paquete seleccionado.\n"
#: ../gtk/rgmainwindow.cc:526
#, c-format
msgid "Select the version of %s that should be forced for installation"
msgstr "Seleccione la versión de %s que debería forzarse para la instalación"
#: ../gtk/rgmainwindow.cc:528
msgid ""
"The package manager always selects the most applicable version available. If "
"you force a different version from the default one, errors in the dependency "
"handling can occur."
msgstr ""
"El administrador de paquetes siempre selecciona la versión disponible que "
"mejor se adapta. Si fuerza una versión diferente de la predeterminada, "
"pueden ocurrir errores en la manipulación de dependencias."
#. TRANSLATORS: Column header for the column "Status" in the package list
#: ../gtk/rgmainwindow.cc:859
msgid "S"
msgstr "E"
#: ../gtk/rgmainwindow.cc:980
msgid "Latest Version"
msgstr "Última versión"
#: ../gtk/rgmainwindow.cc:1022
msgid "Download"
msgstr "Descargar"
#: ../gtk/rgmainwindow.cc:1297
msgid ""
"Reload the package information to become informed about new, removed or "
"upgraded software packages."
msgstr ""
"Recargar la información de los paquetes para informarse acerca de los "
"paquetes de software nuevos, eliminados o actualizados."
#: ../gtk/rgmainwindow.cc:1303
msgid "Mark all possible upgrades"
msgstr "Marcar todas las actualizaciones posibles"
#: ../gtk/rgmainwindow.cc:1307 ../gtk/glade/window_summary.glade.h:5
msgid "Apply all marked changes"
msgstr "Aplicar todos los cambios seleccionados"
#: ../gtk/rgmainwindow.cc:1488
msgid "Unmark"
msgstr "Desmarcar"
#: ../gtk/rgmainwindow.cc:1496
msgid "Mark for Installation"
msgstr "Marcar para instalar"
#: ../gtk/rgmainwindow.cc:1504
msgid "Mark for Reinstallation"
msgstr "Marcar para reinstalar"
#: ../gtk/rgmainwindow.cc:1513
msgid "Mark for Upgrade"
msgstr "Marcar para actualizar"
#: ../gtk/rgmainwindow.cc:1521
msgid "Mark for Removal"
msgstr "Marcar para eliminar"
#: ../gtk/rgmainwindow.cc:1530
msgid "Mark for Complete Removal"
msgstr "Marcar para eliminar completamente"
#: ../gtk/rgmainwindow.cc:1542
msgid "Remove Including Orphaned Dependencies"
msgstr "Eliminar incluyendo dependencias huérfanas"
#: ../gtk/rgmainwindow.cc:1554
msgid "Hold Current Version"
msgstr "Mantener la versión actual"
#: ../gtk/rgmainwindow.cc:1563 ../gtk/glade/window_main.glade.h:37
#: ../gtk/glade/window_filters.glade.h:57
msgid "Properties"
msgstr "Propiedades"
#: ../gtk/rgmainwindow.cc:1575
msgid "Mark Recommended for Installation"
msgstr "Marcar recomendados para instalación"
#: ../gtk/rgmainwindow.cc:1579
msgid "Mark Suggested for Installation"
msgstr "Marcar sugeridos para instalación"
#: ../gtk/rgmainwindow.cc:1683
msgid ""
"Removing this package may render the system unusable.\n"
"Are you sure you want to do that?"
msgstr ""
"Eliminar este paquete puede hacer que el sistema sea inutilizable.\n"
"¿Seguro que quiere hacer eso?"
#: ../gtk/rgmainwindow.cc:1723
#, c-format
msgid ""
"%i packages listed, %i installed, %i broken. %i to install/upgrade, %i to "
"remove; %s will be freed"
msgstr ""
"%i paquetes listados, %i instalados, %i rotos. %i para instalar/actualizar, %"
"i para eliminar; se liberarán %s "
#: ../gtk/rgmainwindow.cc:1729
#, c-format
msgid ""
"%i packages listed, %i installed, %i broken. %i to install/upgrade, %i to "
"remove; %s will be used"
msgstr ""
"%i paquetes listados, %i instalados, %i rotos. %i para instalar/actualizar, %"
"i para eliminar; se usarán %s"
#: ../gtk/rgmainwindow.cc:1735
#, c-format
msgid ""
"%i packages listed, %i installed, %i broken. %i to install/upgrade, %i to "
"remove"
msgstr ""
"%i paquetes listados, %i instalados, %i rotos. %i para instalar/actualizar, %"
"i para eliminar"
#: ../gtk/rgmainwindow.cc:1796
#, c-format
msgid ""
"You have %d broken package on your system!\n"
"\n"
"Use the \"Broken\" filter to locate it."
msgid_plural ""
"You have %i broken packages on your system!\n"
"\n"
"Use the \"Broken\" filter to locate them."
msgstr[0] ""
"Tiene %d paquete roto en su sistema\n"
"\n"
"Use el filtro «Rotos» para encontrarlo."
msgstr[1] ""
"Tiene %d paquetes rotos en su sistema\n"
"\n"
"Use el filtro «Rotos» para encontrarlos."
#: ../gtk/rgmainwindow.cc:1959
msgid "Downloading Changelog"
msgstr "Descargando el historial de cambios"
#: ../gtk/rgmainwindow.cc:1960
msgid ""
"The changelog contains information about the changes and closed bugs in each "
"version of the package."
msgstr ""
"El informe de cambios contiene información acerca de los cambios y fallos "
"arreglados en cada versión del paquete."
#. TRANSLATORS: Title of the changelog dialog - %s is the name of the package
#: ../gtk/rgmainwindow.cc:1973
#, c-format
msgid "%s Changelog"
msgstr "Informe de cambios de %s"
#: ../gtk/rgmainwindow.cc:2064
msgid "Do you want to add another CD-ROM?"
msgstr "¿Quiere añadir otro CD-ROM?"
#: ../gtk/rgmainwindow.cc:2101
msgid "Open changes"
msgstr "Abrir cambios"
#: ../gtk/rgmainwindow.cc:2138 ../gtk/rgmainwindow.cc:2713
#: ../gtk/rgmainwindow.cc:2849 ../gtk/rgmainwindow.cc:3027
#, c-format
msgid "Can't write %s"
msgstr "No se puede escribir %s"
#: ../gtk/rgmainwindow.cc:2157
msgid "Save changes"
msgstr "Guardar cambios"
#: ../gtk/rgmainwindow.cc:2164
msgid "Save full state, not only changes"
msgstr "Guardar el estado completo, no sólo los cambios"
#: ../gtk/rgmainwindow.cc:2281
msgid "Repositories changed"
msgstr "Los repositorios han cambiado"
#. TRANSLATORS: this message appears when the user added/removed
#. a repository (sources.list entry) a reload (apt-get update) is
#. needed then
#: ../gtk/rgmainwindow.cc:2285
msgid ""
"The repository information has changed. You have to click on the \"Reload\" "
"button for your changes to take effect"
msgstr ""
"La información de los repositorios ha cambiado. Tiene que pulsar en el botón "
"«Recargar» para que estos cambios surtan efecto"
#: ../gtk/rgmainwindow.cc:2296
msgid "Never show this message again"
msgstr "No mostrar este mensaje de nuevo"
#: ../gtk/rgmainwindow.cc:2355
#, c-format
msgid "Found %i packages"
msgstr "Se encontraron %i paquetes"
#: ../gtk/rgmainwindow.cc:2396
msgid "Starting help viewer..."
msgstr "Iniciando el visor de ayuda…"
#: ../gtk/rgmainwindow.cc:2416
msgid ""
"No help viewer is installed!\n"
"\n"
"You need either the GNOME help viewer 'yelp', the 'konqueror' browser or the "
"'mozilla' browser to view the synaptic manual.\n"
"\n"
"Alternatively you can open the man page with 'man synaptic' from the command "
"line or view the html version located in the 'synaptic/html' folder."
msgstr ""
"No hay instalado un visor de ayuda.\n"
"\n"
"Necesita o el visor de ayuda de GNOME 'yelp', 'konqueror' o el navegador "
"'mozilla' para ver el manual de synaptic.\n"
"\n"
"Alternativamente puede abrir la página de manual con 'man synaptic' desde la "
"línea de comandos o ver la versión html ubicada en la carpeta 'synaptic/"
"html'."
#: ../gtk/rgmainwindow.cc:2568
msgid ""
"Cannot start configuration tool!\n"
"You have to install the required package 'libgnome2-perl'."
msgstr ""
"No se puede iniciar la herramienta de configuración.\n"
"Tiene que instalar el paquete requerido 'libgnome2-perl'."
#: ../gtk/rgmainwindow.cc:2574
msgid "Starting package configuration tool..."
msgstr "Iniciando la herramienta de configuración de paquetes…"
#. cout << "RGMainWindow::pkgHelpClicked()" << endl;
#: ../gtk/rgmainwindow.cc:2589
msgid "Starting package documentation viewer..."
msgstr "Iniciando el visor de la documentación de los paquetes…"
#: ../gtk/rgmainwindow.cc:2601
msgid ""
"You have to install the package \"dwww\" to browse the documentation of a "
"package"
msgstr ""
"Tiene que instalar el paquete «dwww» para examinar la documentación de un "
"paquete"
#: ../gtk/rgmainwindow.cc:2677
msgid ""
"Could not apply changes!\n"
"Fix broken packages first."
msgstr ""
"No se pudieron aplicar los cambios.\n"
"Arregle los paquetes rotos primero."
#: ../gtk/rgmainwindow.cc:2698
msgid "Applying marked changes. This may take a while..."
msgstr "Aplicando los cambios marcados. Llevará un rato…"
#: ../gtk/rgmainwindow.cc:2702
msgid "Downloading Package Files"
msgstr "Descargando paquetes"
#: ../gtk/rgmainwindow.cc:2778
msgid "Do you want to quit Synaptic?"
msgstr "¿Quiere salir de Synaptic?"
#: ../gtk/rgmainwindow.cc:2834
msgid "Downloading Package Information"
msgstr "Descargando información de paquetes"
#: ../gtk/rgmainwindow.cc:2835
msgid ""
"The repositories will be checked for new, removed or upgraded software "
"packages."
msgstr ""
"Se comprobarán los repositorios buscando paquetes de software nuevos, "
"eliminados o actualizados."
#: ../gtk/rgmainwindow.cc:2838
msgid "Reloading package information..."
msgstr "Recargando información de paquetes…"
#: ../gtk/rgmainwindow.cc:2906
msgid "Failed to resolve dependency problems!"
msgstr "Se produjo un fallo al resolver problemas de dependencias."
#: ../gtk/rgmainwindow.cc:2908
msgid "Successfully fixed dependency problems"
msgstr "Se arreglaron con éxito los problemas de dependencias"
#: ../gtk/rgmainwindow.cc:2924
msgid ""
"Could not upgrade the system!\n"
"Fix broken packages first."
msgstr ""
"No se pudo actualizar el sistema\n"
"Arregle los paquetes rotos primero."
#: ../gtk/rgmainwindow.cc:2973
msgid "Marking all available upgrades..."
msgstr "Marcando todas las posibles actualizaciones…"
#: ../gtk/rgmainwindow.cc:2992
msgid "Successfully marked available upgrades"
msgstr "Se han marcado con éxito todas las actualizaciones disponibles"
#: ../gtk/rgmainwindow.cc:2994
msgid "Failed to mark all available upgrades!"
msgstr "Se produjo un fallo al marcar todas las actualizaciones disponibles."
#: ../gtk/rgmainwindow.cc:3373
msgid "Save script"
msgstr "Guardar script"
#: ../gtk/rgmainwindow.cc:3400
msgid "Select directory"
msgstr "Seleccionar directorio"
#: ../gtk/rgmainwindow.cc:3412
msgid "Please select a directory"
msgstr "Seleccione un directorio"
#: ../gtk/rgrepositorywin.cc:92
msgid ""
"You are adding the \"universe\" component.\n"
"\n"
" Packages in this component are not supported. Are you sure?"
msgstr ""
"Está añadiendo el componente «universo».\n"
"\n"
"Los paquetes en este componente no están soportados. ¿Está seguro?"
#: ../gtk/rgrepositorywin.cc:124 ../gtk/glade/window_repositories.glade.h:3
msgid "Repositories"
msgstr "Repositorios"
#: ../gtk/rgrepositorywin.cc:148
msgid "Enabled"
msgstr "Activado"
#: ../gtk/rgrepositorywin.cc:158
msgid "Type"
msgstr "Tipo"
#: ../gtk/rgrepositorywin.cc:168 ../gtk/rgvendorswindow.cc:62
#: ../gtk/rgvendorswindow.cc:80
msgid "Vendor"
msgstr "Fabricante"
#: ../gtk/rgrepositorywin.cc:191 ../gtk/glade/window_preferences.glade.h:36
msgid "Distribution"
msgstr "Distribución"
#: ../gtk/rgrepositorywin.cc:202
msgid "Section(s)"
msgstr "Sección(es)"
#: ../gtk/rgrepositorywin.cc:253
msgid "Binary (deb)"
msgstr "Binario (deb)"
#: ../gtk/rgrepositorywin.cc:258
msgid "Source (deb-src)"
msgstr "Fuentes (deb-src)"
#: ../gtk/rgrepositorywin.cc:267 ../gtk/rgrepositorywin.cc:409
#: ../gtk/glade/window_repositories.glade.h:1
msgid "(no vendor)"
msgstr "(sin fabricante)"
#: ../gtk/rgrepositorywin.cc:363
msgid "Cannot read vendors.list file"
msgstr "No se puede leer el archivo vendors.list"
#: ../gtk/rgrepositorywin.cc:536
msgid "Unknown source type"
msgstr "Tipo de fuente desconocida"
#: ../gtk/rgsummarywindow.cc:108
msgid "<b>(ESSENTIAL) to be removed</b>"
msgstr "<b>(ESENCIAL) para ser eliminado</b>"
#: ../gtk/rgsummarywindow.cc:122
msgid "<b>To be DOWNGRADED</b>"
msgstr "<b>Para ser DESACTUALIZADO</b>"
#: ../gtk/rgsummarywindow.cc:135
msgid "<b>To be removed</b>"
msgstr "<b>Para ser eliminado</b>"
#: ../gtk/rgsummarywindow.cc:148
msgid "<b>To be completely removed (including configuration files)</b>"
msgstr ""
"<b>Para ser eliminados completamente (incluyendo archivos de configuración)</"
"b>"
#: ../gtk/rgsummarywindow.cc:200
msgid "Unchanged"
msgstr "Sin cambios"
#: ../gtk/rgsummarywindow.cc:245
#, c-format
msgid "<b>%s</b> (<b>essential</b>) will be removed\n"
msgstr "<b>%s</b> (<b>esencial</b>) será eliminado\n"
#: ../gtk/rgsummarywindow.cc:254
#, c-format
msgid "<b>%s</b> will be <b>downgraded</b>\n"
msgstr "<b>%s</b> será <b>desactualizado</b>\n"
#: ../gtk/rgsummarywindow.cc:262
#, c-format
msgid "<b>%s</b> will be removed with configuration\n"
msgstr "<b>%s</b> será eliminado con su configuración\n"
#: ../gtk/rgsummarywindow.cc:270
#, c-format
msgid "<b>%s</b> will be removed\n"
msgstr "<b>%s</b> será eliminado\n"
#: ../gtk/rgsummarywindow.cc:279
#, c-format
msgid "<b>%s</b> (version <i>%s</i>) will be upgraded to version <i>%s</i>\n"
msgstr "<b>%s</b> (versión<i>%s</i>) será actualizado a la versión <i>%s</i>\n"
#: ../gtk/rgsummarywindow.cc:290
#, c-format
msgid "<b>%s</b> (version <i>%s</i>) will be installed\n"
msgstr "<b>%s</b> (versión <i>%s</i>) será instalado\n"
#: ../gtk/rgsummarywindow.cc:298
#, c-format
msgid "<b>%s</b> (version <i>%s</i>) will be re-installed\n"
msgstr "<b>%s</b> (versión <i>%s</i>) será reinstalado\n"
#: ../gtk/rgsummarywindow.cc:318
msgid "_Hide Details"
msgstr "_Ocultar detalles"
#: ../gtk/rgsummarywindow.cc:322 ../gtk/glade/window_summary.glade.h:11
msgid "_Show Details"
msgstr "Mo_strar detalles"
#: ../gtk/rgsummarywindow.cc:335
msgid "Summary"
msgstr "Resumen"
#: ../gtk/rgsummarywindow.cc:392
#, c-format
msgid "%d package is locked\n"
msgid_plural "%d packages are locked\n"
msgstr[0] "Hay %d paquete bloqueado.\n"
msgstr[1] "Hay %d paquetes bloqueados.\n"
#: ../gtk/rgsummarywindow.cc:399
#, c-format
msgid "%d package will be held back and not upgraded\n"
msgid_plural "%d packages will be held back and not upgraded\n"
msgstr[0] "%d paquete será conservado y no actualizado\n"
msgstr[1] "%d paquetes serán conservados y no actualizados\n"
#: ../gtk/rgsummarywindow.cc:406
#, c-format
msgid "%d new package will be installed\n"
msgid_plural "%d new packages will be installed\n"
msgstr[0] "%d paquete nuevo será instalado\n"
msgstr[1] "%d paquetes nuevos serán instalados\n"
#: ../gtk/rgsummarywindow.cc:413
#, c-format
msgid "%d new package will be re-installed\n"
msgid_plural "%d new packages will be re-installed\n"
msgstr[0] "%d paquete nuevo será reinstalado\n"
msgstr[1] "%d paquetes nuevos serán reinstalados\n"
#: ../gtk/rgsummarywindow.cc:420
#, c-format
msgid "%d package will be upgraded\n"
msgid_plural "%d packages will be upgraded\n"
msgstr[0] "%d paquete será actualizado\n"
msgstr[1] "%d paquetes serán actualizados\n"
#: ../gtk/rgsummarywindow.cc:427
#, c-format
msgid "%d package will be removed\n"
msgid_plural "%d packages will be removed\n"
msgstr[0] "%d paquete será eliminado\n"
msgstr[1] "%d paquetes serán eliminados\n"
#: ../gtk/rgsummarywindow.cc:434
#, c-format
msgid "%d package will be <b>downgraded</b>\n"
msgid_plural "%d packages will be <b>downgraded</b>\n"
msgstr[0] "%d paquete será <b>desactualizado</b>\n"
msgstr[1] "%d paquetes serán <b>desactualizados</b>\n"
#: ../gtk/rgsummarywindow.cc:442
#, c-format
msgid "<b>Warning:</b> %d essential package will be removed\n"
msgid_plural "<b>Warning:</b> %d essential packages will be removed\n"
msgstr[0] "<b>Advertencia:</b> %d paquete esencial será eliminado\n"
msgstr[1] "<b>Advertencia:</b> %d paquetes esenciales serán eliminados\n"
#: ../gtk/rgsummarywindow.cc:454
#, c-format
msgid "%s of extra space will be used"
msgstr "Se usará %s de espacio extra"
#: ../gtk/rgsummarywindow.cc:457
#, c-format
msgid "%s of extra space will be freed"
msgstr "Se liberarán %s de espacio extra"
#: ../gtk/rgsummarywindow.cc:462
#, c-format
msgid ""
"\n"
"%s have to be downloaded"
msgstr ""
"\n"
"Se necesitan descargar %s"
#: ../gtk/rgsummarywindow.cc:487
msgid ""
"Essential packages will be removed.\n"
"This may render your system unusable!\n"
msgstr ""
"Se van a eliminar paquetes esenciales.\n"
"¡Esto puede hacer su sistema inutilizable!\n"
#: ../gtk/rguserdialog.cc:75
msgid "An error occurred"
msgstr "Se ha producido un error"
#: ../gtk/rguserdialog.cc:76
msgid "The following details are provided:"
msgstr "Se proporcionaron los siguientes detalles:"
#: ../gtk/rgvendorswindow.cc:39
msgid "Setup Vendors"
msgstr "Configuración de fabricantes"
#: ../gtk/rgvendorswindow.cc:62 ../gtk/rgvendorswindow.cc:107
msgid "FingerPrint"
msgstr "Huella dactilar"
#: ../gtk/rgvendorswindow.cc:128
msgid "OK"
msgstr "Aceptar"
#: ../gtk/rgvendorswindow.cc:132
msgid "Add"
msgstr "Añadir"
#: ../gtk/rgvendorswindow.cc:136
msgid "Remove"
msgstr "Eliminar"
#: ../gtk/rgvendorswindow.cc:140
msgid "Cancel"
msgstr "Cancelar"
#. TRANSLATORS: this is a abbreviation for "not applicable" (on forms)
#. happens when e.g. a package has no installed version (or no
#. downloadable version)
#: ../gtk/rggladewindow.cc:110 ../gtk/rggladewindow.cc:128
#: ../gtk/rggladewindow.cc:191
msgid "N/A"
msgstr "N/D"
#: ../gtk/rgfindwindow.cc:130
msgid "Find"
msgstr "Buscar"
#. TRANSLATORS: Title of the task window - %s is the task (e.g. "desktop" or "mail server")
#: ../gtk/rgtaskswin.cc:141
#, c-format
msgid "Description %s"
msgstr "Descripción de %s"
#: ../gtk/glade/window_main.glade.h:1
#: ../gtk/glade/window_preferences.glade.h:2
#: ../gtk/glade/window_summary.glade.h:2 ../gtk/glade/window_filters.glade.h:2
#: ../gtk/glade/window_details.glade.h:1
msgid " "
msgstr " "
#: ../gtk/glade/window_main.glade.h:2 ../gtk/glade/window_details.glade.h:2
msgid "<b>Installed Version</b>"
msgstr "<b>Versión instalada</b>"
#: ../gtk/glade/window_main.glade.h:3 ../gtk/glade/window_details.glade.h:3
msgid "<b>Latest Available Version</b>"
msgstr "<b>Última versión disponible</b>"
#: ../gtk/glade/window_main.glade.h:4 ../gtk/glade/window_details.glade.h:4
msgid "<b>Maintainer:</b>"
msgstr "<b>Mantenedor:</b>"
#: ../gtk/glade/window_main.glade.h:5 ../gtk/glade/window_details.glade.h:5
msgid ""
"<b>Note:</b> To install a version that is different from the default one, "
"choose <b>Package -> Force Version...</b> from the menu."
msgstr ""
"<b>Nota:</b> Para instalar una versión que es diferente de la "
"predeterminada, elija <b>Paquete ⇨ Forzar versión…</b> del menú."
#: ../gtk/glade/window_main.glade.h:6 ../gtk/glade/window_details.glade.h:6
msgid "<b>Package:</b>"
msgstr "<b>Paquete:</b>"
#: ../gtk/glade/window_main.glade.h:7 ../gtk/glade/window_details.glade.h:7
msgid "<b>Priority:</b>"
msgstr "<b>Prioridad:</b>"
#: ../gtk/glade/window_main.glade.h:8 ../gtk/glade/window_details.glade.h:8
msgid "<b>Section:</b>"
msgstr "<b>Sección:</b>"
#: ../gtk/glade/window_main.glade.h:9 ../gtk/glade/window_details.glade.h:9
msgid "<b>Status:</b>"
msgstr "<b>Estado:</b>"
#: ../gtk/glade/window_main.glade.h:10 ../gtk/glade/window_details.glade.h:10
msgid "<b>Tags:</b>"
msgstr "<b>Etiquetas:</b>"
#: ../gtk/glade/window_main.glade.h:11
msgid "A_pply Marked Changes"
msgstr "_Aplicar cambios marcados"
#: ../gtk/glade/window_main.glade.h:12
msgid "Add downloaded packages"
msgstr "Añadir paquetes descargados"
#: ../gtk/glade/window_main.glade.h:13
msgid ""
"Add packages downloaded with the \"Generate package download script\" "
"feature to the system"
msgstr ""
"Añada paquetes descargados con la funcionalidad \"Generar un script de "
"descarga de paquetes\" al sistema"
#: ../gtk/glade/window_main.glade.h:14
msgid "Apply"
msgstr "Aplicar"
#: ../gtk/glade/window_main.glade.h:15
msgid "Automatically installed"
msgstr "Instalado automáticamente"
#: ../gtk/glade/window_main.glade.h:16 ../gtk/glade/window_details.glade.h:11
msgid "Available versions:"
msgstr "Versiones disponibles:"
#: ../gtk/glade/window_main.glade.h:17 ../gtk/glade/window_details.glade.h:12
msgid "Common"
msgstr "Comunes"
#: ../gtk/glade/window_main.glade.h:18
msgid "Dependants"
msgstr "Dependientes"
#: ../gtk/glade/window_main.glade.h:19 ../gtk/glade/window_find.glade.h:1
#: ../gtk/glade/window_filters.glade.h:18
#: ../gtk/glade/window_details.glade.h:13 ../gtk/rgfiltermanager.h:73
msgid "Dependencies"
msgstr "Dependencias"
#: ../gtk/glade/window_main.glade.h:20 ../gtk/glade/window_details.glade.h:14
msgid "Dependencies of the Latest Version"
msgstr "Dependencias de la última versión"
#: ../gtk/glade/window_main.glade.h:22 ../gtk/glade/window_details.glade.h:17
msgid "Download:"
msgstr "Descargar:"
#: ../gtk/glade/window_main.glade.h:23
msgid ""
"Generate a shell script so that you can download the selected packages on a "
"different computer"
msgstr ""
"Se genera un script de consola de modo que pueda descargar los paquetes "
"seleccionados en máquinas diferentes"
#: ../gtk/glade/window_main.glade.h:24
msgid "Generate package download script"
msgstr "Generar un script de descarga de paquetes"
#: ../gtk/glade/window_main.glade.h:25
msgid "Icon _Legend"
msgstr "_Leyenda de iconos"
#: ../gtk/glade/window_main.glade.h:26 ../gtk/glade/window_details.glade.h:18
msgid "Installed Files"
msgstr "Archivos instalados"
#: ../gtk/glade/window_main.glade.h:27
msgid "Mark All Upgrades"
msgstr "Marcar todas las actualizaciones"
#: ../gtk/glade/window_main.glade.h:28
msgid "Mark Packages by _Task..."
msgstr "Marcar paquetes por _tarea…"
#: ../gtk/glade/window_main.glade.h:29
msgid "Mark for Co_mplete Removal"
msgstr "Marcar para eliminación _completa"
#: ../gtk/glade/window_main.glade.h:30
msgid "Mark for R_einstallation"
msgstr "Marcar para _reinstalación"
#: ../gtk/glade/window_main.glade.h:31
msgid "Mark for _Installation"
msgstr "Marcar para _instalación"
#: ../gtk/glade/window_main.glade.h:32
msgid "Mark for _Removal"
msgstr "Marcar para _eliminación"
#: ../gtk/glade/window_main.glade.h:33
msgid "Mark for _Upgrade"
msgstr "Marcar para _actualización"
#: ../gtk/glade/window_main.glade.h:38 ../gtk/glade/window_find.glade.h:6
#: ../gtk/glade/window_filters.glade.h:58
#: ../gtk/glade/window_details.glade.h:21
msgid "Provided Packages"
msgstr "Paquetes proporcionados"
#: ../gtk/glade/window_main.glade.h:39
msgid "Reload"
msgstr "Recargar"
#: ../gtk/glade/window_main.glade.h:40
msgid "S_earch Results"
msgstr "_Resultados de la búsqueda"
#: ../gtk/glade/window_main.glade.h:41
msgid "S_tatus"
msgstr "_Estado"
#: ../gtk/glade/window_main.glade.h:42
msgid "Save Markings _As..."
msgstr "Guardar selecciones _como…"
#: ../gtk/glade/window_main.glade.h:43
msgid "Search"
msgstr "Buscar"
#: ../gtk/glade/window_main.glade.h:44 ../gtk/glade/window_details.glade.h:22
msgid "Size:"
msgstr "Tamaño:"
#: ../gtk/glade/window_main.glade.h:45
msgid "Synaptic"
msgstr "Synaptic"
#: ../gtk/glade/window_main.glade.h:46
msgid "Text Be_side Icons"
msgstr "Texto _junto a los iconos"
#: ../gtk/glade/window_main.glade.h:47
msgid "Text _Below Icons"
msgstr "Texto _bajo los iconos"
#: ../gtk/glade/window_main.glade.h:48
msgid "U_nmark"
msgstr "_Desmarcar"
#: ../gtk/glade/window_main.glade.h:49
msgid "U_nmark All"
msgstr "Desmarcar _todo"
#: ../gtk/glade/window_main.glade.h:50 ../gtk/glade/window_details.glade.h:23
msgid "Version:"
msgstr "Versión:"
#: ../gtk/glade/window_main.glade.h:51 ../gtk/glade/window_details.glade.h:24
msgid "Versions"
msgstr "Versiones"
#: ../gtk/glade/window_main.glade.h:52
msgid "_About"
msgstr "A_cerca de"
#: ../gtk/glade/window_main.glade.h:53
msgid "_Add CD-ROM..."
msgstr "_Añadir CD-ROM…"
#: ../gtk/glade/window_main.glade.h:54
msgid "_Browse Documentation"
msgstr "_Ver documentación"
#: ../gtk/glade/window_main.glade.h:55
msgid "_Configure..."
msgstr "_Configurar…"
#: ../gtk/glade/window_main.glade.h:56
msgid "_Contents"
msgstr "_Índice"
#: ../gtk/glade/window_main.glade.h:57
msgid "_Custom Filters"
msgstr "_Filtros"
#: ../gtk/glade/window_main.glade.h:58
msgid "_Download Changelog"
msgstr "_Descargar informe de cambios"
#: ../gtk/glade/window_main.glade.h:59
msgid "_Edit"
msgstr "_Editar"
# Excepción de traducción para complir la directiva del TLDP
#: ../gtk/glade/window_main.glade.h:60
msgid "_File"
msgstr "_Archivo"
#: ../gtk/glade/window_main.glade.h:61
msgid "_Filters"
msgstr "_Filtros"
#: ../gtk/glade/window_main.glade.h:62
msgid "_Fix Broken Packages"
msgstr "R_eparar paquetes rotos"
#: ../gtk/glade/window_main.glade.h:63
msgid "_Force Version..."
msgstr "_Forzar versión…"
#: ../gtk/glade/window_main.glade.h:64
msgid "_Help"
msgstr "A_yuda"
#: ../gtk/glade/window_main.glade.h:65
msgid "_Hide"
msgstr "_Ocultar"
#: ../gtk/glade/window_main.glade.h:66
msgid "_History"
msgstr "_Histórico"
#: ../gtk/glade/window_main.glade.h:67
msgid "_Icons Only"
msgstr "Sólo _iconos"
#: ../gtk/glade/window_main.glade.h:68
msgid "_Lock Version"
msgstr "_Bloquear versión"
#: ../gtk/glade/window_main.glade.h:69
msgid "_Mark All Upgrades..."
msgstr "_Marcar todas las actualizaciones…"
#: ../gtk/glade/window_main.glade.h:70
msgid "_Package"
msgstr "_Paquete"
#: ../gtk/glade/window_main.glade.h:71
msgid "_Properties"
msgstr "_Propiedades"
#: ../gtk/glade/window_main.glade.h:72
msgid "_Quick Introduction"
msgstr "Introducción _rápida"
#: ../gtk/glade/window_main.glade.h:73
msgid "_Quit"
msgstr "_Salir"
#: ../gtk/glade/window_main.glade.h:74
msgid "_Read Markings..."
msgstr "_Leer selecciones…"
#: ../gtk/glade/window_main.glade.h:75
msgid "_Redo"
msgstr "_Rehacer"
#: ../gtk/glade/window_main.glade.h:76
msgid "_Reload Package Information"
msgstr "_Recargar información de paquetes"
#: ../gtk/glade/window_main.glade.h:77
msgid "_Repositories"
msgstr "_Repositorios"
#: ../gtk/glade/window_main.glade.h:78
msgid "_Save Markings"
msgstr "_Guardar selecciones"
#: ../gtk/glade/window_main.glade.h:79
msgid "_Search..."
msgstr "_Buscar…"
#: ../gtk/glade/window_main.glade.h:80
msgid "_Sections"
msgstr "_Secciones"
#: ../gtk/glade/window_main.glade.h:81
msgid "_Set Internal Option..."
msgstr "Establecer opción _interna…"
#: ../gtk/glade/window_main.glade.h:82
msgid "_Settings"
msgstr "_Configuración"
#: ../gtk/glade/window_main.glade.h:83
msgid "_Text Only"
msgstr "Sólo _texto"
#: ../gtk/glade/window_main.glade.h:84
msgid "_Toolbar"
msgstr "Barra de _herramientas"
#: ../gtk/glade/window_main.glade.h:85
msgid "_Undo"
msgstr "_Deshacer"
#: ../gtk/glade/window_about.glade.h:1
msgid ""
"<span size=\"small\">Copyright (c) 2001-2004 Connectiva S/A \n"
"Copyright (c) 2002-2004 Michael Vogt</span>"
msgstr ""
"<span size=\"small\">Copyright © 2001-2004 Connectiva S/A \n"
"Copyright © 2002,2004 Michael Vogt</span>"
#: ../gtk/glade/window_about.glade.h:3
msgid "<span size=\"xx-large\" weight=\"bold\">Synaptic version</span>"
msgstr "<span size=\"xx-large\" weight=\"bold\">Versión de Synaptic</span>"
#: ../gtk/glade/window_about.glade.h:6
msgid "Debtag support is enabled."
msgstr "El soporte para debtags está activado."
#: ../gtk/glade/window_about.glade.h:7
msgid "Documented by"
msgstr "Documentado por"
#: ../gtk/glade/window_about.glade.h:8
msgid ""
"Man page:\n"
"Wybo Dekker <wybo@servalys.nl>\n"
"Michael Vogt <mvo@debian.org>\n"
"Sebastian Heinlein <sebastian.heinlein@web.de>\n"
"\n"
"Manual:\n"
"Sebastian Heinlein <sebastian.heinlein@web.de>"
msgstr ""
"Página del manual:\n"
"Wybo Dekker <wybo@servalys.nl>\n"
"Michael Vogt <mvo@debian.org>\n"
"Sebastian Heinlein <sebastain.heinlein@web.de>\n"
"\n"
"Manual:\n"
"Sebastian Heinlein <sebastain.heinlein@web.de>"
#: ../gtk/glade/window_about.glade.h:15
msgid ""
"Original author:\n"
"Alfredo K. Kojima <kojima@windowmaker.org>\n"
"\n"
"Maintainers:\n"
"Michael Vogt <mvo@debian.org>\n"
"Gustavo Niemeyer <niemeyer@conectiva.com>\n"
"Sebastian Heinlein <sebastian.heinlein@web.de>\n"
"\n"
"Contributors:\n"
"Enrico Zini <enrico@debian.org>\n"
"Panu Matilainen <pmatilai@welho.com>\n"
"Sviatoslav Sviridov <svd@lintec.minsk.by>"
msgstr ""
"Autor original:\n"
"Alfredo K. Kojima <kojima@windowmaker.org>\n"
"\n"
"Mantenedores:\n"
"Michael Vogt <mvo@debian.org>\n"
"Gustavo Niemeyer <niemeyer@conectiva.com>\n"
"Sebastian Heinlein·<sebastian.heinlein@web.de>\n"
"\n"
"Contribuidores:\n"
"Enrico Zini <enrico@debian.org>\n"
"Panu Matilainen <pmatilai@welho.com>\n"
"Sviatoslav Sviridov <svd@lintec.minsk.by>"
#: ../gtk/glade/window_about.glade.h:27
msgid "Package management software using apt."
msgstr "Software de gestión de paquetes usando apt."
#: ../gtk/glade/window_about.glade.h:28
msgid ""
"This software is licensed under the terms of the GNU General Public License, "
"Version 2"
msgstr ""
"Este software se licencia bajo los términos de la Licencia Pública General "
"de GNU, Versión 2"
#: ../gtk/glade/window_about.glade.h:29
msgid "Translated by"
msgstr "Traducido por"
#: ../gtk/glade/window_about.glade.h:30
msgid ""
"Visit the home page at \n"
"http://www.nongnu.org/synaptic/"
msgstr ""
"Visite la página inicial en \n"
"http//www.nongnu.org/synaptic"
#: ../gtk/glade/window_about.glade.h:32
msgid "Written by"
msgstr "Escrito por"
#: ../gtk/glade/window_about.glade.h:33
msgid "translators-credits"
msgstr "Francisco Javier F. Serrador <serrador@cvs.gnome.org> "
#: ../gtk/glade/window_find.glade.h:2
msgid "Description and Name"
msgstr "Descripción y nombre"
#: ../gtk/glade/window_find.glade.h:3
msgid "Look in:"
msgstr "Buscar en:"
#: ../gtk/glade/window_find.glade.h:7
msgid "Search:"
msgstr "Buscar:"
#: ../gtk/glade/window_find.glade.h:9
msgid "_Search"
msgstr "_Buscar"
#: ../gtk/glade/window_fetch.glade.h:1
msgid "Show for individual files"
msgstr "Mostrar los archivos"
#: ../gtk/glade/window_changes.glade.h:1
msgid ""
"<span weight=\"bold\" size=\"larger\">Mark additional required changes?</"
"span>"
msgstr ""
"<span weight=\"bold\" size=\"larger\">¿Marcar los cambios adicionales "
"requeridos?</span>"
#: ../gtk/glade/window_changes.glade.h:2
msgid ""
"The chosen action also affects other packages. The following changes are "
"required in order to proceed."
msgstr ""
"La acción elegida afecta a otros paquetes. Los cambios siguientes se "
"requieren para proceder."
#: ../gtk/glade/window_changes.glade.h:3
msgid "_Mark"
msgstr "_Marcar"
#: ../gtk/glade/window_preferences.glade.h:1
#: ../gtk/glade/window_summary.glade.h:1 ../gtk/glade/window_filters.glade.h:1
msgid " "
msgstr " "
#: ../gtk/glade/window_preferences.glade.h:3
msgid "<b>Appearance</b>"
msgstr "<b>Apariencia</b>"
#: ../gtk/glade/window_preferences.glade.h:4
msgid "<b>Applying Changes</b>"
msgstr "<b>Aplicación de cambios</b>"
#: ../gtk/glade/window_preferences.glade.h:5
msgid "<b>Colors</b>"
msgstr "<b>Colores</b>"
#: ../gtk/glade/window_preferences.glade.h:6
msgid "<b>Columns</b>"
msgstr "<b>Columnas</b>"
#: ../gtk/glade/window_preferences.glade.h:7
msgid "<b>Fonts</b>"
msgstr "<b>Tipografía</b>"
#: ../gtk/glade/window_preferences.glade.h:8
msgid "<b>History files</b>"
msgstr "<b>Archivos del histórico</b>"
#: ../gtk/glade/window_preferences.glade.h:9
msgid "<b>Marking Changes</b>"
msgstr "<b>Marcado de cambios</b>"
#: ../gtk/glade/window_preferences.glade.h:10
msgid "<b>Package upgrade behavior (default distribution)</b>"
msgstr ""
"<b>Comportamiento de la actualización de los paquetes (distribución "
"predeterminada)</b>"
#: ../gtk/glade/window_preferences.glade.h:11
msgid "<b>Proxy Server</b>"
msgstr "<b>Servidor proxy</b>"
#: ../gtk/glade/window_preferences.glade.h:12
msgid "<b>Temporary Files</b>"
msgstr "<b>Archivos temporales</b>"
#: ../gtk/glade/window_preferences.glade.h:13
msgid ""
"<span size=\"large\" weight=\"bold\">These settings affect the core of your "
"system. Consider any changes carefully.</span>"
msgstr ""
"<span size=\"large\" weight=\"bold\">Estas opciones afectan al corazón del "
"sistema. Considere los cambios cuidadosamente.</span>"
#: ../gtk/glade/window_preferences.glade.h:14
msgid "A_pplication Font"
msgstr "Tipografía de a_plicación"
#: ../gtk/glade/window_preferences.glade.h:15
msgid "Always Ask"
msgstr "Siempre preguntar"
#: ../gtk/glade/window_preferences.glade.h:16
msgid "Always prefer the highest version"
msgstr "Preferir siempre la versión más alta"
#: ../gtk/glade/window_preferences.glade.h:17
msgid "Always prefer the installed version"
msgstr "Preferir siempre la versión instalada"
#: ../gtk/glade/window_preferences.glade.h:18
msgid "Apply changes in a terminal window"
msgstr "Aplicar los cambios en una ventana de terminal"
#: ../gtk/glade/window_preferences.glade.h:19
msgid "Ask to confirm changes that also affect other packages"
msgstr "Preguntar para confirmar los cambios que afectan a otros paquetes"
#: ../gtk/glade/window_preferences.glade.h:20
msgid "Ask to quit after the changes have been applied successfully"
msgstr "Preguntar si se quiere salir después de aplicar los cambios con éxito"
#: ../gtk/glade/window_preferences.glade.h:21
msgid "Authentication"
msgstr "Autenticación"
#: ../gtk/glade/window_preferences.glade.h:22
msgid "Automatically"
msgstr "Automáticamente"
#: ../gtk/glade/window_preferences.glade.h:23
msgid "Broken:"
msgstr "Roto:"
#: ../gtk/glade/window_preferences.glade.h:24
msgid "Clicking on the status icon marks the most likely action"
msgstr "Al pulsar en el icono de estado se marca la acción más apropiada"
#: ../gtk/glade/window_preferences.glade.h:25
msgid "Color"
msgstr "Color"
#: ../gtk/glade/window_preferences.glade.h:26
msgid "Color packages by their status"
msgstr "Colorear paquetes según su estado"
#: ../gtk/glade/window_preferences.glade.h:27
msgid "Colors"
msgstr "Colores"
#: ../gtk/glade/window_preferences.glade.h:28
msgid "Columns and Fonts"
msgstr "Columnas y tipos"
#: ../gtk/glade/window_preferences.glade.h:29
msgid ""
"Comma separated list of hosts and domains that will not be contacted through "
"the proxy (e.g. localhost, 192.168.1.231, .net)"
msgstr ""
"Lista separada por comas de hosts y dominios que no serán contactados a "
"través del proxy (ej localhost, 192.168.1.231, .net)"
#: ../gtk/glade/window_preferences.glade.h:30
msgid "Completely"
msgstr "Completamente"
#: ../gtk/glade/window_preferences.glade.h:31
msgid "Consider recommended packages as dependencies"
msgstr "Considerar los paquetes recomendados como si fuesen dependencias"
#: ../gtk/glade/window_preferences.glade.h:32
msgid "Default Upgrade"
msgstr "Actualización predeterminada"
#: ../gtk/glade/window_preferences.glade.h:33
msgid "Delete _History files older than:"
msgstr "_Borrar archivos del histórico anteriores a:"
#: ../gtk/glade/window_preferences.glade.h:34
msgid "Delete all cache package files now."
msgstr "Borrar todos los paquetes de la caché ahora."
#: ../gtk/glade/window_preferences.glade.h:35
msgid "Direct connection to the internet"
msgstr "Conexión directa a Internet"
#: ../gtk/glade/window_preferences.glade.h:37
msgid "FTP proxy: "
msgstr "Proxy FTP: "
#: ../gtk/glade/window_preferences.glade.h:38
msgid "Files"
msgstr "Archivos"
#: ../gtk/glade/window_preferences.glade.h:39
msgid "General"
msgstr "General"
#: ../gtk/glade/window_preferences.glade.h:40
msgid "HTTP proxy: "
msgstr "Proxy http: "
#: ../gtk/glade/window_preferences.glade.h:41
msgid "IP address or host name of the ftp proxy server"
msgstr "Dirección IP del servidor proxy FTP"
#: ../gtk/glade/window_preferences.glade.h:42
msgid "IP address or host name of the http proxy server"
msgstr "Dirección IP o nombre de host del servidor proxy http"
#: ../gtk/glade/window_preferences.glade.h:43
msgid "Ignore"
msgstr "Ignorar"
#: ../gtk/glade/window_preferences.glade.h:44
msgid "Installed (locked):"
msgstr "Instalado (bloqueado):"
#: ../gtk/glade/window_preferences.glade.h:45
msgid "Installed:"
msgstr "Instalado:"
#: ../gtk/glade/window_preferences.glade.h:46
msgid "Keep Configuration"
msgstr "Conservar configuración"
#: ../gtk/glade/window_preferences.glade.h:47
msgid "Manual proxy configuration"
msgstr "Configuración manual del proxy"
#: ../gtk/glade/window_preferences.glade.h:48
msgid "Marked for complete removal:"
msgstr "Marcado para eliminación completa:"
#: ../gtk/glade/window_preferences.glade.h:49
msgid "Marked for downgrade:"
msgstr "Marcado para desactualizar:"
#: ../gtk/glade/window_preferences.glade.h:50
msgid "Marked for installation:"
msgstr "Marcado para instalar:"
#: ../gtk/glade/window_preferences.glade.h:51
msgid "Marked for reinstallation:"
msgstr "Marcado para reinstalar:"
#: ../gtk/glade/window_preferences.glade.h:52
msgid "Marked for removal:"
msgstr "Marcado para eliminar:"
#: ../gtk/glade/window_preferences.glade.h:53
msgid "Marked for upgrade:"
msgstr "Marcado para actualizar:"
#: ../gtk/glade/window_preferences.glade.h:54
msgid "Move D_own"
msgstr "_Bajar"
#: ../gtk/glade/window_preferences.glade.h:55
msgid "Move _Up"
msgstr "_Subir"
#: ../gtk/glade/window_preferences.glade.h:56
msgid "Network"
msgstr "Red"
#: ../gtk/glade/window_preferences.glade.h:57
msgid "New in repository:"
msgstr "Nuevo en el repositorio:"
#: ../gtk/glade/window_preferences.glade.h:58
msgid "No proxy for: "
msgstr "Sin proxy para: "
#: ../gtk/glade/window_preferences.glade.h:59
msgid "Not installed (locked):"
msgstr "No instalado (bloqueado):"
#: ../gtk/glade/window_preferences.glade.h:60
msgid "Not installed:"
msgstr "No instalado:"
#: ../gtk/glade/window_preferences.glade.h:61
msgid "Number of undo operations:"
msgstr "Número de operaciones de deshacer:"
#: ../gtk/glade/window_preferences.glade.h:62
msgid "Port number of the ftp proxy server"
msgstr "Número de puerto del servidor proxy FTP"
#: ../gtk/glade/window_preferences.glade.h:63
msgid "Port number of the http proxy server"
msgstr "Número de puerto del servidor proxy http"
#: ../gtk/glade/window_preferences.glade.h:64
msgid "Port: "
msgstr "Puerto:"
#: ../gtk/glade/window_preferences.glade.h:65
msgid "Prefer versions from: "
msgstr "Preferir versiones de:"
#: ../gtk/glade/window_preferences.glade.h:67
msgid "Reloading outdated package information:"
msgstr "Al recargar la información de paquetes desactualizada:"
#: ../gtk/glade/window_preferences.glade.h:68
msgid "Removal of packages: "
msgstr "Eliminación de paquetes: "
#: ../gtk/glade/window_preferences.glade.h:69
msgid "Show package properties in the main window"
msgstr "Mostrar las propiedades del paquete en la ventana principal"
#: ../gtk/glade/window_preferences.glade.h:70
msgid "Smart Upgrade"
msgstr "Actualización inteligente"
#: ../gtk/glade/window_preferences.glade.h:71
msgid "System upgrade:"
msgstr "Al actualizar el sistema:"
#: ../gtk/glade/window_preferences.glade.h:72
msgid "Upgradable:"
msgstr "Actualizable:"
#: ../gtk/glade/window_preferences.glade.h:73
msgid "Use custom application font"
msgstr "Usar tipografía personalizada"
#: ../gtk/glade/window_preferences.glade.h:74
msgid "Use custom terminal font"
msgstr "Usar una tipografía personalizada para el terminal"
#: ../gtk/glade/window_preferences.glade.h:75
msgid "_Delete Cached Package Files"
msgstr "_Borrar los paquetes de la caché"
#: ../gtk/glade/window_preferences.glade.h:76
msgid "_Delete downloaded packages after installation"
msgstr "_Borrar los paquetes después de la instalación"
#: ../gtk/glade/window_preferences.glade.h:77
msgid "_Keep history"
msgstr "_Conservar histórico completo"
#: ../gtk/glade/window_preferences.glade.h:78
msgid "_Leave all downloaded packages in the cache"
msgstr "_Dejar todos los paquetes descargados en la caché"
#: ../gtk/glade/window_preferences.glade.h:79
msgid "_Only delete packages which are no longer available"
msgstr "_Borrar sólo los paquetes que ya no están disponibles"
#: ../gtk/glade/window_preferences.glade.h:80
msgid "_Terminal Font"
msgstr "Tipografía de _terminal"
#: ../gtk/glade/window_preferences.glade.h:81
msgid "days"
msgstr "días"
#: ../gtk/glade/window_disc_name.glade.h:1
#: ../gtk/glade/dialog_disc_label.glade.h:1
#: ../gtk/glade/dialog_new_repositroy.glade.h:1
msgid "*"
msgstr "*"
#: ../gtk/glade/window_disc_name.glade.h:2
msgid ""
"<span weight=\"bold\" size=\"larger\">Enter the label of the CD-ROM</span>"
msgstr ""
"<span weight=\"bold\" size=\"large\">Introduzca la etiqueta del CD-ROM</span>"
#: ../gtk/glade/window_disc_name.glade.h:3
msgid "Disc label:"
msgstr "Etiqueta del disco:"
#: ../gtk/glade/window_disc_name.glade.h:4
msgid ""
"The label will be used to identify the CD-ROM if you want to install "
"packages from it later."
msgstr ""
"La etiqueta será usada para identificar el CD-ROM si quiere instalar "
"paquetes de él más tarde."
#: ../gtk/glade/window_setopt.glade.h:1
msgid "<span size=\"large\" weight=\"bold\">Set an internal option</span>"
msgstr ""
"<span size=\"large\" weight=\"bold\">Establecer una opción interna</span>"
#: ../gtk/glade/window_setopt.glade.h:2
msgid "Only experts should use this."
msgstr "Sólo los expertos deberían usar esto."
#: ../gtk/glade/window_setopt.glade.h:3
msgid "Value:"
msgstr "Valor:"
#: ../gtk/glade/window_setopt.glade.h:4
msgid "Variable:"
msgstr "Variable:"
#: ../gtk/glade/window_summary.glade.h:3
msgid "<b>Summary</b>"
msgstr "<b>Resumen</b>"
#: ../gtk/glade/window_summary.glade.h:4
msgid ""
"<span weight=\"bold\" size=\"large\">Apply the following changes?</span>"
msgstr ""
"<span weight=\"bold\" size=\"large\">¿Quiere aplicar los cambios siguientes?"
"</span>"
#: ../gtk/glade/window_summary.glade.h:6
msgid "Return to the main screen"
msgstr "Volver a la pantalla principal"
#: ../gtk/glade/window_summary.glade.h:7
msgid "The package files will be downloaded, but not installed"
msgstr "Los paquetes serán descargados, pero no serán instalados"
#: ../gtk/glade/window_summary.glade.h:8
msgid ""
"This is your last opportunity to look through the list of marked changes "
"before they are applied."
msgstr ""
"Esta es su última oportunidad para mirar a través de la lista de cambios "
"marcados antes de que se apliquen."
#: ../gtk/glade/window_summary.glade.h:9
msgid ""
"Vendors sign their packages to verify the origin and integrity of the "
"packages. Disabling the verification is a security risk."
msgstr ""
"Los fabricantes firman sus paquetes para verificar el origen y la integridad "
"de los paquetes. Desactivar la verificación es un riesgo de seguridad."
#: ../gtk/glade/window_summary.glade.h:10
msgid "_Download package files only"
msgstr "Sólo _descargar los paquetes"
#: ../gtk/glade/window_summary.glade.h:12
msgid "_Verify package signatures"
msgstr "_Verificar las firmas de los paquetes"
#. TRANSLATORS: this is a label embedded in the "Status" notebook tab, so it describes the "Current [status]"
#: ../gtk/glade/window_filters.glade.h:4
msgid "<b>Current</b>"
msgstr "<b>Actual</b>"
#. TRANSLATORS: this is a label embedded in the "Status" notebook tab, so it describes the "Marked [status]"
#: ../gtk/glade/window_filters.glade.h:6
msgid "<b>Marked</b>"
msgstr "<b>Marcado</b>"
#. TRANSLATORS: this is a label embedded in the "Status" notebook tab, so it describes the "Other [status]"
#: ../gtk/glade/window_filters.glade.h:8
msgid "<b>Other</b>"
msgstr "<b>Otros</b>"
#: ../gtk/glade/window_filters.glade.h:9
msgid "AND"
msgstr "AND"
#: ../gtk/glade/window_filters.glade.h:10
msgid "Automatic install"
msgstr "Instalación automática"
#: ../gtk/glade/window_filters.glade.h:11
msgid "Automatic installed but no longer required by any other package"
msgstr "Instalado automáticamente pero no requerido por ningún paquete"
#: ../gtk/glade/window_filters.glade.h:12
msgid "Automatic removable"
msgstr "Eliminación automática"
#: ../gtk/glade/window_filters.glade.h:13
msgid "Boolean operator between property criterias:"
msgstr "Operador booleano entre criterios de propiedades:"
#: ../gtk/glade/window_filters.glade.h:16
msgid "Conflicting Packages"
msgstr "Paquetes incompatibles"
#: ../gtk/glade/window_filters.glade.h:17
msgid "Currently in broken policy state"
msgstr "Actualmente en estado de política rota"
#: ../gtk/glade/window_filters.glade.h:19
#: ../gtk/glade/window_details.glade.h:15
msgid "Dependent Packages"
msgstr "Paquetes dependientes"
#: ../gtk/glade/window_filters.glade.h:21
msgid "Exclude"
msgstr "Excluir"
#: ../gtk/glade/window_filters.glade.h:22
msgid "Exclude selected sections"
msgstr "Excluir las secciones seleccionadas"
#: ../gtk/glade/window_filters.glade.h:23 ../gtk/rgfiltermanager.h:63
msgid "Excludes"
msgstr "Excluye"
#: ../gtk/glade/window_filters.glade.h:25
msgid "For installation or upgrade"
msgstr "Para instalarse o actualizarse"
#: ../gtk/glade/window_filters.glade.h:26
msgid "For removal"
msgstr "Para eliminación"
#: ../gtk/glade/window_filters.glade.h:27
msgid "Include"
msgstr "Incluir"
#: ../gtk/glade/window_filters.glade.h:28
msgid "Include selected sections only"
msgstr "Incluir sólo las secciones seleccionadas"
#: ../gtk/glade/window_filters.glade.h:29 ../gtk/rgfiltermanager.h:62
msgid "Includes"
msgstr "Incluye"
#: ../gtk/glade/window_filters.glade.h:31
msgid "Installed automatically as part of a dependency"
msgstr "Instalado automáticamente como parte de una dependencia"
#: ../gtk/glade/window_filters.glade.h:32
#, fuzzy
msgid "Installed manually (not as a dependency by something else)"
msgstr "Instalado automáticamente como parte de una dependencia"
#: ../gtk/glade/window_filters.glade.h:33
msgid "Installed packages that are up-to-date"
msgstr "Los paquetes instalados están al día"
#: ../gtk/glade/window_filters.glade.h:34
msgid "Installed packages that are upgradable"
msgstr "Paquetes instalados que son actualizables"
#: ../gtk/glade/window_filters.glade.h:35
msgid "Installed packages that are upgradable to a later upstream version"
msgstr "Paquetes instalados que son actualizables a una versión superior"
#: ../gtk/glade/window_filters.glade.h:36
msgid "Library packages that are no longer needed (deborphan is required)"
msgstr "Paquetes de bibliotecas que no se necesitan más (necesita deborphan)"
#: ../gtk/glade/window_filters.glade.h:38
#, fuzzy
msgid "Manual installed"
msgstr "No instalado"
#: ../gtk/glade/window_filters.glade.h:40
msgid "Not installable"
msgstr "No instalable"
#: ../gtk/glade/window_filters.glade.h:42
msgid "Not installed packages"
msgstr "Paquetes no instalados"
#: ../gtk/glade/window_filters.glade.h:43
msgid "Not marked"
msgstr "No marcado"
#: ../gtk/glade/window_filters.glade.h:44
msgid "OR"
msgstr "OR"
#: ../gtk/glade/window_filters.glade.h:46
msgid "Orphaned"
msgstr "Huérfanos"
#: ../gtk/glade/window_filters.glade.h:48
msgid "Packages that are new in the repository since that last \"Reload\""
msgstr "Paquetes que son nuevos en el repositorio desde el último 'Refresco'"
#: ../gtk/glade/window_filters.glade.h:49
msgid "Packages that are not available in any repository"
msgstr "Paquetes que no están disponibles en ningún repositorio"
#: ../gtk/glade/window_filters.glade.h:50
msgid "Packages that will be installed or upgraded"
msgstr "Paquetes que serán instalados o actualizados"
#: ../gtk/glade/window_filters.glade.h:51
msgid "Packages that will be removed"
msgstr "Paquetes que serán eliminados"
#: ../gtk/glade/window_filters.glade.h:52
msgid "Packages that will never be upgraded"
msgstr "Paquetes que nunca serán actualizados"
#: ../gtk/glade/window_filters.glade.h:53
msgid "Packages that won't be changed"
msgstr "Paquetes que no serán cambiados"
#: ../gtk/glade/window_filters.glade.h:54
msgid "Packages with broken dependencies"
msgstr "Paquetes con dependencias rotas"
#: ../gtk/glade/window_filters.glade.h:56
msgid "Policy broken"
msgstr "Política rota"
#. replaces/obsoletes
#: ../gtk/glade/window_filters.glade.h:59 ../gtk/rgfiltermanager.h:77
msgid "Recommendations"
msgstr "Recomendaciones"
#: ../gtk/glade/window_filters.glade.h:60
msgid "Removed packages that have left configuration files on the system"
msgstr ""
"Paquetes eliminados que han dejado archivos de configuración en el sistema"
#: ../gtk/glade/window_filters.glade.h:61
msgid "Replaced Packages"
msgstr "Paquetes reemplazados"
#: ../gtk/glade/window_filters.glade.h:62
msgid "Residual config"
msgstr "Conf. residual"
#. /recommends
#: ../gtk/glade/window_filters.glade.h:65 ../gtk/rgfiltermanager.h:78
msgid "Suggestions"
msgstr "Sugerencias"
#: ../gtk/glade/window_filters.glade.h:66
msgid "Tags"
msgstr "Etiquetas"
#: ../gtk/glade/window_filters.glade.h:67
msgid "Upgradable"
msgstr "Actualizable"
#: ../gtk/glade/window_filters.glade.h:69
msgid "Version Number"
msgstr "Número de versión"
#: ../gtk/glade/window_filters.glade.h:70
msgid "_Deselect All"
msgstr "_Deseleccionar todo"
#: ../gtk/glade/window_filters.glade.h:71
msgid "_Invert All"
msgstr "_Invertir todo"
#: ../gtk/glade/window_filters.glade.h:72
msgid "_Select All"
msgstr "_Seleccionar todo"
#: ../gtk/glade/window_repositories.glade.h:2
msgid "Distribution:"
msgstr "Distribución:"
#: ../gtk/glade/window_repositories.glade.h:4
msgid "Section(s):"
msgstr "Sección(es):"
#: ../gtk/glade/window_repositories.glade.h:5
msgid "URI:"
msgstr "URI:"
#: ../gtk/glade/window_repositories.glade.h:6
msgid "Vendors..."
msgstr "Fabricantes…"
#: ../gtk/glade/window_repositories.glade.h:7
msgid "deb"
msgstr "deb"
#: ../gtk/glade/window_repositories.glade.h:8
msgid "deb-src"
msgstr "deb-src"
#: ../gtk/glade/window_repositories.glade.h:9
msgid "rpm"
msgstr "rpm"
#: ../gtk/glade/window_repositories.glade.h:10
msgid "rpm-src"
msgstr "rpm-src"
#: ../gtk/glade/window_rgdebinstall_progress.glade.h:1
msgid "<i>Preparing packages...</i>"
msgstr "<i>Preparando paquetes…</i>"
#: ../gtk/glade/window_rgdebinstall_progress.glade.h:2
msgid "Automatically close after the changes have been successfully applied"
msgstr ""
"Cerrar este diálogo automáticamente después de que se apliquen los cambios "
"con éxito"
#: ../gtk/glade/window_rgdebinstall_progress.glade.h:3
msgid "Details"
msgstr "Mostrar detalles"
#: ../gtk/glade/window_rginstall_progress_msgs.glade.h:1
msgid "Extra output was generated during Package Manager operation"
msgstr "Se generó una salida extra durante la operación del gestor de paquetes"
#: ../gtk/glade/window_tasks.glade.h:1
msgid ""
"<span size=\"large\" weight=\"bold\">Which tasks should be performed by your "
"computer?</span>\n"
"\n"
"These are preselected groups of packages to perform each task. If you select "
"a task, the corresponding packages will be marked for installation."
msgstr ""
"<span size=\"large\" weight=\"bold\">¿Qué tareas debe realizar su "
"computadora?</span>\n"
"\n"
"Hay grupos preseleccionados de paquetes para realizar cada tarea. Si "
"selecciona una tarea, los paquetes correspondientes se marcarán para "
"instalar."
#: ../gtk/glade/window_tasks.glade.h:4
msgid "_Description"
msgstr "_Descripción"
#: ../gtk/glade/window_zvtinstallprogress.glade.h:1
msgid "<b>Terminal Output:</b>"
msgstr "<b>Salida del terminal:</b>"
#: ../gtk/glade/window_zvtinstallprogress.glade.h:2
msgid "Close this dialog after the changes have been successfully applied"
msgstr "Cerrar este diálogo después de que se apliquen los cambios con éxito"
#: ../gtk/glade/dialog_welcome.glade.h:1
msgid " - "
msgstr " - "
#: ../gtk/glade/dialog_welcome.glade.h:2
msgid ""
"<b>Note:</b> Changes are not applied instantly. At first you have to mark "
"all changes and then apply them."
msgstr ""
"<b>Nota:</b> Los cambios no se aplican instantáneamente. Primero tiene que "
"marcar todos los cambios y después aplicarlos."
#: ../gtk/glade/dialog_welcome.glade.h:3
msgid "Choose the action from the context menu of the package."
msgstr "Elija la acción del menú contextual del paquete."
#: ../gtk/glade/dialog_welcome.glade.h:4
msgid "Click on the status icon to open a menu that contains all actions."
msgstr ""
"Pulse en el icono de estado para abrir un menú que contiene todas las "
"acciones."
#: ../gtk/glade/dialog_welcome.glade.h:5
msgid "Double click on the package name."
msgstr "Pulse dos veces en el nombre del paquete."
#: ../gtk/glade/dialog_welcome.glade.h:6
msgid "Quick Introduction"
msgstr "Introducción rápida"
#: ../gtk/glade/dialog_welcome.glade.h:7
msgid "Select the package and choose the action from the 'Package' menu."
msgstr "Seleccione el paquete y elija la acción del menú «Paquete»."
#: ../gtk/glade/dialog_welcome.glade.h:8
msgid "Show this dialog at startup"
msgstr "Mostrar este diálogo al inicio"
#: ../gtk/glade/dialog_welcome.glade.h:9
msgid ""
"The software on your system is organized in so called <i>packages</i>. The "
"package manager enables you to install, to upgrade or to remove software "
"packages."
msgstr ""
"El software en su sistema se organiza en lo que se llaman <i>paquetes</i>. "
"El gestor de paquetes le permite instalar, actualizar o eliminar paquetes de "
"software."
#: ../gtk/glade/dialog_welcome.glade.h:10
msgid ""
"You can mark packages for installation, upgrade or removal in several ways:"
msgstr ""
"Puede marcar paquetes para instalación, actualización o eliminación de "
"diferentes formas:"
#: ../gtk/glade/dialog_welcome.glade.h:11
msgid ""
"You should reload the package information regularly. Otherwise you could "
"miss important security upgrades."
msgstr ""
"Debe recargar la información de los paquetes regularmente. De otro modo "
"podría perderse actualizaciones de seguridad importantes."
#: ../gtk/glade/dialog_unmet.glade.h:1
msgid ""
"<span weight=\"bold\" size=\"larger\">Could not mark all packages for "
"installation or upgrade</span>\n"
"\n"
"The following packages have unresolvable dependencies. Make sure that all "
"required repositories are added and enabled in the preferences."
msgstr ""
"<span weight=\"bold\" size=\"larger\">No se pudieron marcar todos los "
"paquetes para instalación o actualización</span>\n"
"\n"
"Los siguientes paquetes tienen dependencias no resolubles. Asegúrese de que "
"todos los repositorios requeridos están añadidos y activados en las "
"preferencias."
#: ../gtk/glade/dialog_changelog.glade.h:1
msgid "Complete changelog of the latest version:"
msgstr "Informe de cambios completo de la última versión:"
#: ../gtk/glade/dialog_update_failed.glade.h:1
msgid ""
"<big><b>Could not download all repository indexes</b></big>\n"
"\n"
"The repository may no longer be available or could not be contacted because "
"of network problems. If available an older version of the failed index will "
"be used. Otherwise the repository will be ignored. Check your network "
"connection and ensure the repository address in the preferences is correct."
msgstr ""
"<big><b>No se pudieron descargar todos los índices de los repositorios</b></"
"big>\n"
"\n"
"El repositorio quizá no esté disponible o no se pudo contactar con él por "
"problemas en la red. Si hay disponible una versión más antigua del índice "
"que falló, se usará esa versión. En otro caso el repositorio será ignorado. "
"Compruebe su conexión de red y que la dirección del repositorio esté escrita "
"correctamente en las preferencias."
#: ../gtk/glade/window_iconlegend.glade.h:1
msgid ""
"<b>The following icons are used to indicate the current status of a package:"
"</b>"
msgstr ""
"<b>Los siguientes iconos se usan para indicar el estado actual de un paquete:"
"</b>"
#: ../gtk/glade/window_iconlegend.glade.h:2 ../gtk/rgiconlegend.cc:42
msgid "Icon Legend"
msgstr "Leyenda de iconos"
#: ../gtk/glade/dialog_download_error.glade.h:1
msgid ""
"<big><b>Could not download all necessary package files</b></big>\n"
"\n"
"The version of the package that you want to install might be no longer "
"available in the repository, or there may be problems with the source of the "
"package. Reload the package list and check the source of the package (e.g. "
"CD or network connection)."
msgstr ""
"<big><b>No se pudieron descargar todos los paquetes necesarios</b></big>\n"
"\n"
"La versión del paquete que quiere instalar quizá no esté disponible ya en el "
"repositorio, o quizá haya problemas con la fuente del paquete. Refresque la "
"lista de paquetes y compruebe la fuente del paquete (ej: CD o conexión de "
"red)."
#: ../gtk/glade/dialog_update_outdated.glade.h:1
msgid ""
"<span weight=\"bold\" size=\"larger\">Your package information is out of "
"date</span>\n"
"\n"
"Your package information is older than 48 hours. There could be important "
"security updates available. It is recommended to reload the package "
"information regularly."
msgstr ""
"<span weight=\"bold\" size=\"larger\">La información de sus paquetes está "
"caducada</span>\n"
"\n"
"La información acerca de sus paquetes es más antigua que 48 horas. Podría "
"haber actualizaciones de seguridad importantes. Se le recomienda recargarla "
"información de los paquetes regularmente."
#: ../gtk/glade/dialog_update_outdated.glade.h:4
msgid "Remember the answer"
msgstr "Recordar la respuesta"
#: ../gtk/glade/dialog_update_outdated.glade.h:5
msgid "_Reload"
msgstr "_Recargar"
#: ../gtk/glade/window_logview.glade.h:1
msgid "History"
msgstr "Histórico"
#: ../gtk/glade/window_logview.glade.h:2
msgid "History of installed, upgraded and removed software packages."
msgstr ""
"Histórico de paquetes de software instalados, actualizados y eliminados."
#: ../gtk/glade/dialog_quit.glade.h:1
msgid ""
"<b><big>Quit and discard marked changes?</big></b>\n"
"\n"
"There are still marked changes that have not yet been applied. They will get "
"lost if you choose to quit 'Synaptic'."
msgstr ""
"<b><big>¿Salir y descartar los cambios marcados?</big></b>\n"
"\n"
"Todavía hay cambios seleccionados que no han sido aplicados. Éstos cambios "
"se perderán si sale de «Synaptic»."
#: ../gtk/glade/dialog_conffile.glade.h:1
msgid "Difference between the files"
msgstr "Diferencia entre los archivos"
#: ../gtk/glade/dialog_conffile.glade.h:2
msgid "_Keep"
msgstr "_Conservar"
#: ../gtk/glade/dialog_conffile.glade.h:3
msgid "_Replace"
msgstr "_Reemplazar"
#: ../gtk/glade/dialog_change_version.glade.h:1
msgid "Force version:"
msgstr "Forzar versión:"
#: ../gtk/glade/dialog_change_version.glade.h:2
msgid "_Force Version"
msgstr "_Forzar versión"
#: ../gtk/glade/dialog_upgrade.glade.h:1
msgid ""
"<b><big>Mark upgrades in a smart way?</big></b>\n"
"\n"
"The default upgrade method skips upgrades that would introduce conflicts or "
"require installation of additional packages.\n"
"\n"
"The smart upgrade (dist-upgrade) attempts to resolve conflicts and to fulfil "
"all dependencies of upgrades in a smart way.\n"
"\n"
"<b>Note:</b> The upgrades will be marked only. You still have to apply them "
"afterwards."
msgstr ""
"<b><big>¿Quiere marcar las actualizaciones de una forma inteligente?</big></"
"b>\n"
"\n"
"El método de actualización predeterminado se salta las actualizaciones que "
"podrían introducir conflictos o que requieran instalar paquetes "
"adicionales.\n"
"\n"
"La actualización inteligente (dist-upgrade) intenta resolver los conflictos "
"y completar todas las dependencias de las actualizaciones de una forma "
"inteligente.\n"
"\n"
"<b>Nota:</b> Las actualizaciones sólo se marcarán. Tiene que aplicarlas "
"después."
#: ../gtk/glade/dialog_upgrade.glade.h:8
msgid "Remember my answer for future upgrades"
msgstr "Recordar la respuesta para actualizaciones futuras"
#: ../gtk/glade/dialog_upgrade.glade.h:9
msgid "This behavior can be changed in the preferences later."
msgstr "Este comportamiento puede cambiarse en las preferencias más tarde."
#: ../gtk/glade/dialog_upgrade.glade.h:10
msgid "_Default Upgrade"
msgstr "_Actualización predeterminada"
#: ../gtk/glade/dialog_upgrade.glade.h:11
msgid "_Smart Upgrade"
msgstr "Actualización _inteligente"
#: ../data/synaptic.desktop.in.h:1 ../data/synaptic-kde.desktop.in.h:1
msgid "Install, remove and upgrade software packages"
msgstr "Instalar, eliminar y actualizar los paquetes de software"
#: ../data/synaptic.desktop.in.h:2 ../data/synaptic-kde.desktop.in.h:2
msgid "Package Manager"
msgstr "Gestor de paquetes"
#: ../data/synaptic.desktop.in.h:3 ../data/synaptic-kde.desktop.in.h:3
msgid "Synaptic Package Manager"
msgstr "Gestor de Paquetes Synaptic"
#: ../gtk/rgfiltermanager.h:69
msgid "Package name"
msgstr "Nombre del paquete"
#: ../gtk/rgfiltermanager.h:72
msgid "Version number"
msgstr "Número de versión"
#. depends, predepends etc
#: ../gtk/rgfiltermanager.h:74
msgid "Provided packages"
msgstr "Paquetes proporcionados"
#. provides and name
#: ../gtk/rgfiltermanager.h:75
msgid "Conflicting packages"
msgstr "Paquetes incompatibles"
#. conflicts
#: ../gtk/rgfiltermanager.h:76
msgid "Replaced packages"
msgstr "Paquetes reemplazados"
#. suggests
#: ../gtk/rgfiltermanager.h:79
msgid "Dependent packages"
msgstr "Paquetes dependientes"
#: ../gtk/rgpkgcdrom.cc:68
msgid "Please insert a disc in the drive."
msgstr "Introduzca un disco en la unidad."
#: ../gtk/rgiconlegend.cc:77
msgid "Package is supported"
msgstr "El paquete está soportado"
#: ../gtk/rgterminstallprogress.cc:134
msgid "<i>Running...</i>"
msgstr "<i>Ejecutando...</i>"
#: ../gtk/rgterminstallprogress.cc:164
msgid "<i>Finished</i>"
msgstr "<i>Terminado</i>"
#: ../gtk/rgterminstallprogress.cc:175
msgid "<i>Can't close while running</i>"
msgstr "<i>No se puede cerrar mientras se está ejecutando</i>"
#. vim:sts=3:sw=3
#: ../gtk/glade/dialog_authentication.glade.h:1
msgid "HTTP authentication"
msgstr "Autenticación HTTP"
#: ../gtk/glade/dialog_authentication.glade.h:2
msgid "Password"
msgstr "Contraseña"
#: ../gtk/glade/dialog_authentication.glade.h:3
msgid "Username"
msgstr "Nombre de usuario"
#: ../gtk/glade/dialog_disc_label.glade.h:2
msgid ""
"<span weight=\"bold\" size=\"larger\">Enter a label for this CD-Rom</span>\n"
"\n"
"The label will be used if you want to install packages from this CD-Rom. It "
"is recommended to also write the label on the CD-Rom to easily find it "
"again.\n"
msgstr ""
"<span weight=\"bold\" size=\"larger\">Introduzca una etiqueta para este CD-"
"ROM</span>\n"
"\n"
"La etiqueta del disco se usará si quiere instalar paquetes desde este CD-"
"ROM. También se recomienda escribir la etiqueta en el CD-ROM para "
"encontrarlo fácilmente en otra ocasión.\n"
#: ../gtk/glade/dialog_disc_label.glade.h:6
msgid "Label:"
msgstr "Etiqueta del disco:"
#: ../gtk/glade/dialog_new_repositroy.glade.h:2
msgid ""
"<big><b>Enter the complete APT line of the repository that you want to add</"
"b></big>\n"
"\n"
"The APT line contains the type, location and content of a repository, for "
"example <i>\"deb http://ftp.debian.org sarge main\"</i>. You can find a "
"detailed description of the syntax in the documentation."
msgstr ""
"<big><b>Introduzca la línea completa del repositorio APT completa del "
"repositorio que quiere añadir</b></big>\n"
"\n"
"La línea de APT contiene el tipo, localización y contenido de un "
"repositorio, por ejemplo <i>\"deb http://ftp.debian.org sarge main\"</i>. "
"Puede encontrar una descripción detallada de la sintaxis en la documentación."
#: ../gtk/glade/dialog_new_repositroy.glade.h:5
msgid "APT line:"
msgstr "Línea de APT:"
#: ../gtk/glade/dialog_new_repositroy.glade.h:6
msgid "_Add Repository"
msgstr "_Añadir Repositorio"
#~ msgid "gtk-cancel"
#~ msgstr "gtk-cancel"
#~ msgid "gtk-ok"
#~ msgstr "gtk-ok"
#~ msgid "The package files will be cached locally for installation."
#~ msgstr "Los paquetes se almacenarán localmente para instalarlos."
#~ msgid ""
#~ "\n"
#~ "Failed to apply all changes! Scroll in the terminal buffer to see what "
#~ "went wrong."
#~ msgstr ""
#~ "\n"
#~ "Se ha producido un fallo al aplicar todos los cambios. Desplace este "
#~ "búfer para ver lo que fue mal."
#~ msgid "You must run this program as the root user."
#~ msgstr "Debe ejecutar este programa como el usuario root."
#~ msgid "The following problems were found on your system:"
#~ msgstr "Se han encontrado los siguientes problemas en su sistema:"
#~ msgid "S_earch"
#~ msgstr "_Buscar"
#~ msgid "_Custom"
#~ msgstr "_Personalizado"
#~ msgid "Terminal"
#~ msgstr "Terminal"
#~ msgid "could not open recommends file %s"
#~ msgstr "no se pudo abrir el archivo de recomendaciones %s"
#~ msgid "Bad regular expression '%s' in Recommends file."
#~ msgstr "Expresión regular errónea «%s» en el archivo de recomendaciones."
#~ msgid "Preparing for removal %s"
#~ msgstr "Preparándose para quitar %s"
#~ msgid "Removing %s"
#~ msgstr "Quitando %s"
#~ msgid "Removed %s"
#~ msgstr "Se ha quitado %s"
#~ msgid "Removing with config %s"
#~ msgstr "Quitando %s y su configuración"
#~ msgid "Removed with config %s"
#~ msgstr "Se ha quitado %s y su configuración"
#~ msgid "Preparing %s"
#~ msgstr "Preparando %s"
#~ msgid "Unpacking %s"
#~ msgstr "Desempaquetando %s"
#~ msgid "Configuring %s"
#~ msgstr "Configurando %s"
#~ msgid "Installed %s"
#~ msgstr "%s instalado"
#~ msgid "Installing %s"
#~ msgstr "Instalando %s"
#~ msgid ""
#~ "<big><b>Building repository dialog</b></big>\n"
#~ "\n"
#~ "Please wait."
#~ msgstr ""
#~ "<big><b>Construyendo diálogo del repositorio</b></big>\n"
#~ "\n"
#~ "Por favor, espere."
|