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
|
# Spanish messages for gnupg
# Urko Lusa <ulusa@lacueva.ddns.org>, 1998
# I've tried to mantain the terminology used by Armando Ramos
# <armando@clerval.org> is his PGP 2.3.6i translation.
# I also got inspiration from it.po by Marco d'Itri <md@linux.it>
#
# GPG version: 0.9.7
msgid ""
msgstr ""
"POT-Creation-Date: 1999-07-14 11:47+0200\n"
"PO-Revision-Date: 1999-06-06 18:33+0200\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Date: 1998-11-13 10:49:25+0100\n"
"From: Urko Lusa <ulusa@lacueva.dhis.org>\n"
"Updated: 1998-01-12\n"
"By: Luca Olivetti <luca@luca.ddns.org>\n"
"Xgettext-Options: --default-domain=gnupg --directory=.. --add-comments "
"--keyword=_ --keyword=N_ --files-from=./POTFILES.in\n"
"Files: util/secmem.c util/argparse.c cipher/random.c cipher/rand-dummy.c "
"cipher/rand-unix.c cipher/rand-w32.c g10/g10.c g10/pkclist.c g10/keygen.c "
"g10/decrypt.c g10/encode.c g10/import.c g10/keyedit.c g10/keylist.c "
"g10/mainproc.c g10/passphrase.c g10/plaintext.c g10/pref.c g10/seckey-cert.c "
"g10/sig-check.c g10/sign.c g10/trustdb.c g10/verify.c\n"
#: util/secmem.c:79
msgid "Warning: using insecure memory!\n"
msgstr "ATENCI�N: �se est� usando memoria insegura!\n"
#: util/secmem.c:275
msgid "operation is not possible without initialized secure memory\n"
msgstr "operaci�n imposible sin memoria segura inicializada\n"
#: util/secmem.c:276
msgid "(you may have used the wrong program for this task)\n"
msgstr "(es posible que haya usado el programa incorrecto para esta tarea)\n"
#: util/miscutil.c:254 util/miscutil.c:271
msgid "yes"
msgstr "s�"
#: util/miscutil.c:255 util/miscutil.c:273
msgid "yY"
msgstr "sS"
#: g10/keyedit.c:564 util/miscutil.c:272
msgid "quit"
msgstr ""
#: util/miscutil.c:274
msgid "qQ"
msgstr ""
#: util/errors.c:54
msgid "general error"
msgstr "Error general"
#: util/errors.c:55
msgid "unknown packet type"
msgstr "Formato desconocido"
#: util/errors.c:56
msgid "unknown version"
msgstr "Versi�n desconocida"
#: util/errors.c:57
msgid "unknown pubkey algorithm"
msgstr "Algoritmo de clave p�blica desconocido"
#: util/errors.c:58
msgid "unknown digest algorithm"
msgstr "Algoritmo desconocido de resumen de mensaje"
#: util/errors.c:59
msgid "bad public key"
msgstr "Clave p�blica incorrecta"
#: util/errors.c:60
msgid "bad secret key"
msgstr "Clave secreta incorrecta"
#: util/errors.c:61
msgid "bad signature"
msgstr "Firma incorrecta"
#: util/errors.c:62
msgid "checksum error"
msgstr "Error en suma de comprobaci�n"
#: util/errors.c:63
msgid "bad passphrase"
msgstr "Contrase�a incorrecta"
#: util/errors.c:64
msgid "public key not found"
msgstr "Clave p�blica no encontrada"
#: util/errors.c:65
msgid "unknown cipher algorithm"
msgstr "Algoritmo de cifrado desconocido"
#: util/errors.c:66
msgid "can't open the keyring"
msgstr "No se puede abrir el anillo"
#: util/errors.c:67
msgid "invalid packet"
msgstr "Valor no v�lido"
#: util/errors.c:68
msgid "invalid armor"
msgstr "Armadura no v�lida"
#: util/errors.c:69
msgid "no such user id"
msgstr "No existe el identificativo de usuario"
#: util/errors.c:70
msgid "secret key not available"
msgstr "Clave secreta no disponible"
#: util/errors.c:71
msgid "wrong secret key used"
msgstr "Clave secreta incorrecta"
#: util/errors.c:72
msgid "not supported"
msgstr "No soportado"
#: util/errors.c:73
msgid "bad key"
msgstr "Clave incorrecta"
#: util/errors.c:74
msgid "file read error"
msgstr "Error de lectura"
#: util/errors.c:75
msgid "file write error"
msgstr "error de escritura"
#: util/errors.c:76
msgid "unknown compress algorithm"
msgstr "Algoritmo de compresi�n desconocido"
#: util/errors.c:77
msgid "file open error"
msgstr "Error al abrir fichero"
#: util/errors.c:78
msgid "file create error"
msgstr "Error al crear fichero"
#: util/errors.c:79
msgid "invalid passphrase"
msgstr "Contrase�a incorrecta"
#: util/errors.c:80
msgid "unimplemented pubkey algorithm"
msgstr "Algoritmo de clave p�blica no implementado"
#: util/errors.c:81
msgid "unimplemented cipher algorithm"
msgstr "Algoritmo de cifrado no implementado"
#: util/errors.c:82
msgid "unknown signature class"
msgstr "Clase de firma desconocida"
#: util/errors.c:83
msgid "trust database error"
msgstr "Error en la base de datos de confianza"
#: util/errors.c:84
msgid "bad MPI"
msgstr "MPI incorrecto"
#: util/errors.c:85
msgid "resource limit"
msgstr "L�mite de recurso"
#: util/errors.c:86
msgid "invalid keyring"
msgstr "Anillo no v�lido"
#: util/errors.c:87
msgid "bad certificate"
msgstr "Certificado incorrecto"
#: util/errors.c:88
msgid "malformed user id"
msgstr "Identificativo de usuario mal formado"
#: util/errors.c:89
msgid "file close error"
msgstr "Error al cerrar fichero"
#: util/errors.c:90
msgid "file rename error"
msgstr "Error al renombrar fichero"
#: util/errors.c:91
msgid "file delete error"
msgstr "Error al borrar fichero"
#: util/errors.c:92
msgid "unexpected data"
msgstr "Datos inesperados"
#: util/errors.c:93
msgid "timestamp conflict"
msgstr "Conflicto con sello de fecha"
#: util/errors.c:94
msgid "unusable pubkey algorithm"
msgstr "Algoritmo de clave p�blica no utilizable"
#: util/errors.c:95
msgid "file exists"
msgstr "El fichero existe. "
#: util/errors.c:96
msgid "weak key"
msgstr "Clave d�bil"
#: util/errors.c:97
msgid "invalid argument"
msgstr "argumento no v�lido"
#: util/errors.c:98
msgid "bad URI"
msgstr "URI incorrecto"
#: util/errors.c:99
msgid "unsupported URI"
msgstr "URI no soportado"
#: util/errors.c:100
msgid "network error"
msgstr "error de red"
#: util/errors.c:102
msgid "not encrypted"
msgstr "no cifrado"
#: util/logger.c:218
#, c-format
msgid "... this is a bug (%s:%d:%s)\n"
msgstr "... esto es un bug (%s:%d:%s)\n"
#: util/logger.c:224
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "Ha encontrado Vd. un bug... (%s:%d)\n"
#: cipher/random.c:452
msgid "WARNING: using insecure random number generator!!\n"
msgstr ""
"ATENCI�N: �se est� usando un generador de n�meros aleatorios inseguro!\n"
#: cipher/random.c:453
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
"\n"
"DON'T USE ANY DATA GENERATED BY THIS PROGRAM!!\n"
"\n"
msgstr ""
"EL generador de n�meros aleatorios es s�lo un apa�o\n"
"para poder compilar. �No es en absoluto seguro!\n"
"\n"
"�NO USE NING�N DATO GENERADO POR ESTE PROGRAMA!\n"
"\n"
#: cipher/rndlinux.c:135
#, c-format
msgid ""
"\n"
"Not enough random bytes available. Please do some other work to give\n"
"the OS a chance to collect more entropy! (Need %d more bytes)\n"
msgstr ""
"\n"
"No hay suficientes bytes aleatorios disponibles. Por favor, haga alg�n\n"
"otro trabajo para que el sistema pueda recolectar m�s entrop�a\n"
"(se necesitan %d bytes m�s).\n"
#: g10/g10.c:180
msgid ""
"@Commands:\n"
" "
msgstr ""
"@Comandos:\n"
" "
#: g10/g10.c:182
msgid "|[file]|make a signature"
msgstr "|[file]|hace una firma"
#: g10/g10.c:183
msgid "|[file]|make a clear text signature"
msgstr "|[file]|hace una firma en texto claro"
#: g10/g10.c:184
msgid "make a detached signature"
msgstr "hace una firma separada"
#: g10/g10.c:185
msgid "encrypt data"
msgstr "cifra datos"
#: g10/g10.c:186
msgid "encryption only with symmetric cipher"
msgstr "cifra s�lo con un cifrado sim�trico"
#: g10/g10.c:187
msgid "store only"
msgstr "s�lo almacenar"
#: g10/g10.c:188
msgid "decrypt data (default)"
msgstr "descifra datos (predefinido)"
#: g10/g10.c:189
msgid "verify a signature"
msgstr "verifica una firma"
#: g10/g10.c:190
msgid "list keys"
msgstr "lista claves"
#: g10/g10.c:192
msgid "list keys and signatures"
msgstr "lista claves y firmas"
#: g10/g10.c:193
msgid "check key signatures"
msgstr "comprueba las firmas de las claves"
#: g10/g10.c:194
msgid "list keys and fingerprints"
msgstr "lista claves y huellas dactilares"
#: g10/g10.c:195
msgid "list secret keys"
msgstr "lista claves secretas"
#: g10/g10.c:196
msgid "generate a new key pair"
msgstr "genera un nuevo par de claves"
#: g10/g10.c:197
msgid "remove key from the public keyring"
msgstr "elimina la clave del anillo p�blico"
#: g10/g10.c:198
#, fuzzy
msgid "sign a key"
msgstr "firma la clave"
#: g10/g10.c:199
#, fuzzy
msgid "sign a key locally"
msgstr "firma la clave localmente"
#: g10/g10.c:200
msgid "sign or edit a key"
msgstr "firma o modifica una clave"
#: g10/g10.c:201
msgid "generate a revocation certificate"
msgstr "genera un certificado de revocaci�n"
#: g10/g10.c:202
msgid "export keys"
msgstr "exporta claves"
#: g10/g10.c:203
msgid "export keys to a key server"
msgstr "exporta claves a un servidor de claves"
#: g10/g10.c:204
msgid "import keys from a key server"
msgstr "importa claves desde un servidor de claves"
#: g10/g10.c:207
msgid "import/merge keys"
msgstr "importa/fusiona claves"
#: g10/g10.c:209
msgid "list only the sequence of packets"
msgstr "lista s�lo la secuencia de paquetes"
#: g10/g10.c:211
msgid "export the ownertrust values"
msgstr "exporta los valores de confianza"
#: g10/g10.c:213
msgid "import ownertrust values"
msgstr "importa los valores de confianza"
#: g10/g10.c:215
#, fuzzy
msgid "update the trust database"
msgstr "|[NOMBRES]|actualiza la base de datos de confianza"
#: g10/g10.c:217
msgid "|[NAMES]|check the trust database"
msgstr "|[NOMBRES]|comprueba la base de datos de confianza"
#: g10/g10.c:218
msgid "fix a corrupted trust database"
msgstr "arregla una base de datos de confianza da�ada"
#: g10/g10.c:219
msgid "De-Armor a file or stdin"
msgstr "quita la armadura de un fichero o stdin"
#: g10/g10.c:220
msgid "En-Armor a file or stdin"
msgstr "crea la armadura a un fichero o stdin"
#: g10/g10.c:221
msgid "|algo [files]|print message digests"
msgstr "|algo [ficheros]|imprime res�menes de mensaje"
#: g10/g10.c:225
msgid ""
"@\n"
"Options:\n"
" "
msgstr ""
"@\n"
"Opciones:\n"
" "
#: g10/g10.c:227
msgid "create ascii armored output"
msgstr "crea una salida ascii con armadura"
#: g10/g10.c:228
msgid "|NAME|encrypt for NAME"
msgstr "|NOMBRE|cifra para NOMBRE"
#: g10/g10.c:231
#, fuzzy
msgid "|NAME|use NAME as default recipient"
msgstr "|NOMBRE|usa NOMBRE como clave secreta por defecto"
#: g10/g10.c:233
msgid "use the default key as default recipient"
msgstr ""
#: g10/g10.c:237
msgid "use this user-id to sign or decrypt"
msgstr "usa este usuario para firmar o descifrar"
#: g10/g10.c:238
msgid "|N|set compress level N (0 disables)"
msgstr "|N|establece nivel de compresi�n N (0 no comprime)"
#: g10/g10.c:240
msgid "use canonical text mode"
msgstr "usa modo de texto can�nico"
#: g10/g10.c:241
msgid "use as output file"
msgstr "usa como fichero de salida"
#: g10/g10.c:242
msgid "verbose"
msgstr "prolijo"
#: g10/g10.c:243
msgid "be somewhat more quiet"
msgstr "algo m�s discreto"
#: g10/g10.c:244
msgid "don't use the terminal at all"
msgstr ""
#: g10/g10.c:245
msgid "force v3 signatures"
msgstr "fuerza firmas v3"
#: g10/g10.c:246
msgid "always use a MDC for encryption"
msgstr "siempre usa un MCD para cifrar"
#: g10/g10.c:247
msgid "do not make any changes"
msgstr "no hace ning�n cambio"
#. { oInteractive, "interactive", 0, N_("prompt before overwriting") },
#: g10/g10.c:249
msgid "batch mode: never ask"
msgstr "proceso por lotes: nunca preguntar"
#: g10/g10.c:250
msgid "assume yes on most questions"
msgstr "asume \"s�\" en casi todas las preguntas"
#: g10/g10.c:251
msgid "assume no on most questions"
msgstr "asume \"no\" en casi todas las preguntas"
#: g10/g10.c:252
msgid "add this keyring to the list of keyrings"
msgstr "a�ade este anillo a la lista de anillos"
#: g10/g10.c:253
msgid "add this secret keyring to the list"
msgstr "a�ade este anillo secreto a la lista"
#: g10/g10.c:254
msgid "|NAME|use NAME as default secret key"
msgstr "|NOMBRE|usa NOMBRE como clave secreta por defecto"
#: g10/g10.c:255
msgid "|HOST|use this keyserver to lookup keys"
msgstr "|SERVIDOR|usa este servidor de claves"
#: g10/g10.c:256
msgid "|NAME|set terminal charset to NAME"
msgstr "|NOMBRE|usa el juego de caracteres NOMBRE"
#: g10/g10.c:257
msgid "read options from file"
msgstr "lee opciones del fichero"
#: g10/g10.c:259
msgid "set debugging flags"
msgstr "establece los par�metros de depuraci�n"
#: g10/g10.c:260
msgid "enable full debugging"
msgstr "habilita depuraci�n completa"
#: g10/g10.c:261
msgid "|FD|write status info to this FD"
msgstr "|DF|escribe informaci�n de estado en descriptor DF"
#: g10/g10.c:262
msgid "do not write comment packets"
msgstr "no escribe paquetes de comentario"
#: g10/g10.c:263
msgid "(default is 1)"
msgstr "(por defecto es 1)"
#: g10/g10.c:264
msgid "(default is 3)"
msgstr "(por defecto es 3)"
#: g10/g10.c:266
msgid "|FILE|load extension module FILE"
msgstr "|FICHERO|carga m�dulo de extensiones FICHERO"
#: g10/g10.c:267
msgid "emulate the mode described in RFC1991"
msgstr "emula el modo descrito en la RFC1991"
#: g10/g10.c:268
msgid "set all packet, cipher and digest options to OpenPGP behavior"
msgstr ""
#: g10/g10.c:269
msgid "|N|use passphrase mode N"
msgstr "|N|usa modo de contrase�a N"
#: g10/g10.c:271
msgid "|NAME|use message digest algorithm NAME for passphrases"
msgstr ""
"|NOMBRE|usa algoritmo de resumen de mensaje NOMBRE\n"
"para las contrase�as"
#: g10/g10.c:273
msgid "|NAME|use cipher algorithm NAME for passphrases"
msgstr ""
"|NOMBRE|usa el algoritmo de cifrado NOMBRE para las\n"
"contrase�as"
#: g10/g10.c:274
msgid "|NAME|use cipher algorithm NAME"
msgstr "|NOMBRE|usa el algoritmo de cifrado NOMBRE"
#: g10/g10.c:275
msgid "|NAME|use message digest algorithm NAME"
msgstr "|NOMBRE|usa algoritmo de resumen de mensaje NOMBRE"
#: g10/g10.c:276
msgid "|N|use compress algorithm N"
msgstr "|N|usa el algoritmo de compresi�n N"
#: g10/g10.c:277
msgid "throw keyid field of encrypted packets"
msgstr "elimina el campo keyid de los paquetes cifrados"
#: g10/g10.c:278
msgid "|NAME=VALUE|use this notation data"
msgstr ""
#: g10/g10.c:280
msgid ""
"@\n"
"Examples:\n"
"\n"
" -se -r Bob [file] sign and encrypt for user Bob\n"
" --clearsign [file] make a clear text signature\n"
" --detach-sign [file] make a detached signature\n"
" --list-keys [names] show keys\n"
" --fingerprint [names] show fingerprints\n"
msgstr ""
"@\n"
"Ejemplos:\n"
"\n"
" -se -r Bob [fichero] firma y cifra para el usuario Bob\n"
" --clearsign [fichero] hace una firma manteniendo el texto sin cifrar\n"
" --detach-sign [fichero] hace una firma separada\n"
" --list-keys [nombres] muestra las claves\n"
" --fingerprint [nombres] muestra las huellas dactilares\n"
#: g10/g10.c:360
msgid "Please report bugs to <gnupg-bugs@gnu.org>.\n"
msgstr "Por favor, informe de posibles \"bugs\" a <gnupg-bugs@gnu.org>.\n"
#: g10/g10.c:364
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Uso: gpg [opciones] [ficheros] (-h para ayuda)"
#: g10/g10.c:367
msgid ""
"Syntax: gpg [options] [files]\n"
"sign, check, encrypt or decrypt\n"
"default operation depends on the input data\n"
msgstr ""
"Sintaxis: gpg [opciones] [ficheros]\n"
"Firma, comprueba, cifra o descifra.\n"
"La operaci�n por defecto depende del tipo de datos de entrada.\n"
#: g10/g10.c:372
msgid ""
"\n"
"Supported algorithms:\n"
msgstr ""
"\n"
"Algoritmos soportados:\n"
#: g10/g10.c:446
msgid "usage: gpg [options] "
msgstr "uso: gpg [opciones] "
#: g10/g10.c:499
msgid "conflicting commands\n"
msgstr "comandos incompatibles\n"
#: g10/g10.c:633
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "NOTA: no existe el fichero de opciones predefinido `%s'\n"
#: g10/g10.c:637
#, c-format
msgid "option file `%s': %s\n"
msgstr "fichero de opciones `%s': %s\n"
#: g10/g10.c:644
#, c-format
msgid "reading options from `%s'\n"
msgstr "leyendo opciones desde `%s'\n"
#: g10/g10.c:824
#, c-format
msgid "%s is not a valid character set\n"
msgstr "%s no es un juego de caracteres v�lido\n"
#: g10/g10.c:872 g10/g10.c:884
msgid "selected cipher algorithm is invalid\n"
msgstr "el algoritmo de cifrado seleccionado no es v�lido\n"
#: g10/g10.c:878 g10/g10.c:890
msgid "selected digest algorithm is invalid\n"
msgstr "el algoritmo de resumen seleccionado no es v�lido\n"
#: g10/g10.c:894
msgid "the given policy URL is invalid\n"
msgstr ""
#: g10/g10.c:897
#, c-format
msgid "compress algorithm must be in range %d..%d\n"
msgstr "el algoritmo de compresi�n debe estar en el rango %d-%d\n"
#: g10/g10.c:899
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed debe ser mayor que 0\n"
#: g10/g10.c:901
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed debe ser mayor que 1\n"
#: g10/g10.c:903
msgid "max-cert-depth must be in range 1 to 255\n"
msgstr "max-cert-depth debe estar en el rango 1-255\n"
#: g10/g10.c:906
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "NOTA: el modo S2K simple (0) no es nada recomendable\n"
#: g10/g10.c:910
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "modo S2K incorrecto; debe ser 0, 1 o 3\n"
#: g10/g10.c:987
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "inicializaci�n de la base de datos de confianza fallida: %s\n"
#: g10/g10.c:993
msgid "--store [filename]"
msgstr "--store [nombre_fichero]"
#: g10/g10.c:1000
msgid "--symmetric [filename]"
msgstr "--symmetric [nombre_fichero]"
#: g10/g10.c:1008
msgid "--encrypt [filename]"
msgstr "--encrypt [nombre_fichero]"
#: g10/g10.c:1021
msgid "--sign [filename]"
msgstr "--sign [nombre_fichero]"
#: g10/g10.c:1034
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [nombre_fichero]"
#: g10/g10.c:1048
msgid "--clearsign [filename]"
msgstr "--clearsign [nombre_fichero]"
#: g10/g10.c:1060
msgid "--decrypt [filename]"
msgstr "--decrypt [nombre_fichero]"
#: g10/g10.c:1068
msgid "--sign-key user-id"
msgstr ""
#: g10/g10.c:1076
#, fuzzy
msgid "--lsign-key user-id"
msgstr "--delete-key nombre_usuario"
#: g10/g10.c:1084
#, fuzzy
msgid "--edit-key user-id [commands]"
msgstr "--edit-key nombre_usuario [comandos]"
#: g10/g10.c:1100
#, fuzzy
msgid "--delete-secret-key user-id"
msgstr "--delete-secret-key nombre_usuario"
#: g10/g10.c:1103
#, fuzzy
msgid "--delete-key user-id"
msgstr "--delete-key nombre_usuario"
#: g10/encode.c:231 g10/g10.c:1127 g10/sign.c:366
#, c-format
msgid "can't open %s: %s\n"
msgstr "no puede abrirse `%s': %s\n"
#: g10/g10.c:1138
msgid "-k[v][v][v][c] [userid] [keyring]"
msgstr "-k[v][v][v][c] [id_usuario] [anillo]"
#: g10/g10.c:1199
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "eliminaci�n de armadura fallida: %s\n"
#: g10/g10.c:1207
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "creaci�n de armadura fallida: %s\n"
#: g10/g10.c:1275
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "algoritmo de distribuci�n no v�lido `%s'\n"
#: g10/g10.c:1356
msgid "[filename]"
msgstr "[nombre_fichero]"
#: g10/g10.c:1360
msgid "Go ahead and type your message ...\n"
msgstr "Adelante, teclee su mensaje ...\n"
#: g10/decrypt.c:59 g10/g10.c:1363 g10/verify.c:66
#, c-format
msgid "can't open `%s'\n"
msgstr "no puede abrirse `%s'\n"
#: g10/g10.c:1532
msgid ""
"the first character of a notation name must be a letter or an underscore\n"
msgstr ""
#: g10/g10.c:1538
msgid ""
"a notation name must have only letters, digits, dots or underscores and end "
"with an '='\n"
msgstr ""
#: g10/g10.c:1544
msgid "dots in a notation name must be surrounded by other characters\n"
msgstr ""
#: g10/g10.c:1552
msgid "a notation value must not use any control characters\n"
msgstr ""
#: g10/armor.c:296
#, c-format
msgid "armor: %s\n"
msgstr "armadura: %s\n"
#: g10/armor.c:319
msgid "invalid armor header: "
msgstr "cabecera de armadura no v�lida: "
#: g10/armor.c:326
msgid "armor header: "
msgstr "cabecera de armadura: "
#: g10/armor.c:337
msgid "invalid clearsig header\n"
msgstr "cabecera de firma clara no v�lida\n"
#: g10/armor.c:389
msgid "nested clear text signatures\n"
msgstr "firmas en texto claro anidadas\n"
#: g10/armor.c:500
msgid "invalid dash escaped line: "
msgstr "L�nea con guiones no v�lida: "
#: g10/armor.c:512
msgid "unexpected armor:"
msgstr "armadura inesperada"
#: g10/armor.c:629
#, c-format
msgid "invalid radix64 character %02x skipped\n"
msgstr "caracteres no v�lidos radix64 %02x ignorados\n"
#: g10/armor.c:672
msgid "premature eof (no CRC)\n"
msgstr "Fin de fichero prematuro\n"
#: g10/armor.c:706
msgid "premature eof (in CRC)\n"
msgstr "Fin de suma de comprobaci�n prematuro\n"
#: g10/armor.c:710
msgid "malformed CRC\n"
msgstr "Suma de comprobaci�n mal creada\n"
#: g10/armor.c:714
#, c-format
msgid "CRC error; %06lx - %06lx\n"
msgstr "Error en suma de comprobaci�n: %06lx - %06lx\n"
#: g10/armor.c:731
msgid "premature eof (in Trailer)\n"
msgstr "fin de fichero prematuro (en el cierre)\n"
#: g10/armor.c:735
msgid "error in trailer line\n"
msgstr "error en la l�nea de cierre\n"
#: g10/armor.c:1001
msgid "no valid OpenPGP data found.\n"
msgstr "no se han encontrados datos OpenPGP v�lidos\n"
#: g10/armor.c:1005
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "armadura incorrecta: l�nea m�s larga de %d caracteres\n"
#: g10/armor.c:1009
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
"caracter \"quoted printable\" en la armadura - probablemente se us�\n"
"un MTA defectuoso\n"
#. a string with valid answers
#: g10/pkclist.c:140
msgid "sSmMqQ"
msgstr "iImMqQ"
#: g10/pkclist.c:144
#, c-format
msgid ""
"No trust value assigned to %lu:\n"
"%4u%c/%08lX %s \""
msgstr ""
"No hay confianza definida para el propietario %lu:\n"
"%4u%c/%08lX %s \""
#: g10/pkclist.c:154
msgid ""
"Please decide how far you trust this user to correctly\n"
"verify other users' keys (by looking at passports,\n"
"checking fingerprints from different sources...)?\n"
"\n"
" 1 = Don't know\n"
" 2 = I do NOT trust\n"
" 3 = I trust marginally\n"
" 4 = I trust fully\n"
" s = please show me more information\n"
msgstr ""
"Por favor, decida su nivel de confianza para este que usuario\n"
"verifique las claves de otros usuarios (mirando pasaportes,\n"
"comprobando huellas dactilares en diferentes fuentes...)\n"
"\n"
" 1 = No lo s�\n"
" 2 = NO me f�o\n"
" 3 = Me f�o marginalmente\n"
" 4 = Me f�o completamente\n"
" i = Mostrar m�s informaci�n\n"
#: g10/pkclist.c:163
msgid " m = back to the main menu\n"
msgstr " m = volver al men� principal\n"
#: g10/pkclist.c:165
msgid " q = quit\n"
msgstr " q = salir\n"
#: g10/pkclist.c:171
msgid "Your decision? "
msgstr "Su decisi�n: "
#: g10/pkclist.c:193
msgid "Certificates leading to an ultimately trusted key:\n"
msgstr "Certificados que llevan a una clave de confianza absoluta:\n"
#: g10/pkclist.c:264
msgid ""
"Could not find a valid trust path to the key. Let's see whether we\n"
"can assign some missing owner trust values.\n"
"\n"
msgstr ""
"No puede encontrarse una ruta de confianza v�lida para esta clave. Veamos\n"
"si es posible asignar algunos valores de confianza perdidos.\n"
"\n"
#: g10/pkclist.c:270
msgid ""
"No path leading to one of our keys found.\n"
"\n"
msgstr ""
"No se ha encontrado ninguna ruta con una de nuestras claves.\n"
"\n"
#: g10/pkclist.c:272
msgid ""
"No certificates with undefined trust found.\n"
"\n"
msgstr ""
"No se ha encontrado ning�n certificado sin valor de confianza.\n"
"\n"
#: g10/pkclist.c:274
msgid ""
"No trust values changed.\n"
"\n"
msgstr ""
"No se cambi� ning�n valor de confianza.\n"
"\n"
#: g10/pkclist.c:291
#, c-format
msgid "key %08lX: key has been revoked!\n"
msgstr "clave %08lX: �esta clave ha sido revocada!\n"
#: g10/pkclist.c:297 g10/pkclist.c:307 g10/pkclist.c:413
msgid "Use this key anyway? "
msgstr "�Usar esta clave de todas formas? "
#: g10/pkclist.c:301
#, c-format
msgid "key %08lX: subkey has been revoked!\n"
msgstr "clave %08lX: �esta subclave ha sido revocada!\n"
#: g10/pkclist.c:331
#, c-format
msgid "%08lX: key has expired\n"
msgstr "%08lX: clave caducada\n"
#: g10/pkclist.c:337
#, c-format
msgid "%08lX: no info to calculate a trust probability\n"
msgstr "%08lX: no hay informaci�n para calcular la probabilidad de confianza\n"
#: g10/pkclist.c:351
#, c-format
msgid "%08lX: We do NOT trust this key\n"
msgstr "%08lX: �Esta clave NO es de confianza!\n"
#: g10/pkclist.c:357
#, c-format
msgid ""
"%08lX: It is not sure that this key really belongs to the owner\n"
"but it is accepted anyway\n"
msgstr ""
"%08lX: No hay seguridad que esta clave pertenezca realmente a su "
"proprietario\n"
"pero se acepta igualmente\n"
#: g10/pkclist.c:363
msgid "This key probably belongs to the owner\n"
msgstr "Esta clave probablemente pertenece a su proprietario\n"
#: g10/pkclist.c:368
msgid "This key belongs to us\n"
msgstr "Esta clave nos pertenece\n"
#: g10/pkclist.c:408
msgid ""
"It is NOT certain that the key belongs to its owner.\n"
"If you *really* know what you are doing, you may answer\n"
"the next question with yes\n"
"\n"
msgstr ""
"No es seguro que la clave pertenezca a su propietario.\n"
"Si *realmente* sabe lo que est� haciendo, puede contestar\n"
"\"s�\" a la siguiente pregunta.\n"
"\n"
#: g10/pkclist.c:421 g10/pkclist.c:443
msgid "WARNING: Using untrusted key!\n"
msgstr "ATENCI�N: �Usando una clave no fiable!\n"
#: g10/pkclist.c:464
msgid "WARNING: This key has been revoked by its owner!\n"
msgstr "ATENCI�N: �Esta clave ha sido revocada por su propietario!\n"
#: g10/pkclist.c:465
msgid " This could mean that the signature is forgery.\n"
msgstr " Esto puede significar que la firma est� falsificada.\n"
#: g10/pkclist.c:469
msgid "WARNING: This subkey has been revoked by its owner!\n"
msgstr "ATENCI�N: �Esta clave ha sido revocada por su propietario!\n"
#: g10/pkclist.c:490
msgid "Note: This key has expired!\n"
msgstr "Nota: �Esta clave est� caducada!\n"
#: g10/pkclist.c:497
msgid "WARNING: This key is not certified with a trusted signature!\n"
msgstr ""
"ATENCI�N: �Esta clave no est� certificada por una firma de confianza!\n"
#: g10/pkclist.c:499
msgid ""
" There is no indication that the signature belongs to the owner.\n"
msgstr " No hay indicios de que la firma pertenezca al propietario.\n"
#: g10/pkclist.c:515
msgid "WARNING: We do NOT trust this key!\n"
msgstr "ATENCI�N: �Esta clave NO es de confianza!\n"
#: g10/pkclist.c:516
msgid " The signature is probably a FORGERY.\n"
msgstr " La firma es probablemente una FALSIFICACI�N.\n"
#: g10/pkclist.c:523
msgid ""
"WARNING: This key is not certified with sufficiently trusted signatures!\n"
msgstr ""
"ATENCI�N: �Esta clave no est� certificada con suficientes firmas de "
"confianza!\n"
#: g10/pkclist.c:526
msgid " It is not certain that the signature belongs to the owner.\n"
msgstr " No es seguro que la firma pertenezca al propietario.\n"
#: g10/pkclist.c:627 g10/pkclist.c:649 g10/pkclist.c:758 g10/pkclist.c:803
#, c-format
msgid "%s: skipped: %s\n"
msgstr "%s: ignorado: %s\n"
#: g10/pkclist.c:635 g10/pkclist.c:785
#, fuzzy, c-format
msgid "%s: skipped: public key already present\n"
msgstr "%s: problema lectura del bloque de clave: %s\n"
#: g10/pkclist.c:662
msgid ""
"You did not specify a user ID. (you may use \"-r\")\n"
"\n"
msgstr ""
"No se ha especificado un ID de usuario (puede usar \"-r\")\n"
"\n"
#: g10/pkclist.c:672
msgid "Enter the user ID: "
msgstr "Introduzca el ID de usuario: "
#: g10/pkclist.c:684
msgid "No such user ID.\n"
msgstr "ID de usuario inexistente.\n"
#: g10/pkclist.c:704
#, fuzzy
msgid "Public key is disabled.\n"
msgstr "la clave p�blica es %08lX\n"
#: g10/pkclist.c:733
msgid "unknown default recipient `s'\n"
msgstr ""
#: g10/pkclist.c:766
#, c-format
msgid "%s: error checking key: %s\n"
msgstr "%s: error comprobando la clave: %s\n"
#: g10/pkclist.c:771
#, fuzzy, c-format
msgid "%s: skipped: public key is disabled\n"
msgstr "%s: problema lectura del bloque de clave: %s\n"
#: g10/pkclist.c:809
msgid "no valid addressees\n"
msgstr "no hay direcciones v�lidas\n"
#: g10/keygen.c:122
msgid "writing self signature\n"
msgstr "escribiendo autofirma\n"
#: g10/keygen.c:160
msgid "writing key binding signature\n"
msgstr "escribiendo la firma de comprobaci�n de clave\n"
#: g10/keygen.c:386
msgid "Please select what kind of key you want:\n"
msgstr "Por favor seleccione tipo de clave deseado:\n"
#: g10/keygen.c:388
#, c-format
msgid " (%d) DSA and ElGamal (default)\n"
msgstr " (%d) DSA y ElGamal (por defecto)\n"
#: g10/keygen.c:389
#, c-format
msgid " (%d) DSA (sign only)\n"
msgstr " (%d) DSA (s�lo firma)\n"
#: g10/keygen.c:391
#, c-format
msgid " (%d) ElGamal (encrypt only)\n"
msgstr " (%d) ElGamal (s�lo cifrado)\n"
#: g10/keygen.c:392
#, c-format
msgid " (%d) ElGamal (sign and encrypt)\n"
msgstr " (%d) ElGamal (firma y cifrado)\n"
#: g10/keygen.c:394
#, c-format
msgid " (%d) ElGamal in a v3 packet\n"
msgstr " (%d) ElGamal en un paquete v3\n"
#: g10/keygen.c:399
msgid "Your selection? "
msgstr "Su elecci�n: "
#: g10/keygen.c:409
msgid "Do you really want to create a sign and encrypt key? "
msgstr "�De verdad quiere crear una clave de firma y cifrado? "
#: g10/keygen.c:430
msgid "Invalid selection.\n"
msgstr "Elecci�n no v�lida.\n"
#: g10/keygen.c:442
#, c-format
msgid ""
"About to generate a new %s keypair.\n"
" minimum keysize is 768 bits\n"
" default keysize is 1024 bits\n"
" highest suggested keysize is 2048 bits\n"
msgstr ""
"Listo para generar un nuevo par de claves %s.\n"
" el tama�o m�nimo es 768 bits\n"
" el tama�o por defecto es 1024 bits\n"
" el tama�o m�ximo recomendado es 2048 bits\n"
#: g10/keygen.c:449
msgid "What keysize do you want? (1024) "
msgstr "�De qu� tama�o quiere la clave (1024)? "
#: g10/keygen.c:454
msgid "DSA only allows keysizes from 512 to 1024\n"
msgstr "DSA s�lo permite tama�os desde 512 a 1024\n"
#: g10/keygen.c:456
msgid "keysize too small; 768 is smallest value allowed.\n"
msgstr "tama�o insuficiente; 768 es el valor m�nimo permitido\n"
#. It is ridiculous and an annoyance to use larger key sizes!
#. * GnuPG can handle much larger sizes; but it takes an eternity
#. * to create such a key (but less than the time the Sirius
#. * Computer Corporation needs to process one of the usual
#. * complaints) and {de,en}cryption although needs some time.
#. * So, before you complain about this limitation, I suggest that
#. * you start a discussion with Marvin about this theme and then
#. * do whatever you want.
#: g10/keygen.c:466
#, c-format
msgid "keysize too large; %d is largest value allowed.\n"
msgstr "tama�o excesivo; %d es el m�ximo valor permitido.\n"
#: g10/keygen.c:471
msgid ""
"Keysizes larger than 2048 are not suggested because\n"
"computations take REALLY long!\n"
msgstr ""
"No se recomiendan claves de m�s de 2048 bits porque\n"
"el tiempo de computaci�n es REALMENTE largo.\n"
#: g10/keygen.c:474
msgid "Are you sure that you want this keysize? "
msgstr "�Seguro que quiere una clave de este tama�o? "
#: g10/keygen.c:475
msgid ""
"Okay, but keep in mind that your monitor and keyboard radiation is also very "
"vulnerable to attacks!\n"
msgstr ""
"De acuerdo, �pero tenga en cuenta que las radiaciones de su monitor y "
"teclado\n"
"tambi�n son vulnerables a un ataque!\n"
#: g10/keygen.c:483
msgid "Do you really need such a large keysize? "
msgstr "�De verdad necesita una clave tan grande? "
#: g10/keygen.c:489
#, c-format
msgid "Requested keysize is %u bits\n"
msgstr "El tama�o requerido es de %u bits\n"
#: g10/keygen.c:492 g10/keygen.c:496
#, c-format
msgid "rounded up to %u bits\n"
msgstr "redondeados a %u bits\n"
#: g10/keygen.c:509
msgid ""
"Please specify how long the key should be valid.\n"
" 0 = key does not expire\n"
" <n> = key expires in n days\n"
" <n>w = key expires in n weeks\n"
" <n>m = key expires in n months\n"
" <n>y = key expires in n years\n"
msgstr ""
"Por favor, especifique el per�odo de validez de la clave.\n"
" 0 = la clave nunca caduca\n"
" <n> = la clave caduca en n d�as\n"
" <n>w = la clave caduca en n semanas\n"
" <n>m = la clave caduca en n meses\n"
" <n>y = la clave caduca en n a�os\n"
#: g10/keygen.c:526
msgid "Key is valid for? (0) "
msgstr "�Validez de la clave (0)? "
#: g10/keygen.c:547
msgid "invalid value\n"
msgstr "valor no v�lido\n"
#: g10/keygen.c:552
msgid "Key does not expire at all\n"
msgstr "La clave nunca caduca\n"
#. print the date when the key expires
#: g10/keygen.c:558
#, c-format
msgid "Key expires at %s\n"
msgstr "La clave caduca el %s\n"
#: g10/keygen.c:564
msgid "Is this correct (y/n)? "
msgstr "�Es correcto (s/n)? "
#: g10/keygen.c:607
msgid ""
"\n"
"You need a User-ID to identify your key; the software constructs the user "
"id\n"
"from Real Name, Comment and Email Address in this form:\n"
" \"Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>\"\n"
"\n"
msgstr ""
"\n"
"Necesita un identificativo de usuario para identificar su clave. El "
"programa\n"
"construye el identificativo a partir del Nombre Real, Comentario y "
"Direcci�n\n"
"de Correo Electr�nico de esta forma:\n"
" \"Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>\"\n"
"\n"
#: g10/keygen.c:618
msgid "Real name: "
msgstr "Nombre y apellidos: "
#: g10/keygen.c:622
msgid "Invalid character in name\n"
msgstr "Caracter no v�lido en el nombre\n"
#: g10/keygen.c:624
msgid "Name may not start with a digit\n"
msgstr "El nombre no puede empezar con un n�mero\n"
#: g10/keygen.c:626
msgid "Name must be at least 5 characters long\n"
msgstr "El nombre debe tener al menos 5 caracteres\n"
#: g10/keygen.c:634
msgid "Email address: "
msgstr "Direcci�n de correo electr�nico: "
#: g10/keygen.c:645
msgid "Not a valid email address\n"
msgstr "Direcci�n no v�lida\n"
#: g10/keygen.c:653
msgid "Comment: "
msgstr "Comentario: "
#: g10/keygen.c:659
msgid "Invalid character in comment\n"
msgstr "Caracter no v�lido en el comentario\n"
#: g10/keygen.c:681
#, c-format
msgid "You are using the `%s' character set.\n"
msgstr "Est� usando el juego de caracteres `%s'.\n"
#: g10/keygen.c:687
#, c-format
msgid ""
"You selected this USER-ID:\n"
" \"%s\"\n"
"\n"
msgstr ""
"Ha seleccionado este identificativo de usuario:\n"
" \"%s\"\n"
"\n"
#: g10/keygen.c:690
msgid "NnCcEeOoQq"
msgstr "NnCcDdVvSs"
#: g10/keygen.c:700
msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? "
msgstr "�Cambia (N)ombre, (C)omentario, (D)irecci�n o (V)ale/(S)alir? "
#: g10/keygen.c:752
msgid ""
"You need a Passphrase to protect your secret key.\n"
"\n"
msgstr ""
"Necesita una contrase�a para proteger su clave secreta.\n"
"\n"
#: g10/keyedit.c:456 g10/keygen.c:760
msgid "passphrase not correctly repeated; try again.\n"
msgstr "contrase�a repetida incorrecta, int�ntelo de nuevo.\n"
#: g10/keygen.c:766
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"I will do it anyway. You can change your passphrase at any time,\n"
"using this program with the option \"--edit-key\".\n"
"\n"
msgstr ""
"No ha especificado contrase�a. Esto es probablemente una *mala* idea.\n"
"Si m�s tarde quiere a�adir una, puede hacerlo usando este programa con\n"
"la opci�n \"--edit-key\".\n"
"\n"
#: g10/keygen.c:787
msgid ""
"We need to generate a lot of random bytes. It is a good idea to perform\n"
"some other action (type on the keyboard, move the mouse, utilize the\n"
"disks) during the prime generation; this gives the random number\n"
"generator a better chance to gain enough entropy.\n"
msgstr ""
"Es necesario generar muchos bytes aleatorios. Es una buena idea realizar\n"
"alguna otra tarea (trabajar en otra ventana/consola, mover el rat�n, usar\n"
"la red y los discos) durante la generaci�n de n�meros primos. Esto da al\n"
"generador de n�meros aleatorios mayor oportunidad de recoger suficiente\n"
"entrop�a.\n"
#: g10/keygen.c:857
msgid "Key generation can only be used in interactive mode\n"
msgstr "La creaci�n de claves s�lo es posible en modo interactivo\n"
#: g10/keygen.c:865
msgid "DSA keypair will have 1024 bits.\n"
msgstr "El par de claves DSA tendr� 1024 bits.\n"
#: g10/keygen.c:871
#, fuzzy
msgid "Key generation canceled.\n"
msgstr "Creaci�n de claves cancelada.\n"
#: g10/keygen.c:881
#, c-format
msgid "writing public certificate to `%s'\n"
msgstr "escribiendo certificado p�blico en `%s'\n"
#: g10/keygen.c:882
#, c-format
msgid "writing secret certificate to `%s'\n"
msgstr "escribiendo certificado privado en `%s'\n"
#: g10/keygen.c:959
msgid "public and secret key created and signed.\n"
msgstr "Claves p�blica y secreta creadas y firmadas.\n"
#: g10/keygen.c:961
msgid ""
"Note that this key cannot be used for encryption. You may want to use\n"
"the command \"--edit-key\" to generate a secondary key for this purpose.\n"
msgstr ""
"Tenga en cuenta que esta clave no puede ser usada para cifrado. Puede usar\n"
"el comando \"--edit-key\" para crear una clave secundaria con este "
"prop�sito.\n"
#: g10/keygen.c:975 g10/keygen.c:1074
#, c-format
msgid "Key generation failed: %s\n"
msgstr "Creaci�n de la clave fallida: %s\n"
#: g10/keygen.c:1019 g10/sig-check.c:312 g10/sign.c:105
#, c-format
msgid ""
"key has been created %lu second in future (time warp or clock problem)\n"
msgstr ""
"clave p�blica creada %lu segundos en el futuro (salto en el tiempo o\n"
"problemas con el reloj)\n"
#: g10/keygen.c:1021 g10/sig-check.c:314 g10/sign.c:107
#, c-format
msgid ""
"key has been created %lu seconds in future (time warp or clock problem)\n"
msgstr ""
"clave p�blica creada %lu segundos en el futuro (salto en el tiempo o\n"
"problemas con el reloj)\n"
#: g10/keygen.c:1052
msgid "Really create? "
msgstr "�Crear de verdad? "
#: g10/encode.c:91 g10/openfile.c:156 g10/openfile.c:246 g10/tdbio.c:467
#: g10/tdbio.c:528
#, c-format
msgid "%s: can't open: %s\n"
msgstr "%s: no puede abrirse: %s\n"
#: g10/encode.c:113
#, c-format
msgid "error creating passphrase: %s\n"
msgstr "error creando contrase�a: %s\n"
#: g10/encode.c:167 g10/encode.c:287
#, c-format
msgid "%s: WARNING: empty file\n"
msgstr "%s: ATENCI�N: fichero vac�o\n"
#: g10/encode.c:237
#, c-format
msgid "reading from `%s'\n"
msgstr "leyendo desde `%s'\n"
#: g10/encode.c:431
#, c-format
msgid "%s/%s encrypted for: %s\n"
msgstr "%s/%s cifrado para: %s\n"
#: g10/export.c:147
#, c-format
msgid "%s: user not found: %s\n"
msgstr "%s: usuario no encontrado: %s\n"
#: g10/export.c:156
#, c-format
msgid "certificate read problem: %s\n"
msgstr "problema en la lectura del certificado: %s\n"
#: g10/export.c:165
#, c-format
msgid "key %08lX: not a rfc2440 key - skipped\n"
msgstr "clave %08lX: no es conforme a rfc2440 - ignorada\n"
#: g10/export.c:203
msgid "WARNING: nothing exported\n"
msgstr "ATENCI�N: no se ha exportado nada\n"
#: g10/getkey.c:206
msgid "too many entries in pk cache - disabled\n"
msgstr "demasiados registros en la cache pk - anulada\n"
#: g10/getkey.c:345
msgid "too many entries in unk cache - disabled\n"
msgstr "demasiados registros en la cache unk - anulada\n"
#: g10/getkey.c:1535 g10/getkey.c:1591
#, c-format
msgid "using secondary key %08lX instead of primary key %08lX\n"
msgstr "usando clave secundaria %08lX en vez de clave primaria %08lX\n"
#: g10/import.c:117
#, c-format
msgid "can't open `%s': %s\n"
msgstr "no puede abrirse `%s': %s\n"
#: g10/import.c:161
#, c-format
msgid "skipping block of type %d\n"
msgstr "ignorando bloque de tipo %d\n"
#: g10/import.c:168 g10/trustdb.c:1658 g10/trustdb.c:1697
#, c-format
msgid "%lu keys so far processed\n"
msgstr "hasta ahora se han procesado %lu claves\n"
#: g10/import.c:173
#, c-format
msgid "error reading `%s': %s\n"
msgstr "error leyendo `%s': %s\n"
#: g10/import.c:176
#, c-format
msgid "Total number processed: %lu\n"
msgstr " Cantidad total procesada: %lu\n"
#: g10/import.c:178
#, c-format
msgid " w/o user IDs: %lu\n"
msgstr " sin identificativo: %lu\n"
#: g10/import.c:180
#, c-format
msgid " imported: %lu"
msgstr " importadas: %lu"
#: g10/import.c:186
#, c-format
msgid " unchanged: %lu\n"
msgstr " sin cambios: %lu\n"
#: g10/import.c:188
#, c-format
msgid " new user IDs: %lu\n"
msgstr " nuevos identificativos: %lu\n"
#: g10/import.c:190
#, c-format
msgid " new subkeys: %lu\n"
msgstr " nuevas subclaves: %lu\n"
#: g10/import.c:192
#, c-format
msgid " new signatures: %lu\n"
msgstr " nuevas firmas: %lu\n"
#: g10/import.c:194
#, c-format
msgid " new key revocations: %lu\n"
msgstr " nuevas revocaciones: %lu\n"
#: g10/import.c:196
#, c-format
msgid " secret keys read: %lu\n"
msgstr " claves secretas le�das: %lu\n"
#: g10/import.c:198
#, c-format
msgid " secret keys imported: %lu\n"
msgstr " claves secretas importadas: %lu\n"
#: g10/import.c:200
#, c-format
msgid " secret keys unchanged: %lu\n"
msgstr "claves secretas sin cambios: %lu\n"
#: g10/import.c:361 g10/import.c:550
#, c-format
msgid "key %08lX: no user id\n"
msgstr "clave %08lX: no hay identificativo de usuario\n"
#: g10/import.c:372
#, c-format
msgid "key %08lX: no valid user ids\n"
msgstr "clave %08lX: no hay identificativos de usuario v�lidos\n"
#: g10/import.c:374
msgid "this may be caused by a missing self-signature\n"
msgstr "esto puede ser debido a la ausencia de autofirma\n"
#: g10/import.c:385 g10/import.c:617
#, c-format
msgid "key %08lX: public key not found: %s\n"
msgstr "clave %08lX: clave p�blica no encontrada: %s\n"
#: g10/import.c:391
msgid "no default public keyring\n"
msgstr "no hay anillo p�blico por defecto\n"
#: g10/import.c:395 g10/openfile.c:186 g10/sign.c:268 g10/sign.c:559
#, c-format
msgid "writing to `%s'\n"
msgstr "escribiendo en `%s'\n"
#: g10/import.c:398 g10/import.c:456 g10/import.c:565 g10/import.c:666
#, c-format
msgid "can't lock keyring `%s': %s\n"
msgstr "no puede bloquearse el anillo `%s': %s\n"
#: g10/import.c:401 g10/import.c:459 g10/import.c:568 g10/import.c:669
#, c-format
msgid "error writing keyring `%s': %s\n"
msgstr "error escribiendo anillo `%s': %s\n"
#: g10/import.c:406
#, c-format
msgid "key %08lX: public key imported\n"
msgstr "clave %08lX: clave p�blica importada\n"
#: g10/import.c:423
#, c-format
msgid "key %08lX: doesn't match our copy\n"
msgstr "clave %08lX: no se corresponde con nuestra copia\n"
#: g10/import.c:432 g10/import.c:625
#, c-format
msgid "key %08lX: can't locate original keyblock: %s\n"
msgstr "clave %08lX: no puede localizarse el bloque de claves original: %s\n"
#: g10/import.c:438 g10/import.c:631
#, c-format
msgid "key %08lX: can't read original keyblock: %s\n"
msgstr "clave %08lX: no puede leerse el bloque de claves original: %s\n"
#: g10/import.c:465
#, c-format
msgid "key %08lX: 1 new user-id\n"
msgstr "clave %08lX: 1 nuevo identificativo de usuario\n"
#: g10/import.c:468
#, c-format
msgid "key %08lX: %d new user-ids\n"
msgstr "clave %08lX: %d nuevos identificativos de usuario\n"
#: g10/import.c:471
#, c-format
msgid "key %08lX: 1 new signature\n"
msgstr "clave %08lX: 1 nueva firma\n"
#: g10/import.c:474
#, c-format
msgid "key %08lX: %d new signatures\n"
msgstr "clave %08lX: %d nuevas firmas\n"
#: g10/import.c:477
#, c-format
msgid "key %08lX: 1 new subkey\n"
msgstr "clave %08lX: 1 nueva subclave\n"
#: g10/import.c:480
#, c-format
msgid "key %08lX: %d new subkeys\n"
msgstr "clave %08lX: %d nuevas subclaves\n"
#: g10/import.c:490
#, c-format
msgid "key %08lX: not changed\n"
msgstr "clave %08lX: sin cambios\n"
#: g10/import.c:573
#, c-format
msgid "key %08lX: secret key imported\n"
msgstr "clave %08lX: clave secreta importada\n"
#. we can't merge secret keys
#: g10/import.c:577
#, c-format
msgid "key %08lX: already in secret keyring\n"
msgstr "clave %08lX: ya estaba en el anillo secreto\n"
#: g10/import.c:582
#, c-format
msgid "key %08lX: secret key not found: %s\n"
msgstr "clave %08lX: clave secreta no encontrada: %s\n"
#: g10/import.c:611
#, c-format
msgid "key %08lX: no public key - can't apply revocation certificate\n"
msgstr ""
"clave %08lX: falta la clave p�blica - imposibile applicar el\n"
"certificado de revocaci�n\n"
#: g10/import.c:642
#, c-format
msgid "key %08lX: invalid revocation certificate: %s - rejected\n"
msgstr "clave %08lX: certificado de revocaci�n no v�lido: %s - rechazado\n"
#: g10/import.c:674
#, c-format
msgid "key %08lX: revocation certificate imported\n"
msgstr "clave %08lX: certificado de revocaci�n importado\n"
#: g10/import.c:707
#, c-format
msgid "key %08lX: no user-id for signature\n"
msgstr "clave %08lX: no hay identificativo de usuario para la firma\n"
#: g10/import.c:714 g10/import.c:738
#, c-format
msgid "key %08lX: unsupported public key algorithm\n"
msgstr "clave %08lX: algoritmo de clave p�blica no soportado\n"
#: g10/import.c:715
#, c-format
msgid "key %08lX: invalid self-signature\n"
msgstr "clave %08lX: autofirma no v�lida\n"
#: g10/import.c:730
#, c-format
msgid "key %08lX: no subkey for key binding\n"
msgstr "clave %08lX: no hay subclave para unir\n"
#: g10/import.c:739
#, c-format
msgid "key %08lX: invalid subkey binding\n"
msgstr "clave %08lX.%lu: uni�n de subclave no v�lida\n"
#: g10/import.c:771
#, c-format
msgid "key %08lX: skipped userid '"
msgstr "clave %08lX: ignorado identificativo de usuario '"
#: g10/import.c:794
#, c-format
msgid "key %08lX: skipped subkey\n"
msgstr "clave %08lX: subclave ignorada\n"
#. here we violate the rfc a bit by still allowing
#. * to import non-exportable signature when we have the
#. * the secret key used to create this signature - it
#. * seems that this makes sense
#: g10/import.c:819
#, c-format
msgid "key %08lX: non exportable signature (class %02x) - skipped\n"
msgstr "clave %08lX: firma no exportable (clase %02x) - ignorada\n"
#: g10/import.c:828
#, c-format
msgid "key %08lX: revocation certificate at wrong place - skipped\n"
msgstr ""
"clave %08lX: certificado de revocaci�n en lugar equivocado - ignorado\n"
#: g10/import.c:836
#, c-format
msgid "key %08lX: invalid revocation certificate: %s - skipped\n"
msgstr "clave %08lX: certificado de revocaci�n no valido: %s - ignorado\n"
#: g10/import.c:936
#, c-format
msgid "key %08lX: duplicated user ID detected - merged\n"
msgstr "clave %08lX: detectado usuario duplicado - fusionada\n"
#: g10/import.c:987
#, c-format
msgid "key %08lX: revocation certificate added\n"
msgstr "clave %08lX: certificado de revocaci�n a�adido\n"
#: g10/import.c:1100 g10/import.c:1155
#, c-format
msgid "key %08lX: our copy has no self-signature\n"
msgstr "clave %08lX: nuestra copia no tiene autofirma\n"
#: g10/keyedit.c:93
#, c-format
msgid "%s: user not found\n"
msgstr "%s: usuario no encontrado\n"
#: g10/keyedit.c:154
msgid "[revocation]"
msgstr "[revocaci�n]"
#: g10/keyedit.c:155
msgid "[self-signature]"
msgstr "[autofirma]"
#: g10/keyedit.c:219
msgid "1 bad signature\n"
msgstr "1 firma incorrecta\n"
#: g10/keyedit.c:221
#, c-format
msgid "%d bad signatures\n"
msgstr "%d firmas incorrectas\n"
#: g10/keyedit.c:223
msgid "1 signature not checked due to a missing key\n"
msgstr "1 firma no comprobada por falta de clave\n"
#: g10/keyedit.c:225
#, c-format
msgid "%d signatures not checked due to missing keys\n"
msgstr "%d firmas no comprobadas por falta de clave\n"
#: g10/keyedit.c:227
msgid "1 signature not checked due to an error\n"
msgstr "1 firma no comprobada por causa de un error\n"
#: g10/keyedit.c:229
#, c-format
msgid "%d signatures not checked due to errors\n"
msgstr "%d firmas no comprobadas por causa de un error\n"
#: g10/keyedit.c:231
msgid "1 user id without valid self-signature detected\n"
msgstr "Detectado 1 identificativo de usuario sin autofirma v�lida\n"
#: g10/keyedit.c:233
#, c-format
msgid "%d user ids without valid self-signatures detected\n"
msgstr "Detectados %d identificativos de usuario sin autofirma v�lida\n"
#. Fixme: see whether there is a revocation in which
#. * case we should allow to sign it again.
#: g10/keyedit.c:313
#, c-format
msgid "Already signed by key %08lX\n"
msgstr "Ya firmada por la clave %08lX\n"
#: g10/keyedit.c:321
#, c-format
msgid "Nothing to sign with key %08lX\n"
msgstr "Nada que firmar con la clave %08lX\n"
#: g10/keyedit.c:330
msgid ""
"Are you really sure that you want to sign this key\n"
"with your key: \""
msgstr ""
"�Est� realmente seguro de querer firmar esta clave\n"
"con su clave: \""
#: g10/keyedit.c:339
msgid ""
"The signature will be marked as non-exportable.\n"
"\n"
msgstr ""
"La firma se marcar� como no exportable.\n"
"\n"
#: g10/keyedit.c:344
msgid "Really sign? "
msgstr "�Firmar de verdad? "
#: g10/keyedit.c:370 g10/keyedit.c:1832 g10/keyedit.c:1881 g10/sign.c:128
#, c-format
msgid "signing failed: %s\n"
msgstr "firma fallida: %s\n"
#: g10/keyedit.c:423
msgid "This key is not protected.\n"
msgstr "Esta clave no est� protegida.\n"
#: g10/keyedit.c:426
msgid "Key is protected.\n"
msgstr "La clave est� protegida.\n"
#: g10/keyedit.c:443
#, c-format
msgid "Can't edit this key: %s\n"
msgstr "No puede editarse esta clave: %s\n"
#: g10/keyedit.c:448
msgid ""
"Enter the new passphrase for this secret key.\n"
"\n"
msgstr ""
"Introduzca la nueva contrase�a para esta clave secreta.\n"
"\n"
#: g10/keyedit.c:460
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"\n"
msgstr ""
"No ha especificado contrase�a. Esto es probablemente una *mala* idea.\n"
"\n"
#: g10/keyedit.c:463
msgid "Do you really want to do this? "
msgstr "�Realmente quiere hacer esto? "
#: g10/keyedit.c:524
msgid "moving a key signature to the correct place\n"
msgstr "moviendo la firma de la clave al lugar correcto\n"
#: g10/keyedit.c:564
msgid "quit this menu"
msgstr "sale de este men�"
#: g10/keyedit.c:565
msgid "q"
msgstr ""
#: g10/keyedit.c:566
msgid "save"
msgstr ""
#: g10/keyedit.c:566
msgid "save and quit"
msgstr "graba y sale"
#: g10/keyedit.c:567
msgid "help"
msgstr ""
#: g10/keyedit.c:567
msgid "show this help"
msgstr "muestra esta ayuda"
#: g10/keyedit.c:569
msgid "fpr"
msgstr ""
#: g10/keyedit.c:569
msgid "show fingerprint"
msgstr "muestra huella dactilar"
#: g10/keyedit.c:570
msgid "list"
msgstr ""
#: g10/keyedit.c:570
msgid "list key and user ids"
msgstr "lista clave e identificativos de usuario"
#: g10/keyedit.c:571
msgid "l"
msgstr ""
#: g10/keyedit.c:572
msgid "uid"
msgstr ""
#: g10/keyedit.c:572
msgid "select user id N"
msgstr "selecciona identificativo de usuario N"
#: g10/keyedit.c:573
msgid "key"
msgstr ""
#: g10/keyedit.c:573
msgid "select secondary key N"
msgstr "selecciona clave secundaria N"
#: g10/keyedit.c:574
msgid "check"
msgstr ""
#: g10/keyedit.c:574
msgid "list signatures"
msgstr "lista firmas"
#: g10/keyedit.c:575
msgid "c"
msgstr ""
#: g10/keyedit.c:576
msgid "sign"
msgstr ""
#: g10/keyedit.c:576
msgid "sign the key"
msgstr "firma la clave"
#: g10/keyedit.c:577
msgid "s"
msgstr ""
#: g10/keyedit.c:578
#, fuzzy
msgid "lsign"
msgstr "firmando:"
#: g10/keyedit.c:578
msgid "sign the key locally"
msgstr "firma la clave localmente"
#: g10/keyedit.c:579
msgid "debug"
msgstr ""
#: g10/keyedit.c:580
msgid "adduid"
msgstr ""
#: g10/keyedit.c:580
msgid "add a user id"
msgstr "a�ade un identificativo de usuario"
#: g10/keyedit.c:581
msgid "deluid"
msgstr ""
#: g10/keyedit.c:581
msgid "delete user id"
msgstr "borra un identificativo de usuario"
#: g10/keyedit.c:582
msgid "addkey"
msgstr ""
#: g10/keyedit.c:582
msgid "add a secondary key"
msgstr "a�ade una clave secundaria"
#: g10/keyedit.c:583
msgid "delkey"
msgstr ""
#: g10/keyedit.c:583
msgid "delete a secondary key"
msgstr "borra una clave secundaria"
#: g10/keyedit.c:584
#, fuzzy
msgid "delsig"
msgstr "firmando:"
#: g10/keyedit.c:584
#, fuzzy
msgid "delete signatures"
msgstr "lista firmas"
#: g10/keyedit.c:585
msgid "expire"
msgstr ""
#: g10/keyedit.c:585
msgid "change the expire date"
msgstr "cambia fecha de caducidad"
#: g10/keyedit.c:586
msgid "toggle"
msgstr ""
#: g10/keyedit.c:586
msgid "toggle between secret and public key listing"
msgstr "cambia entre lista de claves secretas y p�blicas"
#: g10/keyedit.c:588
msgid "t"
msgstr ""
#: g10/keyedit.c:589
msgid "pref"
msgstr ""
#: g10/keyedit.c:589
msgid "list preferences"
msgstr "muestra preferencias"
#: g10/keyedit.c:590
msgid "passwd"
msgstr ""
#: g10/keyedit.c:590
msgid "change the passphrase"
msgstr "cambia la contrase�a"
#: g10/keyedit.c:591
msgid "trust"
msgstr ""
#: g10/keyedit.c:591
msgid "change the ownertrust"
msgstr "cambia valores de confianza"
#: g10/keyedit.c:592
msgid "revsig"
msgstr ""
#: g10/keyedit.c:592
msgid "revoke signatures"
msgstr "revoca firmas"
#: g10/keyedit.c:593
msgid "revkey"
msgstr ""
#: g10/keyedit.c:593
msgid "revoke a secondary key"
msgstr "revoca una clave secundaria"
#: g10/keyedit.c:594
msgid "disable"
msgstr ""
#: g10/keyedit.c:594
#, fuzzy
msgid "disable a key"
msgstr "Clave incorrecta"
#: g10/keyedit.c:595
msgid "enable"
msgstr ""
#: g10/keyedit.c:595
#, fuzzy
msgid "enable a key"
msgstr "Clave incorrecta"
#: g10/keyedit.c:614
msgid "can't do that in batchmode\n"
msgstr "imposible hacer esto en modo de proceso por lotes\n"
#. check that they match
#. fixme: check that they both match
#: g10/keyedit.c:652
msgid "Secret key is available.\n"
msgstr "Clave secreta disponible.\n"
#: g10/keyedit.c:681
msgid "Command> "
msgstr "Comando> "
#: g10/keyedit.c:711
msgid "Need the secret key to do this.\n"
msgstr "Se necesita la clave secreta para hacer esto.\n"
#: g10/keyedit.c:758
msgid "Really sign all user ids? "
msgstr "�Firmar realmente todos los identificativos de usuario? "
#: g10/keyedit.c:759
msgid "Hint: Select the user ids to sign\n"
msgstr "Sugerencia: seleccione los identificativos de usuario a firmar\n"
#: g10/keyedit.c:786 g10/keyedit.c:968
#, c-format
msgid "update of trustdb failed: %s\n"
msgstr "actualizaci�n de confianza fallida: %s\n"
#: g10/keyedit.c:797 g10/keyedit.c:818
msgid "You must select at least one user id.\n"
msgstr "Debe seleccionar por lo menos un identificativo de usuario.\n"
#: g10/keyedit.c:799
msgid "You can't delete the last user id!\n"
msgstr "�No puede borrar el �ltimo identificativo de usuario!\n"
#: g10/keyedit.c:802
msgid "Really remove all selected user ids? "
msgstr "�Borrar realmente todos los identificativos seleccionados? "
#: g10/keyedit.c:803
msgid "Really remove this user id? "
msgstr "�Borrar realmente este identificativo? "
#: g10/keyedit.c:839 g10/keyedit.c:861
msgid "You must select at least one key.\n"
msgstr "Debe seleccionar por lo menos una clave.\n"
#: g10/keyedit.c:843
msgid "Do you really want to delete the selected keys? "
msgstr "�Borrar realmente las claves seleccionadas? "
#: g10/keyedit.c:844
msgid "Do you really want to delete this key? "
msgstr "�Borrar realmente esta clave? "
#: g10/keyedit.c:865
msgid "Do you really want to revoke the selected keys? "
msgstr "�Revocar realmente las claves seleccionadas? "
#: g10/keyedit.c:866
msgid "Do you really want to revoke this key? "
msgstr "�Revocar realmente esta clave? "
#: g10/keyedit.c:932
msgid "Save changes? "
msgstr "�Grabar cambios? "
#: g10/keyedit.c:935
msgid "Quit without saving? "
msgstr "�Salir sin grabar? "
#: g10/keyedit.c:946
#, c-format
msgid "update failed: %s\n"
msgstr "actualizaci�n fallida: %s\n"
#: g10/keyedit.c:953
#, c-format
msgid "update secret failed: %s\n"
msgstr "actualizaci�n de la clave secreta fallida: %s\n"
#: g10/keyedit.c:960
msgid "Key not changed so no update needed.\n"
msgstr "Clave sin cambios, no se necesita actualizaci�n.\n"
#: g10/keyedit.c:975
msgid "Invalid command (try \"help\")\n"
msgstr "Comando no v�lido (pruebe \"help\")\n"
#: g10/keyedit.c:1065
#, fuzzy
msgid "This key has been disabled"
msgstr "Nota: �Esta clave est� caducada!\n"
#: g10/keyedit.c:1336
msgid "Delete this good signature? (y/N/q)"
msgstr ""
#: g10/keyedit.c:1340
msgid "Delete this invalid signature? (y/N/q)"
msgstr ""
#: g10/keyedit.c:1344
msgid "Delete this unknown signature? (y/N/q)"
msgstr ""
#: g10/keyedit.c:1350
#, fuzzy
msgid "Really delete this self-signature? (y/N)"
msgstr "�Crear los certificados de revocaci�n realmente? (s/N)"
#: g10/keyedit.c:1364
#, fuzzy, c-format
msgid "Deleted %d signature.\n"
msgstr "%d firmas incorrectas\n"
#: g10/keyedit.c:1365
#, fuzzy, c-format
msgid "Deleted %d signatures.\n"
msgstr "%d firmas incorrectas\n"
#: g10/keyedit.c:1368
#, fuzzy
msgid "Nothing deleted.\n"
msgstr "ATENCI�N: no se ha exportado nada\n"
#: g10/keyedit.c:1437
msgid "Please remove selections from the secret keys.\n"
msgstr "Por favor, quite la selecci�n de las claves secretas.\n"
#: g10/keyedit.c:1443
msgid "Please select at most one secondary key.\n"
msgstr "Por favor, seleccione como m�ximo una clave secundaria.\n"
#: g10/keyedit.c:1447
#, fuzzy
msgid "Changing expiration time for a secondary key.\n"
msgstr "Cambiando caducidad de clave secundaria.\n"
#: g10/keyedit.c:1449
#, fuzzy
msgid "Changing expiration time for the primary key.\n"
msgstr "Cambiando caducidad de clave primaria.\n"
#: g10/keyedit.c:1490
msgid "You can't change the expiration date of a v3 key\n"
msgstr "No puede cambiar la fecha de caducidad de una clave v3\n"
#: g10/keyedit.c:1506
msgid "No corresponding signature in secret ring\n"
msgstr "No hay firma correspondiente en anillo secreto\n"
#: g10/keyedit.c:1566
#, c-format
msgid "No user id with index %d\n"
msgstr "No hay ning�n identificativo de usuario con el �ndice %d\n"
#: g10/keyedit.c:1612
#, c-format
msgid "No secondary key with index %d\n"
msgstr "No hay ninguna clave secundaria con el �ndice %d\n"
#: g10/keyedit.c:1710
msgid "user ID: \""
msgstr "ID de usuario: \""
#: g10/keyedit.c:1713
#, c-format
msgid ""
"\"\n"
"signed with your key %08lX at %s\n"
msgstr ""
"\"\n"
"firmada con su clave %08lX el %s\n"
#: g10/keyedit.c:1717
msgid "Create a revocation certificate for this signature? (y/N)"
msgstr "�Crear un certificado de revocaci�n para esta clave (s/N)?"
#: g10/keyedit.c:1797
msgid "Really create the revocation certificates? (y/N)"
msgstr "�Crear los certificados de revocaci�n realmente? (s/N)"
#: g10/keyedit.c:1820
msgid "no secret key\n"
msgstr "no hay clave secreta\n"
#: g10/mainproc.c:213
#, c-format
msgid "public key is %08lX\n"
msgstr "la clave p�blica es %08lX\n"
#: g10/mainproc.c:244
msgid "public key encrypted data: good DEK\n"
msgstr "datos cifrados de la clave p�blica: DEK bueno\n"
#: g10/mainproc.c:275
#, fuzzy, c-format
msgid "encrypted with %u-bit %s key, ID %08lX, created %s\n"
msgstr "clave %2$s de %1$u bits, ID %3$08lX, creada el %4$s"
#: g10/mainproc.c:285
#, fuzzy, c-format
msgid "encrypted with %s key, ID %08lX\n"
msgstr "Firma creada %.*s usando identificativo de clave %s %08lX\n"
#: g10/mainproc.c:291
#, fuzzy
msgid "no secret key for decryption available\n"
msgstr "Clave secreta no disponible"
#: g10/mainproc.c:293
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "descifrado de la clave p�blica fallido: %s\n"
#: g10/mainproc.c:323
msgid "decryption okay\n"
msgstr "descifrado correcto\n"
#: g10/mainproc.c:328
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "ATENCI�N: �el mensaje cifrado ha sido manipulado!\n"
#: g10/mainproc.c:333
#, c-format
msgid "decryption failed: %s\n"
msgstr "descifrado fallido: %s\n"
#: g10/mainproc.c:351
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "NOTA: el remitente solicit� \"s�lo-para-tus-ojos\"\n"
#: g10/mainproc.c:353
#, c-format
msgid "original file name='%.*s'\n"
msgstr "nombre fichero original='%.*s'\n"
#: g10/mainproc.c:580 g10/mainproc.c:589
#, fuzzy
msgid "WARNING: invalid notation data found\n"
msgstr "no se han encontrados datos OpenPGP v�lidos\n"
#: g10/mainproc.c:592
msgid "Notation: "
msgstr ""
#: g10/mainproc.c:599
msgid "Policy: "
msgstr ""
#: g10/mainproc.c:1018
msgid "signature verification suppressed\n"
msgstr "suprimida la verificaci�n de la firma\n"
#: g10/mainproc.c:1024
#, c-format
msgid "Signature made %.*s using %s key ID %08lX\n"
msgstr "Firma creada %.*s usando identificativo de clave %s %08lX\n"
#. just in case that we have no userid
#: g10/mainproc.c:1050 g10/mainproc.c:1061
msgid "BAD signature from \""
msgstr "Firma INCORRECTA de \""
#: g10/mainproc.c:1051 g10/mainproc.c:1062
msgid "Good signature from \""
msgstr "Firma correcta de \""
#: g10/mainproc.c:1053
msgid " aka \""
msgstr "tambi�n conocido como \""
#: g10/mainproc.c:1104
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Imposible comprobar la firma: %s\n"
#: g10/mainproc.c:1198
msgid "old style (PGP 2.x) signature\n"
msgstr "firma viejo estilo (PGP 2.x)\n"
#: g10/mainproc.c:1203
msgid "invalid root packet detected in proc_tree()\n"
msgstr "paquete ra�z no v�lido detectado en proc_tree()\n"
#: g10/misc.c:93
#, c-format
msgid "can't disable core dumps: %s\n"
msgstr "no se pueden desactivar los core dumps: %s\n"
#: g10/misc.c:96
msgid "WARNING: program may create a core file!\n"
msgstr "ATENCI�N: �el programa podr�a crear un fichero core dump!\n"
#: g10/misc.c:203
msgid "Experimental algorithms should not be used!\n"
msgstr "�No se deber�an usar algoritmos experimentales!\n"
#: g10/misc.c:217
msgid ""
"RSA keys are deprecated; please consider creating a new key and use this key "
"in the future\n"
msgstr ""
"Las claves RSA est�n en desuso, considere la creaci�n de una nueva clave "
"para futuros usos\n"
#: g10/misc.c:239
msgid "this cipher algorithm is depreciated; please use a more standard one!\n"
msgstr ""
"este algoritmo de cifrado est� en desuso, considere el uso de uno m�s "
"est�ndar.\n"
#: g10/parse-packet.c:113
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "no puedo manejar el algoritmo de clave p�blica %d\n"
#: g10/parse-packet.c:932
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "el subpaquete de tipo %d tiene el bit cr�tico activado\n"
#: g10/passphrase.c:159
msgid ""
"\n"
"You need a passphrase to unlock the secret key for\n"
"user: \""
msgstr ""
"\n"
"Necesita una contrase�a para desbloquear la clave secreta\n"
"del usuario: \""
#: g10/passphrase.c:168
#, c-format
msgid "%u-bit %s key, ID %08lX, created %s"
msgstr "clave %2$s de %1$u bits, ID %3$08lX, creada el %4$s"
#: g10/passphrase.c:173
#, c-format
msgid " (main key ID %08lX)"
msgstr "(ID clave primaria %08lX)"
#: g10/passphrase.c:190
#, fuzzy
msgid "can't query password in batchmode\n"
msgstr "imposible hacer esto en modo de proceso por lotes\n"
#: g10/passphrase.c:194
msgid "Enter passphrase: "
msgstr "Introduzca contrase�a: "
#: g10/passphrase.c:198
msgid "Repeat passphrase: "
msgstr "Repita contrase�a: "
#: g10/plaintext.c:63
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "datos no grabados; use la opci�n \"--output\" para grabarlos\n"
#: g10/plaintext.c:266
msgid "Please enter name of data file: "
msgstr "Introduzca el nombre del fichero de datos: "
#: g10/plaintext.c:287
msgid "reading stdin ...\n"
msgstr "leyendo stdin...\n"
#: g10/plaintext.c:360
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "imposible abrir datos firmados `%s'\n"
#: g10/pubkey-enc.c:79
#, c-format
msgid "anonymous receiver; trying secret key %08lX ...\n"
msgstr "destinatario an�nimo, probando clave secreta %08lX ...\n"
#: g10/pubkey-enc.c:85
msgid "okay, we are the anonymous recipient.\n"
msgstr "de acuerdo, somos el destinatario an�nimo.\n"
#: g10/pubkey-enc.c:137
msgid "old encoding of the DEK is not supported\n"
msgstr "la codificaci�n vieja de DEK no est� soportada\n"
#: g10/pubkey-enc.c:191
#, c-format
msgid "NOTE: cipher algorithm %d not found in preferences\n"
msgstr "NOTA: algoritmo de cifrado %d no encontrado en las preferencias\n"
#: g10/seckey-cert.c:55
#, c-format
msgid "protection algorithm %d is not supported\n"
msgstr "el algoritmo de protecci�n %d no est� soportado\n"
#: g10/seckey-cert.c:171
msgid "Invalid passphrase; please try again ...\n"
msgstr "Contrase�a incorrecta, int�ntelo de nuevo...\n"
#: g10/seckey-cert.c:227
msgid "WARNING: Weak key detected - please change passphrase again.\n"
msgstr "ATENCI�N: detectada clave d�bil - por favor cambie la contrase�a.\n"
#: g10/sig-check.c:199
msgid "assuming bad MDC due to an unknown critical bit\n"
msgstr "asumiendo firma mala debido a un bit cr�tico desconocido\n"
#: g10/sig-check.c:295
msgid ""
"this is a PGP generated ElGamal key which is NOT secure for signatures!\n"
msgstr ""
"�esto es una clave ElGamal generada por PGP que NO es segura para las "
"firmas!\n"
#: g10/sig-check.c:303
#, c-format
msgid "public key is %lu second newer than the signature\n"
msgstr "la clave p�blica es %lu segundos m�s nueva que la firma\n"
#: g10/sig-check.c:304
#, c-format
msgid "public key is %lu seconds newer than the signature\n"
msgstr "la clave p�blica es %lu segundos m�s nueva que la firma\n"
#: g10/sig-check.c:320
#, c-format
msgid "NOTE: signature key expired %s\n"
msgstr "NOTA: clave de la firma caducada el %s\n"
#: g10/sig-check.c:377
msgid "assuming bad signature due to an unknown critical bit\n"
msgstr "asumiendo firma mala debido a un bit cr�tico desconocido\n"
#: g10/sign.c:132
#, c-format
msgid "%s signature from: %s\n"
msgstr "firma %s de %s\n"
#: g10/sign.c:263 g10/sign.c:554
#, c-format
msgid "can't create %s: %s\n"
msgstr "no puede crearse %s: %s\n"
#: g10/sign.c:361
msgid "signing:"
msgstr "firmando:"
#: g10/sign.c:401
#, c-format
msgid "WARNING: `%s' is an empty file\n"
msgstr "ATENCI�N `%s' es un fichero vac�o\n"
#: g10/textfilter.c:128
#, c-format
msgid "can't handle text lines longer than %d characters\n"
msgstr "no se pueden manejar l�neas de texto de m�s de %d caracteres\n"
#: g10/textfilter.c:197
#, c-format
msgid "input line longer than %d characters\n"
msgstr "l�nea de longitud superior a %d caracteres\n"
#: g10/tdbio.c:116 g10/tdbio.c:1634
#, c-format
msgid "trustdb rec %lu: lseek failed: %s\n"
msgstr "registro base de datos de confianza %lu: lseek fallido: %s\n"
#: g10/tdbio.c:122 g10/tdbio.c:1641
#, c-format
msgid "trustdb rec %lu: write failed (n=%d): %s\n"
msgstr ""
"resgisto base de datos de confianza %lu: escritura fallida (n=%d): %s\n"
#: g10/tdbio.c:232
msgid "trustdb transaction too large\n"
msgstr "transacci�n en la base de datos de confianza demasiado grande\n"
#: g10/tdbio.c:424
#, c-format
msgid "%s: can't access: %s\n"
msgstr "%s: no puede abrirse: %s\n"
#: g10/ringedit.c:296 g10/tdbio.c:444
#, c-format
msgid "%s: can't create directory: %s\n"
msgstr "%s: no puede crearse el directorio: %s\n"
#: g10/ringedit.c:302 g10/tdbio.c:447
#, c-format
msgid "%s: directory created\n"
msgstr "%s: directorio creado\n"
#: g10/tdbio.c:451
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: �el directorio no existe!\n"
#: g10/openfile.c:182 g10/openfile.c:253 g10/ringedit.c:1344 g10/tdbio.c:457
#, c-format
msgid "%s: can't create: %s\n"
msgstr "%s: no puede crearse: %s\n"
#: g10/tdbio.c:472 g10/tdbio.c:521
#, c-format
msgid "%s: can't create lock\n"
msgstr "%s: no puede crearse bloqueo\n"
#: g10/tdbio.c:486
#, c-format
msgid "%s: failed to create version record: %s"
msgstr "%s: fallo en la creaci�n del registro de versi�n: %s"
#: g10/tdbio.c:490
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: se ha creado base de datos de confianza no v�lida\n"
#: g10/tdbio.c:493
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: se ha creado base de datos de confianza\n"
#: g10/tdbio.c:530
#, c-format
msgid "%s: invalid trustdb\n"
msgstr "%s: base de datos de confianza no v�lida\n"
#: g10/tdbio.c:563
#, c-format
msgid "%s: failed to create hashtable: %s\n"
msgstr "%s: fallo en la creaci�n de la tabla hash: %s\n"
#: g10/tdbio.c:571
#, c-format
msgid "%s: error updating version record: %s\n"
msgstr "%s: error actualizando el registro de versi�n: %s\n"
#: g10/tdbio.c:587 g10/tdbio.c:626 g10/tdbio.c:648 g10/tdbio.c:678
#: g10/tdbio.c:703 g10/tdbio.c:1567 g10/tdbio.c:1594
#, c-format
msgid "%s: error reading version record: %s\n"
msgstr "%s: error leyendo registro de versi�n: %s\n"
#: g10/tdbio.c:600 g10/tdbio.c:659
#, c-format
msgid "%s: error writing version record: %s\n"
msgstr "%s: error escribiendo registro de versi�n: %s\n"
#: g10/tdbio.c:1246
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "base de datos de confianza: fallo lseek: %s\n"
#: g10/tdbio.c:1254
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "base de datos de confianza: error lectura (n=%d): %s\n"
#: g10/tdbio.c:1275
#, c-format
msgid "%s: not a trustdb file\n"
msgstr "%s: no es una base de datos de confianza\n"
#: g10/tdbio.c:1291
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: registro de versi�n con n�mero de registro %lu\n"
#: g10/tdbio.c:1296
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: versi�n del fichero %d no v�lida\n"
#: g10/tdbio.c:1600
#, c-format
msgid "%s: error reading free record: %s\n"
msgstr "%s: error leyendo registro libre: %s\n"
#: g10/tdbio.c:1608
#, c-format
msgid "%s: error writing dir record: %s\n"
msgstr "%s: error escribiendo registro de directorio: %s\n"
#: g10/tdbio.c:1618
#, c-format
msgid "%s: failed to zero a record: %s\n"
msgstr "%s: fallo en poner a cero un registro: %s\n"
#: g10/tdbio.c:1648
#, c-format
msgid "%s: failed to append a record: %s\n"
msgstr "%s: fallo al a�adir un registro: %s\n"
#: g10/tdbio.c:1759
#, fuzzy
msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
msgstr ""
"La base de datos de confianza est� da�ada. Por favor, ejecute\n"
"\"gpgm --fix-trust-db\".\n"
#: g10/trustdb.c:160
#, c-format
msgid "trust record %lu, req type %d: read failed: %s\n"
msgstr "registro de confianza %lu, petici�n tipo %d: fallo lectura: %s\n"
#: g10/trustdb.c:175
#, c-format
msgid "trust record %lu, type %d: write failed: %s\n"
msgstr "registro de confianza %lu, tipo %d: fallo escritura: %s\n"
#: g10/trustdb.c:189
#, c-format
msgid "trust record %lu: delete failed: %s\n"
msgstr "registro de confianza %lu: fallo al borrar: %s\n"
#: g10/trustdb.c:203
#, c-format
msgid "trustdb: sync failed: %s\n"
msgstr "base de datos de confianza: fallo sincronizaci�n: %s\n"
#: g10/trustdb.c:347
#, c-format
msgid "error reading dir record for LID %lu: %s\n"
msgstr "error leyendo registro de directorio del LID %lu: %s\n"
#: g10/trustdb.c:354
#, c-format
msgid "lid %lu: expected dir record, got type %d\n"
msgstr "lid %lu: esperaba registro directorio, encontrado tipo %d\n"
#: g10/trustdb.c:359
#, c-format
msgid "no primary key for LID %lu\n"
msgstr "no hay clave primaria para el LID %lu\n"
#: g10/trustdb.c:364
#, c-format
msgid "error reading primary key for LID %lu: %s\n"
msgstr "error leyendo clave primaria para el LID %lu: %s\n"
#: g10/trustdb.c:403
#, c-format
msgid "get_dir_record: search_record failed: %s\n"
msgstr "get_dir_record: search_record fallida: %s\n"
#: g10/trustdb.c:458
#, c-format
msgid "NOTE: secret key %08lX is NOT protected.\n"
msgstr "NOTA: la clave secreta %08lX NO est� protegida.\n"
#: g10/trustdb.c:466
#, c-format
msgid "key %08lX: secret key without public key - skipped\n"
msgstr "clave %08lX: clave secreta sin clave p�blica - ignorada\n"
#: g10/trustdb.c:473
#, c-format
msgid "key %08lX: secret and public key don't match\n"
msgstr "clave %08lX: las claves p�blica y secreta no se corresponden\n"
#: g10/trustdb.c:485
#, c-format
msgid "key %08lX: can't put it into the trustdb\n"
msgstr "clave %08lX: imposible incluirla en la base de datos de confianza\n"
#: g10/trustdb.c:491
#, c-format
msgid "key %08lX: query record failed\n"
msgstr "clave %08lX: petici�n de registro fallida\n"
#: g10/trustdb.c:500
#, c-format
msgid "key %08lX: already in trusted key table\n"
msgstr "clave %08lX: ya est� en la tabla de confianza\n"
#: g10/trustdb.c:503
#, c-format
msgid "key %08lX: accepted as trusted key.\n"
msgstr "clave %08lX: aceptada como clave de confianza.\n"
#: g10/trustdb.c:511
#, c-format
msgid "enumerate secret keys failed: %s\n"
msgstr "enum_secret_keys fallido: %s\n"
#: g10/trustdb.c:802
#, fuzzy, c-format
msgid "tdbio_search_sdir failed: %s\n"
msgstr "tdbio_search_dir fallida: %s\n"
#: g10/trustdb.c:877
#, c-format
msgid "key %08lX.%lu: Good subkey binding\n"
msgstr "clave %08lX.%lu: buena uni�n de subclave\n"
#: g10/trustdb.c:883 g10/trustdb.c:918
#, c-format
msgid "key %08lX.%lu: Invalid subkey binding: %s\n"
msgstr "clave %08lX.%lu: uni�n de subclave no v�lida\n"
#: g10/trustdb.c:895
#, c-format
msgid "key %08lX.%lu: Valid key revocation\n"
msgstr "clave %08lX.%lu: revocaci�n de clave v�lida\n"
#: g10/trustdb.c:901
#, c-format
msgid "key %08lX.%lu: Invalid key revocation: %s\n"
msgstr "clave %08lX.%lu: revocaci�n de clave no v�lida: %s\n"
#: g10/trustdb.c:912
#, c-format
msgid "key %08lX.%lu: Valid subkey revocation\n"
msgstr "clave %08lX.%lu: revocaci�n de subclave v�lida\n"
#: g10/trustdb.c:1023
msgid "Good self-signature"
msgstr "Autofirma buena"
#: g10/trustdb.c:1033
msgid "Invalid self-signature"
msgstr "Autofirma no v�lida"
#: g10/trustdb.c:1060
#, fuzzy
msgid "Valid user ID revocation skipped due to a newer self signature"
msgstr ""
"Revocaci�n v�lida de identificativo de usuario ignorada debido a una "
"autofirma m�s reciente\n"
#: g10/trustdb.c:1066
#, fuzzy
msgid "Valid user ID revocation"
msgstr "Revocaci�n identificativo de usuario v�lida.\n"
#: g10/trustdb.c:1071
msgid "Invalid user ID revocation"
msgstr "Revocaci�n identificativo de usuario no v�lida."
#: g10/trustdb.c:1112
msgid "Valid certificate revocation"
msgstr "Revocaci�n de certificado v�lida"
#: g10/trustdb.c:1113
msgid "Good certificate"
msgstr "Certificado bueno"
#: g10/trustdb.c:1134
msgid "Invalid certificate revocation"
msgstr "Certificado de revocaci�n incorrecto"
#: g10/trustdb.c:1135
msgid "Invalid certificate"
msgstr "Certificado incorrecto"
#: g10/trustdb.c:1152 g10/trustdb.c:1156
#, c-format
msgid "sig record %lu[%d] points to wrong record.\n"
msgstr "registro de firma %lu[%d] apunta al registro equivocado.\n"
#: g10/trustdb.c:1208
msgid "duplicated certificate - deleted"
msgstr "certificado duplicado - eliminado"
#: g10/trustdb.c:1514
#, c-format
msgid "tdbio_search_dir failed: %s\n"
msgstr "tdbio_search_dir fallida: %s\n"
#: g10/trustdb.c:1636
#, c-format
msgid "lid ?: insert failed: %s\n"
msgstr "lid ?: inserci�n fallida: %s\n"
#: g10/trustdb.c:1641
#, c-format
msgid "lid %lu: insert failed: %s\n"
msgstr "lid %lu: inserci�n fallida: %s\n"
#: g10/trustdb.c:1647
#, c-format
msgid "lid %lu: inserted\n"
msgstr "lid %lu: insertada\n"
#: g10/trustdb.c:1652
#, fuzzy, c-format
msgid "error reading dir record: %s\n"
msgstr "error buscando registro de directorio: %s\n"
#: g10/trustdb.c:1660 g10/trustdb.c:1714
#, c-format
msgid "%lu keys processed\n"
msgstr "se han procesado %lu claves\n"
#: g10/trustdb.c:1662 g10/trustdb.c:1718
#, c-format
msgid "\t%lu keys with errors\n"
msgstr "\t%lu claves con errores\n"
#: g10/trustdb.c:1664
#, c-format
msgid "\t%lu keys inserted\n"
msgstr "\t%lu claves insertadas\n"
#: g10/trustdb.c:1667
#, c-format
msgid "enumerate keyblocks failed: %s\n"
msgstr "enumeraci�n bloques de clave fallido: %s\n"
#: g10/trustdb.c:1705
#, c-format
msgid "lid %lu: dir record w/o key - skipped\n"
msgstr "lid %lu: registro de directiorio sin clave - ignorado\n"
#: g10/trustdb.c:1716
#, c-format
msgid "\t%lu keys skipped\n"
msgstr "\t%lu claves ignoradas\n"
#: g10/trustdb.c:1720
#, c-format
msgid "\t%lu keys updated\n"
msgstr "\t%lu claves actualizadas\n"
#: g10/trustdb.c:2057
msgid "Ooops, no keys\n"
msgstr "Oh oh, no hay claves\n"
#: g10/trustdb.c:2061
msgid "Ooops, no user ids\n"
msgstr "Oh oh, no hay identificativos de usuario\n"
#: g10/trustdb.c:2218
#, c-format
msgid "check_trust: search dir record failed: %s\n"
msgstr "check_trust: b�squeda registro directorio fallida: %s\n"
#: g10/trustdb.c:2227
#, c-format
msgid "key %08lX: insert trust record failed: %s\n"
msgstr "clave %08lX: inserci�n del registro de confianza fallida: %s\n"
#: g10/trustdb.c:2231
#, c-format
msgid "key %08lX.%lu: inserted into trustdb\n"
msgstr "clave %08lX.%lu: incluida en la base de datos de confianza\n"
#: g10/trustdb.c:2239
#, c-format
msgid "key %08lX.%lu: created in future (time warp or clock problem)\n"
msgstr ""
"clave %08lX.%lu: creada en el futuro (salto en el tiempo o\n"
"problemas con el reloj)\n"
#: g10/trustdb.c:2248
#, c-format
msgid "key %08lX.%lu: expired at %s\n"
msgstr "clave %08lX.%lu: caducada el %s\n"
#: g10/trustdb.c:2256
#, c-format
msgid "key %08lX.%lu: trust check failed: %s\n"
msgstr "clave %08lX.%lu: comprobaci�n de confianza fallida: %s\n"
#: g10/trustdb.c:2362
#, c-format
msgid "user '%s' not found: %s\n"
msgstr "usuario '%s' no encontrado: %s\n"
#: g10/trustdb.c:2364
#, c-format
msgid "problem finding '%s' in trustdb: %s\n"
msgstr "problema buscando '%s' en la tabla de confianza: %s\n"
#: g10/trustdb.c:2367
#, c-format
msgid "user '%s' not in trustdb - inserting\n"
msgstr "usuario '%s' no est� en la tabla de confianza - insertando\n"
#: g10/trustdb.c:2370
#, c-format
msgid "failed to put '%s' into trustdb: %s\n"
msgstr "fallo al poner '%s' en la tabla de confianza: %s\n"
#: g10/trustdb.c:2556 g10/trustdb.c:2586
msgid "WARNING: can't yet handle long pref records\n"
msgstr "ATENC�ON: todav�a no puedo tratar registros de preferencias largos\n"
#: g10/ringedit.c:316
#, c-format
msgid "%s: can't create keyring: %s\n"
msgstr "%s: no se puede crear el anillo: %s\n"
#: g10/ringedit.c:333 g10/ringedit.c:1349
#, c-format
msgid "%s: keyring created\n"
msgstr "%s: anillo creado\n"
#: g10/ringedit.c:1526
msgid "WARNING: 2 files with confidential information exists.\n"
msgstr "ATENCI�N: existen 2 ficheros con informaci�n confidencial.\n"
#: g10/ringedit.c:1527
#, c-format
msgid "%s is the unchanged one\n"
msgstr "%s es el que no se ha modificado\n"
#: g10/ringedit.c:1528
#, c-format
msgid "%s is the new one\n"
msgstr "%s es el nuevo\n"
#: g10/ringedit.c:1529
msgid "Please fix this possible security flaw\n"
msgstr "Por favor arregle este posible fallo de seguridad\n"
#: g10/skclist.c:88 g10/skclist.c:125
msgid "key is not flagged as insecure - can't use it with the faked RNG!\n"
msgstr ""
#: g10/skclist.c:113
#, c-format
msgid "skipped `%s': %s\n"
msgstr "`%s' ignorado: %s\n"
#: g10/skclist.c:119
#, c-format
msgid ""
"skipped `%s': this is a PGP generated ElGamal key which is not secure for "
"signatures!\n"
msgstr ""
"`%s' ignorada: esta es una clave ElGamal generada por PGP que NO es segura "
"para las firmas\n"
#. do not overwrite
#: g10/openfile.c:65
#, c-format
msgid "File `%s' exists. "
msgstr "El fichero `%s' ya existe. "
#: g10/openfile.c:67
msgid "Overwrite (y/N)? "
msgstr "�Sobreescribir (s/N)? "
#: g10/openfile.c:97
#, c-format
msgid "%s: unknown suffix\n"
msgstr ""
#: g10/openfile.c:119
#, fuzzy
msgid "Enter new filename"
msgstr "--store [nombre_fichero]"
#: g10/openfile.c:160
msgid "writing to stdout\n"
msgstr "escribiendo en stdout\n"
#: g10/openfile.c:219
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "asumiendo que hay datos firmados en `%s'\n"
#: g10/openfile.c:269
#, c-format
msgid "%s: new options file created\n"
msgstr "%s: se ha creado un nuevo fichero de opciones\n"
#: g10/encr-data.c:66
#, c-format
msgid "%s encrypted data\n"
msgstr "datos cifrados %s\n"
#: g10/encr-data.c:68
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "cifrado con algoritmo desconocido %d\n"
#: g10/encr-data.c:85
msgid ""
"WARNING: message was encrypted with a weak key in the symmetric cipher.\n"
msgstr ""
"ATENCI�N: mensaje cifrado con una clave d�bil en el cifrado sim�trico.\n"
#: g10/seskey.c:52
msgid "weak key created - retrying\n"
msgstr "creada clave d�bil - reintentando\n"
#: g10/seskey.c:57
#, c-format
msgid "cannot avoid weak key for symmetric cipher; tried %d times!\n"
msgstr ""
"�imposible evitar clave d�bil para cifrado sim�trico despu�s de %d "
"intentos!\n"
#. begin of list
#: g10/helptext.c:48
msgid "edit_ownertrust.value"
msgstr ""
#: g10/helptext.c:54
msgid "revoked_key.override"
msgstr ""
#: g10/helptext.c:58
msgid "untrusted_key.override"
msgstr ""
#: g10/helptext.c:62
msgid "pklist.user_id.enter"
msgstr ""
#: g10/helptext.c:66
msgid "keygen.algo"
msgstr ""
#: g10/helptext.c:82
msgid "keygen.algo.elg_se"
msgstr ""
#: g10/helptext.c:89
msgid "keygen.size"
msgstr ""
#: g10/helptext.c:93
msgid "keygen.size.huge.okay"
msgstr ""
#: g10/helptext.c:98
msgid "keygen.size.large.okay"
msgstr ""
#: g10/helptext.c:103
msgid "keygen.valid"
msgstr ""
#: g10/helptext.c:110
msgid "keygen.valid.okay"
msgstr ""
#: g10/helptext.c:115
msgid "keygen.name"
msgstr ""
#: g10/helptext.c:120
msgid "keygen.email"
msgstr ""
#: g10/helptext.c:124
msgid "keygen.comment"
msgstr ""
#: g10/helptext.c:129
msgid "keygen.userid.cmd"
msgstr ""
#: g10/helptext.c:138
msgid "keygen.sub.okay"
msgstr ""
#: g10/helptext.c:142
msgid "sign_uid.okay"
msgstr ""
#: g10/helptext.c:147
msgid "change_passwd.empty.okay"
msgstr ""
#: g10/helptext.c:152
msgid "keyedit.save.okay"
msgstr ""
#: g10/helptext.c:157
msgid "keyedit.cancel.okay"
msgstr ""
#: g10/helptext.c:161
msgid "keyedit.sign_all.okay"
msgstr ""
#: g10/helptext.c:165
msgid "keyedit.remove.uid.okay"
msgstr ""
#: g10/helptext.c:170
msgid "keyedit.remove.subkey.okay"
msgstr ""
#: g10/helptext.c:175
msgid "keyedit.delsig.valid"
msgstr ""
#: g10/helptext.c:180
msgid "keyedit.delsig.unknown"
msgstr ""
#: g10/helptext.c:186
msgid "keyedit.delsig.invalid"
msgstr ""
#: g10/helptext.c:190
msgid "keyedit.delsig.selfsig"
msgstr ""
#: g10/helptext.c:199
msgid "passphrase.enter"
msgstr ""
#: g10/helptext.c:206
msgid "passphrase.repeat"
msgstr ""
#: g10/helptext.c:210
msgid "detached_signature.filename"
msgstr ""
#. openfile.c (overwrite_filep)
#: g10/helptext.c:215
msgid "openfile.overwrite.okay"
msgstr ""
#. openfile.c (ask_outfile_name)
#: g10/helptext.c:220
msgid "openfile.askoutname"
msgstr ""
#: g10/helptext.c:235
msgid "No help available"
msgstr "Ayuda no disponible"
#: g10/helptext.c:247
#, c-format
msgid "No help available for `%s'"
msgstr "Ayuda no disponible para `%s'"
#~ msgid "print all message digests"
#~ msgstr "imprime todos los res�menes de mensaje"
#~ msgid "NOTE: sig rec %lu[%d] in hintlist of %lu but marked as checked\n"
#~ msgstr ""
#~ "NOTA: el registro de firma %lu[%d] est� en la lista\n"
#~ "de b�squeda de %lu pero est� marcado como comprobado\n"
#~ msgid "NOTE: sig rec %lu[%d] in hintlist of %lu but not marked\n"
#~ msgstr ""
#~ "NOTA: el registro de firma %lu[%d] est� en la lista\n"
#~ "de b�squeda de %lu pero no est� marcado\n"
#~ msgid "sig rec %lu[%d] in hintlist of %lu does not point to a dir record\n"
#~ msgstr ""
#~ "El registro de firma %lu[%d] en la lista de b�squeda de %lu\n"
#~ "no apunta a un registro de directorio\n"
#~ msgid "lid %lu: no primary key\n"
#~ msgstr "lid %lu: ninguna clave primaria\n"
#~ msgid "lid %lu: user id not found in keyblock\n"
#~ msgstr ""
#~ "lid %lu: no se ha encontrado identificativo de usuario\n"
#~ "en el bloque de clave\n"
#~ msgid "lid %lu: user id without signature\n"
#~ msgstr "lid %lu: identificativo de usuario sin firma\n"
#~ msgid "lid %lu: self-signature in hintlist\n"
#~ msgstr "lid %lu: autofirma en lista de b�squeda\n"
#~ msgid "very strange: no public key\n"
#~ msgstr "muy raro: no hay clave p�blica\n"
#~ msgid "hintlist %lu[%d] of %lu does not point to a dir record\n"
#~ msgstr ""
#~ "la lista de b�squeda %lu[%d] de %lu no apunta a\n"
#~ "un registro de directorio\n"
#~ msgid "lid %lu does not have a key\n"
#~ msgstr "lid %lu no dispone de clave\n"
#~ msgid "lid %lu: can't get keyblock: %s\n"
#~ msgstr "lid %lu: no puedo obtener el bloque de clave: %s\n"
#~ msgid "Too many preferences"
#~ msgstr "Demasiadas preferencias"
#~ msgid "Too many preference items"
#~ msgstr "Demasiados �tems de preferencias"
#~ msgid "public key not anymore available"
#~ msgstr "clave p�blica no disponible"
#~ msgid "insert_trust_record: keyblock not found: %s\n"
#~ msgstr "insert_trust_record: bloque de clave no encontrado: %s\n"
#~ msgid "lid %lu: update failed: %s\n"
#~ msgstr "lid %lu: actualizaci�n fallida: %s\n"
#~ msgid "lid %lu: updated\n"
#~ msgstr "lid %lu: actualizado\n"
#~ msgid "lid %lu: okay\n"
#~ msgstr "lid %lu: bien\n"
#~ msgid "%s: keyblock read problem: %s\n"
#~ msgstr "%s: problema lectura del bloque de clave: %s\n"
#~ msgid "%s: update failed: %s\n"
#~ msgstr "%s: actualizaci�n fallida: %s\n"
#~ msgid "%s: updated\n"
#~ msgstr "%s: actualizada\n"
#~ msgid "%s: okay\n"
#~ msgstr "%s: bien\n"
#~ msgid "lid %lu: keyblock not found: %s\n"
#~ msgstr "lid %lu: bloque de clave no encontrado: %s\n"
#~ msgid "can't lock keyring `%': %s\n"
#~ msgstr "no puede bloquearse el anillo p�blico `%s': %s\n"
#~ msgid "error writing keyring `%': %s\n"
#~ msgstr "error escribiendo anillo `%s': %s\n"
#~ msgid "can't open file: %s\n"
#~ msgstr "no puede abrirse el fichero: %s\n"
#~ msgid "read error: %s\n"
#~ msgstr "error de lectura: %s\n"
#~ msgid "can't write to keyring: %s\n"
#~ msgstr "no puede escribirse en el anillo: %s\n"
#~ msgid "writing keyblock\n"
#~ msgstr "escribiendo bloque de claves\n"
#~ msgid "can't write keyblock: %s\n"
#~ msgstr "no puede escribirse el bloque de claves: %s\n"
#~ msgid "can't lock secret keyring: %s\n"
#~ msgstr "no puede bloquearse el anillo secreto: %s\n"
#~ msgid "can't write keyring: %s\n"
#~ msgstr "no puede escribirse el anillo: %s\n"
#, fuzzy
#~ msgid "encrypted message is valid\n"
#~ msgstr "el algoritmo de resumen seleccionado no es v�lido\n"
#, fuzzy
#~ msgid "Can't check MDC: %s\n"
#~ msgstr "Imposible comprobar la firma: %s\n"
#~ msgid "Usage: gpgm [options] [files] (-h for help)"
#~ msgstr "Uso: gpgm [opciones] [ficheros] (-h para ayuda)"
#~ msgid ""
#~ "Syntax: gpgm [options] [files]\n"
#~ "GnuPG maintenance utility\n"
#~ msgstr ""
#~ "Sintaxis: gpgm [opciones] [ficheros]\n"
#~ "Utilidad de mantenimiento de GnuPG\n"
#~ msgid "usage: gpgm [options] "
#~ msgstr "uso: gpgm [opciones] "
#~ msgid "|KEYID|ulimately trust this key"
#~ msgstr "|ID-CLAVE|conf�a plenamente en esta clave"
#~ msgid "chained sigrec %lu has a wrong owner\n"
#~ msgstr "registro de firma encadenado %lu tiene el propietario equivocado\n"
#~ msgid "'%s' is not a valid long keyID\n"
#~ msgstr "'%s' no es un identificativo largo de clave v�lido\n"
#~ msgid "key %08lX: no public key for trusted key - skipped\n"
#~ msgstr "clave %08lX: clave de confianza sin clave p�blica - ignorada\n"
#~ msgid "lid %lu: read dir record failed: %s\n"
#~ msgstr "lid %lu: lectura registro de directorio fallida: %s\n"
#~ msgid "lid %lu: read key record failed: %s\n"
#~ msgstr "lid %lu: lectura registro de clave fallida: %s\n"
#~ msgid "lid %lu: read uid record failed: %s\n"
#~ msgstr "lid %lu: lectura registro identificativo fallida: %s\n"
#~ msgid "lid %lu: read pref record failed: %s\n"
#~ msgstr "lid %lu: lectura registro preferencias fallida: %s\n"
#~ msgid "lid %lu: read sig record failed: %s\n"
#~ msgstr "lid %lu: lectura registro firma fallida: %s\n"
#~ msgid "user '%s' read problem: %s\n"
#~ msgstr "problema de lectura usuario '%s': %s\n"
#~ msgid "user '%s' list problem: %s\n"
#~ msgstr "problema lista usuario '%s': %s\n"
#~ msgid "user '%s' not in trustdb\n"
#~ msgstr "usuario '%s' no est� en la tabla de confianza\n"
#~ msgid ""
#~ "# List of assigned trustvalues, created %s\n"
#~ "# (Use \"gpgm --import-ownertrust\" to restore them)\n"
#~ msgstr ""
#~ "# Lista de valores de confianza, creada el %s\n"
#~ "# (Puede usar \"gpgm --import-ownertrust\" para restablecerlos)\n"
#~ msgid "directory record w/o primary key\n"
#~ msgstr "registro de directorio sin clave primaria\n"
#~ msgid "line too long\n"
#~ msgstr "linea demasiado larga\n"
#~ msgid "error: missing colon\n"
#~ msgstr "error: falta ':'\n"
#~ msgid "error: invalid fingerprint\n"
#~ msgstr "error: huella dactilar no v�lida\n"
#~ msgid "error: no ownertrust value\n"
#~ msgstr "error: no hay valor de confianza del propietario\n"
#~ msgid "key not in trustdb, searching ring.\n"
#~ msgstr "la clave no est� en tabla de confianza, buscando en el anillo.\n"
#~ msgid "key not in ring: %s\n"
#~ msgstr "la clave no est� en el anillo: %s\n"
#~ msgid "Oops: key is now in trustdb???\n"
#~ msgstr "Oh oh: la clave ahora est� en la tabla de confianza???\n"
#~ msgid "insert trust record failed: %s\n"
#~ msgstr "inserci�n del registro de confianza fallida: %s\n"
#~ msgid "Hmmm, public key lost?"
#~ msgstr "Oh oh, �se ha perdido la clave p�blica?"
#~ msgid "did not use primary key for insert_trust_record()\n"
#~ msgstr "no se us� clave primaria para insert_trust_record()\n"
#~ msgid "second"
#~ msgstr "segundo"
#~ msgid "seconds"
#~ msgstr "segundos"
|