1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
|
# GnuPG Czech translation
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
# 2005 Free Software Foundation, Inc.
# Magda Proch�zkov� <[email protected]> 2001,
# Roman Pavlik <[email protected]> 2001, 2002, 2003, 2004, 2005.
msgid ""
msgstr ""
"Project-Id-Version: gnupg-1.3.92\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"PO-Revision-Date: 2012-08-24 17:20+0200\n"
"Last-Translator: Roman Pavlik <[email protected]>\n"
"Language-Team: Czech <[email protected]>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
#, c-format
msgid "can't gen prime with pbits=%u qbits=%u\n"
msgstr "nemohu vygenerovat prvo��slo s pbits=%u qbits=%u\n"
#, c-format
msgid "can't generate a prime with less than %d bits\n"
msgstr "nemohu vygenerovat prvo��slo s m�n� ne� %d bity\n"
msgid "no entropy gathering module detected\n"
msgstr "nebyl detekov�n ��dn� modul pro z�sk�n� entropie\n"
#, fuzzy, c-format
msgid "can't lock `%s': %s\n"
msgstr "nelze zam��t `%s'\n"
#, fuzzy, c-format
msgid "waiting for lock on `%s'...\n"
msgstr "zapisuji tajn� kl�� do `%s'\n"
#, c-format
msgid "can't open `%s': %s\n"
msgstr "nemohu otev��t `%s': %s\n"
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "nemohu pou��t p��kaz stat na `%s': %s\n"
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "`%s' nen� norm�ln� soubor - ignoruji\n"
msgid "note: random_seed file is empty\n"
msgstr "pozn�mka: soubor random_seed je pr�zdn�\n"
msgid "WARNING: invalid size of random_seed file - not used\n"
msgstr "VAROV�N�: neplatn� velikost random_seed - soubor nepou�it\n"
#, c-format
msgid "can't read `%s': %s\n"
msgstr "nemohu ��st `%s': %s\n"
msgid "note: random_seed file not updated\n"
msgstr "pozn�mka: soubor random_seed nen� aktualizov�n\n"
#, c-format
msgid "can't create `%s': %s\n"
msgstr "nemohu vytvo�it `%s': %s\n"
#, c-format
msgid "can't write `%s': %s\n"
msgstr "nemohu zapisovat do `%s': %s\n"
#, c-format
msgid "can't close `%s': %s\n"
msgstr "nemohu zav��t `%s': %s\n"
msgid "WARNING: using insecure random number generator!!\n"
msgstr "VAROV�N�: pou�it� gener�tor n�hodn�ch ��sel nen� bezpe�n�!!\n"
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 ""
"Gener�tor n�hodn�ch ��sel je pouze atrapa, aby program mohl b�et,\n"
"v ��dn�m p��pad� nen� kryptograficky bezpe�n�!\n"
"\n"
"NEPOU��VEJTE JAK�KOLIV DATA VYTVO�EN� T�MTO PROGRAMEM!!\n"
"\n"
msgid ""
"Please wait, entropy is being gathered. Do some work if it would\n"
"keep you from getting bored, because it will improve the quality\n"
"of the entropy.\n"
msgstr ""
"Pros�m �ekejte, je nutn� z�skat dostatek entropie. Aby jste se nenudili,\n"
"m��ete na po��ta�i d�lat n�co jin�ho, zv���te tak kvalitu entropie.\n"
#, 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"
"Nedostatek n�hodn�ch bajt�. Pros�m, pracujte s opera�n�m syst�mem, abyste\n"
"mu umo�nili z�skat v�ce entropie (je pot�eba %d bajt�).\n"
#, c-format
msgid "failed to store the fingerprint: %s\n"
msgstr "ulo�en� fingerprintu se nezda�ilo: %s\n"
#, c-format
msgid "failed to store the creation date: %s\n"
msgstr "ulo�en� datumu vytvo�en� se nezda�ilo: %s\n"
#, c-format
msgid "reading public key failed: %s\n"
msgstr "�ten� ve�ejn�ho kl��e se nezda�ilo: %s\n"
msgid "response does not contain the public key data\n"
msgstr "odpov�� neobsahuje ve�ejn� kl��\n"
msgid "response does not contain the RSA modulus\n"
msgstr "odpov�� neobsahuje RSA modulus\n"
msgid "response does not contain the RSA public exponent\n"
msgstr "odpov�� neobsahuje ve�ejn� RSA exponent\n"
#, c-format
msgid "using default PIN as %s\n"
msgstr ""
#, c-format
msgid "failed to use default PIN as %s: %s - disabling further default use\n"
msgstr ""
#, c-format
msgid "||Please enter the PIN%%0A[sigs done: %lu]"
msgstr "||Pros�m vlo�te PIN%%0A[podpis hotov: %lu]"
#, fuzzy
msgid "||Please enter the PIN"
msgstr "||Pros�m vlo�te PIN%%0A[podpis hotov: %lu]"
#, c-format
msgid "PIN callback returned error: %s\n"
msgstr "funkce PIN callback zkon�ila chybou: %s\n"
#, c-format
msgid "PIN for CHV%d is too short; minimum length is %d\n"
msgstr "PIN pro CHV%d je p��li� kr�tk�; minim�ln� d�lka je %d\n"
#, c-format
msgid "verify CHV%d failed: %s\n"
msgstr "verifikace CHV%d se nezda�ila: %s\n"
msgid "error retrieving CHV status from card\n"
msgstr "chyba p�i z�sk�n� CHV z karty\n"
msgid "card is permanently locked!\n"
msgstr "karta je trvale uzam�ena!\n"
#, c-format
msgid "%d Admin PIN attempts remaining before card is permanently locked\n"
msgstr ""
"Do trval�ho uzam�en� karty z�st�v� %d pokus� o zad�n� PINu administr�tora\n"
#. TRANSLATORS: Do not translate the "|A|" prefix but keep it at
#. the start of the string. Use %%0A to force a linefeed.
#, fuzzy, c-format
msgid "|A|Please enter the Admin PIN%%0A[remaining attempts: %d]"
msgstr "||Pros�m vlo�te PIN%%0A[podpis hotov: %lu]"
#, fuzzy
msgid "|A|Please enter the Admin PIN"
msgstr "||Pros�m vlo�te PIN%%0A[podpis hotov: %lu]"
msgid "access to admin commands is not configured\n"
msgstr "p��stup k administr�torsk�m p��kaz�m nen� nakonfigurov�n\n"
#, fuzzy
msgid "Reset Code not or not anymore available\n"
msgstr "tajn� ��sti kl��e nejsou dostupn�\n"
#, fuzzy
msgid "||Please enter the Reset Code for the card"
msgstr "Pros�m vyberte d�vod revokace:\n"
#, fuzzy, c-format
msgid "Reset Code is too short; minimum length is %d\n"
msgstr "PIN pro CHV%d je p��li� kr�tk�; minim�ln� d�lka je %d\n"
#. TRANSLATORS: Do not translate the "|*|" prefixes but
#. keep it at the start of the string. We need this elsewhere
#. to get some infos on the string.
msgid "|RN|New Reset Code"
msgstr ""
msgid "|AN|New Admin PIN"
msgstr "|AN|Nov� PIN administr�tora"
msgid "|N|New PIN"
msgstr "|N|Nov� PIN"
#, c-format
msgid "error getting new PIN: %s\n"
msgstr "chyba p�i z�sk�n� nov�ho PINu: %s\n"
msgid "error reading application data\n"
msgstr "chyba p�i �ten� aplika�n�ch dat\n"
msgid "error reading fingerprint DO\n"
msgstr "chyba p�i �ten� fingerpritnu DO\n"
msgid "key already exists\n"
msgstr "kl�� ji� existuje\n"
msgid "existing key will be replaced\n"
msgstr "existuj�c� kl�� bude p�eps�n\n"
msgid "generating new key\n"
msgstr "generov�n� nov�ho kl��e\n"
#, fuzzy
msgid "writing new key\n"
msgstr "generov�n� nov�ho kl��e\n"
msgid "creation timestamp missing\n"
msgstr "chyb� �asov� raz�tko vytvo�en�\n"
#, c-format
msgid "RSA modulus missing or not of size %d bits\n"
msgstr "sch�z� RSA modulus nebo nem� velikost %d bit�\n"
#, c-format
msgid "RSA public exponent missing or larger than %d bits\n"
msgstr "sch�z� ve�ejn� RSA exponent nebo je del�� ne� %d bit�\n"
#, c-format
msgid "RSA prime %s missing or not of size %d bits\n"
msgstr "sch�z� RSA prime %s nebo nem� velikost %d bit�\n"
#, c-format
msgid "failed to store the key: %s\n"
msgstr "nelze ulo�it kl��: %s\n"
msgid "please wait while key is being generated ...\n"
msgstr "pros�m po�kejte ne� bude kl�� vygenerov�n ...\n"
msgid "generating key failed\n"
msgstr "henerov�n� kl��e se nezda�ilo\n"
#, c-format
msgid "key generation completed (%d seconds)\n"
msgstr "generov�n� kl��e dokon�eno (%d sekund)\n"
msgid "invalid structure of OpenPGP card (DO 0x93)\n"
msgstr "neplatn� struktura OpenPGP kraty (DO 0x93)\n"
msgid "fingerprint on card does not match requested one\n"
msgstr ""
#, fuzzy, c-format
msgid "card does not support digest algorithm %s\n"
msgstr "podpis %s, hashovac� algoritmus %s\n"
#, c-format
msgid "signatures created so far: %lu\n"
msgstr "dosud vytvo�en� podpisy: %lu\n"
msgid ""
"verification of Admin PIN is currently prohibited through this command\n"
msgstr ""
"ov��en� administr�torsk�ho PIN je nyn� prost�ednictv�m tohoto p��kazu "
"zak�z�no\n"
#, c-format
msgid "can't access %s - invalid OpenPGP card?\n"
msgstr "p��stup na %s se nezda�il - vadn� OpenPGP karta?\n"
#, c-format
msgid "armor: %s\n"
msgstr "ASCII k�dov�n�: %s\n"
msgid "invalid armor header: "
msgstr "neplatn� hlavi�ka ASCII k�dov�n�: "
msgid "armor header: "
msgstr "ASCII hlavi�ka: "
msgid "invalid clearsig header\n"
msgstr "neplatn� hlavi�ka podpisu v �iteln�m form�tu\n"
#, fuzzy
msgid "unknown armor header: "
msgstr "ASCII hlavi�ka: "
msgid "nested clear text signatures\n"
msgstr "vno�en� podpisy v �iteln�m form�tu\n"
msgid "unexpected armor: "
msgstr "neo�ek�van� ASCII armor: "
msgid "invalid dash escaped line: "
msgstr "nespr�vn� ozna�en� ��dku m�nusy: "
#, c-format
msgid "invalid radix64 character %02X skipped\n"
msgstr "neplatn� radix64 znak %02X byl p�esko�en\n"
msgid "premature eof (no CRC)\n"
msgstr "p�ed�asn� konec souboru (��dn� CRC)\n"
msgid "premature eof (in CRC)\n"
msgstr "p�ed�asn� konec souboru (��dn� CRC)\n"
msgid "malformed CRC\n"
msgstr "�patn� form�t CRC\n"
#, c-format
msgid "CRC error; %06lX - %06lX\n"
msgstr "Chyba CRC; %06lX - %06lX\n"
msgid "premature eof (in trailer)\n"
msgstr "p�ed�asn� konec souboru (v pati�ce)\n"
msgid "error in trailer line\n"
msgstr "chyba v pati�ce\n"
msgid "no valid OpenPGP data found.\n"
msgstr "nenalezena ��dn� platn� data ve form�tu OpenPGP.\n"
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "neplatn� k�dov�n� ASCII: ��dek je del�� ne� %d znak�\n"
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr ""
"neplatn� znak (quoted-printable) v ASCII k�dov�n� - pravd�podobn� byl pou�it "
"�patn� MTA\n"
#, c-format
msgid "OpenPGP card not available: %s\n"
msgstr "OpenPGp karta nen� dostupn�: %s\n"
#, c-format
msgid "OpenPGP card no. %s detected\n"
msgstr "Nalezena OpenPGP karta ��slo %s\n"
msgid "can't do this in batch mode\n"
msgstr "nelze prov�st v d�vkov�m m�du\n"
#, fuzzy
msgid "This command is only available for version 2 cards\n"
msgstr "Tento p��kaz nen� v m�d� %s dovolen�.\n"
msgid "Your selection? "
msgstr "V� v�b�r? "
msgid "[not set]"
msgstr "[nen� nastaven]"
msgid "male"
msgstr "mu�"
msgid "female"
msgstr "�ena"
msgid "unspecified"
msgstr "neuvedeno"
msgid "not forced"
msgstr "nen� vy�adov�no"
msgid "forced"
msgstr "vy�adov�no"
msgid "Error: Only plain ASCII is currently allowed.\n"
msgstr "Chyba: V sou�asn� verzi je povolenou pouze plain ASCII.\n"
msgid "Error: The \"<\" character may not be used.\n"
msgstr "Chyba: Znak \"<\" nelze pou��t.\n"
msgid "Error: Double spaces are not allowed.\n"
msgstr "Chyba: V�ce mezer nen� povoleno.\n"
msgid "Cardholder's surname: "
msgstr "P��jmen� dr�itele karty: "
msgid "Cardholder's given name: "
msgstr "Jm�no (k�estn�) dr�itele karty: "
#, c-format
msgid "Error: Combined name too long (limit is %d characters).\n"
msgstr "Chyba: jm�no a p��jmen� je p��li� dlouh� (limit je %d znak�).\n"
msgid "URL to retrieve public key: "
msgstr "URL pro z�sk�n� ve�ejn�ho kl��e: "
#, c-format
msgid "Error: URL too long (limit is %d characters).\n"
msgstr "Chyba: URL je p��li� dlouh� (limit je %d znak�).\n"
#, fuzzy, c-format
msgid "error allocating enough memory: %s\n"
msgstr "chyba p�i vytv��en� souboru kl��� (keyring)`%s': %s\n"
#, c-format
msgid "error reading `%s': %s\n"
msgstr "chyba p�i �ten� `%s': %s\n"
#, fuzzy, c-format
msgid "error writing `%s': %s\n"
msgstr "chyba p�i vytv��en� `%s': %s\n"
msgid "Login data (account name): "
msgstr "Login (jm�nu ��tu): "
#, c-format
msgid "Error: Login data too long (limit is %d characters).\n"
msgstr "Chyba: Login je p��li� dlouh� (limit je %d znak�).\n"
msgid "Private DO data: "
msgstr "Priv�tn� DO data: "
#, c-format
msgid "Error: Private DO too long (limit is %d characters).\n"
msgstr "Chyba: Priv�tn� DO je p��li� dlouh� (limit je %d znak�).\n"
msgid "Language preferences: "
msgstr "Jazykov� p�edvolby: "
msgid "Error: invalid length of preference string.\n"
msgstr "Chyba: neplatn� d�lka �etezce s p�edvolbami.\n"
msgid "Error: invalid characters in preference string.\n"
msgstr "Chyba: neplatn� znak v �et�zci s p�edvolbami\n"
msgid "Sex ((M)ale, (F)emale or space): "
msgstr "Zadejte pohlav�: M - mu�sk�, F - �ensk� nebo stisn�te mezern�k: "
msgid "Error: invalid response.\n"
msgstr "Chyba: neplatn� odpov��.\n"
msgid "CA fingerprint: "
msgstr "CA fingerprint: "
msgid "Error: invalid formatted fingerprint.\n"
msgstr "Chyba: nespr�vn� naform�tovan� fingerprint.\n"
#, c-format
msgid "key operation not possible: %s\n"
msgstr "operace s kl��em nen� mo�n�: %s\n"
msgid "not an OpenPGP card"
msgstr "toto nen� OpenPGP karta"
#, c-format
msgid "error getting current key info: %s\n"
msgstr "chyba p�i z�sk�n� informac� o aktu�ln�m kl��i: %s\n"
msgid "Replace existing key? (y/N) "
msgstr "P�epsat existuj�c� kl��? (a/N) "
msgid ""
"NOTE: There is no guarantee that the card supports the requested size.\n"
" If the key generation does not succeed, please check the\n"
" documentation of your card to see what sizes are allowed.\n"
msgstr ""
#, fuzzy, c-format
msgid "What keysize do you want for the Signature key? (%u) "
msgstr "Jakou d�lku kl��e si p�ejete? (%u) "
#, fuzzy, c-format
msgid "What keysize do you want for the Encryption key? (%u) "
msgstr "Jakou d�lku kl��e si p�ejete? (%u) "
#, fuzzy, c-format
msgid "What keysize do you want for the Authentication key? (%u) "
msgstr "Jakou d�lku kl��e si p�ejete? (%u) "
#, c-format
msgid "rounded up to %u bits\n"
msgstr "zaokrouhleno na %u bit�\n"
#, c-format
msgid "%s keysizes must be in the range %u-%u\n"
msgstr "velikost kl��e %s mus� b�t v intervalu %u-%u\n"
#, c-format
msgid "The card will now be re-configured to generate a key of %u bits\n"
msgstr ""
#, fuzzy, c-format
msgid "error changing size of key %d to %u bits: %s\n"
msgstr "chyba p�i �ten� bloku tajn�ho kl��e \"%s\": %s\n"
msgid "Make off-card backup of encryption key? (Y/n) "
msgstr "Vytvo�it z�lohu �ifrovac�ho kl��e mimo kartu? (A/n) "
#, fuzzy
msgid "NOTE: keys are already stored on the card!\n"
msgstr "tajn� kl�� je na kart� ulo�en\n"
msgid "Replace existing keys? (y/N) "
msgstr "P�epsat existuj�c� kl��e? (a/N) "
#, c-format
msgid ""
"Please note that the factory settings of the PINs are\n"
" PIN = `%s' Admin PIN = `%s'\n"
"You should change them using the command --change-pin\n"
msgstr ""
"Pros�m nezapome�te, �e tov�rn� nastaven� PINu je\n"
" PIN = `%s' PIN administr�tora = `%s'\n"
"Toto nastaven� m��ete zm�nit p��kazem --change-pin\n"
msgid "Please select the type of key to generate:\n"
msgstr "Pros�m, vyberte druh kl��e, kter� chcete generovat:\n"
msgid " (1) Signature key\n"
msgstr " (1) Podepisovac� kl��\n"
msgid " (2) Encryption key\n"
msgstr " (2) �ifrovac� kl��\n"
msgid " (3) Authentication key\n"
msgstr " (3) Autentiza�n� kl��\n"
msgid "Invalid selection.\n"
msgstr "Neplatn� v�b�r.\n"
msgid "Please select where to store the key:\n"
msgstr "Pros�m vyberte m�sto pro uchov�n� kl��e:\n"
msgid "unknown key protection algorithm\n"
msgstr "nezn�m� algoritmus pro ochranu kl��e\n"
msgid "secret parts of key are not available\n"
msgstr "tajn� ��sti kl�e nejsou dostupn�\n"
msgid "secret key already stored on a card\n"
msgstr "tajn� kl�� je na kart� ulo�en\n"
#, fuzzy, c-format
msgid "error writing key to card: %s\n"
msgstr "chyba p�i z�pisu souboru kl��� (keyring) `%s': %s\n"
msgid "quit this menu"
msgstr "ukon�it toto menu"
msgid "show admin commands"
msgstr "zobraz administr�torsk� p��kazy"
msgid "show this help"
msgstr "uk�zat tuto pomoc"
msgid "list all available data"
msgstr "vypi� v�echna dostupn� data"
msgid "change card holder's name"
msgstr "zm�n� jm�no majitele karty"
msgid "change URL to retrieve key"
msgstr "zm�n� URL pro z�sk�n� kl��e"
msgid "fetch the key specified in the card URL"
msgstr "z�sk� kl�� specifikovan� v URL karty"
msgid "change the login name"
msgstr "zm�nit login name"
msgid "change the language preferences"
msgstr "zm�nit jazykov� p�edvolby"
msgid "change card holder's sex"
msgstr "zm�n� pohlav� dr�itele karty"
msgid "change a CA fingerprint"
msgstr "vypsat fingerprint certifika�n� autority"
msgid "toggle the signature force PIN flag"
msgstr "zapnout/vypnout po�adov�n� PINu p�i ka�d� self-sign operaci"
msgid "generate new keys"
msgstr "vytvo�it nov� p�r kl���"
msgid "menu to change or unblock the PIN"
msgstr "nab�dka pro zm�nu anebo odblokov�n� PINu"
msgid "verify the PIN and list all data"
msgstr "ov�� PIN a vypi� v�echna data"
msgid "unblock the PIN using a Reset Code"
msgstr ""
msgid "gpg/card> "
msgstr ""
msgid "Admin-only command\n"
msgstr "pouze administr�torsk� p��kazy\n"
msgid "Admin commands are allowed\n"
msgstr "administr�torsk� p��kazy jsou povoleny\n"
msgid "Admin commands are not allowed\n"
msgstr "administr�torsk� p��kazy nejsou povoleny\n"
msgid "Invalid command (try \"help\")\n"
msgstr "Neplatn� p��kaz (zkuste \"help\")\n"
#, fuzzy
msgid "card reader not available\n"
msgstr "tajn� kl�� nen� dostupn�"
msgid "Please insert the card and hit return or enter 'c' to cancel: "
msgstr "Pros�m vo�te kartu a stiskn�te enter. Operaci zru��te stisknut�m 'z': "
#, fuzzy, c-format
msgid "selecting openpgp failed: %s\n"
msgstr "smaz�n� bloku kl��e se nezda�ilo: %s\n"
#, c-format
msgid ""
"Please remove the current card and insert the one with serial number:\n"
" %.*s\n"
msgstr ""
"Pros�m vyjm�te kartu a vlo�te jinou se seriov�m ��slem:\n"
" %.*s\n"
msgid "Hit return when ready or enter 'c' to cancel: "
msgstr ""
"Je-li nov� karta p�ipravena, stiskn�te enter. Operaci zru��te stisknut�m "
"'z': "
msgid "Enter New Admin PIN: "
msgstr "Vlo�te nov� PIN administr�tora: "
msgid "Enter New PIN: "
msgstr "Vlo�te nov� PIN: "
msgid "Enter Admin PIN: "
msgstr "Vlo�te PIN administr�tora: "
msgid "Enter PIN: "
msgstr "Vlo�te PIN: "
msgid "Repeat this PIN: "
msgstr "Opakujte tento PIN: "
msgid "PIN not correctly repeated; try again"
msgstr "PIN nen� zopakov�n spr�vn�; zkuste to znovu"
#, c-format
msgid "can't open `%s'\n"
msgstr "nelze otev��t `%s'\n"
msgid "--output doesn't work for this command\n"
msgstr "--output pro tento p��kaz nen� platn�\n"
#, c-format
msgid "key \"%s\" not found: %s\n"
msgstr "kl�� \"%s\" nenalezen: %s\n"
#, c-format
msgid "error reading keyblock: %s\n"
msgstr "chyba p�i �ten� bloku kl��e: %s\n"
msgid "(unless you specify the key by fingerprint)\n"
msgstr "(dokud neur��te kl�� jeho fingerprintem)\n"
msgid "can't do this in batch mode without \"--yes\"\n"
msgstr "bez parametru \"--yes\" to nemohu v d�vkov�m m�du prov�st\n"
msgid "Delete this key from the keyring? (y/N) "
msgstr "Smazat tento kl�� ze souboru kl���? (a/N) "
msgid "This is a secret key! - really delete? (y/N) "
msgstr "Toto je tajn� kl��! - opravdu smazat? (a/N) "
#, c-format
msgid "deleting keyblock failed: %s\n"
msgstr "smaz�n� bloku kl��e se nezda�ilo: %s\n"
msgid "ownertrust information cleared\n"
msgstr "informace o d�v�ryhodnosti vlastn�ka kl��e vymaz�ny\n"
#, c-format
msgid "there is a secret key for public key \"%s\"!\n"
msgstr "existuje tajn� kl�� pro tento ve�ejn� kl�� \"%s\"!\n"
msgid "use option \"--delete-secret-keys\" to delete it first.\n"
msgstr ""
"abyste ho smazal(a), pou�ijte nejprve parametr \"--delete-secret-key\".\n"
#, c-format
msgid "error creating passphrase: %s\n"
msgstr "chyba p�i vytv��en� hesla: %s\n"
msgid "can't use a symmetric ESK packet due to the S2K mode\n"
msgstr "v m�du S2K nelze pou��t symetrick� ESK paket\n"
#, c-format
msgid "using cipher %s\n"
msgstr "pou�it� �ifry: %s\n"
#, c-format
msgid "`%s' already compressed\n"
msgstr "`%s' je ji� zkomprimov�n\n"
#, c-format
msgid "WARNING: `%s' is an empty file\n"
msgstr "VAROV�N�: soubor `%s' je pr�zdn�\n"
msgid "you can only encrypt to RSA keys of 2048 bits or less in --pgp2 mode\n"
msgstr ""
"v m�du --pgp2 m��ete �ifrovat pouze RSA kl��em o d�lce 2048 bit� a m�n�\n"
#, c-format
msgid "reading from `%s'\n"
msgstr "�tu z `%s'\n"
msgid ""
"unable to use the IDEA cipher for all of the keys you are encrypting to.\n"
msgstr "algoritmus IDEA nelze pou��t pro v�echny kl��e, pro kter� �ifrujete.\n"
#, c-format
msgid ""
"WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n"
msgstr ""
"VAROV�N�: vy��dan� symetrick� �ifra %s (%d) nevyhovuje p�edvolb�m p��jemce\n"
#, c-format
msgid ""
"WARNING: forcing compression algorithm %s (%d) violates recipient "
"preferences\n"
msgstr ""
"VAROV�N�: vy��dan� komprima�n� algoritmus %s (%d) nevyhovuje p�edvolb�m "
"p��jemce\n"
#, c-format
msgid "forcing symmetric cipher %s (%d) violates recipient preferences\n"
msgstr "vy��dan� symetrick� �ifra %s (%d) nevyhovuje p�edvolb�m p��jemce\n"
#, c-format
msgid "you may not use %s while in %s mode\n"
msgstr "pou�it� %s nen� v m�du %s dovoleno\n"
#, c-format
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s za�ifrovan� pro: %s\n"
#, c-format
msgid "%s encrypted data\n"
msgstr "%s za�ifrovan� data\n"
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "za�ifrov�no nezn�m�m algoritmem %d\n"
msgid ""
"WARNING: message was encrypted with a weak key in the symmetric cipher.\n"
msgstr "VAROV�N�: zpr�va byla za�ifrov�na slab�m kl��em v symetrick� �if�e.\n"
msgid "problem handling encrypted packet\n"
msgstr "probl�m se za�ifrovan�m paketem\n"
msgid "no remote program execution supported\n"
msgstr "spu�t�n� extern�ho programu nen� podporov�no\n"
#, c-format
msgid "can't create directory `%s': %s\n"
msgstr "nemohu vytvo�it adres�� `%s': %s\n"
msgid ""
"external program calls are disabled due to unsafe options file permissions\n"
msgstr ""
"vol�n� extern�ch program� je zak�z�no, proto�e file permissions nejsou\n"
"nastaveny nebezpe�n�\n"
msgid "this platform requires temporary files when calling external programs\n"
msgstr ""
"na t�to platform� jsou p�i vol�n� extern�ch program� vy�adov�ny\n"
"do�asn� soubory (temp files)\n"
#, c-format
msgid "unable to execute program `%s': %s\n"
msgstr "nelze spustit program `%s': %s\n"
#, c-format
msgid "unable to execute shell `%s': %s\n"
msgstr "nelze spustit shell `%s': %s\n"
#, c-format
msgid "system error while calling external program: %s\n"
msgstr "syst�mov� chyba p�i vol�n� extern�ho programu: %s\n"
msgid "unnatural exit of external program\n"
msgstr "neo�ek�van� konec extern�ho programu\n"
msgid "unable to execute external program\n"
msgstr "nelze spustit extern� program\n"
#, c-format
msgid "unable to read external program response: %s\n"
msgstr "nelze p�e��st odpov�� extern�ho programu: %s\n"
#, c-format
msgid "WARNING: unable to remove tempfile (%s) `%s': %s\n"
msgstr "VAROV�N�: nelze smazat do�asn� soubor (%s) `%s': %s\n"
#, c-format
msgid "WARNING: unable to remove temp directory `%s': %s\n"
msgstr "VAROV�N�: nelze smazat do�asn� adres�� `%s': %s\n"
#, fuzzy
msgid "export signatures that are marked as local-only"
msgstr "Podpis bude ozna�en jako neodvolateln� (non-revocable).\n"
msgid "export attribute user IDs (generally photo IDs)"
msgstr ""
#, fuzzy
msgid "export revocation keys marked as \"sensitive\""
msgstr "pro \"%s\" nebyl nalezen ��dn� revoka�n� kl��\n"
#, fuzzy
msgid "remove the passphrase from exported subkeys"
msgstr "revokovat kl�� nebo vybran� podkl��e"
#, fuzzy
msgid "remove unusable parts from key during export"
msgstr "odstranit nepou�iteln� ��sti z kl��e"
msgid "remove as much as possible from key during export"
msgstr ""
msgid "exporting secret keys not allowed\n"
msgstr "exportov�n� tajn�ho kl��e nen� povoleno\n"
#, c-format
msgid "key %s: not protected - skipped\n"
msgstr "kl�� %s: nen� chr�n�n� - p�esko�eno\n"
#, c-format
msgid "key %s: PGP 2.x style key - skipped\n"
msgstr "kl�� %s: PGP 2.x kl�� - p�esko�eno\n"
#, fuzzy, c-format
msgid "key %s: key material on-card - skipped\n"
msgstr "kl�� %s: podpis podkl��e na �patn�m m�st� - p�esko�eno \n"
msgid "about to export an unprotected subkey\n"
msgstr ""
#, fuzzy, c-format
msgid "failed to unprotect the subkey: %s\n"
msgstr "nelze ulo�it kl��: %s\n"
#, c-format
msgid "WARNING: secret key %s does not have a simple SK checksum\n"
msgstr "VAROV�N�: tajn� kl�� %s nen� chr�n�n pomoc� simple SK checksum\n"
msgid "WARNING: nothing exported\n"
msgstr "VAROV�N�: nebylo nic vyexportov�no\n"
msgid ""
"@Commands:\n"
" "
msgstr ""
"@P��kazy:\n"
" "
msgid "|[file]|make a signature"
msgstr "|[soubor]|vytvo�it podpis"
msgid "|[file]|make a clear text signature"
msgstr "|[soubor]|vytvo�it podpis v �iteln�m dokumentu"
msgid "make a detached signature"
msgstr "vytvo�it podpis odd�len� od dokumentu"
msgid "encrypt data"
msgstr "�ifrovat data"
msgid "encryption only with symmetric cipher"
msgstr "�ifrov�n� pouze se symetrickou �ifrou"
msgid "decrypt data (default)"
msgstr "de�ifrovat data (implicitn�)"
msgid "verify a signature"
msgstr "verifikovat podpis"
msgid "list keys"
msgstr "vypsat seznam kl���"
msgid "list keys and signatures"
msgstr "vypsat seznam kl��� a podpis�"
msgid "list and check key signatures"
msgstr "vypsat a zkontrolovat podpisy kl���"
msgid "list keys and fingerprints"
msgstr "vypsat seznam kl��� a fingerprint�"
msgid "list secret keys"
msgstr "vypsat seznam tajn�ch kl���"
msgid "generate a new key pair"
msgstr "vytvo�it nov� p�r kl���"
msgid "remove keys from the public keyring"
msgstr "odstranit kl�� ze souboru ve�ejn�ch kl���"
msgid "remove keys from the secret keyring"
msgstr "odstranit kl�� ze souboru tajn�ch kl���"
msgid "sign a key"
msgstr "podepsat kl��"
msgid "sign a key locally"
msgstr "podepsat kl�� lok�ln�"
msgid "sign or edit a key"
msgstr "podepsat nebo modifikovat kl��"
msgid "generate a revocation certificate"
msgstr "vytvo�it revoka�n� certifik�t"
msgid "export keys"
msgstr "exportovat kl��e"
msgid "export keys to a key server"
msgstr "exportovat kl��e na server kl���"
msgid "import keys from a key server"
msgstr "importovat kl��e ze serveru kl���"
msgid "search for keys on a key server"
msgstr "vyhledat kl��e na serveru kl���"
msgid "update all keys from a keyserver"
msgstr "aktualizovat v�echny kl��e ze serveru kl���"
msgid "import/merge keys"
msgstr "importovat/slou�it kl��e"
msgid "print the card status"
msgstr "vytisknout stav karty"
msgid "change data on a card"
msgstr "zm�nit data na kart�"
msgid "change a card's PIN"
msgstr "zm�nit PIN karty"
msgid "update the trust database"
msgstr "aktualizovat datab�zi d�v�ry"
msgid "|algo [files]|print message digests"
msgstr "|algo [soubory] vypi� hash"
msgid ""
"@\n"
"Options:\n"
" "
msgstr ""
"@\n"
"Mo�nosti:\n"
" "
msgid "create ascii armored output"
msgstr "vytvo� v�stup zak�dovan� pomoc� ASCII"
msgid "|NAME|encrypt for NAME"
msgstr "|JM�NO|�ifrovat pro JM�NO"
msgid "use this user-id to sign or decrypt"
msgstr ""
"pou��t tento id u�ivatele pro podeps�n�\n"
" nebo de�ifrov�n�"
msgid "|N|set compress level N (0 disables)"
msgstr ""
"|N|nastavit �rov�� komprimace N (0 - ��dn�\n"
" komprimace)"
msgid "use canonical text mode"
msgstr "pou��t kanonick� textov� m�d"
msgid "use as output file"
msgstr "pou��t jako v�stupn� soubor"
msgid "verbose"
msgstr "s dodate�n�mi informacemi"
msgid "do not make any changes"
msgstr "neprov�d�t ��dn� zm�ny"
msgid "prompt before overwriting"
msgstr "vy��dat potvrzen� p�ed p�eps�n�m"
msgid "use strict OpenPGP behavior"
msgstr "pou��t chov�n� striktn� podle OpenPGP"
msgid "generate PGP 2.x compatible messages"
msgstr "generovat zpr�vu komplatibiln� s PGP 2.x"
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
"@\n"
"(Pou�ijte manu�lov� str�nky pro kompletn� seznam v�ech p��kaz� a mo�nost�)\n"
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"
" -se -r Bob [soubor] podepsat a za�ifrovat pro u�ivatele Bob\n"
" --clearsign [soubor] vytvo�it podpis �iteln�ho dokumentu\n"
" --detach-sign [soubor] vytvo�it podpis odd�len� od dokumentu\n"
" --list-keys [jm�na] vypsat kl��e\n"
" --fingerprint [jm�na] vypsat fingerprinty \n"
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"Chyby oznamte, pros�m, na adresu <[email protected]>.\n"
"P�ipom�nky k p�ekladu <[email protected]>.\n"
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "Pou�it�: gpg [mo�nosti] [soubory] (-h pro pomoc)"
msgid ""
"Syntax: gpg [options] [files]\n"
"Sign, check, encrypt or decrypt\n"
"Default operation depends on the input data\n"
msgstr ""
"Syntaxe: gpg [mo�nosti] [soubory]\n"
"podepsat, ov��it, �ifrovat nebo de�ifrovat\n"
"implicitn� operace z�vis� na vstupn�ch datech\n"
msgid ""
"\n"
"Supported algorithms:\n"
msgstr ""
"\n"
"Podporovan� algoritmy:\n"
msgid "Pubkey: "
msgstr "Ve�ejn� kl��: "
msgid "Cipher: "
msgstr "�ifra: "
msgid "Hash: "
msgstr "Hash: "
msgid "Compression: "
msgstr "Komprese: "
msgid "usage: gpg [options] "
msgstr "u�it�: gpg [mo�nosti]"
msgid "conflicting commands\n"
msgstr "konfliktn� p��kazy\n"
#, c-format
msgid "no = sign found in group definition `%s'\n"
msgstr "no = podpis nalezen v definici skupiny `%s'\n"
# g10/g10.c:1179#, c-format
#, c-format
msgid "WARNING: unsafe ownership on homedir `%s'\n"
msgstr ""
"VAROV�N�: vlastnictv� domovsk�ho adres��e nen� nastaveno bezpe�n� `%s'\n"
#, c-format
msgid "WARNING: unsafe ownership on configuration file `%s'\n"
msgstr ""
"VAROV�N�: vlastnictv� konfigura�n�ho souboru nen� nastaveno bezpe�n� `%s'\n"
#, c-format
msgid "WARNING: unsafe permissions on homedir `%s'\n"
msgstr ""
"VAROV�N�: p��stupov� pr�va pro domovsk� adres��e nejsou bezpe�n� `%s'\n"
#, c-format
msgid "WARNING: unsafe permissions on configuration file `%s'\n"
msgstr ""
"VAROV�N�: p��stupov� pr�va pro konfigura�n� soubor nejsou bezpe�n� `%s'\n"
#, c-format
msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n"
msgstr ""
"VAROV�N�: vlastnictv� adres��e s domovk�m adres��em nen� nastaveno "
"nebezpe�n� `%s'\n"
#, c-format
msgid ""
"WARNING: unsafe enclosing directory ownership on configuration file `%s'\n"
msgstr ""
"VAROV�N�: vlastnictv� adres��e s konfigura�n�m souborem nen� nastaveno "
"nebezpe�n� `%s'\n"
#, c-format
msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n"
msgstr ""
"VAROV�N�: p��stupov� pr�va k adres��i s domovsk�m adres��em nejsou nastavena "
"bezpe�n� `%s'\n"
#, c-format
msgid ""
"WARNING: unsafe enclosing directory permissions on configuration file `%s'\n"
msgstr ""
"VAROV�N�: p��stupov� pr�va k aders��i s konfigura�n�m souborem nejsou "
"nastavena bezpe�n� `%s'\n"
# c-format
#, c-format
msgid "unknown configuration item `%s'\n"
msgstr "nezn�m� konfigura�n� polo�ka \"%s\"\n"
msgid "display photo IDs during key listings"
msgstr ""
msgid "show policy URLs during signature listings"
msgstr ""
#, fuzzy
msgid "show all notations during signature listings"
msgstr "V souboru tajn�ch kl��� chyb� odpov�daj�c� podpis\n"
msgid "show IETF standard notations during signature listings"
msgstr ""
msgid "show user-supplied notations during signature listings"
msgstr ""
#, fuzzy
msgid "show preferred keyserver URLs during signature listings"
msgstr "zadan� URL preferovan�ho serveru kl��� je neplat�\n"
msgid "show user ID validity during key listings"
msgstr ""
msgid "show revoked and expired user IDs in key listings"
msgstr ""
msgid "show revoked and expired subkeys in key listings"
msgstr ""
#, fuzzy
msgid "show the keyring name in key listings"
msgstr "p�epnout mezi vypisem seznamu tajn�ch a ve�ejn�ch kl���"
#, fuzzy
msgid "show expiration dates during signature listings"
msgstr "V souboru tajn�ch kl��� chyb� odpov�daj�c� podpis\n"
#, c-format
msgid "NOTE: old default options file `%s' ignored\n"
msgstr "POZN�MKA: star� implicitn� soubor s mo�nostmi `%s ignorov�n'\n"
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "POZN�MKA: neexistuje implicitn� soubor s mo�nostmi `%s'\n"
#, c-format
msgid "option file `%s': %s\n"
msgstr "soubor s mo�nostmi `%s': %s\n"
#, c-format
msgid "reading options from `%s'\n"
msgstr "�tu mo�nosti z `%s'\n"
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "POZN�MKA: %s nen� pro norm�ln� pou�it�!\n"
#, c-format
msgid "`%s' is not a valid signature expiration\n"
msgstr "`%s' nen� platn� doba expirace podpisu\n"
#, c-format
msgid "`%s' is not a valid character set\n"
msgstr "`%s' nen� platn� znakov� sada\n"
msgid "could not parse keyserver URL\n"
msgstr "nelze zpracovat URL serveru kl���\n"
#, c-format
msgid "%s:%d: invalid keyserver options\n"
msgstr "%s:%d: neplatn� parametr pro server kl���\n"
msgid "invalid keyserver options\n"
msgstr "neplatn� parametr pro server kl���\n"
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: neplatn� parametr pro import\n"
msgid "invalid import options\n"
msgstr "neplatn� parametr pro import\n"
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: neplatn� parametr pro export\n"
msgid "invalid export options\n"
msgstr "neplatn� parametr pro export\n"
#, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: neplatn� parametr pro v�pis\n"
msgid "invalid list options\n"
msgstr "neplatn� parametr pro v�pis\n"
msgid "display photo IDs during signature verification"
msgstr ""
msgid "show policy URLs during signature verification"
msgstr ""
#, fuzzy
msgid "show all notations during signature verification"
msgstr "`%s' nen� platn� doba expirace podpisu\n"
msgid "show IETF standard notations during signature verification"
msgstr ""
msgid "show user-supplied notations during signature verification"
msgstr ""
#, fuzzy
msgid "show preferred keyserver URLs during signature verification"
msgstr "zadan� URL preferovan�ho serveru kl��� je neplat�\n"
#, fuzzy
msgid "show user ID validity during signature verification"
msgstr "`%s' nen� platn� doba expirace podpisu\n"
msgid "show revoked and expired user IDs in signature verification"
msgstr ""
#, fuzzy
msgid "show only the primary user ID in signature verification"
msgstr "`%s' nen� platn� doba expirace podpisu\n"
msgid "validate signatures with PKA data"
msgstr ""
msgid "elevate the trust of signatures with valid PKA data"
msgstr ""
#, c-format
msgid "%s:%d: invalid verify options\n"
msgstr "%s:%d: neplatn� parametr pro ov��en�\n"
msgid "invalid verify options\n"
msgstr "neplatn� parametr pro ov��en�\n"
#, c-format
msgid "unable to set exec-path to %s\n"
msgstr "nelze nastavit exec-path na %s\n"
#, fuzzy, c-format
msgid "%s:%d: invalid auto-key-locate list\n"
msgstr "%s:%d: neplatn� parametr pro ov��en�\n"
msgid "invalid auto-key-locate list\n"
msgstr ""
msgid "WARNING: program may create a core file!\n"
msgstr "VAROV�N�: program m��e vytvo�it soubor core!\n"
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "VAROV�N�: %s p�ep��e %s\n"
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "Nen� dovoleno pou��vat %s s %s!\n"
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s ned�v� s %s smysl!\n"
#, c-format
msgid "NOTE: %s is not available in this version\n"
msgstr "POZN�MKA: %s nen� v t�to verzi dostupn�\n"
#, c-format
msgid "will not run with insecure memory due to %s\n"
msgstr "nelze spustit s nebezpe�nou pam�t� vzhledem k %s\n"
msgid "you can only make detached or clear signatures while in --pgp2 mode\n"
msgstr ""
"v m�du --pgp2 m��ete vytv��et pouze odd�len� podpisy nebo podpisy �iteln� "
"jako text\n"
msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n"
msgstr "v m�du --pgp2 nelze sou�asn� �ifrovat a podepisovat\n"
msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n"
msgstr "v m�du --pgp2 mus�te pou��t soubor (ne rouru).\n"
msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n"
msgstr "�ifrov�n� zpr�v v m�du --pgp2 vy�aduje algoritmus IDEA\n"
msgid "selected cipher algorithm is invalid\n"
msgstr "vybran� �ifrovac� algoritmus je neplatn�\n"
msgid "selected digest algorithm is invalid\n"
msgstr "vybran� hashovac� algoritmus je neplatn�\n"
msgid "selected compression algorithm is invalid\n"
msgstr "vybran� komprimovac� algoritmus je neplatn�\n"
msgid "selected certification digest algorithm is invalid\n"
msgstr "vybran� hashovac� algoritmus je neplatn�\n"
msgid "completes-needed must be greater than 0\n"
msgstr "polo�ka completes-needed mus� b�t v�t�� ne� 0\n"
msgid "marginals-needed must be greater than 1\n"
msgstr "polo�ka marginals-needed mus� b�t v�t�� ne� 1\n"
msgid "max-cert-depth must be in the range from 1 to 255\n"
msgstr "polo�ka max-cert-depth mus� b�t v rozmez� od 1 do 255\n"
msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n"
msgstr ""
"neplatn� implicitn� �rove� certifikace (default-cert-level); mus� b�t 0, 1, "
"2 nebo 3\n"
msgid "invalid min-cert-level; must be 1, 2, or 3\n"
msgstr ""
"neplatn� minim�ln� �rove� certifikace (min-cert-level); mus� b�t 0, 1, 2 "
"nebo 3\n"
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "POZN�MKA: jednoduch� m�d S2K (0) je d�razn� nedoporu�ov�n\n"
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "neplatn� m�d S2K; mus� b�t 0, 1 nebo 3\n"
msgid "invalid default preferences\n"
msgstr "neplatn� defaultn� p�edvolby\n"
msgid "invalid personal cipher preferences\n"
msgstr "neplatn� u�ivatelsk� p�edvolby pro �ifrov�n�\n"
msgid "invalid personal digest preferences\n"
msgstr "neplatn� u�ivatelsk� p�edvolby pro hashov�n�\n"
msgid "invalid personal compress preferences\n"
msgstr "neplatn� u�ivatelsk� p�edvolby pro komprimaci\n"
#, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s dosud nen� funk�n� s %s\n"
#, c-format
msgid "you may not use cipher algorithm `%s' while in %s mode\n"
msgstr "pou�it� �ifrovac�ho algoritmu `%s' v m�du %s dovoleno\n"
#, c-format
msgid "you may not use digest algorithm `%s' while in %s mode\n"
msgstr "pou�it� hashovac�ho algoritmu `%s' v m�du %s dovoleno\n"
#, c-format
msgid "you may not use compression algorithm `%s' while in %s mode\n"
msgstr "pou�it� komprima�n�ho algoritmu `%s' v m�du %s dovoleno\n"
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "nemohu inicializovat datab�zi d�v�ry: %s\n"
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr ""
"VAROV�N�: specifikov�n adres�t (-r) bez pou�it� �ifrov�n� s ve�ejn�m kl��em\n"
msgid "--store [filename]"
msgstr "--store [jm�no souboru]"
msgid "--symmetric [filename]"
msgstr "--symmetric [jm�no souboru]"
#, c-format
msgid "symmetric encryption of `%s' failed: %s\n"
msgstr "symetrick� �ifrov�n� `%s' se nepovedlo: %s\n"
msgid "--encrypt [filename]"
msgstr "--encrypt [jm�no souboru]"
msgid "--symmetric --encrypt [filename]"
msgstr "--symmetric --encrypt [jm�no souboru]"
msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n"
msgstr "nelze pou��t --symmetric --encrypt s p��kazem --s2k-mode 0\n"
#, c-format
msgid "you cannot use --symmetric --encrypt while in %s mode\n"
msgstr "nelze pou��t --symmetric --encrypt v m�du %s\n"
msgid "--sign [filename]"
msgstr "--sign [jm�no souboru]"
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [jm�no souboru]"
msgid "--symmetric --sign --encrypt [filename]"
msgstr "--symmetric --sign --encrypt [jm�no souboru]"
msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n"
msgstr "nelze pou��t --symmetric --sign --encrypt s p��kazem --s2k-mode 0\n"
#, c-format
msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n"
msgstr "nelze pou��t --symmetric --sign --encrypt v m�du %s\n"
msgid "--sign --symmetric [filename]"
msgstr "--sign --symmetric [jm�no souboru]"
msgid "--clearsign [filename]"
msgstr "--clearsign [jm�no souboru]"
msgid "--decrypt [filename]"
msgstr "--decrypt [jm�no souboru]"
msgid "--sign-key user-id"
msgstr "--sign-key id u�ivatele"
msgid "--lsign-key user-id"
msgstr "--lsign-key id u�ivatele"
msgid "--edit-key user-id [commands]"
msgstr "--edit-key id u�ivatele [p��kazy]"
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [id u�ivatele] [soubor s kl��i (keyring)]"
#, c-format
msgid "keyserver send failed: %s\n"
msgstr "odesl�n� na keyserver se nezda�ilo: %s\n"
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "z�sk�n� dat z keyserveru se nezda�ilo: %s\n"
#, c-format
msgid "key export failed: %s\n"
msgstr "export kl��e se nepoda�il: %s\n"
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "hled�n� na keyserveru se nezda�ilo: %s\n"
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "refresh dat na keyserveru se nezda�il: %s\n"
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "dek�dov�n� z ASCII form�tu selhalo: %s\n"
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "k�dov�n� do ASCII form�tu selhalo: %s\n"
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "neplatn� hashovac� algoritmus `%s'\n"
msgid "[filename]"
msgstr "[jm�no souboru]"
msgid "Go ahead and type your message ...\n"
msgstr "Za�n�te ps�t svou zpr�vu ...\n"
msgid "the given certification policy URL is invalid\n"
msgstr "zadan� URL pro certifika�n� politiku je neplatn�\n"
msgid "the given signature policy URL is invalid\n"
msgstr "zadan� URL pro podepisovac� politiku je neplatn�\n"
msgid "the given preferred keyserver URL is invalid\n"
msgstr "zadan� URL preferovan�ho serveru kl��� je neplat�\n"
msgid "too many entries in pk cache - disabled\n"
msgstr "p��li� mnoho polo�ek v bufferu ve�ejn�ch kl��� - vypnuto\n"
msgid "[User ID not found]"
msgstr "[ID u�ivatele nenalezeno]"
#, c-format
msgid "automatically retrieved `%s' via %s\n"
msgstr ""
# c-format
#, c-format
msgid "Invalid key %s made valid by --allow-non-selfsigned-uid\n"
msgstr "Neplatn� kl�� %s zm�n�n na platn� pomoc� --always-non-selfsigned-uid\n"
#, c-format
msgid "no secret subkey for public subkey %s - ignoring\n"
msgstr "neexistuje tajn� podkl�� pro ve�ejn� kl�� %s - ignorov�no\n"
#, c-format
msgid "using subkey %s instead of primary key %s\n"
msgstr "pou��v�m podkl�� %s m�sto prim�rn�ho kl��e %s\n"
#, c-format
msgid "key %s: secret key without public key - skipped\n"
msgstr "kl�� %s: tajn� kl�� bez kl��e ve�ejn�ho - p�esko�eno\n"
msgid "be somewhat more quiet"
msgstr "b�t o trochu v�c tich�"
msgid "take the keys from this keyring"
msgstr "ber kl��e z t�to kl��enky (keyringu)"
msgid "make timestamp conflicts only a warning"
msgstr "pouze varov�n� p�i konfliktu �asov�ho raz�tka"
msgid "|FD|write status info to this FD"
msgstr "|FD|zapsat informace o stavu do tohoto FD"
msgid "Usage: gpgv [options] [files] (-h for help)"
msgstr "Pou�it�: gpg [mo�nosti] [soubory] (-h pro pomoc)"
#, fuzzy
msgid ""
"Syntax: gpgv [options] [files]\n"
"Check signatures against known trusted keys\n"
msgstr ""
"Syntaxe: gpg [volby] [souboru]\n"
"Ov��� podpisy proti zn�m�m, d�v�ryhodn�m kl���m\n"
msgid ""
"It's up to you to assign a value here; this value will never be exported\n"
"to any 3rd party. We need it to implement the web-of-trust; it has nothing\n"
"to do with the (implicitly created) web-of-certificates."
msgstr ""
"Je na V�s, abyste zde p�i�adil(a) hodnotu; tato hodnota nebude nikdy\n"
"exportov�na t�et� stran�. Pot�ebujeme ji k implementaci \"pavu�iny\n"
"d�v�ry\"; nem� to nic spole�n�ho s (implicitn� vytvo�enou) \"pavu�inou\n"
"certifik�t�\"."
msgid ""
"To build the Web-of-Trust, GnuPG needs to know which keys are\n"
"ultimately trusted - those are usually the keys for which you have\n"
"access to the secret key. Answer \"yes\" to set this key to\n"
"ultimately trusted\n"
msgstr ""
"Aby bylo mo�n� vybudovat pavu�inu d�v�ry, mus� GnuPG v�d�t, kter�m kl���m\n"
"d�v��ujete absolutn� - obvykle to jsou ty kl��e, pro n� m�te p��stup\n"
"k tajn�m kl���m. Odpov�zte \"ano\", abyste nastavili tyto kl��e\n"
"jako absolutn� d�v�ryhodn�\n"
msgid "If you want to use this untrusted key anyway, answer \"yes\"."
msgstr ""
"Pokud p�esto chcete pou��t tento ned�v�ryhodn� kl��, odpov�zte \"ano\"."
msgid ""
"Enter the user ID of the addressee to whom you want to send the message."
msgstr "Vlo�te identifik�tor adres�ta, kter�mu chcete poslat zpr�vu."
msgid ""
"Select the algorithm to use.\n"
"\n"
"DSA (aka DSS) is the Digital Signature Algorithm and can only be used\n"
"for signatures.\n"
"\n"
"Elgamal is an encrypt-only algorithm.\n"
"\n"
"RSA may be used for signatures or encryption.\n"
"\n"
"The first (primary) key must always be a key which is capable of signing."
msgstr ""
"Vyberte algoritmus, kter� chcete pou��t.\n"
"\n"
"DSA (alias DSS) je Digital Signature Algorithm a m��e b�t pou�it pouze pro\n"
"podepisov�n�.\n"
"\n"
"Elgamal je pouze �ifrovac� algoritmus.\n"
"\n"
"RSA m��e b�t pou�it pro �ifrov�n� anebo podepisov�n�.\n"
"\n"
"Prvn� (prim�rn�) kl�� mus� b�t v�dy kl��, pomoc� kter�ho lze podepisovat."
msgid ""
"In general it is not a good idea to use the same key for signing and\n"
"encryption. This algorithm should only be used in certain domains.\n"
"Please consult your security expert first."
msgstr ""
"Obecn� nelze doporu�it pou��vat stejn� kl�� pro �ifrov�n� a podepisov�n�\n"
"Tento algoritmus je vhodn� pou��t jen za jist�ch podm�nek.\n"
"Kontaktujte pros�m nejprve bezpe�nostn�ho specialistu."
msgid "Enter the size of the key"
msgstr "Vlo�te d�lku kl��e"
msgid "Answer \"yes\" or \"no\""
msgstr "Odpov�zte \"ano\" nebo \"ne\""
msgid ""
"Enter the required value as shown in the prompt.\n"
"It is possible to enter a ISO date (YYYY-MM-DD) but you won't\n"
"get a good error response - instead the system tries to interpret\n"
"the given value as an interval."
msgstr ""
"Vlo�te po�adovanou hodnotu tak, jak je uvedeno v p��kazov�m ��dku.\n"
"Je mo�n� vlo�it datum ve form�tu ISO (RRRR-MM-DD), ale nedostanete\n"
"spr�vnou chybovou hl�ku - m�sto toho syst�m zkus� interpretovat\n"
"zadanou hodnotu jako interval."
msgid "Enter the name of the key holder"
msgstr "Vlo�te jm�no dr�itele kl��e"
msgid "please enter an optional but highly suggested email address"
msgstr "pros�m, vlo�te e-mailovou adresu (nepovinn�, ale velmi doporu�ovan�)"
msgid "Please enter an optional comment"
msgstr "Pros�m, vlo�te nepovinn� koment��"
msgid ""
"N to change the name.\n"
"C to change the comment.\n"
"E to change the email address.\n"
"O to continue with key generation.\n"
"Q to quit the key generation."
msgstr ""
"N pro zm�nu n�zvu.\n"
"C pro zm�nu koment��e.\n"
"E pro zm�nu e-mailov� adresy.\n"
"O pro pokra�ov�n� generov�n� kl��e.\n"
"Q pro ukon�en� generov�n� kl��e."
msgid "Answer \"yes\" (or just \"y\") if it is okay to generate the sub key."
msgstr "Jestli�e chcete generovat podkl��, odpov�zte \"ano\" (nebo jen \"a\")."
msgid ""
"When you sign a user ID on a key, you should first verify that the key\n"
"belongs to the person named in the user ID. It is useful for others to\n"
"know how carefully you verified this.\n"
"\n"
"\"0\" means you make no particular claim as to how carefully you verified "
"the\n"
" key.\n"
"\n"
"\"1\" means you believe the key is owned by the person who claims to own it\n"
" but you could not, or did not verify the key at all. This is useful "
"for\n"
" a \"persona\" verification, where you sign the key of a pseudonymous "
"user.\n"
"\n"
"\"2\" means you did casual verification of the key. For example, this "
"could\n"
" mean that you verified the key fingerprint and checked the user ID on "
"the\n"
" key against a photo ID.\n"
"\n"
"\"3\" means you did extensive verification of the key. For example, this "
"could\n"
" mean that you verified the key fingerprint with the owner of the key in\n"
" person, and that you checked, by means of a hard to forge document with "
"a\n"
" photo ID (such as a passport) that the name of the key owner matches "
"the\n"
" name in the user ID on the key, and finally that you verified (by "
"exchange\n"
" of email) that the email address on the key belongs to the key owner.\n"
"\n"
"Note that the examples given above for levels 2 and 3 are *only* examples.\n"
"In the end, it is up to you to decide just what \"casual\" and \"extensive"
"\"\n"
"mean to you when you sign other keys.\n"
"\n"
"If you don't know what the right answer is, answer \"0\"."
msgstr ""
"Ne� podep��ete id u�ivatele, m�li byste nejprve ov��it, zda kl��\n"
"pat�� osob�, jej�� jm�no je uvedeno v identifik�toru u�ivatele.\n"
"Je velmi u�ite�n�, kdy� ostatn� v�d�, jak d�sledn� jste provedl(a)\n"
"takov� ov��en�.\n"
"\n"
"\"0\" znamen�, �e neuv�d�te, jak d�sledn� jste pravost kl��e ov��il(a) \n"
"\n"
"\"1\" znamen�, �e v���te tomu, �e kl�� pat�� osob�, kter� je uvedena,\n"
" v u�ivatelsk�m ID, ale nemohl jste nebo jste neprov��il tuto "
"skute�nost.\n"
" To je u�ite�n� pro \"osobn�\" verifikaci, kdy� podepisujete kl��e, "
"kter�\n"
" pou��vaj� pseudonym u�ivatele.\n"
"\n"
"\"2\" znamen�, �e jste ��ste�n� ov��il pravost kl��e. Nap�. jste ov��il\n"
" fingerprint kl��e a zkontroloval identifik�tor u�ivatele\n"
" uveden� na kl��i s fotografick�m id.\n"
"\n"
"\"3\" Znamen�, �e jste provedl velmi pe�liv� ov��en� pravosti kl��e.\n"
" To m��e nap��klad znamenat, �e jste ov��il fingerprint kl��e \n"
" jeho vlastn�ka osobn� a d�le jste pomoc� obt��n� pad�lateln�ho \n"
" dokumentu s fotografi� (nap��klad pasu) ov��il, �e jm�no majitele\n"
" kl��e se shoduje se jm�nem uveden�m v u�ivatelsk�m ID a d�le jste \n"
" ov��il (v�m�nou elektronick�ch dopis�), �e elektronick� adresa uveden� \n"
" v ID u�ivatele pat�� majiteli kl��e.\n"
"\n"
"Pros�m nezapome�te, �e p��klady uveden� pro �rove� 2 a 3 jsou *pouze*\n"
"p��klady.\n"
"Je jen na Va�em rozhodnut� co \"��ste�n�\" a \"pe�liv�\" ov��en� znamen�\n"
"kdy� budete podepisovat kl��e jin�m u�ivatel�m.\n"
"\n"
"Pokud nev�te, jak� je spr�vn� odpov��, odpov�zte \"0\"."
msgid "Answer \"yes\" if you want to sign ALL the user IDs"
msgstr ""
"Pokud chcete podepsat V�ECHNY identifik�tory u�ivatel�, odpov�zte \"ano\""
msgid ""
"Answer \"yes\" if you really want to delete this user ID.\n"
"All certificates are then also lost!"
msgstr ""
"Pokud opravdu chcete smazat tento identifik�tor u�ivatele, odpov�zte \"ano"
"\".\n"
"V�echny certifik�ty budou tak� ztraceny!"
msgid "Answer \"yes\" if it is okay to delete the subkey"
msgstr "Odpov�zte \"ano\", pokud chcete smazat podkl��"
msgid ""
"This is a valid signature on the key; you normally don't want\n"
"to delete this signature because it may be important to establish a\n"
"trust connection to the key or another key certified by this key."
msgstr ""
"Toto je platn� podpis kl��e; norm�ln� nechcete tento podpis smazat,\n"
"proto�e m��e b�t d�le�it� p�i vytv��en� d�v�ry kl��e nebo jin�ho kl��e\n"
"ceritifikovan�ho t�mto kl��em."
msgid ""
"This signature can't be checked because you don't have the\n"
"corresponding key. You should postpone its deletion until you\n"
"know which key was used because this signing key might establish\n"
"a trust connection through another already certified key."
msgstr ""
"Tento podpis nem��e b�t ov��en, proto�e nem�te odpov�daj�c� ve�ejn� kl��.\n"
"Jeho smaz�n� byste m�l(a) odlo�it do doby, ne� budete zn�t, kter� kl��\n"
"byl pou�it, proto�e tento podpisovac� kl�� m��e vytvo�it d�v�ru\n"
"prost�ednictv�m jin�ho ji� certifikovan�ho kl��e."
msgid ""
"The signature is not valid. It does make sense to remove it from\n"
"your keyring."
msgstr "Podpis je neplatn�. Je rozumn� ho odstranit z Va�eho souboru kl���."
msgid ""
"This is a signature which binds the user ID to the key. It is\n"
"usually not a good idea to remove such a signature. Actually\n"
"GnuPG might not be able to use this key anymore. So do this\n"
"only if this self-signature is for some reason not valid and\n"
"a second one is available."
msgstr ""
"Toto je podpis, kter� v�e identifik�tor u�ivatele ke kl��i. Obvykle\n"
"nen� dobr� takov� podpis odstranit. GnuPG nem��e tento kl�� nad�le\n"
"pou��vat. Ud�lejte to jenom v p��pad�, kdy je tento podpis kl��e\n"
"j�m sam�m z n�jak�ho d�vodu neplatn� a kdy je k dipozici kl�� jin�."
msgid ""
"Change the preferences of all user IDs (or just of the selected ones)\n"
"to the current list of preferences. The timestamp of all affected\n"
"self-signatures will be advanced by one second.\n"
msgstr ""
"Zm�nit p�edvolby pro v�echny u�ivatelsk� ID (nebo pouze pro ozna�en�)\n"
"na aktu�ln� seznam p�edvoleb. �asov� raz�tka v�ech dot�en�ch podpis�\n"
"kl��� jimi samotn�mi budou posunuty o jednu vte�inu dop�edu.\n"
msgid "Please enter the passphrase; this is a secret sentence \n"
msgstr "Pros�m, vlo�te heslo; toto je tajn� v�ta \n"
msgid "Please repeat the last passphrase, so you are sure what you typed in."
msgstr ""
"Pros�m, zopakujte posledn� heslo, abyste si byl(a) jist�(�), co jste \n"
" napsal(a)."
msgid "Give the name of the file to which the signature applies"
msgstr "Zadejte n�zev souboru, ke kter�mu se podpis vztahuje"
msgid "Answer \"yes\" if it is okay to overwrite the file"
msgstr "Pokud si p�ejete p�eps�n� souboru, odpov�zte \"ano\""
msgid ""
"Please enter a new filename. If you just hit RETURN the default\n"
"file (which is shown in brackets) will be used."
msgstr ""
"Pros�m, vlo�te nov� n�zev souboru. Pokud pouze stisknete RETURN, bude\n"
"pou�it implicitn� soubor (kter� je uk�z�n v z�vork�ch)."
msgid ""
"You should specify a reason for the certification. Depending on the\n"
"context you have the ability to choose from this list:\n"
" \"Key has been compromised\"\n"
" Use this if you have a reason to believe that unauthorized persons\n"
" got access to your secret key.\n"
" \"Key is superseded\"\n"
" Use this if you have replaced this key with a newer one.\n"
" \"Key is no longer used\"\n"
" Use this if you have retired this key.\n"
" \"User ID is no longer valid\"\n"
" Use this to state that the user ID should not longer be used;\n"
" this is normally used to mark an email address invalid.\n"
msgstr ""
"M�l(a) byste specifikovat d�vod certifikace. V z�vislosti na kontextu\n"
"m�te mo�nost si vybrat ze seznamu:\n"
" \"Kl�� byl kompromitov�n\"\n"
" Toto pou�ijte, pokud si mysl�te, �e k Va�emu tajn�mu kl��i z�skaly\n"
" p��stup neopr�vn�n� osoby.\n"
" \"Kl�� je nahrazen\"\n"
" Toto pou�ijte, pokud jste tento kl�� nahradil(a) nov�j��m kl��em.\n"
" \"Kl�� se ji� nepou��v�\"\n"
" Toto pou�ijte, pokud tento kl�� ji� nepou��v�te.\n"
" \"Identifik�tor u�ivatele u� nen� platn�\"\n"
" Toto pou�ijte, pokud by se identifik�tor u�ivatele u� nem�l pou��vat;\n"
" norm�ln� se pou��v� k ozna�en� neplatn� e-mailov� adresy.\n"
msgid ""
"If you like, you can enter a text describing why you issue this\n"
"revocation certificate. Please keep this text concise.\n"
"An empty line ends the text.\n"
msgstr ""
"Pokud chcete, m��ete vlo�it text popisuj�c� p�vod vzniku tohoto revoka�n�ho\n"
"ceritifik�tu. Pros�m, stru�n�. \n"
"Text kon�� pr�zdn�m ��dkem.\n"
msgid "No help available"
msgstr "Pomoc nen� k dispozici"
#, c-format
msgid "No help available for `%s'"
msgstr "Pomoc nen� dostupn� pro '%s'"
msgid "import signatures that are marked as local-only"
msgstr ""
msgid "repair damage from the pks keyserver during import"
msgstr ""
#, fuzzy
msgid "do not update the trustdb after import"
msgstr "aktualizovat datab�zi d�v�ry"
#, fuzzy
msgid "create a public key when importing a secret key"
msgstr "ve�ejn� kl�� neodpov�d� tajn�mu kl��i!\n"
msgid "only accept updates to existing keys"
msgstr ""
#, fuzzy
msgid "remove unusable parts from key after import"
msgstr "odstranit nepou�iteln� ��sti z kl��e"
msgid "remove as much as possible from key after import"
msgstr ""
#, c-format
msgid "skipping block of type %d\n"
msgstr "blok typu %d byl p�esko�en\n"
#, c-format
msgid "%lu keys processed so far\n"
msgstr "%lu kl��e byly doposud zpracov�ny\n"
#, c-format
msgid "Total number processed: %lu\n"
msgstr "Celkov� po�et zpracovan�ch kl���: %lu\n"
#, c-format
msgid " skipped new keys: %lu\n"
msgstr " p�esko�eny nov� kl��e: %lu\n"
#, c-format
msgid " w/o user IDs: %lu\n"
msgstr " bez ID u�ivatele: %lu\n"
#, c-format
msgid " imported: %lu"
msgstr " importov�no: %lu"
#, c-format
msgid " unchanged: %lu\n"
msgstr " beze zm�n: %lu\n"
#, c-format
msgid " new user IDs: %lu\n"
msgstr " nov� ID u�ivatel�: %lu\n"
#, c-format
msgid " new subkeys: %lu\n"
msgstr " nov� podkl��e: %lu\n"
#, c-format
msgid " new signatures: %lu\n"
msgstr " nov� podpisy: %lu\n"
#, c-format
msgid " new key revocations: %lu\n"
msgstr " nov� revokace kl���: %lu\n"
#, c-format
msgid " secret keys read: %lu\n"
msgstr " p�e�ten� tajn� kl��e: %lu\n"
#, c-format
msgid " secret keys imported: %lu\n"
msgstr " importovan� tajn� kl��e: %lu\n"
#, c-format
msgid " secret keys unchanged: %lu\n"
msgstr " tajn� kl��e nezm�n�ny: %lu\n"
#, c-format
msgid " not imported: %lu\n"
msgstr " neimportov�no: %lu\n"
#, c-format
msgid " signatures cleaned: %lu\n"
msgstr " odstran�n� podpisy: %lu\n"
#, c-format
msgid " user IDs cleaned: %lu\n"
msgstr " odstran�n� u�ivatelsk� ID: %lu\n"
#, fuzzy, c-format
msgid "WARNING: key %s contains preferences for unavailable\n"
msgstr "VAROV�N�: kl�� %s obsahuje preference pro algoritmy,\n"
#. TRANSLATORS: This string is belongs to the previous one. They are
#. only split up to allow printing of a common prefix.
#, fuzzy
msgid " algorithms on these user IDs:\n"
msgstr "kter� nesjou k dispozici. T�k� se to t�chto user ID:\n"
#, c-format
msgid " \"%s\": preference for cipher algorithm %s\n"
msgstr " \"%s\": preference pro �ifrovac� algortimus %s\n"
#, c-format
msgid " \"%s\": preference for digest algorithm %s\n"
msgstr " \"%s\": preference pro podepisovac� algoritmus %s\n"
#, c-format
msgid " \"%s\": preference for compression algorithm %s\n"
msgstr " \"%s\": preference pro komprima�n� algoritmus %s\n"
msgid "it is strongly suggested that you update your preferences and\n"
msgstr "velmi doporu�ujeme aktualiaci nastaven� va�ich preferenc� a\n"
msgid "re-distribute this key to avoid potential algorithm mismatch problems\n"
msgstr ""
"distribuci tohoto kl��e aby jste p�ede�el probl�m�m s neshodou algoritm�\n"
#, c-format
msgid "you can update your preferences with: gpg --edit-key %s updpref save\n"
msgstr "nelze aktualizovat preference s: gpg --edit-key %s updpref save\n"
#, c-format
msgid "key %s: no user ID\n"
msgstr "kl�� %s: chyb� identifik�tor u�ivatele\n"
#, fuzzy, c-format
#| msgid "skipped \"%s\": %s\n"
msgid "key %s: %s\n"
msgstr "p�esko�en \"%s\": %s\n"
msgid "rejected by import filter"
msgstr ""
#, c-format
msgid "key %s: PKS subkey corruption repaired\n"
msgstr "kl�� %s: PKS po�kozen� podkl��e opraveno\n"
# c-format
#, c-format
msgid "key %s: accepted non self-signed user ID \"%s\"\n"
msgstr "kl�� %s: p�ijat id u�ivatele \"%s\",kter� nen� podeps�n j�m sam�m\n"
#, c-format
msgid "key %s: no valid user IDs\n"
msgstr "kl�� %s: chyb� platn� identifik�tor u�ivatele\n"
msgid "this may be caused by a missing self-signature\n"
msgstr "m��e to b�t zp�sobeno chyb�j�c�m podpisem kl��e j�m sam�m\n"
#, c-format
msgid "key %s: public key not found: %s\n"
msgstr "kl�� %s: ve�ejn� kl�� nenalezen: %s\n"
#, c-format
msgid "key %s: new key - skipped\n"
msgstr "kl�� %s: nov� kl�� - p�esko�en\n"
#, c-format
msgid "no writable keyring found: %s\n"
msgstr "nenalezen zapisovateln� soubor kl��� (keyring): %s\n"
# g10/import.c:766 g10/openfile.c:261#, c-format
#, c-format
msgid "writing to `%s'\n"
msgstr "zapisuji do '%s'\n"
#, c-format
msgid "error writing keyring `%s': %s\n"
msgstr "chyba p�i z�pisu souboru kl��� (keyring) `%s': %s\n"
#, c-format
msgid "key %s: public key \"%s\" imported\n"
msgstr "kl�� %s: ve�ejn� kl�� \"%s\" importov�n\n"
#, c-format
msgid "key %s: doesn't match our copy\n"
msgstr "kl�� %s: neodpov�d� na�� kopii\n"
#, c-format
msgid "key %s: can't locate original keyblock: %s\n"
msgstr "kl�� %s: nemohu naj�t origin�ln� blok kl��e: %s\n"
#, c-format
msgid "key %s: can't read original keyblock: %s\n"
msgstr "kl�� %s: nemohu ��st origin�ln� blok kl��e: %s\n"
#, c-format
msgid "key %s: \"%s\" 1 new user ID\n"
msgstr "kl�� %s: \"%s\" 1 nov� identifik�tor u�ivatele\n"
#, c-format
msgid "key %s: \"%s\" %d new user IDs\n"
msgstr "kl�� %s: \"%s\" %d nov�ch identifik�tor� u�ivatele\n"
#, c-format
msgid "key %s: \"%s\" 1 new signature\n"
msgstr "kl�� %s: \"%s\" 1 nov� podpis\n"
#, c-format
msgid "key %s: \"%s\" %d new signatures\n"
msgstr "kl�� %s: \"%s\" %d nov�ch podpis�\n"
#, c-format
msgid "key %s: \"%s\" 1 new subkey\n"
msgstr "kl�� %s: \"%s\" 1 nov� podkl��\n"
#, c-format
msgid "key %s: \"%s\" %d new subkeys\n"
msgstr "kl�� %s: \"%s\" %d nov�ch podkl���\n"
#, c-format
msgid "key %s: \"%s\" %d signature cleaned\n"
msgstr "kl�� %s: \"%s\" %d podpis� odstran�no\n"
#, c-format
msgid "key %s: \"%s\" %d signatures cleaned\n"
msgstr "kl�� %s: \"%s\" %d podpis� odstran�no\n"
#, c-format
msgid "key %s: \"%s\" %d user ID cleaned\n"
msgstr "kl�� %s: \"%s\" %d ID u�ivatele odstran�no\n"
#, c-format
msgid "key %s: \"%s\" %d user IDs cleaned\n"
msgstr "kl�� %s: \"%s\" %d ID u�ivatele odstran�no\n"
#, c-format
msgid "key %s: \"%s\" not changed\n"
msgstr "kl�� %s: \"%s\" beze zm�n\n"
#, fuzzy, c-format
#| msgid "secret key \"%s\" not found: %s\n"
msgid "secret key %s: %s\n"
msgstr "tajn� kl�� \"%s\" nenalezen: %s\n"
msgid "importing secret keys not allowed\n"
msgstr "import tajn�ch kl��� nen� povolen\n"
#, c-format
msgid "key %s: secret key with invalid cipher %d - skipped\n"
msgstr "kl�� %s: tajn� kl�� s neplatnou �ifrou %d - p�esko�eno\n"
#, c-format
msgid "no default secret keyring: %s\n"
msgstr "nen� nastaven implicitn� soubor tajn�ch kl��� %s\n"
#, c-format
msgid "key %s: secret key imported\n"
msgstr "kl�� %s: tajn� kl�� importov�n\n"
#, c-format
msgid "key %s: already in secret keyring\n"
msgstr "kl�� %s: je ji� v souboru tajn�ch kl���\n"
#, c-format
msgid "key %s: secret key not found: %s\n"
msgstr "kl�� %s: nenalezen tajn� kl��: %s\n"
#, c-format
msgid "key %s: no public key - can't apply revocation certificate\n"
msgstr "kl�� %s: chyb� ve�ejn� kl�� - nemohu aplikovat revoka�n� certifik�t\n"
#, c-format
msgid "key %s: invalid revocation certificate: %s - rejected\n"
msgstr "kl�� %s: neplatn� revoka�n� certifik�t: %s - zam�tnuto\n"
#, c-format
msgid "key %s: \"%s\" revocation certificate imported\n"
msgstr "kl�� %s: \"%s\" revoka�n� certifik�t importov�n\n"
#, c-format
msgid "key %s: no user ID for signature\n"
msgstr "kl�� %s: neexistuje id u�ivatele pro podpis\n"
#, c-format
msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n"
msgstr ""
"kl�� %s: nepodporovan� algoritmus ve�ejn�ho kl��e u u�ivatelsk�ho id \"%s"
"\"\n"
#, c-format
msgid "key %s: invalid self-signature on user ID \"%s\"\n"
msgstr "kl�� %s neplatn� podpis kl��e j�m sam�m u u�ivatelsk�ho id \"%s\"\n"
#, c-format
msgid "key %s: unsupported public key algorithm\n"
msgstr "kl�� %s: nepodporovan� algoritmus ve�ejn�ho kl��e\n"
#, fuzzy, c-format
msgid "key %s: invalid direct key signature\n"
msgstr "kl�� %s: podpis kl��e j�m sam�m (direct key signature) p�id�n\n"
#, c-format
msgid "key %s: no subkey for key binding\n"
msgstr "kl�� %s: neexistuje podkl�� pro v�z�n� kl���\n"
#, c-format
msgid "key %s: invalid subkey binding\n"
msgstr "kl�� %s: neplatn� vazba podkl��e\n"
#, c-format
msgid "key %s: removed multiple subkey binding\n"
msgstr "kl�� %s: smaz�na v�cen�sobn� vazba podkl��e\n"
#, c-format
msgid "key %s: no subkey for key revocation\n"
msgstr "kl�� %s: neexistuje podkl�� pro revokaci kl��e\n"
#, c-format
msgid "key %s: invalid subkey revocation\n"
msgstr "kl�� %s: neplatn� revoka�n� podkl��\n"
#, c-format
msgid "key %s: removed multiple subkey revocation\n"
msgstr "kl�� %s: smaz�na v�cen�sobn� revokace podkl��e\n"
#, c-format
msgid "key %s: skipped user ID \"%s\"\n"
msgstr "kl�� %s: p�esko�en identifik�tor u�ivatele \"%s\"\n"
#, c-format
msgid "key %s: skipped subkey\n"
msgstr "kl�� %s: podkl�� p�esko�en\n"
#, c-format
msgid "key %s: non exportable signature (class 0x%02X) - skipped\n"
msgstr "kl�� %s: podpis nen� exportovateln� (t��da %02X) - p�esko�eno\n"
#, c-format
msgid "key %s: revocation certificate at wrong place - skipped\n"
msgstr "kl�� %s: revoka�n� certifik�t na �patn�m m�st� - p�esko�eno \n"
#, c-format
msgid "key %s: invalid revocation certificate: %s - skipped\n"
msgstr "kl�� %s: neplatn� revoka�n� certifik�t: %s - p�esko�en\n"
#, c-format
msgid "key %s: subkey signature in wrong place - skipped\n"
msgstr "kl�� %s: podpis podkl��e na �patn�m m�st� - p�esko�eno \n"
#, c-format
msgid "key %s: unexpected signature class (0x%02X) - skipped\n"
msgstr "kl�� %s: neo�ek�van� podpisov� t��da (0x%02X) - p�esko�eno\n"
#, c-format
msgid "key %s: duplicated user ID detected - merged\n"
msgstr "kl�� %s: objeven duplikovan� identifik�tor u�ivatele - slou�en\n"
#, c-format
msgid "WARNING: key %s may be revoked: fetching revocation key %s\n"
msgstr ""
"VAROV�N�: kl�� %s m��e b�t revokov�n: zkou��m z�skat revoka�n� kl�� %s\n"
#, c-format
msgid "WARNING: key %s may be revoked: revocation key %s not present.\n"
msgstr "VAROV�N�: kl�� %s m��e b�t revokov�n: revoka�n� kl�� %s nenalezen.\n"
#, c-format
msgid "key %s: \"%s\" revocation certificate added\n"
msgstr "kl�� %s: \"%s\" p�id�n revoka�n� certifik�t\n"
#, c-format
msgid "key %s: direct key signature added\n"
msgstr "kl�� %s: podpis kl��e j�m sam�m (direct key signature) p�id�n\n"
msgid "NOTE: a key's S/N does not match the card's one\n"
msgstr "POZN�MKA: S/N kl��e neodpov�d� S/N karty\n"
msgid "NOTE: primary key is online and stored on card\n"
msgstr "POZN�MKA: prim�rn� kl�� je online a je ulo�en na kart�\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "POZN�MKA: sekund�rn� kl�� je online a je ulo�en na kart�\n"
#, c-format
msgid "error creating keyring `%s': %s\n"
msgstr "chyba p�i vytv��en� souboru kl��� (keyring)`%s': %s\n"
#, c-format
msgid "keyring `%s' created\n"
msgstr "soubor kl��� (keyring) `%s' vytvo�en\n"
#, c-format
msgid "keyblock resource `%s': %s\n"
msgstr "zdroj bloku kl��e `%s': %s\n"
#, c-format
msgid "failed to rebuild keyring cache: %s\n"
msgstr "selhalo obnoven� vyrovn�vac� pam�ti kl���: %s\n"
msgid "[revocation]"
msgstr "[revokace]"
msgid "[self-signature]"
msgstr "[podpis kl��e j�m sam�m]"
msgid "1 bad signature\n"
msgstr "1 �patn� podpis\n"
#, c-format
msgid "%d bad signatures\n"
msgstr "%d �patn�ch podpis�\n"
msgid "1 signature not checked due to a missing key\n"
msgstr "1 podpis neov��en, proto�e chyb� kl��\n"
#, c-format
msgid "%d signatures not checked due to missing keys\n"
msgstr "%d podpis� neov��en�ch, proto�e chyb� kl��\n"
msgid "1 signature not checked due to an error\n"
msgstr "1 podpis neov��en, proto�e vznikla chyba\n"
#, c-format
msgid "%d signatures not checked due to errors\n"
msgstr "%d podpis� neov��en�ch, proto�e vznikly chyby\n"
msgid "1 user ID without valid self-signature detected\n"
msgstr "objeven 1 identifik�tor u�ivatele bez platn�ho podpisu j�m sam�m\n"
#, c-format
msgid "%d user IDs without valid self-signatures detected\n"
msgstr "objeveno %d identifik�tor� u�ivatele bez platn�ho podpisu j�m sam�m\n"
msgid ""
"Please decide how far you trust this user to correctly verify other users' "
"keys\n"
"(by looking at passports, checking fingerprints from different sources, "
"etc.)\n"
msgstr ""
"Pros�m rozhodn�te, nakolik d�v��ete tomuto u�ivateli, �e spr�vn�\n"
"verifikuje kl��e jin�ch u�ivatel� (prohl�dnut�m cestovn�ch pas�,\n"
"kontrolou fingerprint� z r�zn�ch zdroj�...)?\n"
"\n"
#, c-format
msgid " %d = I trust marginally\n"
msgstr " %d = D�v��uji ��ste�n�\n"
#, c-format
msgid " %d = I trust fully\n"
msgstr " %d = D�v��uji �pln�\n"
msgid ""
"Please enter the depth of this trust signature.\n"
"A depth greater than 1 allows the key you are signing to make\n"
"trust signatures on your behalf.\n"
msgstr ""
"Pros�m vlo�te hloubku d�v�ry (depth trust) k tomuto podpisu.\n"
"Hloubka v�t�� ne� 1 umo��uje kl���m, kter� jste podepsal\n"
"podepsat jin� kl��, kter� bude pro V�s d�v�ryhodn�.\n"
msgid "Please enter a domain to restrict this signature, or enter for none.\n"
msgstr ""
"Pros�m vlo�te dom�nu, pro kterou je podpis omezen nebo stiskn�te enter pro "
"podpis bez omezen� na dom�nu.\n"
#, c-format
msgid "User ID \"%s\" is revoked."
msgstr "U�ivatelsk� ID \"%s\" je revokov�no."
msgid "Are you sure you still want to sign it? (y/N) "
msgstr "Jste si jist�(�), �e st�le chcete podepsat tento kl��? (a/N) "
msgid " Unable to sign.\n"
msgstr " Nelze podepsat.\n"
#, c-format
msgid "User ID \"%s\" is expired."
msgstr "Vypr�ela platnost u�ivatelsk�ho ID \"%s\"."
#, c-format
msgid "User ID \"%s\" is not self-signed."
msgstr "ID u�ivatele \"%s\" nen� podeps�no j�m sam�m."
#, c-format
msgid "User ID \"%s\" is signable. "
msgstr "ID u�ivatele \"%s\" je p�ipraveno k podpisu."
msgid "Sign it? (y/N) "
msgstr "Podepsat? (a/N) "
#, c-format
msgid ""
"The self-signature on \"%s\"\n"
"is a PGP 2.x-style signature.\n"
msgstr ""
"Podpis kl��e \"%s\" j�m sam�m je\n"
"podpis form�tu PGP 2.x.\n"
msgid "Do you want to promote it to an OpenPGP self-signature? (y/N) "
msgstr "P�ejete si jej zm�nit na form�t OpenPGP? (a/N) "
#, c-format
msgid ""
"Your current signature on \"%s\"\n"
"has expired.\n"
msgstr ""
"Platnost Va�eho podpisu na \"%s\"\n"
"vypr�ela.\n"
"\n"
msgid "Do you want to issue a new signature to replace the expired one? (y/N) "
msgstr ""
"Chcete vytvo�it nov� podpis a nahradit j�m ten, jeho� platnost vypr�ela? (a/"
"N) "
#, c-format
msgid ""
"Your current signature on \"%s\"\n"
"is a local signature.\n"
msgstr ""
"Va� sou�asn� podpis na \"%s\"\n"
"je pouze lok�ln�.\n"
"\n"
msgid "Do you want to promote it to a full exportable signature? (y/N) "
msgstr "P�ejete si jej zm�nit na pln� exportovateln� podpise? (a/N) "
#, c-format
msgid "\"%s\" was already locally signed by key %s\n"
msgstr "\"%s\" je ji� lok�ln� podeps�n kl��em %s\n"
#, c-format
msgid "\"%s\" was already signed by key %s\n"
msgstr "\"%s\" je ji� podeps�n kl��em %s\n"
msgid "Do you want to sign it again anyway? (y/N) "
msgstr "Chcete kl�� p�esto znova podepsat? (a/N) "
#, c-format
msgid "Nothing to sign with key %s\n"
msgstr "Nic k podeps�n� kl��em %s\n"
msgid "This key has expired!"
msgstr "Platnost kl��e vypr�ela!"
#, c-format
msgid "This key is due to expire on %s.\n"
msgstr "Platnost kl��e vypr�� %s.\n"
msgid "Do you want your signature to expire at the same time? (Y/n) "
msgstr "Chcete, aby platnost Va�eho podpisu vypr�ela ve stejnou dobu? (A/n) "
msgid ""
"You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 "
"mode.\n"
msgstr ""
"Nem��ete ud�lat OpenPGP podpis kl��e typu PGP 2.x, kdy� jste v --pgp2 m�du.\n"
msgid "This would make the key unusable in PGP 2.x.\n"
msgstr "To by zp�sobilo nepou�itelnost kl��e v PGP 2.x.\n"
msgid ""
"How carefully have you verified the key you are about to sign actually "
"belongs\n"
"to the person named above? If you don't know what to answer, enter \"0\".\n"
msgstr ""
"S jakou jistotou jste prov��ili, �e kl��, kter� chcete podepsat\n"
"pat�� v��e uveden� osob�.\n"
"Pokud nezn�te odpov��, zadejte \"0\".\n"
#, c-format
msgid " (0) I will not answer.%s\n"
msgstr " (0) Neodpov�m.%s\n"
#, c-format
msgid " (1) I have not checked at all.%s\n"
msgstr " (1) Nijak jsem to nekontroloval(a).%s\n"
#, c-format
msgid " (2) I have done casual checking.%s\n"
msgstr " (2) ��ste�n� jsem to ov��il(a).%s\n"
#, c-format
msgid " (3) I have done very careful checking.%s\n"
msgstr " (3) Velmi pe�liv� jsem to ov��il(a).%s\n"
msgid "Your selection? (enter `?' for more information): "
msgstr "Va� v�b�r? (pro v�ce informac� vlo�te '?'): "
#, c-format
msgid ""
"Are you sure that you want to sign this key with your\n"
"key \"%s\" (%s)\n"
msgstr ""
"Jste si jist�(�), �e chcete podepsat tento kl��\n"
"sv�m kl��em \"%s\" (%s)\n"
msgid "This will be a self-signature.\n"
msgstr "Jedn� se o podpis kl��e j�m sam�m.\n"
msgid "WARNING: the signature will not be marked as non-exportable.\n"
msgstr "VAROV�N�: podpis nebude ozna�en jako neexportovateln�.\n"
msgid "WARNING: the signature will not be marked as non-revocable.\n"
msgstr "VAROV�N�: podpis nebude ozna�en jako neodvolateln� (non-revocable).\n"
msgid "The signature will be marked as non-exportable.\n"
msgstr "Podpis bude ozna�en jako neexportovateln�.\n"
msgid "The signature will be marked as non-revocable.\n"
msgstr "Podpis bude ozna�en jako neodvolateln� (non-revocable).\n"
msgid "I have not checked this key at all.\n"
msgstr "Nijak jsem tento kl�� neov��il.\n"
msgid "I have checked this key casually.\n"
msgstr "��ste�n� jsem ov��il tento kl��.\n"
msgid "I have checked this key very carefully.\n"
msgstr "Velmi pe�liv� jsem ov��il tento kl��.\n"
msgid "Really sign? (y/N) "
msgstr "Skute�n� podepsat? (a/N) "
#, c-format
msgid "signing failed: %s\n"
msgstr "podeps�n� selhalo: %s\n"
msgid "Key has only stub or on-card key items - no passphrase to change.\n"
msgstr ""
"K dispozici je jen kontroln� sou�et kl��e nebo je kl�� na kart� - passphrase "
"nelze zm�nit.\n"
msgid "This key is not protected.\n"
msgstr "Tento kl�� nen� chr�n�n�.\n"
msgid "Secret parts of primary key are not available.\n"
msgstr "Tajn� ��sti prim�rn�ho kl��e nejsou dostupn�.\n"
msgid "Secret parts of primary key are stored on-card.\n"
msgstr "Tajn� ��st prim�rn�ho kl��e jsou ulo�eny na kart�.\n"
msgid "Key is protected.\n"
msgstr "Kl�� je chr�n�n�.\n"
#, c-format
msgid "Can't edit this key: %s\n"
msgstr "Nen� mo�n� editovat tento kl��: %s\n"
msgid ""
"Enter the new passphrase for this secret key.\n"
"\n"
msgstr ""
"Vlo�te nov� heslo (passphrase) pro tento tajn� kl��.\n"
"\n"
msgid "passphrase not correctly repeated; try again"
msgstr "heslo nen� zopakov�no spr�vn�; zkuste to znovu"
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"\n"
msgstr ""
"Nechcete heslo - to *nen�* dobr� n�pad!\n"
"\n"
msgid "Do you really want to do this? (y/N) "
msgstr "Opravdu to chcete ud�lat? (a/N) "
msgid "moving a key signature to the correct place\n"
msgstr "p�esunuji podpis kl��e na spr�vn� m�sto\n"
msgid "save and quit"
msgstr "ulo�it a ukon�it"
msgid "show key fingerprint"
msgstr "vypsat fingerprint kl��e"
msgid "list key and user IDs"
msgstr "vypsat seznam kl��� a id u�ivatel�"
msgid "select user ID N"
msgstr "vyberte identifik�tor u�ivatele N"
msgid "select subkey N"
msgstr "vyberte podkl�� N"
msgid "check signatures"
msgstr "kontrolovat podpisy"
msgid "sign selected user IDs [* see below for related commands]"
msgstr "podepsat vybran� ID u�ivatele [* n��e jsou uvedeny relevantn� p��kazy]"
msgid "sign selected user IDs locally"
msgstr "podepsat vybran� u�ivatelsk� ID lok�ln�"
msgid "sign selected user IDs with a trust signature"
msgstr "podepsat vybran� u�ivatelsk� ID d�v�ryhodn�m podpisem"
msgid "sign selected user IDs with a non-revocable signature"
msgstr "podepsat vybran� u�ivatelsk� ID nerevokovateln�m podpisem"
msgid "add a user ID"
msgstr "p�idat identifik�tor u�ivatele"
msgid "add a photo ID"
msgstr "p�idat fotografick� ID"
msgid "delete selected user IDs"
msgstr "smazat vybran� ID u�ivatele"
msgid "add a subkey"
msgstr "p�idat podkl��y"
msgid "add a key to a smartcard"
msgstr "p�idat kl�� na kartu"
msgid "move a key to a smartcard"
msgstr "p�esunout kl�� na kartu"
msgid "move a backup key to a smartcard"
msgstr "p�esunout z�lo�n� kl�� na kartu"
msgid "delete selected subkeys"
msgstr "smazat vybran� podkl��e"
msgid "add a revocation key"
msgstr "p�idat revoka�n� kl��"
msgid "delete signatures from the selected user IDs"
msgstr "smazat podpisy z vybran�ch u�ivatelsk�ch ID"
msgid "change the expiration date for the key or selected subkeys"
msgstr "zm�nit datum expirace pro kl�� nebo vybran� podkl��e"
msgid "flag the selected user ID as primary"
msgstr "ozna�it vybran� u�ivatelsk� ID jako prim�rn�"
msgid "toggle between the secret and public key listings"
msgstr "p�epnout mezi vypisem seznamu tajn�ch a ve�ejn�ch kl���"
msgid "list preferences (expert)"
msgstr "vypsat seznam p�edvoleb (pro experty)"
msgid "list preferences (verbose)"
msgstr "vypsat seznam p�edvoleb (podrobn�)"
msgid "set preference list for the selected user IDs"
msgstr "nastavit sadu preferenc� pro vybran� u�ivatelsk� ID"
#, fuzzy
msgid "set the preferred keyserver URL for the selected user IDs"
msgstr "nastavit URL preferovan�ho server kl��� pro vybran� u�ivatelsk� ID"
#, fuzzy
msgid "set a notation for the selected user IDs"
msgstr "nastavit sadu preferenc� pro vybran� u�ivatelsk� ID"
msgid "change the passphrase"
msgstr "zm�nit heslo"
msgid "change the ownertrust"
msgstr "zm�nit d�v�ryhodnost vlastn�ka kl��e"
msgid "revoke signatures on the selected user IDs"
msgstr "revokovat podpisu na vybran�ch u�ivatelsk�ch ID"
msgid "revoke selected user IDs"
msgstr "revokovat vybran� u�ivatelsk� ID"
msgid "revoke key or selected subkeys"
msgstr "revokovat kl�� nebo vybran� podkl��e"
msgid "enable key"
msgstr "nastavit kl�� jako platn� (enable)"
msgid "disable key"
msgstr "nastavit kl�� jako neplatn� (disable)"
msgid "show selected photo IDs"
msgstr "uk�zat vybran� fotografick� ID"
msgid "compact unusable user IDs and remove unusable signatures from key"
msgstr ""
msgid "compact unusable user IDs and remove all signatures from key"
msgstr ""
#, c-format
msgid "error reading secret keyblock \"%s\": %s\n"
msgstr "chyba p�i �ten� bloku tajn�ho kl��e \"%s\": %s\n"
msgid "Secret key is available.\n"
msgstr "Tajn� kl�� je dostupn�.\n"
msgid "Need the secret key to do this.\n"
msgstr "Pro proveden� t�to operace je pot�eba tajn� kl��.\n"
msgid "Please use the command \"toggle\" first.\n"
msgstr "Pros�m, nejd��ve pou�ijte p��kaz \"toggle\" (p�epnout).\n"
msgid ""
"* The `sign' command may be prefixed with an `l' for local signatures "
"(lsign),\n"
" a `t' for trust signatures (tsign), an `nr' for non-revocable signatures\n"
" (nrsign), or any combination thereof (ltsign, tnrsign, etc.).\n"
msgstr ""
"* P��kaz `sign' m��e b�t pou�it s prefixem `l' pro lok�ln� podpis (lsign),\n"
" s prefixem `t' pro d�v�ryhodn� podpis (tsign) nebo `nr' pro neodvolaten� "
"podpis\n"
" (nrsign) nebo libovolnou jejich kombinac� (ltsign, tnrsign, atd.).\n"
msgid "Key is revoked."
msgstr "Kl�� revokov�n."
msgid "Really sign all user IDs? (y/N) "
msgstr "Opravdu podepsat v�echny id u�ivatele? (a/N) "
msgid "Hint: Select the user IDs to sign\n"
msgstr "N�pov�da: Vyberte id u�ivatele k podeps�n�\n"
#, c-format
msgid "Unknown signature type `%s'\n"
msgstr "Nezn�m� typ podpisu `%s'\n"
#, c-format
msgid "This command is not allowed while in %s mode.\n"
msgstr "Tento p��kaz nen� v m�d� %s dovolen�.\n"
msgid "You must select at least one user ID.\n"
msgstr "Mus�te vybrat alespo� jeden id u�ivatele.\n"
msgid "You can't delete the last user ID!\n"
msgstr "Nem��ete smazat posledn� id u�ivatele!\n"
msgid "Really remove all selected user IDs? (y/N) "
msgstr "Opravdu odstranit v�echny vybran� id u�ivatele? (a/N) "
msgid "Really remove this user ID? (y/N) "
msgstr "Opravdu odstranit tento id u�ivatele? (a/N) "
msgid "Really move the primary key? (y/N) "
msgstr "Opravdu p�esunout prim�rn� kl��? (a/N) "
msgid "You must select exactly one key.\n"
msgstr "Mus�te vybrat pr�v� jeden kl��.\n"
msgid "Command expects a filename argument\n"
msgstr "P��kaz o�ek�v� jm�no souboru jako argument\n"
#, c-format
msgid "Can't open `%s': %s\n"
msgstr "Nemohu otev��t `%s': %s\n"
#, c-format
msgid "Error reading backup key from `%s': %s\n"
msgstr "Chyba p�i �ten� z�lo�n�ho kl��e z `%s': %s\n"
msgid "You must select at least one key.\n"
msgstr "Mus�te vybrat alespo� jeden kl��.\n"
msgid "Do you really want to delete the selected keys? (y/N) "
msgstr "Opravdu chcete smazat vybran� kl��e? (a/N) "
msgid "Do you really want to delete this key? (y/N) "
msgstr "Opravdu chcete smazat tento kl��? (a/N) "
msgid "Really revoke all selected user IDs? (y/N) "
msgstr "Opravdu revokovat v�echny vybran� id u�ivatele? (a/N) "
msgid "Really revoke this user ID? (y/N) "
msgstr "Opravdu revokovat tento id u�ivatele? (a/N) "
msgid "Do you really want to revoke the entire key? (y/N) "
msgstr "Opravdu chcete revokovat cel� kl��? (a/N) "
msgid "Do you really want to revoke the selected subkeys? (y/N) "
msgstr "Opravdu chcete revokovat vybran� podkl��e? (a/N) "
msgid "Do you really want to revoke this subkey? (y/N) "
msgstr "Opravdu chcete revokovat tento podkl��? (a/N) "
msgid "Owner trust may not be set while using a user provided trust database\n"
msgstr ""
"D�v�ryhodnost vlastn�ka nelze m�nit je-li pou��v�na datab�ze d�v�ry "
"poskytnut� u�ivatelem\n"
msgid "Set preference list to:\n"
msgstr "Nastavit seznam p�edvoleb:\n"
msgid "Really update the preferences for the selected user IDs? (y/N) "
msgstr "Opravdu aktualizovat p�edvolby pro vybran� id u�ivatele? (a/N) "
msgid "Really update the preferences? (y/N) "
msgstr "Opravdu aktualizovat p�edvolby? (a/N) "
msgid "Save changes? (y/N) "
msgstr "Ulo�it zm�ny? (a/N) "
msgid "Quit without saving? (y/N) "
msgstr "Ukon�it bez ulo�en�? (a/N) "
#, c-format
msgid "update failed: %s\n"
msgstr "aktualizace selhala: %s\n"
#, c-format
msgid "update secret failed: %s\n"
msgstr "aktualizace tajn�ho kl��e selhala: %s\n"
msgid "Key not changed so no update needed.\n"
msgstr "Kl�� nebyl zm�n�n, tak�e nen� pot�eba jej aktualizovat.\n"
msgid "Digest: "
msgstr "Hash: "
msgid "Features: "
msgstr "Vlastnosti: "
msgid "Keyserver no-modify"
msgstr "Keyserver bez modifikace"
msgid "Preferred keyserver: "
msgstr "Preferovan� keyserver: "
#, fuzzy
msgid "Notations: "
msgstr ""
"@\n"
"Mo�nosti:\n"
" "
msgid "There are no preferences on a PGP 2.x-style user ID.\n"
msgstr "U�ivatelsk� ID form�tu PGP 2.x nem� ��dn� p�edvolby\n"
#, c-format
msgid "This key was revoked on %s by %s key %s\n"
msgstr "V %s tento kl�� revokoval %s kl��em %s\n"
#, c-format
msgid "This key may be revoked by %s key %s"
msgstr "Tento kl�� m��e b�t revokov�n %s kl��em %s "
msgid "(sensitive)"
msgstr "(citliv� informace)"
#, c-format
msgid "created: %s"
msgstr "vytvo�en: %s"
#, c-format
msgid "revoked: %s"
msgstr "revokov�n: %s"
#, c-format
msgid "expired: %s"
msgstr "platnost skon�ila: %s"
#, c-format
msgid "expires: %s"
msgstr "platnost skon��: %s"
#, c-format
msgid "usage: %s"
msgstr "pou�it�: %s"
#, c-format
msgid "trust: %s"
msgstr "d�v�ra: %s"
#, c-format
msgid "validity: %s"
msgstr "platnost: %s"
msgid "This key has been disabled"
msgstr "Tento kl�� byl ozna�en za neplatn� (disabled)"
msgid "card-no: "
msgstr "��slo karty: "
msgid ""
"Please note that the shown key validity is not necessarily correct\n"
"unless you restart the program.\n"
msgstr ""
"Pros�m nezapome�te, �e zobrazovan� �daje o platnosti kl��� nemus�\n"
"b�t nutn� spr�vn�, dokud znova nespust�te program.\n"
msgid "revoked"
msgstr "revokov�n"
msgid "expired"
msgstr "platnost skon�ila"
msgid ""
"WARNING: no user ID has been marked as primary. This command may\n"
" cause a different user ID to become the assumed primary.\n"
msgstr ""
"VAROV�N�: ��dn� u�ivatelsk� ID nebylo ozna�eno jako prim�rn�. Tento p��kaz\n"
" m��e zp�sobit, �e za prim�rn� bude pova�ov�no jin� user ID.\n"
msgid ""
"WARNING: This is a PGP2-style key. Adding a photo ID may cause some "
"versions\n"
" of PGP to reject this key.\n"
msgstr ""
"VAROV�N�: Toto je PGP2 kl��. P�id�n� fotografick�ho ID m��e v n�kter�ch\n"
" verz�ch PGP v�st k odm�tnut� tohoto kl��e.\n"
msgid "Are you sure you still want to add it? (y/N) "
msgstr "Jste si jist�, �e jej chcete st�le p�idat? (a/N) "
msgid "You may not add a photo ID to a PGP2-style key.\n"
msgstr "Nem�li by jste p�id�vat fotografick� ID k PGP2 kl��i.\n"
msgid "Delete this good signature? (y/N/q)"
msgstr "Smazat tento dobr� podpis? (a/N/u)"
msgid "Delete this invalid signature? (y/N/q)"
msgstr "Smazat tento neplatn� podpis? (a/N/u)"
msgid "Delete this unknown signature? (y/N/q)"
msgstr "Smazat tento nezn�m� podpis? (a/N/u)"
msgid "Really delete this self-signature? (y/N)"
msgstr "Opravdu smazat tento podpis podepsan� sebou sam�m? (a/N)"
#, c-format
msgid "Deleted %d signature.\n"
msgstr "Smaz�n %d podpis.\n"
#, c-format
msgid "Deleted %d signatures.\n"
msgstr "Smaz�no %d podpis�.\n"
msgid "Nothing deleted.\n"
msgstr "Nic nebylo smaz�no.\n"
msgid "invalid"
msgstr "neplatn�"
#, fuzzy, c-format
msgid "User ID \"%s\" compacted: %s\n"
msgstr "U�ivatelsk� ID \"%s\": je ji� odstran�no.\n"
#, fuzzy, c-format
msgid "User ID \"%s\": %d signature removed\n"
msgstr "kl�� %s: \"%s\" %d podpis� odstran�no\n"
#, fuzzy, c-format
msgid "User ID \"%s\": %d signatures removed\n"
msgstr "kl�� %s: \"%s\" %d podpis� odstran�no\n"
#, fuzzy, c-format
msgid "User ID \"%s\": already minimized\n"
msgstr "U�ivatelsk� ID \"%s\": je ji� odstran�no.\n"
#, fuzzy, c-format
msgid "User ID \"%s\": already clean\n"
msgstr "U�ivatelsk� ID \"%s\": je ji� odstran�no.\n"
msgid ""
"WARNING: This is a PGP 2.x-style key. Adding a designated revoker may "
"cause\n"
" some versions of PGP to reject this key.\n"
msgstr ""
"VAROV�N�: Toto je PGP2 kl��. P�id�n� 'pov��en� revokace' m��e v n�kter�ch\n"
" verz�ch PGP v�st k odm�tnut� tohoto kl��e.\n"
msgid "You may not add a designated revoker to a PGP 2.x-style key.\n"
msgstr "Nem�li by jste p�id�vat 'pov��en� revokace' k PGP2 kl��i.\n"
msgid "Enter the user ID of the designated revoker: "
msgstr "Vlo�te identifik�tor u�ivatele pov��en�ho revokac�: "
msgid "cannot appoint a PGP 2.x style key as a designated revoker\n"
msgstr "kl�� form�tu PGP 2.x nelze pov��it revokac�\n"
msgid "you cannot appoint a key as its own designated revoker\n"
msgstr "kl�� nelze pov��it revokac� j�m sam�m\n"
msgid "this key has already been designated as a revoker\n"
msgstr "tento kl�� ji� bykl pov��en revokac�\n"
msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n"
msgstr ""
"VAROV�N�: ustanoven� kl��e 'pov�en�m revok�torem' je nevratn� operace!\n"
msgid ""
"Are you sure you want to appoint this key as a designated revoker? (y/N) "
msgstr "Jste si jist�, �e tento kl�� chcete pov��it revokac�? (a/N) "
msgid "Please remove selections from the secret keys.\n"
msgstr "Pros�m, odstra�te v�b�r z tajn�ch kl���.\n"
msgid "Please select at most one subkey.\n"
msgstr "Pros�m, vyberte nejv��e jeden podkl��.\n"
msgid "Changing expiration time for a subkey.\n"
msgstr "M�n�m dobu expirace podkl��e.\n"
msgid "Changing expiration time for the primary key.\n"
msgstr "M�n�m dobu expirace prim�rn�ho kl��e.\n"
msgid "You can't change the expiration date of a v3 key\n"
msgstr "Nem��ete zm�nit dobu platnosti kl��e verze 3\n"
msgid "No corresponding signature in secret ring\n"
msgstr "V souboru tajn�ch kl��� chyb� odpov�daj�c� podpis\n"
#, fuzzy, c-format
msgid "signing subkey %s is already cross-certified\n"
msgstr "VAROV�N�: podepisovac� podkl�� %s nen� k���ov� certifikov�n\n"
#, c-format
msgid "subkey %s does not sign and so does not need to be cross-certified\n"
msgstr ""
msgid "Please select exactly one user ID.\n"
msgstr "Pros�m, vyberte pr�v� jeden id u�ivatele .\n"
#, c-format
msgid "skipping v3 self-signature on user ID \"%s\"\n"
msgstr "p�esko�en v3 podpis kl��e j�m sam�m u u�ivatelsk�ho id \"%s\"\n"
msgid "Enter your preferred keyserver URL: "
msgstr "Vlo�te URL preferovan�ho keyserveru: "
msgid "Are you sure you want to replace it? (y/N) "
msgstr "Jste si jist�(�), �e jej chcete p�epsat? (a/N) "
msgid "Are you sure you want to delete it? (y/N) "
msgstr "Jste si jist�(�), �e jej chcete smazat? (a/N) "
#, fuzzy
msgid "Enter the notation: "
msgstr "Podepisovac� notace: "
#, fuzzy
msgid "Proceed? (y/N) "
msgstr "P�epsat (a/N)? "
#, c-format
msgid "No user ID with index %d\n"
msgstr "Neexistuje identifik�tor u�ivatele s indexem %d\n"
#, c-format
msgid "No user ID with hash %s\n"
msgstr "Neexistuje u�ivatelsk� ID s hashem %s\n"
#, c-format
msgid "No subkey with index %d\n"
msgstr "Neexistuje podkl�� s indexem %d\n"
#, c-format
msgid "user ID: \"%s\"\n"
msgstr "id u�ivatele:\"%s\"\n"
#, c-format
msgid "signed by your key %s on %s%s%s\n"
msgstr "podeps�no va��m kl��em %s v %s%s%s\n"
msgid " (non-exportable)"
msgstr " (neexportovateln�)"
#, c-format
msgid "This signature expired on %s.\n"
msgstr "Platnost podpisu vypr�� %s.\n"
msgid "Are you sure you still want to revoke it? (y/N) "
msgstr "Jste si jist�, �e jej chcete st�le revokovat? (a/N) "
msgid "Create a revocation certificate for this signature? (y/N) "
msgstr "Vytvo�it pro tento podpis revoka�n� certifik�t? (a/N)"
msgid "Not signed by you.\n"
msgstr ""
#, c-format
msgid "You have signed these user IDs on key %s:\n"
msgstr "Podepsal(a) jste n�sleduj�c� identifik�tory u�ivatele: %s:\n"
msgid " (non-revocable)"
msgstr " (nerevokovateln�)"
#, c-format
msgid "revoked by your key %s on %s\n"
msgstr "revokov�no va��m kl��em %s v %s\n"
msgid "You are about to revoke these signatures:\n"
msgstr "Chyst�te se revokovat tyto podpisy:\n"
msgid "Really create the revocation certificates? (y/N) "
msgstr "Opravdu vytvo�it revoka�n� certifik�ty? (a/N) "
msgid "no secret key\n"
msgstr "neexistuje tajn� kl��\n"
#, c-format
msgid "user ID \"%s\" is already revoked\n"
msgstr "U�ivatelsk� ID \"%s\" je ji� revokov�no.\n"
#, c-format
msgid "WARNING: a user ID signature is dated %d seconds in the future\n"
msgstr "VAROV�N�: podpis ID u�ivatele je datov�n %d sekund v budoucnosti\n"
#, c-format
msgid "Key %s is already revoked.\n"
msgstr "Kl�� %s je ji� revokov�n.\n"
#, c-format
msgid "Subkey %s is already revoked.\n"
msgstr "Podkl�� %s je ji� revokov�n.\n"
#, c-format
msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n"
msgstr "Zobrazuji %s fotografick� ID o velikosti %ld pro kl�� %s (uid %d)\n"
#, c-format
msgid "preference `%s' duplicated\n"
msgstr "duplicita p�edvolby `%s'\n"
msgid "too many cipher preferences\n"
msgstr "p��li� mnoho p�edvoleb pro �ifrov�n�\n"
msgid "too many digest preferences\n"
msgstr "p��li� mnoho p�edvoleb pro vzorkov�n�\n"
msgid "too many compression preferences\n"
msgstr "p��li� mnoho p�edvoleb pro komprimaci\n"
#, c-format
msgid "invalid item `%s' in preference string\n"
msgstr "neplatn� polo�ka `%s' v �et�zci s p�edvolbami\n"
msgid "writing direct signature\n"
msgstr "zapisuji podpis kl��e j�m sam�m (direct signature)\n"
msgid "writing self signature\n"
msgstr "zapisuji podpis kl��e sebou sam�m\n"
msgid "writing key binding signature\n"
msgstr "zapisuji \"key-binding\" podpis\n"
#, c-format
msgid "keysize invalid; using %u bits\n"
msgstr "neplatn� d�lka kl��e; pou�iji %u bit�\n"
#, c-format
msgid "keysize rounded up to %u bits\n"
msgstr "d�lka kl��e zaokrouhlena na %u bit�\n"
msgid "Sign"
msgstr "Podepisov�n�"
msgid "Certify"
msgstr ""
msgid "Encrypt"
msgstr "�ifrov�n�"
msgid "Authenticate"
msgstr "Autentizace"
#. TRANSLATORS: Please use only plain ASCII characters for the
#. translation. If this is not possible use single digits. Here is
#. a description of the fucntions:
#.
#. s = Toggle signing capability
#. e = Toggle encryption capability
#. a = Toggle authentication capability
#. q = Finish
#.
msgid "SsEeAaQq"
msgstr "SsEeAaQq"
#, c-format
msgid "Possible actions for a %s key: "
msgstr "Pro kl�� %s lze prov�st: "
msgid "Current allowed actions: "
msgstr "Aktu�ln� povolen� akce: "
#, c-format
msgid " (%c) Toggle the sign capability\n"
msgstr " (%c) Zapnout/vypnout schopnost podepisovat\n"
#, c-format
msgid " (%c) Toggle the encrypt capability\n"
msgstr " (%c) Zapnout/vypnout schopnost �ifrovat\n"
#, c-format
msgid " (%c) Toggle the authenticate capability\n"
msgstr " (%c) Zapnout/vypnout schopnost autentizovat\n"
#, c-format
msgid " (%c) Finished\n"
msgstr " (%c) Konec\n"
msgid "Please select what kind of key you want:\n"
msgstr "Pros�m, vyberte druh kl��e, kter� chcete:\n"
#, fuzzy, c-format
msgid " (%d) RSA and RSA (default)\n"
msgstr " (%d) DSA a ElGamal (implicitn�)\n"
#, fuzzy, c-format
msgid " (%d) DSA and Elgamal\n"
msgstr " (%d) DSA a ElGamal (implicitn�)\n"
#, c-format
msgid " (%d) DSA (sign only)\n"
msgstr " (%d) DSA (pouze pro podpis)\n"
#, c-format
msgid " (%d) RSA (sign only)\n"
msgstr " (%d) RSA (pouze pro podpis)\n"
#, c-format
msgid " (%d) Elgamal (encrypt only)\n"
msgstr " (%d) ElGamal (pouze pro �ifrov�n�)\n"
#, c-format
msgid " (%d) RSA (encrypt only)\n"
msgstr " (%d) RSA (pouze pro �ifrov�n�)\n"
#, c-format
msgid " (%d) DSA (set your own capabilities)\n"
msgstr " (%d) DSA (nastavit si vlastn� pou�it�)\n"
#, c-format
msgid " (%d) RSA (set your own capabilities)\n"
msgstr " (%d) RSA (nastavit si vlastn� pou�it�)\n"
#, c-format
msgid "%s keys may be between %u and %u bits long.\n"
msgstr "kl�� %s m��e m�t d�lku v intervalu %u a� %u bit�.\n"
#, fuzzy, c-format
msgid "What keysize do you want for the subkey? (%u) "
msgstr "Jakou d�lku kl��e si p�ejete? (%u) "
#, c-format
msgid "What keysize do you want? (%u) "
msgstr "Jakou d�lku kl��e si p�ejete? (%u) "
#, c-format
msgid "Requested keysize is %u bits\n"
msgstr "Po�adovan� d�lka kl��e je %u bit�.\n"
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 ""
"Pros�m ur�ete, jak dlouho by kl�� m�l platit.\n"
" 0 = doba platnosti kl��e nen� omezena\n"
" <n> = doba platnosti kl��e skon�� za n dn�\n"
" <n>w = doba platnosti kl��e skon�� za n t�dn�\n"
" <n>m = doba platnosti kl��e skon�� za n m�s�c�\n"
" <n>y = doba platnosti kl��e skon�� za n let\n"
msgid ""
"Please specify how long the signature should be valid.\n"
" 0 = signature does not expire\n"
" <n> = signature expires in n days\n"
" <n>w = signature expires in n weeks\n"
" <n>m = signature expires in n months\n"
" <n>y = signature expires in n years\n"
msgstr ""
"Pros�m ur�ete, jak dlouho by m�l podpis platit.\n"
" 0 = doba platnosti podpisu nen� omezena\n"
" <n> = doba platnosti podpisu skon�� za n dn�\n"
" <n>w = doba platnosti podpisu skon�� za n t�dn�\n"
" <n>m = doba platnosti podpisu skon�� za n m�s�c�\n"
" <n>y = doba platnosti podpisu skon�� za n let\n"
msgid "Key is valid for? (0) "
msgstr "Kl�� je platn� pro? (0) "
#, c-format
msgid "Signature is valid for? (%s) "
msgstr "Podpis je platn� pro? (%s) "
msgid "invalid value\n"
msgstr "neplatn� hodnota\n"
msgid "Key does not expire at all\n"
msgstr "Platnost kl��e nikdy neskon��\n"
msgid "Signature does not expire at all\n"
msgstr "Platnost podpisu nikdy neskon��\n"
#, c-format
msgid "Key expires at %s\n"
msgstr "Platnost kl��e skon�� v %s\n"
#, c-format
msgid "Signature expires at %s\n"
msgstr "Platnost podpisu skon�� v %s\n"
msgid ""
"Your system can't display dates beyond 2038.\n"
"However, it will be correctly handled up to 2106.\n"
msgstr ""
"V� syst�m neum� zobrazit data po roce 2038.\n"
"V ka�d�m p��pad� budou data korektn� zpracov�v�na do roku 2106.\n"
msgid "Is this correct? (y/N) "
msgstr "Je to spr�vn� (a/N)? "
msgid ""
"\n"
"You need a user ID to identify your key; the software constructs the user "
"ID\n"
"from the Real Name, Comment and Email Address in this form:\n"
" \"Heinrich Heine (Der Dichter) <[email protected]>\"\n"
"\n"
msgstr ""
"\n"
"Aby bylo mo�n� rozpoznat V� kl��, mus�te zn�t identifik�tor u�ivatele;\n"
"program jej slo�� z Va�eho jm�na a p��jmen�, koment��e a e-mailu\n"
"v tomto tvaru:\n"
" \"Magda Prochazkova (student) <[email protected]>\"\n"
"\n"
msgid "Real name: "
msgstr "Jm�no a p��jmen�: "
msgid "Invalid character in name\n"
msgstr "Neplatn� znak ve jm�n�\n"
msgid "Name may not start with a digit\n"
msgstr "Jm�no nem��e za��nat ��slic�\n"
msgid "Name must be at least 5 characters long\n"
msgstr "Jm�no mus� b�t dlouh� alespo� 5 znak�\n"
msgid "Email address: "
msgstr "E-mailov� adresa: "
msgid "Not a valid email address\n"
msgstr "Neplatn� e-mailov� adresa\n"
msgid "Comment: "
msgstr "Koment��: "
msgid "Invalid character in comment\n"
msgstr "Neplatn� znak v koment��i\n"
#, c-format
msgid "You are using the `%s' character set.\n"
msgstr "Pou��v�te znakovou sadu `%s'.\n"
#, c-format
msgid ""
"You selected this USER-ID:\n"
" \"%s\"\n"
"\n"
msgstr ""
"Zvolil(a) jste tento identifik�tor u�ivatele:\n"
" \"%s\"\n"
"\n"
msgid "Please don't put the email address into the real name or the comment\n"
msgstr "Do pole jm�no nebo koment�� nepi�te, pros�m, e-mailovou adresu.\n"
#. TRANSLATORS: These are the allowed answers in
#. lower and uppercase. Below you will find the matching
#. string which should be translated accordingly and the
#. letter changed to match the one in the answer string.
#.
#. n = Change name
#. c = Change comment
#. e = Change email
#. o = Okay (ready, continue)
#. q = Quit
#.
msgid "NnCcEeOoQq"
msgstr "jJkKeEPpUu"
msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? "
msgstr "Zm�nit (J)m�no, (K)oment��, (E)-mail nebo (U)kon�it? "
msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? "
msgstr ""
"Zm�nit (J)m�no, (K)oment��, (E)-mail, (P)okra�ovat d�l nebo (U)kon�it "
"program? "
msgid "Please correct the error first\n"
msgstr "Nejd��v, pros�m, opravte chybu\n"
msgid ""
"You need a Passphrase to protect your secret key.\n"
"\n"
msgstr ""
"Pro ochranu Va�eho tajn�ho kl��e mus�te zadat heslo.\n"
"\n"
#, c-format
msgid "%s.\n"
msgstr "%s.\n"
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 ""
"Nechcete heslo - to *nen�* dobr� n�pad!\n"
"Dob�e, budu pokra�ovat bez hesla. Kdykoliv m��ete heslo zm�nit pou�it�m\n"
"tohoto programu s parametrem \"--edit-key\".\n"
"\n"
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 ""
"Mus�me vytvo�it mnoho n�hodn�ch bajt�. B�hem vytv��en� m��ete\n"
"prov�d�t n�jakou jinou pr�ci na po��ta�i (ps�t na kl�vesnici, pohybovat "
"my��,\n"
"pou��vat disky); d�ky tomu m� gener�tor lep�� �anci z�skat dostatek "
"entropie.\n"
msgid "Key generation canceled.\n"
msgstr "Vytv��en� kl��e bylo zru�eno.\n"
#, c-format
msgid "writing public key to `%s'\n"
msgstr "zapisuji ve�ejn� kl�� do `%s'\n"
#, c-format
msgid "writing secret key stub to `%s'\n"
msgstr "zapisuji tajn� kl�� do `%s'\n"
#, c-format
msgid "writing secret key to `%s'\n"
msgstr "zapisuji tajn� kl�� do `%s'\n"
#, c-format
msgid "no writable public keyring found: %s\n"
msgstr "nenalezen zapisovateln� soubor ve�ejn�ch kl��� (pubring): %s\n"
#, c-format
msgid "no writable secret keyring found: %s\n"
msgstr "nenalezen zapisovateln� soubor tajn�ch kl��� (secring): %s\n"
#, c-format
msgid "error writing public keyring `%s': %s\n"
msgstr "chyba p�i z�pisu do souboru ve�ejn�ch kl��� `%s': %s\n"
#, c-format
msgid "error writing secret keyring `%s': %s\n"
msgstr "chyba p�i z�pisu do souboru tajn�ch kl��� `%s': %s\n"
msgid "public and secret key created and signed.\n"
msgstr "ve�ejn� a tajn� kl�� byly vytvo�eny a podeps�ny.\n"
msgid ""
"Note that this key cannot be used for encryption. You may want to use\n"
"the command \"--edit-key\" to generate a subkey for this purpose.\n"
msgstr ""
"Tento kl�� nem��e b�t pou�it� pro �ifrov�n�. K vytvo�en�\n"
"sekund�rn�ho kl��e pro tento ��el m��ete pou��t p��kaz \"--edit-key\".\n"
#, c-format
msgid "Key generation failed: %s\n"
msgstr "Vytvo�en� kl��e se nepoda�ilo: %s\n"
#, c-format
msgid ""
"key has been created %lu second in future (time warp or clock problem)\n"
msgstr ""
"kl�� byl vytvo�en %lu sekund v budoucnosti (do�lo ke zm�n� �asu nebo\n"
"je probl�m se syst�mov�m �asem)\n"
#, c-format
msgid ""
"key has been created %lu seconds in future (time warp or clock problem)\n"
msgstr ""
"kl�� byl vytvo�en %lu sekund v budoucnosti (do�lo ke zm�n� �asu nebo\n"
"je probl�m se syst�mov�m �asem)\n"
msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n"
msgstr "POZN�MKA: vytvo�en� podkl��e pro kl��e v3 nen� v souladu s OpenPGP\n"
msgid "Really create? (y/N) "
msgstr "Opravdu vytvo�it? (a/N) "
#, c-format
msgid "storing key onto card failed: %s\n"
msgstr "ulo�en� kl��e na kartu se nezda�ilo: %s\n"
#, c-format
msgid "can't create backup file `%s': %s\n"
msgstr "nemohu vytvo�it z�lohu souboru `%s': %s\n"
#, c-format
msgid "NOTE: backup of card key saved to `%s'\n"
msgstr "POZN�MKA: z�loha kl��e z karty ulo�ena do `%s'\n"
msgid "never "
msgstr "nikdy "
msgid "Critical signature policy: "
msgstr "Kritick� podepisovac� politika: "
msgid "Signature policy: "
msgstr "Podepisovac� politika: "
msgid "Critical preferred keyserver: "
msgstr "Kriticky preferovan� keyserver: "
msgid "Critical signature notation: "
msgstr "Kritick� podepisovac� notace: "
msgid "Signature notation: "
msgstr "Podepisovac� notace: "
msgid "Keyring"
msgstr "soubor kl��� (keyring)"
msgid "Primary key fingerprint:"
msgstr "Prim�rn� fingerprint kl��e:"
msgid " Subkey fingerprint:"
msgstr " Fingerprint podkl��e:"
#. TRANSLATORS: this should fit into 24 bytes to that the
#. * fingerprint data is properly aligned with the user ID
msgid " Primary key fingerprint:"
msgstr " Prim�rn� fingerprint kl��e:"
msgid " Subkey fingerprint:"
msgstr " Fingerprint podkl��e:"
msgid " Key fingerprint ="
msgstr " Fingerprint kl��e ="
msgid " Card serial no. ="
msgstr " Seriov� ��slo karty ="
#, c-format
msgid "renaming `%s' to `%s' failed: %s\n"
msgstr "p�ejmenov�n� `%s' na `%s' se nezda�ilo: %s\n"
msgid "WARNING: 2 files with confidential information exists.\n"
msgstr "VAROV�N�: Existuj� dva soubory s tajn�mi informacemi.\n"
#, c-format
msgid "%s is the unchanged one\n"
msgstr "%s je beze zm�ny\n"
#, c-format
msgid "%s is the new one\n"
msgstr "%s je nov�\n"
msgid "Please fix this possible security flaw\n"
msgstr "Pros�m, opravte tento mo�n� bezpe�nostn� probl�m\n"
#, c-format
msgid "caching keyring `%s'\n"
msgstr "cache souboru kl��� `%s'\n"
#, c-format
msgid "%lu keys cached so far (%lu signatures)\n"
msgstr "%lu kl��� ji� ulo�eno v cache (%lu podpis�)\n"
#, c-format
msgid "%lu keys cached (%lu signatures)\n"
msgstr "%lu kl��� ulo�eno v cache (%lu podpis�)\n"
#, c-format
msgid "%s: keyring created\n"
msgstr "%s: soubor kl��� (keyring) vytvo�en\n"
msgid "include revoked keys in search results"
msgstr ""
msgid "include subkeys when searching by key ID"
msgstr ""
msgid "use temporary files to pass data to keyserver helpers"
msgstr ""
msgid "do not delete temporary files after using them"
msgstr ""
msgid "automatically retrieve keys when verifying signatures"
msgstr ""
#, fuzzy
msgid "honor the preferred keyserver URL set on the key"
msgstr "Vlo�te URL preferovan�ho keyserveru: "
msgid "honor the PKA record set on a key when retrieving keys"
msgstr ""
#, c-format
msgid "WARNING: keyserver option `%s' is not used on this platform\n"
msgstr "VAROV�N�: volba `%s' pro server kl��� nen� na t�to platform� ��inn�\n"
msgid "disabled"
msgstr "disabled"
msgid "Enter number(s), N)ext, or Q)uit > "
msgstr "Vlo�te ��slo (��sla), 'N' pro dal�� nebo 'Q' pro konec> "
#, c-format
msgid "invalid keyserver protocol (us %d!=handler %d)\n"
msgstr "neplatn� protokol serveru kl��� (us %d!=handler %d)\n"
#, c-format
msgid "key \"%s\" not found on keyserver\n"
msgstr "kl�� \"%s\" nebyl na serveru kl��� nalezen\n"
msgid "key not found on keyserver\n"
msgstr "kl�� nebyl na serveru kl��� nalezen\n"
#, c-format
msgid "requesting key %s from %s server %s\n"
msgstr "po�aduji kl�� %s ze %s server %s\n"
#, c-format
msgid "requesting key %s from %s\n"
msgstr "po�aduji kl�� %s z %s\n"
#, fuzzy, c-format
msgid "searching for names from %s server %s\n"
msgstr "vyhled�v�m \"%s\" na %s serveru %s\n"
#, fuzzy, c-format
msgid "searching for names from %s\n"
msgstr "vyhled�v�m \"%s\" na serveru %s\n"
#, c-format
msgid "sending key %s to %s server %s\n"
msgstr "pos�l�m kl�� %s na %s server %s\n"
#, c-format
msgid "sending key %s to %s\n"
msgstr "pos�l�m kl�� %s na %s\n"
#, c-format
msgid "searching for \"%s\" from %s server %s\n"
msgstr "vyhled�v�m \"%s\" na %s serveru %s\n"
#, c-format
msgid "searching for \"%s\" from %s\n"
msgstr "vyhled�v�m \"%s\" na serveru %s\n"
msgid "no keyserver action!\n"
msgstr "��dn� operace se serverem kl���!\n"
#, c-format
msgid "WARNING: keyserver handler from a different version of GnuPG (%s)\n"
msgstr "VAROV�N�: keyserver handler z jin� verze GnuPG (%s)\n"
msgid "keyserver did not send VERSION\n"
msgstr "server kl��� neposlal VERSION\n"
msgid "no keyserver known (use option --keyserver)\n"
msgstr "�adn� server kl��� nen� zn�m (pou��jte volbu --keyserver)\n"
msgid "external keyserver calls are not supported in this build\n"
msgstr "vol�n� extern�ho keyserver nen� v t�to verzi podporov�no\n"
#, c-format
msgid "no handler for keyserver scheme `%s'\n"
msgstr "protokol serveru kl��� `%s' nen� podporov�n\n"
#, c-format
msgid "action `%s' not supported with keyserver scheme `%s'\n"
msgstr "akce `%s' nen� podporov�na v protokolu `%s' serveru kl���\n"
#, c-format
msgid "%s does not support handler version %d\n"
msgstr "%s nepodporuje protokol verze %d\n"
msgid "keyserver timed out\n"
msgstr "�asov� limit pro server kl��� vypr�el\n"
msgid "keyserver internal error\n"
msgstr "intern� chyba serveru kl���\n"
#, c-format
msgid "keyserver communications error: %s\n"
msgstr "chyba komunikace se serverem kl���: %s\n"
#, c-format
msgid "\"%s\" not a key ID: skipping\n"
msgstr "\"%s\" nen� ID kl��e: p�esko�eno\n"
#, c-format
msgid "WARNING: unable to refresh key %s via %s: %s\n"
msgstr "VAROV�N�: nelze aktualizovat kl�� %s prost�ednictv�m %s: %s\n"
#, c-format
msgid "refreshing 1 key from %s\n"
msgstr "aktualizuji 1 kl�� z %s\n"
#, c-format
msgid "refreshing %d keys from %s\n"
msgstr "aktualizuji %d kl��� z %s\n"
#, fuzzy, c-format
msgid "WARNING: unable to fetch URI %s: %s\n"
msgstr "VAROV�N�: nelze aktualizovat kl�� %s prost�ednictv�m %s: %s\n"
#, fuzzy, c-format
msgid "WARNING: unable to parse URI %s\n"
msgstr "VAROV�N�: nelze aktualizovat kl�� %s prost�ednictv�m %s: %s\n"
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "podivn� velikost �ifrovac�ho kl��e pro sezen� (%d)\n"
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s za�ifrovan� kl�� sezen�\n"
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "heslo (passphraze) generov�no s pou�it�m nezn�m�ho algoritmu %d\n"
#, c-format
msgid "public key is %s\n"
msgstr "ve�ejn� kl�� je %s\n"
msgid "public key encrypted data: good DEK\n"
msgstr "data za�ifrov�na ve�ejn�m kl��em: spr�vn� DEK\n"
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "za�ifrov�na %u-bitov�m %s kl��em, ID %s, vytvo�en�m %s\n"
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
# [kw]
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "za�ifrov�no %s kl��em, ID %s\n"
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "de�ifrov�n� ve�ejn�m kl��em selhalo: %s\n"
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "za�ifrov�no s heslem %lu\n"
msgid "encrypted with 1 passphrase\n"
msgstr "za�ifrov�no jedn�m heslem\n"
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "p�edpokl�d�m %s �ifrovan�ch dat\n"
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr ""
"algoritmus IDEA nen� dostupn�; optimisticky se jej pokus�me nahradit "
"algoritmem %s\n"
msgid "decryption okay\n"
msgstr "de�ifrov�n� o.k.\n"
msgid "WARNING: message was not integrity protected\n"
msgstr "VAROV�N�: zpr�va nebyla chr�n�na proti poru�en� jej� integrity\n"
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "VAROV�N�: se za�ifrovanou zpr�vou bylo manipulov�no!\n"
#, c-format
msgid "decryption failed: %s\n"
msgstr "de�ifrov�n� selhalo: %s\n"
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "POZN�MKA: odes�latel po�adoval (\"for-your-eyes-only\")\n"
#, c-format
msgid "original file name='%.*s'\n"
msgstr "p�vodn� jm�no souboru='%.*s'\n"
msgid "WARNING: multiple plaintexts seen\n"
msgstr ""
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr ""
"samostatn� revoka�n� certifik�t - pou�ijte \"gpg --import\", chcete-li jej "
"u��t\n"
#, fuzzy
msgid "no signature found\n"
msgstr "Dobr� podpis od \"%s\""
msgid "signature verification suppressed\n"
msgstr "verifikace podpisu potla�ena\n"
#, fuzzy
msgid "can't handle this ambiguous signature data\n"
msgstr "neum�m pracovat s t�mito n�sobn�mi podpisy\n"
#, c-format
msgid "Signature made %s\n"
msgstr "Podpis vytvo�en %s\n"
#, c-format
msgid " using %s key %s\n"
msgstr " pou�it� %s kl��e %s\n"
# Scripte scannen lt. dl1bke auf "ID (0-9A-F)+" deswegen mu� "ID" rein :-(
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "Podpis vytvo�en %s pomoc� kl��e %s s ID u�ivatele %s\n"
msgid "Key available at: "
msgstr "Kl�� k dispozici na: "
#, c-format
msgid "BAD signature from \"%s\""
msgstr "�PATN� podpis od \"%s\""
#, c-format
msgid "Expired signature from \"%s\""
msgstr "Podpis s vypr�enou platnost� od \"%s\""
#, c-format
msgid "Good signature from \"%s\""
msgstr "Dobr� podpis od \"%s\""
msgid "[uncertain]"
msgstr "[nejist�]"
#, c-format
msgid " aka \"%s\""
msgstr " alias \"%s\""
#, c-format
msgid "Signature expired %s\n"
msgstr "Platnost podpisu skon�ila %s\n"
#, c-format
msgid "Signature expires %s\n"
msgstr "Platnost podpisu skon�� %s\n"
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "podpis %s, hashovac� algoritmus %s\n"
msgid "binary"
msgstr "bin�rn� form�t"
msgid "textmode"
msgstr "textov� form�t"
msgid "unknown"
msgstr "nezn�m� form�t"
#, c-format
msgid "Can't check signature: %s\n"
msgstr "Nemohu ov��it podpis: %s\n"
msgid "not a detached signature\n"
msgstr "toto nen� podpis odd�len� od dokumentu\n"
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "VAROV�N�: detekov�no v�ce podpis�. Kontrolov�n bude pouze prvn�.\n"
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "samostatn� podpis t��dy 0x%02x\n"
msgid "old style (PGP 2.x) signature\n"
msgstr "podpis star�ho typu (PGP 2.x)\n"
msgid "invalid root packet detected in proc_tree()\n"
msgstr "nalezen neplatn� ko�enov� paket v proc_tree()\n"
#, c-format
msgid "can't disable core dumps: %s\n"
msgstr "nemohu vypnout vytv��en� core soubor�: %s\n"
#, c-format
msgid "fstat of `%s' failed in %s: %s\n"
msgstr "fstat `%s' selhal na %s: %s\n"
#, c-format
msgid "fstat(%d) failed in %s: %s\n"
msgstr "fstat(%d) selhal v %s: %s\n"
#, c-format
msgid "WARNING: using experimental public key algorithm %s\n"
msgstr "VAROV�N�: pou��v�m experiment�ln� algoritmus ve�ejn�ho kl��e %s\n"
#, fuzzy
msgid "WARNING: Elgamal sign+encrypt keys are deprecated\n"
msgstr "VAROV�N�: vy��dan� algoritmus %s nen� doporu�en\n"
#, c-format
msgid "WARNING: using experimental cipher algorithm %s\n"
msgstr "VAROV�N�: pou��v�m experiment�ln� �ifrovac� algoritmus %s\n"
#, c-format
msgid "WARNING: using experimental digest algorithm %s\n"
msgstr "VAROV�N�: pou��v�m experiment�ln� hashovac� algoritmus %s\n"
#, c-format
msgid "WARNING: digest algorithm %s is deprecated\n"
msgstr "VAROV�N�: vy��dan� algoritmus %s nen� doporu�en\n"
#, fuzzy, c-format
msgid "please see %s for more information\n"
msgstr "V�ce informac� naleznete na adrese http://www.gnupg.cz/faq.html\n"
#, fuzzy, c-format
msgid "NOTE: This feature is not available in %s\n"
msgstr "POZN�MKA: %s nen� v t�to verzi dostupn�\n"
#, c-format
msgid "%s:%d: deprecated option \"%s\"\n"
msgstr "%s:%d: pou�it� parametru \"%s\" se nedoporu�uje\n"
#, c-format
msgid "WARNING: \"%s\" is a deprecated option\n"
msgstr "VAROV�N�: pou��v�n� parametru \"%s\" se nedoporu�uje\n"
#, c-format
msgid "please use \"%s%s\" instead\n"
msgstr "pou�ijte m�sto n�j \"%s%s\" \n"
#, c-format
msgid "WARNING: \"%s\" is a deprecated command - do not use it\n"
msgstr "VAROV�N�: pou��v�n� p��kaz \"%s\" se nedoporu�uje - nepou��vejte jej\n"
msgid "Uncompressed"
msgstr "Nezakomprimov�no"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "uncompressed|none"
msgstr "nezakomprimov�no|nic"
#, c-format
msgid "this message may not be usable by %s\n"
msgstr "tato zpr�va nemus� b�t s %s pou�iteln�\n"
#, c-format
msgid "ambiguous option `%s'\n"
msgstr "nejednozna�n� volby `%s'\n"
#, c-format
msgid "unknown option `%s'\n"
msgstr "nezn�m� volba `%s'\n"
#, c-format
msgid "File `%s' exists. "
msgstr "Soubor `%s' existuje. "
msgid "Overwrite? (y/N) "
msgstr "P�epsat (a/N)? "
#, c-format
msgid "%s: unknown suffix\n"
msgstr "%s: nezn�m� p��pona\n"
msgid "Enter new filename"
msgstr "Vlo�te nov� n�zev souboru"
msgid "writing to stdout\n"
msgstr "zapisuji do standardn�ho v�stupu\n"
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "p�edpokl�d�m podepsan� data v `%s'\n"
#, c-format
msgid "new configuration file `%s' created\n"
msgstr "vytvo�en nov� konfigura�n� soubor `%s'\n"
#, c-format
msgid "WARNING: options in `%s' are not yet active during this run\n"
msgstr "VAROV�N�: nastaven� z `%s' nejsou p�i tomto spu�t�n� zat�m aktivn�\n"
#, c-format
msgid "directory `%s' created\n"
msgstr "adres�� `%s' vytvo�en\n"
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "nemohu pracovat s algoritmem ve�ejn�ho kl��e %d\n"
msgid "WARNING: potentially insecure symmetrically encrypted session key\n"
msgstr "VAROV�N�: potencion�ln� nebezpe�n� symetricky za�ifrov�n kl�� sezen�\n"
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "podpaket typu %d m� nastaven� kritick� bit\n"
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent nen� v tomto sezen� dostupn�\n"
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "�patn� form�t prom�nn� prost�ed� GPG_AGENT_INFO\n"
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
msgstr "gpg-agent protokol verze %d nen� podporov�n\n"
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "nemohu se p�ipojit k `%s': %s\n"
msgid "problem with the agent - disabling agent use\n"
msgstr "probl�m s agentem - pou��v�n� agenta vypnuto\n"
#, c-format
msgid " (main key ID %s)"
msgstr "(hlavn� ID kl��e %s)"
#, c-format
msgid ""
"You need a passphrase to unlock the secret key for user:\n"
"\"%.*s\"\n"
"%u-bit %s key, ID %s, created %s%s\n"
msgstr ""
"Pot�ebujete heslo, abyste odemknul(a) tajn� kl�� pro u�ivatele:\n"
"\"%.*s\"\n"
"Kl�� o d�lce %u bit�, typ %s, ID %s, vytvo�en� %s%s\n"
msgid "Repeat passphrase\n"
msgstr "Opakovat heslo\n"
msgid "Enter passphrase\n"
msgstr "Vlo�it heslo\n"
msgid "cancelled by user\n"
msgstr "zru�eno u�ivatelem\n"
msgid "can't query passphrase in batch mode\n"
msgstr "v d�vkov�m re�imu se nelze pt�t na heslo\n"
msgid "Enter passphrase: "
msgstr "Vlo�te heslo: "
#, c-format
msgid ""
"You need a passphrase to unlock the secret key for\n"
"user: \"%s\"\n"
msgstr ""
"Mus�te zn�t heslo, abyste odemknul(a) tajn� kl�� pro\n"
"u�ivatele: \"%s\"\n"
#, c-format
msgid "%u-bit %s key, ID %s, created %s"
msgstr "d�lka %u bit�, typ %s, kl�� %s, vytvo�en� %s"
#, c-format
msgid " (subkey on main key ID %s)"
msgstr " (podkl�� na hlavn�m kl��i ID %s)"
msgid "Repeat passphrase: "
msgstr "Opakujte heslo: "
msgid ""
"\n"
"Pick an image to use for your photo ID. The image must be a JPEG file.\n"
"Remember that the image is stored within your public key. If you use a\n"
"very large picture, your key will become very large as well!\n"
"Keeping the image close to 240x288 is a good size to use.\n"
msgstr ""
"\n"
"Vyberte obr�zek, kter� bude pou�it jako Va�e fotografick� ID. Obr�zek mus�\n"
"b�t ve form�tu JPEG. Nezapome�t�, �e obr�zek bude ulo�en ve Va�em ve�ejn�m\n"
"kl��i - velk� obr�zek bude m�t za n�sledek velmi velk� ve�ejn� kl�� !\n"
"Vhodn� velikost obr�zku je asi 240x288.\n"
msgid "Enter JPEG filename for photo ID: "
msgstr "Vlo�te jm�no JPEG souboru s fotografick�m ID: "
#, c-format
msgid "unable to open JPEG file `%s': %s\n"
msgstr "nelze otev��t JPEG soubor `%s': %s\n"
#, c-format
msgid "This JPEG is really large (%d bytes) !\n"
msgstr "Tento JPEG je opravdu velk� (%d bajt�)!\n"
msgid "Are you sure you want to use it? (y/N) "
msgstr "Jste si jist�(�), �e jej chcete pou��t? (a/N) "
#, c-format
msgid "`%s' is not a JPEG file\n"
msgstr "`%s' nen� soubor ve form�tu JPEG\n"
msgid "Is this photo correct (y/N/q)? "
msgstr "Je tato fotografie spr�vn� (a/N/u)? "
msgid "no photo viewer set\n"
msgstr ""
msgid "unable to display photo ID!\n"
msgstr "nelze zobrazit photo ID!\n"
msgid "No reason specified"
msgstr "D�vod nebyl specifikov�n"
msgid "Key is superseded"
msgstr "Kl�� je nahrazen"
msgid "Key has been compromised"
msgstr "Kl�� byl zkompromitov�n"
msgid "Key is no longer used"
msgstr "Kl�� se ji� nepou��v�"
msgid "User ID is no longer valid"
msgstr "Identifik�tor u�ivatele ji� neplat�"
msgid "reason for revocation: "
msgstr "d�vod pro revokaci: "
msgid "revocation comment: "
msgstr "revoka�n� pozn�mka: "
#. TRANSLATORS: These are the allowed answers in lower and
#. uppercase. Below you will find the matching strings which
#. should be translated accordingly and the letter changed to
#. match the one in the answer string.
#.
#. i = please show me more information
#. m = back to the main menu
#. s = skip this key
#. q = quit
#.
msgid "iImMqQsS"
msgstr "iImMuUsS"
msgid "No trust value assigned to:\n"
msgstr "Nen� p�i�azena ��dn� hodnota d�v�ry:\n"
#, c-format
msgid " aka \"%s\"\n"
msgstr " alias \"%s\"\n"
msgid ""
"How much do you trust that this key actually belongs to the named user?\n"
msgstr "Nakolik d�v��ujete tvrzen�, �e tento kl�� pat�� uveden�mu u�ivateli?\n"
#, c-format
msgid " %d = I don't know or won't say\n"
msgstr " %d = Nev�m nebo ne�eknu\n"
#, c-format
msgid " %d = I do NOT trust\n"
msgstr " %d = Ned�v��uji\n"
#, c-format
msgid " %d = I trust ultimately\n"
msgstr " %d = D�v��uji absolutn�\n"
msgid " m = back to the main menu\n"
msgstr " m = zp�t do hlavn�ho menu\n"
msgid " s = skip this key\n"
msgstr " s = p�esko�it tento kl��\n"
msgid " q = quit\n"
msgstr " u = ukon�it\n"
#, c-format
msgid ""
"The minimum trust level for this key is: %s\n"
"\n"
msgstr ""
"Minim�ln� �rove� d�v�ry tohoto kl��e je: %s\n"
"\n"
msgid "Your decision? "
msgstr "Va�e rozhodnut�? "
msgid "Do you really want to set this key to ultimate trust? (y/N) "
msgstr "Opravdu chcete nastavit pro tento kl�� absolutn� d�v�ru? (a/N) "
msgid "Certificates leading to an ultimately trusted key:\n"
msgstr "Certifik�ty vedouc� k fin�ln�mu d�v�ryhodn�mu kl��i:\n"
#, c-format
msgid "%s: There is no assurance this key belongs to the named user\n"
msgstr "%s: Nic nenazna�uje tomu, �e tento kl�� pat�� uveden�mu u�ivateli\n"
#, c-format
msgid "%s: There is limited assurance this key belongs to the named user\n"
msgstr "%s: Je zde ��ste�n� d�v�ra, �e tento kl�� pat�� uveden�mu uv�ivateli\n"
msgid "This key probably belongs to the named user\n"
msgstr "Tento kl�� pravd�podobn� n�le�� uveden�mu u�ivateli\n"
msgid "This key belongs to us\n"
msgstr "Tento kl�� n�le�� n�m (m�me odpov�daj�c� tajn� kl��)\n"
msgid ""
"It is NOT certain that the key belongs to the person named\n"
"in the user ID. If you *really* know what you are doing,\n"
"you may answer the next question with yes.\n"
msgstr ""
"NEN� jist�, zda tento kl�� pat�� osob�, jej�� jm�no je uvedeno\n"
"v u�ivatelsk�m ID. Pokud *skute�n�* v�te, co d�l�te, m��ete na\n"
"n�sleduj�c� ot�zku odpov�d�t ano\n"
"\n"
msgid "Use this key anyway? (y/N) "
msgstr "Pou��t p�esto tento kl��? (a/N) "
msgid "WARNING: Using untrusted key!\n"
msgstr "VAROV�N�: Je pou�it ned�v�ryhodn� kl��!\n"
msgid "WARNING: this key might be revoked (revocation key not present)\n"
msgstr "VAROV�N�: tento kl�� m��e b�t revokov�n (revoka�n� kl�� nenalezen)\n"
msgid "WARNING: This key has been revoked by its designated revoker!\n"
msgstr "VAROV�N�: Tento kl�� byl revokov�n kl��em s pov��en�m k revokaci!\n"
msgid "WARNING: This key has been revoked by its owner!\n"
msgstr "VAROV�N�: Tento kl�� byl revokov�n sv�m vlastn�kem!\n"
msgid " This could mean that the signature is forged.\n"
msgstr " To m��e znamenat, �e podpis je pad�lan�.\n"
msgid "WARNING: This subkey has been revoked by its owner!\n"
msgstr "VAROV�N�: Tento podkl�� byl revokov�n sv�m vlastn�kem!\n"
msgid "Note: This key has been disabled.\n"
msgstr "Pozn�mka: Tento kl�� byl ozna�en jako neplatn� (disabled).\n"
#, c-format
msgid "Note: Verified signer's address is `%s'\n"
msgstr ""
#, c-format
msgid "Note: Signer's address `%s' does not match DNS entry\n"
msgstr ""
msgid "trustlevel adjusted to FULL due to valid PKA info\n"
msgstr ""
msgid "trustlevel adjusted to NEVER due to bad PKA info\n"
msgstr ""
msgid "Note: This key has expired!\n"
msgstr "Pozn�mka: Skon�ila platnost tohoto kl��e!\n"
msgid "WARNING: This key is not certified with a trusted signature!\n"
msgstr "VAROV�N�: Tento kl�� nen� certifikov�n d�v�ryhodn�m podpisem!\n"
msgid ""
" There is no indication that the signature belongs to the owner.\n"
msgstr ""
" Nic nenazna�uje tomu, �e tento podpis pat�� vlastn�kovi kl��e.\n"
msgid "WARNING: We do NOT trust this key!\n"
msgstr "VAROV�N�: NEd�v��ujeme tomuto kl��i!\n"
msgid " The signature is probably a FORGERY.\n"
msgstr " Tento podpis je pravd�podobn� PAD�LAN�.\n"
msgid ""
"WARNING: This key is not certified with sufficiently trusted signatures!\n"
msgstr ""
"VAROV�N�: Tento kl�� nen� certifikov�n dostate�n� d�v�ryhodn�mi podpisy!\n"
msgid " It is not certain that the signature belongs to the owner.\n"
msgstr " Nen� jist�, zda tento podpis pat�� vlastn�kovi.\n"
#, c-format
msgid "%s: skipped: %s\n"
msgstr "%s: p�esko�eno: %s\n"
#, c-format
msgid "%s: skipped: public key already present\n"
msgstr "%s: p�esko�eno: ve�ejn� kl�� je ji� obsa�en v datab�zi\n"
msgid "You did not specify a user ID. (you may use \"-r\")\n"
msgstr ""
"Nespecifikoval jste identifik�tor u�ivatele (user ID). M��ete pou��t \"-r\"\n"
msgid "Current recipients:\n"
msgstr "Aktu�ln� p��jemci:\n"
msgid ""
"\n"
"Enter the user ID. End with an empty line: "
msgstr ""
"\n"
"Napi�te identifik�tor u�ivatele (user ID). Ukon�ete pr�zdn�m ��dkem: "
msgid "No such user ID.\n"
msgstr "Takov� identifik�tor u�ivatele neexistuje.\n"
msgid "skipped: public key already set as default recipient\n"
msgstr "p�esko�eno: ve�ejn� kl�� je u� nastaven podle implicitn�ho adres�ta\n"
msgid "Public key is disabled.\n"
msgstr "Ve�ejn� kl�� je neplatn� (disabled).\n"
msgid "skipped: public key already set\n"
msgstr "p�esko�eno: ve�ejn� kl�� je ji� nastaven\n"
#, c-format
msgid "unknown default recipient \"%s\"\n"
msgstr "nezn�m� implicitn� adres�t \"%s\"\n"
#, c-format
msgid "%s: skipped: public key is disabled\n"
msgstr "%s: p�esko�eno: ve�ejn� kl�� je neplatn� (disabled)\n"
msgid "no valid addressees\n"
msgstr "��dn� platn� adresy\n"
msgid "data not saved; use option \"--output\" to save it\n"
msgstr ""
"data nebyla ulo�ena; k jejich ulo�en� pou�ijte parametr p��kazu \"--output"
"\"\n"
#, c-format
msgid "error creating `%s': %s\n"
msgstr "chyba p�i vytv��en� `%s': %s\n"
msgid "Detached signature.\n"
msgstr "Podpis odd�len� od dokumentu.\n"
msgid "Please enter name of data file: "
msgstr "Pros�m, vlo�te n�zev datov�ho souboru: "
msgid "reading stdin ...\n"
msgstr "�tu standardn� vstup ...\n"
msgid "no signed data\n"
msgstr "chyb� podepsan� data\n"
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "nemohu otev��t podepsan� data '%s'\n"
#, c-format
msgid "anonymous recipient; trying secret key %s ...\n"
msgstr "anonymn� adres�t; zkou��m tajn� kl�� %s ...\n"
msgid "okay, we are the anonymous recipient.\n"
msgstr "o.k., my jsme anonymn� adres�t.\n"
msgid "old encoding of the DEK is not supported\n"
msgstr "star� k�dov�n� DEK nen� podporov�no\n"
#, c-format
msgid "cipher algorithm %d%s is unknown or disabled\n"
msgstr "�ifrovac� algoritmus %d%s je nezn�m� nebo je zneplatn�n\n"
#, c-format
msgid "WARNING: cipher algorithm %s not found in recipient preferences\n"
msgstr "VAROV�N�: v p�edvolb�ch p��jemce nenalezen �ifrovac� algoritmus %s\n"
#, c-format
msgid "NOTE: secret key %s expired at %s\n"
msgstr "POZN�MKA: platnost tajn�ho kl��e %s skon�ila %s\n"
msgid "NOTE: key has been revoked"
msgstr "POZN�MKA: kl�� byl revokov�n"
#, c-format
msgid "build_packet failed: %s\n"
msgstr "selhalo vytvo�en� paketu (build_packet): %s\n"
#, c-format
msgid "key %s has no user IDs\n"
msgstr "kl�� %s: chyb� identifik�tor u�ivatele\n"
msgid "To be revoked by:\n"
msgstr "Revokov�n:\n"
msgid "(This is a sensitive revocation key)\n"
msgstr "(Toto je citliv� revoka�n� kl��)\n"
msgid "Create a designated revocation certificate for this key? (y/N) "
msgstr "Vytvo�it pro tento kl�� pov��en� revoka�n� certifik�t? (a/N)"
msgid "ASCII armored output forced.\n"
msgstr "na��zen v�stup do form�tu ASCII.\n"
#, c-format
msgid "make_keysig_packet failed: %s\n"
msgstr "vytvo�en� podepisovac�ho paketu (make_keysig_packet) selhalo: %s\n"
msgid "Revocation certificate created.\n"
msgstr "Revoka�n� certifik�t vytvo�en.\n"
#, c-format
msgid "no revocation keys found for \"%s\"\n"
msgstr "pro \"%s\" nebyl nalezen ��dn� revoka�n� kl��\n"
#, c-format
msgid "secret key \"%s\" not found: %s\n"
msgstr "tajn� kl�� \"%s\" nenalezen: %s\n"
#, c-format
msgid "no corresponding public key: %s\n"
msgstr "neexistuje odpov�daj�c� ve�ejn� kl��: %s\n"
msgid "public key does not match secret key!\n"
msgstr "ve�ejn� kl�� neodpov�d� tajn�mu kl��i!\n"
msgid "Create a revocation certificate for this key? (y/N) "
msgstr "Vytvo�it pro tento kl�� revoka�n� certifik�t? (a/N) "
msgid "unknown protection algorithm\n"
msgstr "nezn�m� kompresn� algoritmus\n"
msgid "NOTE: This key is not protected!\n"
msgstr "POZN�MKA: Tento kl�� nen� chr�n�n�!\n"
msgid ""
"Revocation certificate created.\n"
"\n"
"Please move it to a medium which you can hide away; if Mallory gets\n"
"access to this certificate he can use it to make your key unusable.\n"
"It is smart to print this certificate and store it away, just in case\n"
"your media become unreadable. But have some caution: The print system of\n"
"your machine might store the data and make it available to others!\n"
msgstr ""
"Revoka�n� certifik�t byl vytvo�en.\n"
"\n"
"Pros�m p�eneste jej na m�dium, kter� m��ete dob�e schovat. Pokud se\n"
"k tomuto certifik�tu dostane nepovolan� osoba, m��e zneplatnit V� kl��.\n"
"Je rozumn� tento certifik�t vytisknout a schovat jej pro p��pad, �e\n"
"medium s certifik�tem p�estane b�t �iteln�. Ale pozor: Tiskov� subsyst�m\n"
"na Va�em po��ta�i m��e ukl�dat data ur�en� k tisku a zp��stupnist je\n"
"jin�m u�ivatel�m!\n"
msgid "Please select the reason for the revocation:\n"
msgstr "Pros�m vyberte d�vod revokace:\n"
msgid "Cancel"
msgstr "Zru�it"
#, c-format
msgid "(Probably you want to select %d here)\n"
msgstr "(Pravd�podobn� zda chcete vybrat %d)\n"
msgid "Enter an optional description; end it with an empty line:\n"
msgstr "M��ete vlo�it dal�� popis. Ukon�ete pr�zdn�m ��dkem:\n"
#, c-format
msgid "Reason for revocation: %s\n"
msgstr "D�vod revokace: %s\n"
msgid "(No description given)\n"
msgstr "(Nebyl zad�n ��dn� popis)\n"
msgid "Is this okay? (y/N) "
msgstr "Je d�vod revokace vybr�n spr�vn�? (a/N) "
msgid "secret key parts are not available\n"
msgstr "tajn� ��sti kl��e nejsou dostupn�\n"
#, c-format
msgid "protection algorithm %d%s is not supported\n"
msgstr "ochrann� algoritmus %d%s nen� podporov�n\n"
#, c-format
msgid "protection digest %d is not supported\n"
msgstr "ochrann� algoritmus %d nen� podporov�n\n"
msgid "Invalid passphrase; please try again"
msgstr "Neplatn� heslo; pros�m, zkuste to znovu"
#, c-format
msgid "%s ...\n"
msgstr "%s ...\n"
msgid "WARNING: Weak key detected - please change passphrase again.\n"
msgstr "VAROV�N�: Objeven slab� kl�� - zm��te, pros�m, znovu heslo.\n"
msgid "generating the deprecated 16-bit checksum for secret key protection\n"
msgstr ""
"generuji _nevhodn�_ 16-ti bitov� kontroln� sou�et pro ochranu soukrom�ho "
"kl��e\n"
msgid "weak key created - retrying\n"
msgstr "vytvo�en slab� kl�� - zkou��m znovu\n"
#, c-format
msgid "cannot avoid weak key for symmetric cipher; tried %d times!\n"
msgstr ""
"nemohu se vyvarovat slab�ho kl��e pro symetrickou �ifru; operaci jsem zkusil "
"%d kr�t!\n"
msgid "DSA requires the hash length to be a multiple of 8 bits\n"
msgstr ""
#, c-format
msgid "DSA key %s uses an unsafe (%u bit) hash\n"
msgstr ""
#, c-format
msgid "DSA key %s requires a %u bit or larger hash\n"
msgstr ""
msgid "WARNING: signature digest conflict in message\n"
msgstr "VAROV�N�: konflikt hashe podpisu ve zpr�v�\n"
#, c-format
msgid "WARNING: signing subkey %s is not cross-certified\n"
msgstr "VAROV�N�: podepisovac� podkl�� %s nen� k���ov� certifikov�n\n"
#, c-format
msgid "WARNING: signing subkey %s has an invalid cross-certification\n"
msgstr "VAROV�N�: podepisovac� podkl�� %s m� neplatnou k���ovou certifikaci\n"
#, c-format
msgid "public key %s is %lu second newer than the signature\n"
msgstr "ve�ejn� kl�� %s je o %lu sekund nov�j�� ne� podpis\n"
#, c-format
msgid "public key %s is %lu seconds newer than the signature\n"
msgstr "ve�ejn� kl�� %s je o %lu sekund nov�j�� ne� podpis\n"
#, c-format
msgid ""
"key %s was created %lu second in the future (time warp or clock problem)\n"
msgstr ""
"kl�� %s byl vytvo�en %lu sekund v budoucnosti (do�lo ke zm�n� �asu nebo\n"
"je probl�m se syst�mov�m �asem)\n"
#, c-format
msgid ""
"key %s was created %lu seconds in the future (time warp or clock problem)\n"
msgstr ""
"kl�� %s byl vytvo�en %lu sekund v budoucnosti (do�lo ke zm�n� �asu nebo\n"
"je probl�m se syst�mov�m �asem)\n"
#, c-format
msgid "NOTE: signature key %s expired %s\n"
msgstr "POZN�MKA: podpisov�mu kl��i %s skon�ila platnost %s\n"
#, c-format
msgid "assuming bad signature from key %s due to an unknown critical bit\n"
msgstr ""
"p�edpokl�d�m �patn� podpis kl��em %s, proto�e je nastaven nezn�m� kritick� "
"bit\n"
#, c-format
msgid "key %s: no subkey for subkey revocation signature\n"
msgstr "kl�� %s: neexistuje podkl�� pro revokaci podkl��e\n"
#, c-format
msgid "key %s: no subkey for subkey binding signature\n"
msgstr "kl�� %s: podkl�� kter� je sv�z�n s podpisem neexistuje\n"
#, c-format
msgid "WARNING: unable to %%-expand notation (too large). Using unexpanded.\n"
msgstr ""
"VAROV�N�: nelze %%-expandovat notaci (p��li� dlouh�). Pou�ity "
"neexpandovan�.\n"
#, c-format
msgid ""
"WARNING: unable to %%-expand policy URL (too large). Using unexpanded.\n"
msgstr ""
"VAROV�N�: nemohu %%-expandovat URL politiky (p��li� dlouh�). Pou�ity "
"neexpandovan�.\n"
#, c-format
msgid ""
"WARNING: unable to %%-expand preferred keyserver URL (too large). Using "
"unexpanded.\n"
msgstr ""
"VAROV�N�: nemohu %%-expandovat URL preferovan�ho keyservery (p��li� dlouh�). "
"Pou�ity neexpandovan�.\n"
#, c-format
msgid "checking created signature failed: %s\n"
msgstr "kontrola vytvo�en�ho podpisu se nepoda�ila: %s\n"
#, c-format
msgid "%s/%s signature from: \"%s\"\n"
msgstr "%s/%s podpis od: \"%s\"\n"
msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n"
msgstr ""
"v m�du --pgp2 m��ete vytvo�it pouze odd�len� podpis (detach-sign)s kl��i "
"form�tu PGP-2.x\n"
#, c-format
msgid ""
"WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n"
msgstr ""
"VAROV�N�: vy��dan� hashovac� algoritmus %s (%d) nevyhovuje p�edvolb�m "
"p��jemce\n"
msgid "signing:"
msgstr "podepisuji:"
msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n"
msgstr ""
"v m�du --pgp2 m��ete vytv��et jen �iteln� podpisy s kl��i form�tu PGP-2.x\n"
#, c-format
msgid "%s encryption will be used\n"
msgstr "bude pou�ito �ifrov�n� %s\n"
msgid "key is not flagged as insecure - can't use it with the faked RNG!\n"
msgstr ""
"kl�� nen� ozna�en jako nedostate�n� bezpe�n� - nemohu jej pou��t s pad�lan�m "
"RNG!\n"
#, c-format
msgid "skipped \"%s\": duplicated\n"
msgstr "p�esko�en \"%s\": duplikov�n\n"
#, c-format
msgid "skipped \"%s\": %s\n"
msgstr "p�esko�en \"%s\": %s\n"
msgid "skipped: secret key already present\n"
msgstr "p�esko�eno: tajn� kl�� je u� v datab�zi\n"
msgid "this is a PGP generated Elgamal key which is not secure for signatures!"
msgstr ""
"toto je PGP kl�� vygenerovan� podle algoritmu ElGamal,\n"
"podpisy vytvo�en� t�mto kl��em nejsou bezpe�n�!"
#, c-format
msgid "trust record %lu, type %d: write failed: %s\n"
msgstr "z�znam d�v�ry %lu, typ %d: z�pis selhal: %s\n"
#, c-format
msgid ""
"# List of assigned trustvalues, created %s\n"
"# (Use \"gpg --import-ownertrust\" to restore them)\n"
msgstr ""
"# Seznam p�id�len�ch hodnot d�v�ry, vytvo�en %s\n"
"# (Pou�ijte \"gpg --import-ownertrust\" k jeho obnov�)\n"
#, c-format
msgid "error in `%s': %s\n"
msgstr "chyba v `%s': %s\n"
msgid "line too long"
msgstr "��dek je p��li� dlouh�"
msgid "colon missing"
msgstr "sloupec sch�z�"
msgid "invalid fingerprint"
msgstr "neplatn� fingerprint"
msgid "ownertrust value missing"
msgstr "sch�z� hodnota d�v�ryhosdnosti vlastn�ka"
#, c-format
msgid "error finding trust record in `%s': %s\n"
msgstr "chyba p�i hled�n� z�znamu d�v�ryhodnosti v `%s': %s\n"
#, c-format
msgid "read error in `%s': %s\n"
msgstr "chyba p�i �ten� v `%s': %s\n"
#, c-format
msgid "trustdb: sync failed: %s\n"
msgstr "datab�ze d�v�ry: synchronizace selhala %s\n"
#, c-format
msgid "trustdb rec %lu: lseek failed: %s\n"
msgstr "z�znam v datab�zi d�v�ry %lu: lseek() se nepoda�il: %s\n"
#, c-format
msgid "trustdb rec %lu: write failed (n=%d): %s\n"
msgstr "z�znam v datab�zi d�v�ry %lu: z�pis se nepoda�il (n=%d): %s\n"
msgid "trustdb transaction too large\n"
msgstr "transakce s datab�z� d�v�ry je p��li� dlouh�\n"
#, c-format
msgid "can't access `%s': %s\n"
msgstr "nemohu otev��t `%s': %s\n"
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: adres�� neexistuje!\n"
#, c-format
msgid "can't create lock for `%s'\n"
msgstr "nemohu vytvo�it z�mek pro `%s'\n"
#, c-format
msgid "can't lock `%s'\n"
msgstr "nelze zam��t `%s'\n"
#, c-format
msgid "%s: failed to create version record: %s"
msgstr "%s: nepoda�ilo se vytvo�it z�znam verze: %s"
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: vytvo�ena neplatn� datab�ze d�v�ry\n"
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: datab�ze d�v�ry vytvo�ena\n"
msgid "NOTE: trustdb not writable\n"
msgstr "POZN�MKA: do trustedb nezle zapisovat\n"
#, c-format
msgid "%s: invalid trustdb\n"
msgstr "%s: neplatn� datab�ze d�v�ry\n"
#, c-format
msgid "%s: failed to create hashtable: %s\n"
msgstr "%s: nepoda�ilo se vytvo�it hashovac� tabulku: %s\n"
#, c-format
msgid "%s: error updating version record: %s\n"
msgstr "%s: chyba p�i aktualizaci z�znamu verze: %s\n"
#, c-format
msgid "%s: error reading version record: %s\n"
msgstr "%s: chyba p�i �ten� z�znamu verze: %s\n"
#, c-format
msgid "%s: error writing version record: %s\n"
msgstr "%s: chyba p�i z�pisu z�znamu verze: %s\n"
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "datab�ze d�v�ry: procedura lseek() selhala: %s\n"
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "datab�ze d�v�ry: procedura read() (n=%d) selhala: %s\n"
#, c-format
msgid "%s: not a trustdb file\n"
msgstr "%s: nen� soubor datab�ze d�v�ry\n"
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: z�znam verze s ��slem %lu\n"
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: neplatn� verze souboru %d\n"
#, c-format
msgid "%s: error reading free record: %s\n"
msgstr "%s: chyba p�i �ten� voln�ho z�znamu: %s\n"
#, c-format
msgid "%s: error writing dir record: %s\n"
msgstr "%s: chyba p�i z�pisu adres��ov�ho z�znamu: %s\n"
#, c-format
msgid "%s: failed to zero a record: %s\n"
msgstr "%s: vynulov�n� z�znamu selhalo: %s\n"
#, c-format
msgid "%s: failed to append a record: %s\n"
msgstr "%s: p�id�n� z�znamu selhalo: %s\n"
#, fuzzy
msgid "Error: The trustdb is corrupted.\n"
msgstr "%s: datab�ze d�v�ry vytvo�ena\n"
#, c-format
msgid "can't handle text lines longer than %d characters\n"
msgstr "nemohu pracovat s ��dky del��mi ne� %d znak�\n"
#, c-format
msgid "input line longer than %d characters\n"
msgstr "vstupn� ��dek je del�� ne� %d znak�\n"
#, c-format
msgid "`%s' is not a valid long keyID\n"
msgstr "`%s' nen� platn� dlouh� keyID\n"
#, c-format
msgid "key %s: accepted as trusted key\n"
msgstr "kl�� %s: akceptov�n jako d�v�ryhodn� kl��\n"
#, c-format
msgid "key %s occurs more than once in the trustdb\n"
msgstr "kl�� %s se v datab�zi d�v�ry vyskytuje v�ce ne� jednou\n"
#, c-format
msgid "key %s: no public key for trusted key - skipped\n"
msgstr "kl�� %s: nenalezen ve�ejn� kl�� k d�v�ryhodn�mu kl��i - p�esko�eno\n"
#, c-format
msgid "key %s marked as ultimately trusted\n"
msgstr "kl�� %s ozna�en jako absolutn� d�v�ryhodn�.\n"
#, c-format
msgid "trust record %lu, req type %d: read failed: %s\n"
msgstr "z�znam d�v�ry %lu, typ po�. %d: �ten� selhalo: %s\n"
#, c-format
msgid "trust record %lu is not of requested type %d\n"
msgstr "z�znam d�v�ry %lu nen� po�adovan�ho typu %d\n"
msgid "You may try to re-create the trustdb using the commands:\n"
msgstr ""
msgid "If that does not work, please consult the manual\n"
msgstr ""
#, c-format
msgid "unable to use unknown trust model (%d) - assuming %s trust model\n"
msgstr ""
"nelze pou��t nezn�m� model d�v�ry (%d) - p�edpokl�d�me pou�it� modelu %s\n"
#, c-format
msgid "using %s trust model\n"
msgstr "poui�it� modelu d�v�ry %s\n"
#. TRANSLATORS: these strings are similar to those in
#. trust_value_to_string(), but are a fixed length. This is needed to
#. make attractive information listings where columns line up
#. properly. The value "10" should be the length of the strings you
#. choose to translate to. This is the length in printable columns.
#. It gets passed to atoi() so everything after the number is
#. essentially a comment and need not be translated. Either key and
#. uid are both NULL, or neither are NULL.
msgid "10 translator see trustdb.c:uid_trust_string_fixed"
msgstr ""
"14 fixn� d�lka na kterou se p�ekl�d� see trustdb.c:uid_trust_string_fixed"
msgid "[ revoked]"
msgstr "[ revokov�n ]"
msgid "[ expired]"
msgstr "[ expirov�n ]"
msgid "[ unknown]"
msgstr "[ nezn�m� ]"
msgid "[ undef ]"
msgstr "[nedefinovan�]"
msgid "[marginal]"
msgstr "[ ��ste�n� ]"
msgid "[ full ]"
msgstr "[ pln� ]"
msgid "[ultimate]"
msgstr "[ absolutn� ]"
msgid "undefined"
msgstr "nedefinov�na"
msgid "never"
msgstr "��dn�"
msgid "marginal"
msgstr "��ste�n�"
msgid "full"
msgstr "pln�"
msgid "ultimate"
msgstr "absolutn�"
msgid "no need for a trustdb check\n"
msgstr "nen� nutn� kontrolovat datab�zi d�v�ry\n"
#, c-format
msgid "next trustdb check due at %s\n"
msgstr "dal�� kontrola datab�ze d�v�ry v %s\n"
#, c-format
msgid "no need for a trustdb check with `%s' trust model\n"
msgstr "nen� nutn� kontrolovat datab�zi d�v�ry s modelem `%s'\n"
#, c-format
msgid "no need for a trustdb update with `%s' trust model\n"
msgstr "nen� nutn� aktualizovat datab�zi d�v�ry s modelem `%s'\n"
#, c-format
msgid "public key %s not found: %s\n"
msgstr "ve�ejn� kl�� %s nebyl nalezen: %s\n"
msgid "please do a --check-trustdb\n"
msgstr "pros�m prove�te --check-trustdb\n"
msgid "checking the trustdb\n"
msgstr "kontroluji datab�zi d�v�ry\n"
#, c-format
msgid "%d keys processed (%d validity counts cleared)\n"
msgstr "zpracov�no %d kl��� (%d validit vymaz�no)\n"
msgid "no ultimately trusted keys found\n"
msgstr "��dn� absolutn� d�v�ryhodn� kl�� nebyl nalezen\n"
#, c-format
msgid "public key of ultimately trusted key %s not found\n"
msgstr "ve�ejn� kl�� k absolutn� d�v�ryhodn�mu kl��i %s nebyl nalezen\n"
#, c-format
msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n"
msgstr "po�adov�no %d ��ste�n� d�v�ry a %d �pln� d�v�ry, model %s\n"
#, c-format
msgid ""
"depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n"
msgstr ""
"hloubka: %d platn�ch: %3d podepsan�ch: %3d d�v�ra: %d-, %dq, %dn, %dm, "
"%df, %du\n"
#, c-format
msgid "unable to update trustdb version record: write failed: %s\n"
msgstr "nelze aktualizovat z�znam v datab�zi d�v�ry: chyba p�i z�pisu: %s\n"
msgid ""
"the signature could not be verified.\n"
"Please remember that the signature file (.sig or .asc)\n"
"should be the first file given on the command line.\n"
msgstr ""
"podpis nebylo mo�n� ov��it.\n"
"Pros�m, nezapome�te, �e soubor s podpisem (.sig nebo .asc)\n"
"by m�l b�t prvn�m souborem zadan�m na p��kazov� ��dce.\n"
#, c-format
msgid "input line %u too long or missing LF\n"
msgstr "vstupn� ��dek %u je p��li� dlouh� nebo na konci chyb� znak LF\n"
msgid "general error"
msgstr "obecn� chyba"
msgid "unknown packet type"
msgstr "nezn�m� typ paketu"
msgid "unknown version"
msgstr "nezn�m� verze"
msgid "unknown pubkey algorithm"
msgstr "nezn�m� algoritmus ve�ejn�ho kl��e"
msgid "unknown digest algorithm"
msgstr "nezn�m� hashovac� algoritmus"
msgid "bad public key"
msgstr "�patn� ve�ejn� kl��"
msgid "bad secret key"
msgstr "�patn� tajn� kl��"
msgid "bad signature"
msgstr "�patn� podpis"
msgid "checksum error"
msgstr "chyba kontroln�ho sou�tu"
msgid "bad passphrase"
msgstr "�patn� heslo"
msgid "public key not found"
msgstr "ve�ejn� kl�� nenalezen"
msgid "unknown cipher algorithm"
msgstr "nezn�m� �ifrovac� algoritmus"
msgid "can't open the keyring"
msgstr "nemohu otev��t soubor kl���"
msgid "invalid packet"
msgstr "neplatn� paket"
msgid "invalid armor"
msgstr "neplatn� zp�sob reprezentace v ASCII"
msgid "no such user id"
msgstr "neexistuje u�ivatel s t�mto id"
msgid "secret key not available"
msgstr "tajn� kl�� nen� dostupn�"
msgid "wrong secret key used"
msgstr "je pou�it �patn� tajn� kl��"
msgid "not supported"
msgstr "nepodporov�no"
msgid "bad key"
msgstr "�patn� kl��"
msgid "file read error"
msgstr "chyba p�i �ten� souboru"
msgid "file write error"
msgstr "chyba p�i z�pisu souboru"
msgid "unknown compress algorithm"
msgstr "nezn�m� komprima�n� algoritmus"
msgid "file open error"
msgstr "chyba p�i otv�r�n� souboru"
msgid "file create error"
msgstr "chyba p�i vytv��en� souboru"
msgid "invalid passphrase"
msgstr "nespr�vn� heslo"
msgid "unimplemented pubkey algorithm"
msgstr "algoritmus ve�ejn�ho kl��e nen� implementov�n"
msgid "unimplemented cipher algorithm"
msgstr "�ifrovac� algoritmus nen� implementov�n"
msgid "unknown signature class"
msgstr "nezn�m� t��da podpisu"
msgid "trust database error"
msgstr "chyba v datab�zi d�v�ry"
msgid "bad MPI"
msgstr "�patn� MPI"
msgid "resource limit"
msgstr "omezen� zdroj�"
msgid "invalid keyring"
msgstr "neplatn� soubor kl���"
msgid "bad certificate"
msgstr "�patn� certifik�t"
msgid "malformed user id"
msgstr "�patn� form�t id u�ivatele"
msgid "file close error"
msgstr "chyba p�i zav�r�n� souboru"
msgid "file rename error"
msgstr "chyba p�i p�ejmenov�n� souboru"
msgid "file delete error"
msgstr "chyba p�i maz�n� souboru"
msgid "unexpected data"
msgstr "neo�ek�van� data"
msgid "timestamp conflict"
msgstr "konflikt �asov�ho raz�tka"
msgid "unusable pubkey algorithm"
msgstr "nepou�iteln� algoritmus s ve�ejn�m kl��em"
msgid "file exists"
msgstr "soubor existuje"
msgid "weak key"
msgstr "slab� kl��"
msgid "invalid argument"
msgstr "neplatn� argument"
msgid "bad URI"
msgstr "�patn� URI"
msgid "unsupported URI"
msgstr "toto URI nen� podporov�no"
msgid "network error"
msgstr "chyba s�t�"
msgid "not encrypted"
msgstr "neza�ifrov�no"
msgid "not processed"
msgstr "nezpracov�no"
msgid "unusable public key"
msgstr "nepou�iteln� ve�ejn� kl��"
msgid "unusable secret key"
msgstr "nepou�iteln� tajn� kl��"
msgid "keyserver error"
msgstr "chyba serveru kl���"
msgid "canceled"
msgstr "zru�eno"
msgid "no card"
msgstr "��dn� karta"
#, fuzzy
msgid "no data"
msgstr "chyb� podepsan� data\n"
msgid "ERROR: "
msgstr "CHYBA: "
msgid "WARNING: "
msgstr "VAROV�N�: "
#, c-format
msgid "... this is a bug (%s:%d:%s)\n"
msgstr "... toto je chyba v programu (%s:%d:%s)\n"
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "nalezena chyba v programu ... (%s:%d)\n"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "yes"
msgstr "ano"
msgid "yY"
msgstr "aAyY"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "no"
msgstr "ne"
msgid "nN"
msgstr "nN"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "quit"
msgstr "ukon�it"
msgid "qQ"
msgstr "uUqQ"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "okay|okay"
msgstr "okey|okey"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "cancel|cancel"
msgstr "zru�it|zru�it"
msgid "oO"
msgstr "oO"
msgid "cC"
msgstr "zZ"
msgid "WARNING: using insecure memory!\n"
msgstr "VAROV�N�: Pou��van� pam� nen� bezpe�n�!\n"
#, fuzzy
#| msgid "please see http://www.gnupg.org/faq.html for more information\n"
msgid ""
"please see http://www.gnupg.org/documentation/faqs.html for more "
"information\n"
msgstr "V�ce informac� naleznete na adrese http://www.gnupg.cz/faq.html\n"
msgid "operation is not possible without initialized secure memory\n"
msgstr "prov�st operaci nen� mo�n� bez inicializovan� bezpe�n� pam�ti\n"
msgid "(you may have used the wrong program for this task)\n"
msgstr "(pravd�podobn� jste pro tento �kol pou�ili nespr�vn� program)\n"
#~ msgid "WARNING: unsafe ownership on extension `%s'\n"
#~ msgstr ""
#~ "VAROV�N�: vlastnictv� roz�i�uj�c�ho modulu nen� nastaveno bezpe�n� `%s'\n"
#~ msgid "WARNING: unsafe permissions on extension `%s'\n"
#~ msgstr ""
#~ "VAROV�N�: p��stupov� pr�va roz�i�uj�c�mu modulu nejsou bezpe�n� `%s'\n"
#~ msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n"
#~ msgstr ""
#~ "VAROV�N�: vlastnictv� adres��e s roz�i�uj�c�m modulem nen� nastaveno "
#~ "nebezpe�n� `%s'\n"
#~ msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n"
#~ msgstr ""
#~ "VAROV�N�: p��stupov� pr�va k adres��i s roz�i�uj�c�m modulem nejsou "
#~ "nastavena bezpe�n� `%s'\n"
#~ msgid "cipher extension `%s' not loaded due to unsafe permissions\n"
#~ msgstr ""
#~ "�ifra `%s' nebyla nahr�na, proto�e p��stupov� pr�va nejsou nastavena "
#~ "bezpe�n�\n"
#~ msgid "the IDEA cipher plugin is not present\n"
#~ msgstr "IDEA modul pro GnuPG nenalezen\n"
#~ msgid "Command> "
#~ msgstr "P��kaz> "
#~ msgid "DSA keypair will have %u bits.\n"
#~ msgstr "P�r DSA kl��� DSA dlouh� %u bit�.\n"
#~ msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
#~ msgstr ""
#~ "datab�ze d�v�ry je po�kozena; pros�m spus�te \"gpg --fix-trustdb\".\n"
#~ msgid "|A|Admin PIN"
#~ msgstr "|A|PIN administr�tora"
#~ msgid "can't put notation data into v3 (PGP 2.x style) signatures\n"
#~ msgstr ""
#~ "notaci (notation) nelze ulo�it ve form�tu v3 podpisu (form�t PGP 2.x)\n"
#~ msgid "can't put notation data into v3 (PGP 2.x style) key signatures\n"
#~ msgstr ""
#~ "notaci (notation) nelze ulo�it jako v3 podpis kl��e (form�t PGP 2.x)\n"
#~ msgid "can't put a policy URL into v3 (PGP 2.x style) signatures\n"
#~ msgstr "URL politiky nelze ulo�it ve form�tu v3 podpisu (form�t PGP 2.x)\n"
#~ msgid "can't put a policy URL into v3 key (PGP 2.x style) signatures\n"
#~ msgstr "nelze ulo�it URL politiky do podpisu v3 kl��em (form�t PGP 2.x)\n"
#~ msgid "DSA requires the use of a 160 bit hash algorithm\n"
#~ msgstr "DSA po�aduje pou�it� 160-ti bitov�ho hashovac�ho algoritmu\n"
#~ msgid ""
#~ "please see http://www.gnupg.org/why-not-idea.html for more information\n"
#~ msgstr ""
#~ "v�ce informac� naleznete v dokumentu http://www.gnupg.cz/why-not-idea."
#~ "html\n"
#~ msgid ""
#~ "a notation name must have only printable characters or spaces, and end "
#~ "with an '='\n"
#~ msgstr ""
#~ "symbolick� jm�no sm� obsahovat pouze p�smena, ��slice, te�ky nebo "
#~ "podtr��tka a mus� kon�it znakem '='\n"
#~ msgid "a user notation name must contain the '@' character\n"
#~ msgstr "jm�no u�ivatele mus� obsahovat znakt '@' \n"
#~ msgid "a notation name must not contain more than one '@' character\n"
#~ msgstr "jm�no u�ivatele nesm� obsahovat v�ce ne� jeden znak '@' \n"
#~ msgid "a notation value must not use any control characters\n"
#~ msgstr "hodnota nem��e obsahovat ��dn� kontroln� znaky\n"
#~ msgid "WARNING: invalid notation data found\n"
#~ msgstr "VAROV�N�: nalezen neplatn� form�t z�pisu data\n"
#~ msgid "not human readable"
#~ msgstr "nen� v p��mo �iteln�m form�tu"
#~ msgid "expired: %s)"
#~ msgstr "platnost skon�ila: %s)"
|