File: pl.gmo

package info (click to toggle)
gnupg2 2.0.14-2%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 22,400 kB
  • ctags: 10,195
  • sloc: ansic: 141,533; sh: 6,878; makefile: 828; perl: 196; awk: 126; sed: 16
file content (2275 lines) | stat: -rw-r--r-- 161,899 bytes parent folder | download | duplicates (2)
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
D0l`-׀‚ւ+He272'#ZD~.ÄI7<tͅ!>Wt+&#ن(&?_({$ڇ&,S,n!ψ"=Xsȉ#5GXr*ˊ"]Bw/͋=(;.d3!nj(-<'DlӍ!$!,F's Ў"49TBp="%3&Y!%"Ȑ#' 7Xuԑ($3H#\$Ē!$A/` &ɓ%0"Sp,ߕ'0Lj| 'Ö-(A0j2HΗ
	%/<IU	s}D͙-0@.qI*+'AivЛ :3Q4-œ'.*Y$b		
ܝ$5?=4}:*F`,u(8˟#&((O&xΠ76$-[%390<NLGآ@ >a+=̣
"":E#̤/ޤ-#$Q'v8&ץ5.45c*.Ħ0&$,Kx
5̧#&:S"Z}H"_($ЩE+Id~8$֪'<\,H[uB%7%Nt|.í !05'f<ˮ",	/61f","2>+Z (а 

*/ZlƱ1+=iY5K"E(0&PwĴ%)
,45a %޵ 
1.%`

̶EEѷg -θ^2~IS>O<8˺NUS'ѻcaż/"#8-\+)&'[u+$,P3}1(#.+R"~+" ?%%e }0/0(Y!r!.>%QwjM2QKFUeCBG^-s90/5<'r.-.I!_$,(Tm-
'4*Q(|0=0&E,l+.'*Gc #$7 Tu6%7%7?wr>j1=I4c#=?9Dy@E+E1qNII<%S;?<B|<H-E"sHi<B)C.)r:.>2ELx=<@@FHU$g -21I@@>K
BV@5,*=7h.,00-4^%'$*n&1#2>I:H*=;0yM"&!B3d>%,5*`p2_


*
5
@K]r

	

$="Vy)/8S,=54&)+P5|(
% 3'T|.
*!H jB#5A$w!/";>(T}0" ;W*p,"%&2L+!7!R5t

"#(;L<*	
10Q)&21Y@85>2t!%(<Pj:
 6Iiz&.#*@-^
%<A6(x(+'A"Ux/
2)2\1#:K\t,%HGc-{%/),>'k!."&:a ~%#$:_3~
20P$=%#8!\~ 	("C'f!#7*'	(R	{	(		 	

*
B
\
 t




0;'l&#++#Im*
&"
&I
p
$





/
/C+O{,/"9KQ( !(	2%Qw$&$#B!I'k1$@=Z!%<DP+/ #6Q6o0!'(Pd/#"&(2[%{%98$:!_>&$-.Ds&62S/'!?a/|+$&:$a'',,0?W(o> -$E,jIJ,Li"# !/Jf*-$' & .G "v + ) # !-3!6a!5!/!!""'A"i";"0"""%#/:#2j##!##:# )$!J$!l$($+$8$%!9%4[%0%%%2%6*&)a&9&&&&&G'H_'B''('(C(X(#n((((()%)@)U)u))()/).)-*4I*-~*+*(*+#!+-E+
s+++++++,	$,.,I,b,|,,,,',,'-A-`-e-,t-.--(-2.!5.W.$h. ..,...///
5/@/$T/y////)/00 00Q0%p0%00-0	1,1L12i131&1"1#2>21M2222!223333%R3%x3333
3313!4A4&D4	k4)u44+4$4+5;5 X56y55575&6@6`6y666,66:7#S7w7F7-78#8;8W8o88"8-8%8&9>9V9r99+9&9#9:*):5T:6::!:&;$';L;2^;;;;;I;F;
?<J<b<s<<<<<<="=<=0Q=1=#=#=+=+(>,T>!>2>>$>/?*F?2q?.???@* @K@S@q@}@0@@&@A+ABA%bAAA/A
AAB%5B[B&xBB$BB#B&"CIC\ClC3}C%C*C%D+(DTDjDD(DD-D9EHE`E~E6E:EE,
F07F/hFF7F*F.G7?G;wG0G1G;HRH%jHH)H3H6H:4I
oIzII9II5I-/J4]J"JJ JJ-
K8KAKSK mK5K$KK+L$0L'UL0}L4L%L	M(%M!NMCpM*MM(M0!N$RNwN&N%NN.N-O*GOrO(P+,PGXP2P/P%QF)Q1pQ#QQ!QR("RKRbR-R/R,R	
S"S)7SaSS SS2S1	T;TDT#aT#T!T"T-TU:;UIvUAUV	VV1V9V OVpV!VVVV#W(W 4WUWhWW	WWWWW&X3XFX6^XXX!X5X )YJYYYoY*Y!Y-YYZ"ZG*ZrZZ Z/ZZ[- [,N[{[[[ [[
\%\6\I\L\DP\F\E\D"]Eg]A]7]6'^7^^=^>^_$0_7U_<_7_*`F-`t``` `3`
a'*a-Ra$a'a#a%ab6b$Vb{b/b'b
bb"c%@c%fc$c?c.c, d7Md%d$d*d.d*e9g>gGh`hdi$i(i!i"i"j"8j"[j"~j&j3j0j/-kN]k6kJk<.l"kl
llll"l"m#)mMm"emm1m,m-m'*n$Rn<wn#n'n$o&%oLoco}oo!oo"op !pBp ]p~ppppppq&qEqTq"rqqqqq"q&"r3Ir.}r%rjrD=ss;s8s-t;@tH|t&t2t(uHuZu,buuuuuvv?0v4pv1v0v#w,w Gw&hwwww#wBw>0xox#x#x.x'y")y+Ly3xy3y+y z#-z-Qzz#zz0z2{6{S{p{%{){({*|(3|%\|%|1|0|
}%}%?}e}+n}}}8}~~(<M+k
# DW5m.CҀHbRq
Ă
ς	݂#*.I#xS!&$9C^%'Ȅ#'%M]
oz '8;t^B% 2&S
z2LJӇ 9$Ot5}56% Fd58<$$a'"$ъ$BQJ1,΋%1!8S3FV8^H03KE)9+)?iDp-&29I+764%S+y/(Ց.-+KwK $*	O>Yq=
4H4}6<9(X*Iƕ,=Qq% {˗.&9JVӘ@\i>)%#;I6I *';R69ś,A,9n4)ݜ+13:e'6ȝ

9*dv)-.31b%sƟr:8,+D?. *ԡ$?\{' . 0Qp*81&6<N"UxSDD{ݥY0nC-`FKէ:!:\AE٨H1hn#3'9#F.j#'۫,(0WYϮ*$9!^7D:84J3*ѰH9EL=̱B
MHk*߲!"*#M+qѵ.5R.q޶2P]'m#ƷYYݸQ7XX;MV582LH<ȼ>-D)r,ɽ5#6#Z~<-?(Mh #׿/+"I&l0.6$I[6,2	1<4n-0"/%BU6549:=t.3/IE-<%9 Z{D|>@IAA9&B.$qNHD.Es/7R!OtO-`Bs^DvML	@V-F-9MS8E6 BW4JA^\MO	mYr|:)H-r8BD`aY[^xWY/LBGJa@E03:dF86@V(e+33O9C%}'|8":[C/G
'R;z%IG&>n1:*-7je*>Vu!
 
3>].{05</N\~@?5\0;F6F$}%3,.9["4+7Nd t$%//5@Ov,8&,#SGw4.!18S#$3	4(']&3'(1F2x976Tq,2()-RI

#5A5w9e(M"v
&0 9Rq)*0! !BDd534H#h
#:;v -)(>3g=$0/&J<q)$S+W/2)O"y(!9'!a&
:>MGi.$!'ATl8:2,1N^%1	:-D/r.+-$+.P&+ +&-R))&
15L(!-6Gd0A;&L5s1
#(&L!s&<.#D8h<->&K+r$	%	#C	$g		&	 		

3=
-q
'
)
;
%- S't!!%19W5&
%!
G

N

Y
3d


2
 
;/U*HL+F(r(0/"C*f*"!.0+8)d*
=	B'Bj*$*J$fF(0$G#lCC	Mb k!.-%F.l727.>m9<9<*v3!-"I3l+'(! JIk"6#"#F,j0!B-JL,	;)7e3.4/O#>7(,C?p6ts\ $ % 7!(S!,|!;!?!%"!E"2g""1">"$'#=L#+#@#5#--$;[$$$)$7$?%@^%7%+%.&12&!d&b&C&'-'8U'0'='*'5((6^(=()(4(&2)4Y)7)^))%*"O*7r*5**5*A4+;v+/+C+&,#:,*^,r,q,_n-0-$-$.A.%Z.'.!..,.2/0J//{/-/2/.0;0FV060101B&1<i19171&2#?2-c222&22'3,3L3*j3333334#4"B4"e4*4-4:4	5&5/851h5
5/5?5%6;6#J64n6)6,666(7@7
F7Q7+`7*7777*7"8A8,S8*8)878&
9H49}959#9?9@3:1t:(:)::B;Q;i;+;!;6;< "<%C<1i<-<<<<
==50= f==)==<==+>2C>)v>%>)>7>(???C]?-?>?"@ 1@2R@;@1@@@'4A#\A>A)AA"	B.,B%[B*BB+B1B/#C'SC{CCC C+C)D.+DZDBzD9D;D'3E,[E1E=EE?FOFRFXF`FstFAF*G7GRGnGG.G&GG&H)HEH"`H2H6H-H,I,HI1uI7I3I1JEJ%`J-J(J1J0K@K,]K3K@KK&L3LDL4]LL1L(LM$$M/IMyM/M4MMN.N$HNmN"N1N+NO#%O#IOmOO"O6O-O,$P5QP0PP$P%P>Q]QF}QWQR)7R	aRBkRBR R:S:MS5SSBS3T3MTITITBUGXUOU*U1VMV>^V@V;V;WVW%qW!WZWQXXfXCX/Y)3Y#]Y$Y&Y4YZ
Z Z,<Z8iZ+ZZ>Z(-['V[3~[G[ ['\1C\+u\G\-\#]4;]7p],]]$]%^)^5F^7|^0^^ f_7_W_4`9L`4`N`:
a(Eanaa#a;a	b%%b6Kb@b?bc>c:Oc%c,c2c2dJCdHd	dd*e(+e'Te)|e8e8eMfIffLffg g;gDg%_g!g!ggg"g5h
Th'_h h4hh
hii6iOi&miii@ii(j.BjTqj9j"k#k>k4Jk!k-kkkkJl'`ll/l;lm7&m6^m2mmm"n*(nSnrnn#nnnEnOoGdoNoJo>Fp8p1p9p8*q@cq+q!q+q/r+Nr-zr4rrrs),s8Vss,s.s0t&7t0^t+t)t*t2u.Cu/ru.uu&u*v2/v"bv$vDvLv=<w3zw3w&w1	x/;xs;(WAr_}^"qL$s02lxy
0P?$'7dnJK)qRbz6C5B'#Md[~.8ZhEb7ue*tb*I!xt{;FCv=SuS>2~k/l'TTp1N]]N>oI;X7k&@*}/Pu4F\`)czBXn,	CBc0Tw%K"!Zd*	_HR	}<pg\#'Jfa8"V
yRu]9^vriFLwVt%O9#hWkm&t\'cNDeWnj@F}~^ZDY]? nz+<-$nxeQ>V7fPax$qYi-_J|s
a%:@,Q=YVsG0K 	%T(IX#=x4! /OBhLIOAmWZU2U`-?+1r/Bz(4|wtAnfp5tD6d:D|l68;=c@q"o/.H3m134]@>R|yBu~{eAj(<"^h
	}eSf6Q6mmk@glMZ5*fya{:iG> "wN)CW6y2-|UGW=AEAhHZ3U9pvH<,KHE^#&pb`TfmU+vVRQlX\oT&r$l\E+,M8^\D
<SM_F>[oiMY|w.LOb
LI),r97<1X5}CJkv0`:5dP;Y
5K :cVNGg8J`].zC!%
v
q NcS.9?9h-
[#,+/
_?O8O.[uQ;?*Ma$Q7jgPHra&[F=j41J&y({i[~EiSj`+:Ispd%!
q{DURg4o3)Y~2Lz3KojE(gX0Gks312Pxb'w{_eG!	)-
Enter the user ID.  End with an empty line: 
Pick an image to use for your photo ID.  The image must be a JPEG file.
Remember that the image is stored within your public key.  If you use a
very large picture, your key will become very large as well!
Keeping the image close to 240x288 is a good size to use.

Supported algorithms:

You need a user ID to identify your key; the software constructs the user ID
from the Real Name, Comment and Email Address in this form:
    "Heinrich Heine (Der Dichter) <heinrichh@duesseldorf.de>"

                aka                aka "%s"               using %s key %s
              imported: %lu             unchanged: %lu
           new subkeys: %lu
          new user IDs: %lu
          not imported: %lu
          w/o user IDs: %lu
         "%s": preference for cipher algorithm %s
         "%s": preference for compression algorithm %s
         "%s": preference for digest algorithm %s
         (subkey on main key ID %s)         It is not certain that the signature belongs to the owner.
         The signature is probably a FORGERY.
         There is no indication that the signature belongs to the owner.
         This could mean that the signature is forged.
        new signatures: %lu
      "%s"
      Card serial no. =      Key fingerprint =      Subkey fingerprint:      secret keys read: %lu
      skipped new keys: %lu
      user IDs cleaned: %lu
     Subkey fingerprint:    signatures cleaned: %lu
   (%c) Finished
   (%c) Toggle the authenticate capability
   (%c) Toggle the encrypt capability
   (%c) Toggle the sign capability
   (%d) DSA (set your own capabilities)
   (%d) DSA (sign only)
   (%d) Elgamal (encrypt only)
   (%d) RSA (encrypt only)
   (%d) RSA (set your own capabilities)
   (%d) RSA (sign only)
   (0) I will not answer.%s
   (1) I have not checked at all.%s
   (1) Signature key
   (2) Encryption key
   (2) I have done casual checking.%s
   (3) Authentication key
   (3) I have done very careful checking.%s
   new key revocations: %lu
  %d = I do NOT trust
  %d = I don't know or won't say
  %d = I trust fully
  %d = I trust marginally
  %d = I trust ultimately
  (     issuer valid from   (  signature created at   (certificate created at   (certificate valid from   Unable to sign.
  aka "%s"
  m = back to the main menu
  q = quit
  s = skip this key
  secret keys imported: %lu
 (main key ID %s) (non-exportable) (non-revocable) Primary key fingerprint: secret keys unchanged: %lu
 using certificate ID 0x%08lX
"%s" not a key ID: skipping
"%s" was already locally signed by key %s
"%s" was already signed by key %s
# List of assigned trustvalues, created %s
# (Use "gpg --import-ownertrust" to restore them)
%d Admin PIN attempts remaining before card is permanently locked
%d bad signatures
%d keys processed (%d validity counts cleared)
%d marginal(s) needed, %d complete(s) needed, %s trust model
%d signatures not checked due to errors
%d signatures not checked due to missing keys
%d user IDs without valid self-signatures detected
%lu keys cached (%lu signatures)
%lu keys cached so far (%lu signatures)
%lu keys processed so far
%s %s stopped
%s ...
%s does not support handler version %d
%s does not yet work with %s
%s encrypted data
%s encrypted session key
%s encryption will be used
%s is the new one
%s is the unchanged one
%s is too old (need %s, have %s)
%s key uses an unsafe (%u bit) hash
%s keys may be between %u and %u bits long.
%s keysizes must be in the range %u-%u
%s makes no sense with %s!
%s not allowed with %s!
%s on %s aborted with status %i
%s on %s failed with status %i
%s signature, digest algorithm %s
%s.
%s/%s encrypted for: "%s"
%s/%s signature from: "%s"
%s: There is limited assurance this key belongs to the named user
%s: There is no assurance this key belongs to the named user
%s: directory does not exist!
%s: error reading free record: %s
%s: error reading version record: %s
%s: error updating version record: %s
%s: error writing dir record: %s
%s: error writing version record: %s
%s: failed to append a record: %s
%s: failed to create hashtable: %s
%s: failed to create version record: %s%s: failed to zero a record: %s
%s: invalid file version %d
%s: invalid trustdb
%s: invalid trustdb created
%s: keyring created
%s: not a trustdb file
%s: skipped: %s
%s: skipped: public key already present
%s: skipped: public key is disabled
%s: trustdb created
%s: unknown suffix
%s: version record with recnum %lu
%s:%d: deprecated option "%s"
%s:%d: invalid auto-key-locate list
%s:%d: invalid export options
%s:%d: invalid import options
%s:%d: invalid keyserver options
%s:%d: invalid list options
%s:%d: invalid verify options
%s:%u: obsolete option "%s" - it has no effect
%u-bit %s key, ID %s, created %s(No description given)
(Probably you want to select %d here)
(This is a sensitive revocation key)
(sensitive)(this does not seem to be an encrypted message)
(this is the MD2 algorithm)
(this is the RC2 algorithm)
(unless you specify the key by fingerprint)
* The `sign' command may be prefixed with an `l' for local signatures (lsign),
  a `t' for trust signatures (tsign), an `nr' for non-revocable signatures
  (nrsign), or any combination thereof (ltsign, tnrsign, etc.).
--clearsign [filename]--decrypt [filename]--edit-key user-id [commands]--encrypt [filename]--lsign-key user-id--output doesn't work for this command
--sign --encrypt [filename]--sign --symmetric [filename]--sign [filename]--sign-key user-id--store [filename]--symmetric --encrypt [filename]--symmetric --sign --encrypt [filename]--symmetric [filename]1 bad signature
1 signature not checked due to a missing key
1 signature not checked due to an error
1 user ID without valid self-signature detected
10 translator see trustdb.c:uid_trust_string_fixed@
(See the man page for a complete listing of all commands and options)
@
Commands:
 @
Examples:

 -se -r Bob [file]          sign and encrypt for user Bob
 --clearsign [file]         make a clear text signature
 --detach-sign [file]       make a detached signature
 --list-keys [names]        show keys
 --fingerprint [names]      show fingerprints
@
Options:
 @Commands:
 @Options:
 ASCII armored output forced.
Admin PINAdmin commands are allowed
Admin commands are not allowed
Admin-only command
Are you sure that you want to sign this key with your
key "%s" (%s)
Are you sure you still want to add it? (y/N) Are you sure you still want to revoke it? (y/N) Are you sure you still want to sign it? (y/N) Are you sure you want to appoint this key as a designated revoker? (y/N) Are you sure you want to delete it? (y/N) Are you sure you want to replace it? (y/N) Are you sure you want to use it? (y/N) AuthenticateBAD signature from "%s"Bad PINBad PassphraseCA fingerprint: CRC error; %06lX - %06lX
Can't check signature: %s
Can't edit this key: %s
Can't open `%s': %s
CancelCardholder's given name: Cardholder's surname: Certificates leading to an ultimately trusted key:
CertifyChange (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? Change (N)ame, (C)omment, (E)mail or (Q)uit? Change passphraseChanging expiration time for a subkey.
Changing expiration time for the primary key.
Cipher: Command expects a filename argument
Command> Comment: Component not foundCompression: Configuration for HTTP serversConfiguration for KeyserversConfiguration for OCSPConfiguration of LDAP servers to useCorrectCreate a designated revocation certificate for this key? (y/N) Create a revocation certificate for this key? (y/N) Create a revocation certificate for this signature? (y/N) Critical preferred keyserver: Critical signature notation: Critical signature policy: Current allowed actions: Current recipients:
DSA key %s requires a %u bit or larger hash
DSA key %s uses an unsafe (%u bit) hash
DSA requires the hash length to be a multiple of 8 bits
Delete this good signature? (y/N/q)Delete this invalid signature? (y/N/q)Delete this key from the keyring? (y/N) Delete this unknown signature? (y/N/q)Deleted %d signature.
Deleted %d signatures.
Detached signature.
Digest: Displaying %s photo ID of size %ld for key %s (uid %d)
Do you really want to delete the selected keys? (y/N) Do you really want to delete this key? (y/N) Do you really want to do this? (y/N) Do you really want to revoke the entire key? (y/N) Do you really want to revoke the selected subkeys? (y/N) Do you really want to revoke this subkey? (y/N) Do you really want to set this key to ultimate trust? (y/N) Do you ultimately trust%%0A  "%s"%%0Ato correctly certify user certificates?Do you want to issue a new signature to replace the expired one? (y/N) Do you want to promote it to a full exportable signature? (y/N) Do you want to promote it to an OpenPGP self-signature? (y/N) Do you want to sign it again anyway? (y/N) Do you want your signature to expire at the same time? (Y/n) Email address: EncryptEnter JPEG filename for photo ID: Enter an optional description; end it with an empty line:
Enter new filenameEnter new passphraseEnter number(s), N)ext, or Q)uit > Enter passphrase
Enter the new passphrase for this secret key.

Enter the notation: Enter the user ID of the designated revoker: Enter your preferred keyserver URL: Error reading backup key from `%s': %s
Error: Combined name too long (limit is %d characters).
Error: Double spaces are not allowed.
Error: Login data too long (limit is %d characters).
Error: Only plain ASCII is currently allowed.
Error: Private DO too long (limit is %d characters).
Error: The "<" character may not be used.
Error: URL too long (limit is %d characters).
Error: invalid characters in preference string.
Error: invalid formatted fingerprint.
Error: invalid length of preference string.
Error: invalid response.
Expired signature from "%s"Features: File `%s' exists. GPG_TTY has not been set - using maybe bogus default
Go ahead and type your message ...
Good signature fromGood signature from "%s"Hash: Hint: Select the user IDs to sign
How carefully have you verified the key you are about to sign actually belongs
to the person named above?  If you don't know what to answer, enter "0".
How much do you trust that this key actually belongs to the named user?
I have checked this key casually.
I have checked this key very carefully.
I have not checked this key at all.
I'll change it laterIDEA cipher unavailable, optimistically attempting to use %s instead
Invalid character in comment
Invalid character in name
Invalid characters in PINInvalid command  (try "help")
Invalid key %s made valid by --allow-non-selfsigned-uid
Invalid passphrase; please try againInvalid selection.
Is this correct? (y/N) Is this okay? (y/N) Is this photo correct (y/N/q)? It is NOT certain that the key belongs to the person named
in the user ID.  If you *really* know what you are doing,
you may answer the next question with yes.
Key %s is already revoked.
Key available at: Key does not expire at all
Key expires at %s
Key generation canceled.
Key generation failed: %s
Key has been compromisedKey has only stub or on-card key items - no passphrase to change.
Key is no longer usedKey is protected.
Key is revoked.Key is supersededKey is valid for? (0) Key not changed so no update needed.
KeyringKeyserver no-modifyLanguage preferences: Login data (account name): Make off-card backup of encryption key? (Y/n) NOTE: %s is not for normal use!
NOTE: This key is not protected!
NOTE: a key's S/N does not match the card's one
NOTE: backup of card key saved to `%s'
NOTE: creating subkeys for v3 keys is not OpenPGP compliant
NOTE: key has been revokedNOTE: no default option file `%s'
NOTE: old default options file `%s' ignored
NOTE: primary key is online and stored on card
NOTE: secondary key is online and stored on card
NOTE: secret key %s expired at %s
NOTE: sender requested "for-your-eyes-only"
NOTE: signature key %s expired %s
NOTE: simple S2K mode (0) is strongly discouraged
NOTE: trustdb not writable
NOTE: won't be able to encrypt to `%s': %s
Name may not start with a digit
Name must be at least 5 characters long
Need one component argumentNeed the secret key to do this.
NnCcEeOoQqNoNo argument allowedNo corresponding signature in secret ring
No help availableNo help available for `%s'No reason specifiedNo subkey with index %d
No such user ID.
No trust value assigned to:
No user ID with hash %s
No user ID with index %d
Not a valid email address
Notations: Note that group specifications are ignored
Note that this key cannot be used for encryption.  You may want to use
the command "--edit-key" to generate a subkey for this purpose.
Note, that this software is not officially approved to create or verify such signatures.
Note: Signer's address `%s' does not match DNS entry
Note: This key has been disabled.
Note: This key has expired!
Note: This passphrase has never been changed.%0APlease change it now.Note: Verified signer's address is `%s'
Note: key %s has no %s feature
Note: key %s has no preference for %s
Nothing deleted.
Nothing to sign with key %s
OpenPGP card no. %s detected
OpenPGP card not available: %s
Options controlling the configurationOptions controlling the diagnostic outputOptions controlling the format of the outputOptions controlling the interactivity and enforcementOptions controlling the securityOptions enforcing a passphrase policyOptions useful for debuggingOverwrite? (y/N) PIN callback returned error: %s
PIN for CHV%d is too short; minimum length is %d
PIN not correctly repeated; try againPIN too longPIN too shortPassphrasePassphrase too longPassphrase:Please correct the error first
Please decide how far you trust this user to correctly verify other users' keys
(by looking at passports, checking fingerprints from different sources, etc.)
Please don't put the email address into the real name or the comment
Please enter a domain to restrict this signature, or enter for none.
Please enter a passphrase to protect the received secret key%%0A   %s%%0Awithin gpg-agent's key storagePlease enter name of data file: Please enter the PIN%s%s%s to unlock the cardPlease enter the depth of this trust signature.
A depth greater than 1 allows the key you are signing to make
trust signatures on your behalf.
Please enter the new passphrasePlease enter the passphrase for the ssh key%0A  %cPlease enter the passphrase or the PIN
needed to complete this operation.Please enter the passphrase to protect the imported object within the GnuPG system.Please enter the passphrase to protect the new PKCS#12 object.Please enter the passphrase to unprotect the PKCS#12 object.Please enter the passphrase to%0Ato protect your new keyPlease enter your PIN, so that the secret key can be unlocked for this sessionPlease enter your passphrase, so that the secret key can be unlocked for this sessionPlease fix this possible security flaw
Please note that the factory settings of the PINs are
   PIN = `%s'     Admin PIN = `%s'
You should change them using the command --change-pin
Please note that the shown key validity is not necessarily correct
unless you restart the program.
Please re-enter this passphrasePlease remove selections from the secret keys.
Please select at most one subkey.
Please select exactly one user ID.
Please select the reason for the revocation:
Please select the type of key to generate:
Please select what kind of key you want:
Please select where to store the key:
Please specify how long the key should be valid.
         0 = key does not expire
      <n>  = key expires in n days
      <n>w = key expires in n weeks
      <n>m = key expires in n months
      <n>y = key expires in n years
Please specify how long the signature should be valid.
         0 = signature does not expire
      <n>  = signature expires in n days
      <n>w = signature expires in n weeks
      <n>m = signature expires in n months
      <n>y = signature expires in n years
Please use the command "toggle" first.
Please verify that the certificate identified as:%%0A  "%s"%%0Ahas the fingerprint:%%0A  %sPossible actions for a %s key: Preferred keyserver: Primary key fingerprint:Private DO data: Proceed? (y/N) Pubkey: Public key is disabled.
Quit without saving? (y/N) RSA modulus missing or not of size %d bits
RSA prime %s missing or not of size %d bits
RSA public exponent missing or larger than %d bits
Real name: Really create the revocation certificates? (y/N) Really create? (y/N) Really delete this self-signature? (y/N)Really move the primary key? (y/N) Really remove all selected user IDs? (y/N) Really remove this user ID? (y/N) Really revoke all selected user IDs? (y/N) Really revoke this user ID? (y/N) Really sign all user IDs? (y/N) Really sign? (y/N) Really update the preferences for the selected user IDs? (y/N) Really update the preferences? (y/N) Reason for revocation: %s
Repeat this PINReplace existing key? (y/N) Replace existing keys? (y/N) Requested keysize is %u bits
Revocation certificate created.
Revocation certificate created.

Please move it to a medium which you can hide away; if Mallory gets
access to this certificate he can use it to make your key unusable.
It is smart to print this certificate and store it away, just in case
your media become unreadable.  But have some caution:  The print system of
your machine might store the data and make it available to others!
SETERROR %s (try %d of %d)Save changes? (y/N) Secret key is available.
Secret parts of primary key are not available.
Secret parts of primary key are stored on-card.
Set preference list to:
Sex ((M)ale, (F)emale or space): SignSign it? (y/N) Signature does not expire at all
Signature expired %s
Signature expires %s
Signature expires at %s
Signature is valid for? (%s) Signature made Signature made %s
Signature made %s using %s key ID %s
Signature notation: Signature policy: SsEeAaQqSubkey %s is already revoked.
Syntax: gpg [options] [files]
sign, check, encrypt or decrypt
default operation depends on the input data
Syntax: gpg-agent [options] [command [args]]
Secret key management for GnuPG
Syntax: gpg-connect-agent [options]
Connect to a running agent and send commands
Syntax: gpg-preset-passphrase [options] KEYGRIP
Password cache maintenance
Syntax: gpg-protect-tool [options] [args]
Secret key maintenance tool
Syntax: gpgconf [options]
Manage configuration options for tools of the GnuPG system
Syntax: gpgsm [options] [files]
sign, check, encrypt or decrypt using the S/MIME protocol
default operation depends on the input data
Syntax: kbxutil [options] [files]
list, export, import Keybox data
Syntax: scdaemon [options] [command [args]]
Smartcard daemon for GnuPG
Syntax: symcryptrun --class CLASS --program PROGRAM --keyfile KEYFILE [options...] COMMAND [inputfile]
Call a simple symmetric encryption tool
Take this one anywayThe minimum trust level for this key is: %s

The self-signature on "%s"
is a PGP 2.x-style signature.
The signature will be marked as non-exportable.
The signature will be marked as non-revocable.
There are no preferences on a PGP 2.x-style user ID.
This JPEG is really large (%d bytes) !
This command is not allowed while in %s mode.
This is a qualified signature
This is a secret key! - really delete? (y/N) This key belongs to us
This key has been disabledThis key has expired!This key is due to expire on %s.
This key is not protected.
This key may be revoked by %s key %sThis key probably belongs to the named user
This key was revoked on %s by %s key %s
This passphrase has not been changed%%0Asince %.4s-%.2s-%.2s.  Please change it now.This signature expired on %s.
This will be a self-signature.
This would make the key unusable in PGP 2.x.
To be revoked by:
Total number processed: %lu
URL to retrieve public key: UncompressedUnknown signature type `%s'
Usage: gpg [options] [files] (-h for help)Usage: gpg-agent [options] (-h for help)Usage: gpg-connect-agent [options] (-h for help)Usage: gpg-preset-passphrase [options] KEYGRIP (-h for help)
Usage: gpg-protect-tool [options] (-h for help)
Usage: gpgconf [options] (-h for help)Usage: gpgsm [options] [files] (-h for help)Usage: gpgv [options] [files] (-h for help)Usage: kbxutil [options] [files] (-h for help)Usage: scdaemon [options] (-h for help)Usage: symcryptrun [options] (-h for help)Use this key anyway? (y/N) User ID "%s" compacted: %s
User ID "%s" is expired.User ID "%s" is not self-signed.User ID "%s" is revoked.User ID "%s" is signable.  User ID "%s": %d signature removed
User ID "%s": %d signatures removed
User ID "%s": already clean
User ID "%s": already minimized
User ID is no longer validWARNING: "%s" is a deprecated command - do not use it
WARNING: "%s" is a deprecated option
WARNING: "%s" is an obsolete option - it has no effect
WARNING: %s overrides %s
WARNING: 2 files with confidential information exists.
WARNING: This is a PGP 2.x-style key.  Adding a designated revoker may cause
         some versions of PGP to reject this key.
WARNING: This is a PGP2-style key.  Adding a photo ID may cause some versions
         of PGP to reject this key.
WARNING: This key has been revoked by its designated revoker!
WARNING: This key has been revoked by its owner!
WARNING: This key is not certified with a trusted signature!
WARNING: This key is not certified with sufficiently trusted signatures!
WARNING: This subkey has been revoked by its owner!
WARNING: Using untrusted key!
WARNING: We do NOT trust this key!
WARNING: Weak key detected - please change passphrase again.
WARNING: `%s' is an empty file
WARNING: a user ID signature is dated %d seconds in the future
WARNING: appointing a key as a designated revoker cannot be undone!
WARNING: cipher algorithm %s not found in recipient preferences
WARNING: creation time of signature not known - assuming current timeWARNING: digest algorithm %s is deprecated
WARNING: encrypted message has been manipulated!
WARNING: forcing compression algorithm %s (%d) violates recipient preferences
WARNING: forcing digest algorithm %s (%d) violates recipient preferences
WARNING: forcing symmetric cipher %s (%d) violates recipient preferences
WARNING: invalid notation data found
WARNING: key %s contains preferences for unavailable
algorithms on these user IDs:
WARNING: key %s may be revoked: fetching revocation key %s
WARNING: key %s may be revoked: revocation key %s not present.
WARNING: keyserver handler from a different version of GnuPG (%s)
WARNING: keyserver option `%s' is not used on this platform
WARNING: message was encrypted with a weak key in the symmetric cipher.
WARNING: message was not integrity protected
WARNING: multiple plaintexts seen
WARNING: multiple signatures detected.  Only the first will be checked.
WARNING: no user ID has been marked as primary.  This command may
              cause a different user ID to become the assumed primary.
WARNING: nothing exported
WARNING: options in `%s' are not yet active during this run
WARNING: potentially insecure symmetrically encrypted session key
WARNING: program may create a core file!
WARNING: recipients (-r) given without using public key encryption
WARNING: running with faked system time: WARNING: secret key %s does not have a simple SK checksum
WARNING: signature digest conflict in message
WARNING: signing subkey %s has an invalid cross-certification
WARNING: signing subkey %s is not cross-certified
WARNING: some OpenPGP programs can't handle a DSA key with this digest size
WARNING: the signature will not be marked as non-exportable.
WARNING: the signature will not be marked as non-revocable.
WARNING: this key might be revoked (revocation key not present)
WARNING: unable to %%-expand notation (too large).  Using unexpanded.
WARNING: unable to %%-expand policy URL (too large).  Using unexpanded.
WARNING: unable to %%-expand preferred keyserver URL (too large).  Using unexpanded.
WARNING: unable to fetch URI %s: %s
WARNING: unable to parse URI %s
WARNING: unable to refresh key %s via %s: %s
WARNING: unable to remove temp directory `%s': %s
WARNING: unable to remove tempfile (%s) `%s': %s
WARNING: unsafe enclosing directory ownership on configuration file `%s'
WARNING: unsafe enclosing directory ownership on extension `%s'
WARNING: unsafe enclosing directory ownership on homedir `%s'
WARNING: unsafe enclosing directory permissions on configuration file `%s'
WARNING: unsafe enclosing directory permissions on extension `%s'
WARNING: unsafe enclosing directory permissions on homedir `%s'
WARNING: unsafe ownership on configuration file `%s'
WARNING: unsafe ownership on extension `%s'
WARNING: unsafe ownership on homedir `%s'
WARNING: unsafe permissions on configuration file `%s'
WARNING: unsafe permissions on extension `%s'
WARNING: unsafe permissions on homedir `%s'
WARNING: using experimental cipher algorithm %s
WARNING: using experimental digest algorithm %s
WARNING: using experimental public key algorithm %s
Warning: unsafe ownership on %s "%s"
Warning: unsafe permissions on %s "%s"
We need to generate a lot of random bytes. It is a good idea to perform
some other action (type on the keyboard, move the mouse, utilize the
disks) during the prime generation; this gives the random number
generator a better chance to gain enough entropy.
What keysize do you want? (%u) YesYes, protection is not neededYou are about to create a signature using your certificate:
"%s"
Note, that this certificate will NOT create a qualified signature!You are about to create a signature using your certificate:
"%s"
This will create a qualified signature by law equated to a handwritten signature.

%s%sAre you really sure that you want to do this?You are about to revoke these signatures:
You are using the `%s' character set.
You can't change the expiration date of a v3 key
You can't delete the last user ID!
You did not specify a user ID. (you may use "-r")
You don't want a passphrase - this is probably a *bad* idea!

You don't want a passphrase - this is probably a *bad* idea!
I will do it anyway.  You can change your passphrase at any time,
using this program with the option "--edit-key".

You have not entered a passphrase - this is in general a bad idea!%0APlease confirm that you do not want to have any protection on your key.You have not entered a passphrase!%0AAn empty passphrase is not allowed.You have signed these user IDs on key %s:
You may not add a designated revoker to a PGP 2.x-style key.
You may not add a photo ID to a PGP2-style key.
You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 mode.
You must select at least one key.
You must select at least one user ID.
You must select exactly one key.
You need a Passphrase to protect your secret key.

You need a passphrase to unlock the secret key for
user: "%s"
You selected this USER-ID:
    "%s"

Your current signature on "%s"
has expired.
Your current signature on "%s"
is a local signature.
Your decision? Your selection? Your selection? (enter `?' for more information): Your system can't display dates beyond 2038.
However, it will be correctly handled up to 2106.
[  full  ][  undef ][ expired][ revoked][ unknown][Error - No name][Error - invalid DN][Error - invalid encoding][Error - out of core][User ID not found][date not given][filename][marginal][none][not set][revocation][self-signature][ultimate][uncertain]`%s' already compressed
`%s' is not a JPEG file
`%s' is not a valid character set
`%s' is not a valid long keyID
`%s' is not a valid signature expiration
a %u bit hash is not valid for a %u bit %s key
a gpg-agent is already running - not starting a new one
a notation name must have only printable characters or spaces, and end with an '='
a notation name must not contain more than one '@' character
a notation value must not use any control characters
a user notation name must contain the '@' character
about to export an unprotected subkey
access to admin commands is not configured
action `%s' not supported with keyserver scheme `%s'
activate changes at runtime, if possibleadd a key to a smartcardadd a photo IDadd a revocation keyadd a subkeyadd a user IDallow PKA lookups (DNS requests)allow clients to mark keys as "trusted"allow presetting passphraseambiguous option `%s'
anonymous recipient; trying secret key %s ...
apply global default valuesargument not expectedarmor header: armor: %s
assume input is in PEM formatassume input is in base-64 formatassume input is in binary formatassume no on most questionsassume yes on most questionsassuming %s encrypted data
assuming bad signature from key %s due to an unknown critical bit
assuming signed data in `%s'
automatically retrieve keys when verifying signaturesautomatically retrieved `%s' via %s
bad fingerprint in `%s', line %d
basic certificate checks failed - not imported
batch mode: never askbe somewhat more quietbinarybuild_packet failed: %s
cCcaching keyring `%s'
can't access %s - invalid OpenPGP card?
can't access `%s': %s
can't connect to `%s': %s
can't connect to the dirmngr - trying fall back
can't create `%s': %s
can't create backup file `%s': %s
can't create directory `%s': %s
can't create lock for `%s'
can't create socket: %s
can't create temporary directory `%s': %s
can't disable core dumps: %s
can't do this in batch mode
can't do this in batch mode without "--yes"
can't fdopen pipe for reading: %s
can't handle public key algorithm %d
can't handle text lines longer than %d characters
can't handle this ambiguous signature data
can't lock `%s'
can't open `%s'
can't open `%s': %s
can't open fd %d: %s
can't open signed data `%s'
can't open signed data fd=%d: %s
can't sign using `%s': %s
can't use `%s' as home directory
can't use a symmetric ESK packet due to the S2K mode
canceled by user
cancelled
cancelled by user
cancel|cancelcannot allocate args vector
cannot allocate infile string: %s
cannot allocate outfile string: %s
cannot appoint a PGP 2.x style key as a designated revoker
cannot avoid weak key for symmetric cipher; tried %d times!
card does not support digest algorithm %s
card is permanently locked!
card-no: certificate `%s' deleted
certificate `%s' not found: %s
certificate chain longer than allowed by CA (%d)certificate chain too long
certificate has a BAD signaturecertificate has been revokedcertificate has expiredcertificate is good
certificate is not usable for encryption
certificate is not usable for signing
certificate not created during lifetime of issuercertificate not yet validcertificate policy not allowedcertificate should have not been used for OCSP response signing
certificate should have not been used for certification
certificate should have not been used for encryption
certificate should have not been used for signing
certificate with invalid validitycertificate with invalid validity: %schainchange URL to retrieve keychange a CA fingerprintchange a card's PINchange a passphrasechange card holder's namechange card holder's sexchange data on a cardchange the expiration date for the key or selected subkeyschange the language preferenceschange the login namechange the ownertrustchange the passphrasecheck all programscheck global configuration filecheck signaturescheck validity using OCSPchecking created signature failed: %s
checking for qualified certificate failed: %s
checking the CRL failed: %schecking the trust list failed: %s
checking the trustdb
child aborted with status %i
cipher algorithm %d%s is unknown or disabled
class %s is not supported
colon missingcommand "%.50s" is ambiguous
communication problem with gpg-agent
compact unusable user IDs and remove all signatures from keycompact unusable user IDs and remove unusable signatures from keycompletes-needed must be greater than 0
conflicting commands
conversion from `%s' to `%s' failed: %s
conversion from `%s' to `%s' not available
could not create pipe: %s
could not create pty: %s
could not fork: %s
could not open %s for writing: %s
could not parse keyserver URL
create a public key when importing a secret keycreate ascii armored outputcreate base-64 encoded outputcreated: %screation timestamp missing
critical certificate extension %s is not supportedcritical marked policy without configured policiescsh-style command outputdata not saved; use option "--output" to save it
dearmoring failed: %s
decode received data linesdecrypt data (default)decryption failed: %s
decryption modusdecryption okay
delete selected subkeysdelete selected user IDsdelete signatures from the selected user IDsdeleting certificate "%s" failed: %s
deleting keyblock failed: %s
depth: %d  valid: %3d  signed: %3d  trust: %d-, %dq, %dn, %dm, %df, %du
detected card with S/N: %s
directory `%s' created
dirmngr protocol version %d is not supported
disable keydisableddisplay photo IDs during key listingsdisplay photo IDs during signature verificationdo not allow the reuse of old passphrasesdo not allow to bypass the passphrase policydo not check CRLs for root certificatesdo not check certificate policiesdo not delete temporary files after using themdo not detach from the consoledo not grab keyboard and mousedo not make any changesdo not update the trustdb after importdo not use a reader's keypaddo not use extended connect modedo not use the PIN cache when signingdo not use the SCdaemondo not use the internal CCID driverdoes not match - try againdon't use the terminal at allduplicated certificate `%s' deleted
either %s or %s must be given
elevate the trust of signatures with valid PKA dataenable full debuggingenable keyenable ssh-agent emulationenarmoring failed: %s
encrypt dataencrypted with %lu passphrases
encrypted with %s key, ID %s
encrypted with %u-bit %s key, ID %s, created %s
encrypted with 1 passphrase
encrypted with unknown algorithm %d
encrypting a message in --pgp2 mode requires the IDEA cipher
encryption modusencryption only with symmetric ciphererror allocating enough memory: %s
error binding socket to `%s': %s
error closing %s: %s
error creating `%s': %s
error creating a pipe: %s
error creating keybox `%s': %s
error creating keyring `%s': %s
error creating passphrase: %s
error creating socket: %s
error creating temporary file: %s
error finding trust record in `%s': %s
error finding writable keyDB: %s
error forking process: %s
error getting current key info: %s
error getting default authentication keyID of card: %s
error getting exit code of process %d: %s
error getting key usage information: %s
error getting new PIN: %s
error getting serial number of card: %s
error getting stored flags: %s
error importing certificate: %s
error in `%s': %s
error in trailer line
error loading `%s': %s
error locking keybox: %s
error opening `%s': %s
error reading `%s', line %d: %s
error reading `%s': %s
error reading application data
error reading fingerprint DO
error reading from %s: %s
error reading input: %s
error reading keyblock: %s
error reading list of trusted root certificates
error reading secret keyblock "%s": %s
error retrieving CHV status from card
error running `%s': exit status %d
error running `%s': probably not installed
error running `%s': terminated
error sending %s command: %s
error sending standard options: %s
error storing certificate
error storing certificate: %s
error storing flags: %s
error while asking for the passphrase: %s
error writing key: %s
error writing keyring `%s': %s
error writing public keyring `%s': %s
error writing secret keyring `%s': %s
error writing to %s: %s
error writing to temporary file: %s
execv failed: %s
existing key will be replaced
expiredexpired: %sexpires: %sexport attribute user IDs (generally photo IDs)export certificatesexport keysexport keys in an S-expression based formatexport keys to a key serverexport revocation keys marked as "sensitive"export signatures that are marked as local-onlyexporting secret keys not allowed
external keyserver calls are not supported in this build
external program calls are disabled due to unsafe options file permissions
failed to acquire the pinentry lock: %s
failed to allocate keyDB handle
failed to allocated keyDB handle
failed to create stream from socket: %s
failed to get the fingerprint
failed to initialize the TrustDB: %s
failed to open `%s': %s
failed to rebuild keyring cache: %s
failed to store the creation date: %s
failed to store the fingerprint: %s
failed to store the key: %s
failed to unprotect the subkey: %s
femalefetch missing issuer certificatesfetch the key specified in the card URLfile `%s', line %d: %s
fingerprint on card does not match requested one
fingerprint=%s
flag the selected user ID as primaryforcedforcing symmetric cipher %s (%d) violates recipient preferences
found another possible matching CA certificate - trying againfstat of `%s' failed in %s: %s
fstat(%d) failed in %s: %s
fullgenerate a new key pairgenerate a revocation certificategenerate new keysgenerating key failed
generating new key
generating the deprecated 16-bit checksum for secret key protection
gpg-agent is not available in this session
gpg-agent protocol version %d is not supported
handler 0x%lx for fd %d started
handler 0x%lx for fd %d terminated
handler for fd %d started
handler for fd %d terminated
honor the PKA record set on a key when retrieving keyshonor the preferred keyserver URL set on the keyhost not foundiImMqQsSiconv_open failed: %s
ignore requests to change the TTYignore requests to change the X displayimport certificatesimport keys from a key serverimport signatures that are marked as local-onlyimport/merge keysimporting common certificates `%s'
importing secret keys not allowed
include revoked keys in search resultsinclude subkeys when searching by key IDinput file name (default stdin)input line %u too long or missing LF
input line longer than %d characters
interactive marking as trusted disabled for this session
interactive marking as trusted not enabled in gpg-agent
intermediate certificate has expiredintermediate certificate is good
intermediate certificate not created during lifetime of issuerintermediate certificate not yet validinvalidinvalid S2K mode; must be 0, 1 or 3
invalid alias definitioninvalid armor header: invalid armor: line longer than %d characters
invalid auto-key-locate list
invalid clearsig header
invalid commandinvalid command "%.50s"
invalid country code in `%s', line %d
invalid dash escaped line: invalid debug-level `%s' given
invalid default preferences
invalid default-cert-level; must be 0, 1, 2, or 3
invalid export options
invalid fingerprintinvalid formatted fingerprint in `%s', line %d
invalid hash algorithm `%s'
invalid import options
invalid item `%s' in preference string
invalid keyflag in `%s', line %d
invalid keyserver options
invalid keyserver protocol (us %d!=handler %d)
invalid list options
invalid min-cert-level; must be 1, 2, or 3
invalid optioninvalid option "%.50s"
invalid personal cipher preferences
invalid personal compress preferences
invalid personal digest preferences
invalid radix64 character %02X skipped
invalid radix64 character %02x skipped
invalid root packet detected in proc_tree()
invalid structure of OpenPGP card (DO 0x93)
invalid value
invalid verify options
invoke gpg-protect-toolissuer certificate is not marked as a CAissuer certificate not foundit is strongly suggested that you update your preferences and
key "%s" not found on keyserver
key "%s" not found: %s
key %s has no user IDs
key %s marked as ultimately trusted
key %s occurs more than once in the trustdb
key %s was created %lu second in the future (time warp or clock problem)
key %s was created %lu seconds in the future (time warp or clock problem)
key %s: "%s" %d new signatures
key %s: "%s" %d new subkeys
key %s: "%s" %d new user IDs
key %s: "%s" %d signature cleaned
key %s: "%s" %d signatures cleaned
key %s: "%s" %d user ID cleaned
key %s: "%s" %d user IDs cleaned
key %s: "%s" 1 new signature
key %s: "%s" 1 new subkey
key %s: "%s" 1 new user ID
key %s: "%s" not changed
key %s: "%s" revocation certificate added
key %s: "%s" revocation certificate imported
key %s: PGP 2.x style key - skipped
key %s: PKS subkey corruption repaired
key %s: accepted as trusted key
key %s: accepted non self-signed user ID "%s"
key %s: already in secret keyring
key %s: can't locate original keyblock: %s
key %s: can't read original keyblock: %s
key %s: direct key signature added
key %s: doesn't match our copy
key %s: duplicated user ID detected - merged
key %s: invalid revocation certificate: %s - rejected
key %s: invalid revocation certificate: %s - skipped
key %s: invalid self-signature on user ID "%s"
key %s: invalid subkey binding
key %s: invalid subkey revocation
key %s: key material on-card - skipped
key %s: new key - skipped
key %s: no public key - can't apply revocation certificate
key %s: no public key for trusted key - skipped
key %s: no subkey for key binding
key %s: no subkey for key revocation
key %s: no subkey for subkey binding signature
key %s: no subkey for subkey revocation signature
key %s: no user ID
key %s: no user ID for signature
key %s: no valid user IDs
key %s: non exportable signature (class 0x%02X) - skipped
key %s: not protected - skipped
key %s: public key "%s" imported
key %s: public key not found: %s
key %s: removed multiple subkey binding
key %s: removed multiple subkey revocation
key %s: revocation certificate at wrong place - skipped
key %s: secret key imported
key %s: secret key not found: %s
key %s: secret key with invalid cipher %d - skipped
key %s: secret key without public key - skipped
key %s: skipped subkey
key %s: skipped user ID "%s"
key %s: subkey signature in wrong place - skipped
key %s: unexpected signature class (0x%02X) - skipped
key %s: unsupported public key algorithm
key %s: unsupported public key algorithm on user ID "%s"
key already exists
key export failed: %s
key generation completed (%d seconds)
key has been created %lu second in future (time warp or clock problem)
key has been created %lu seconds in future (time warp or clock problem)
key is not flagged as insecure - can't use it with the faked RNG!
key not found on keyserver
key operation not possible: %s
keyblock resource `%s': %s
keybox `%s' created
keyring `%s' created
keyserver communications error: %s
keyserver did not send VERSION
keyserver internal error
keyserver receive failed: %s
keyserver refresh failed: %s
keyserver search failed: %s
keyserver send failed: %s
keyserver timed out
keysize invalid; using %u bits
keysize rounded up to %u bits
keyword too longlibgcrypt is too old (need %s, have %s)
line %d: error getting key by keygrip `%s': %s
line %d: error reading key `%s' from card: %s
line %d: invalid algorithm
line %d: invalid key length %u (valid are %d to %d)
line %d: invalid subject name `%s' at pos %d
line %d: invalid subject name label `%.*s'
line %d: key generation failed: %s <%s>
line %d: no subject name given
line %d: not a valid email address
line shortened due to embedded Nul character
line too longline too long - skipped
list all available datalist all componentslist and check key signatureslist certificate chainlist external keyslist key and user IDslist keyslist keys and fingerprintslist keys and signatureslist preferences (expert)list preferences (verbose)list secret keyslisten() failed: %s
listening on socket `%s'
looking up issuer at external location
make a detached signaturemake timestamp conflicts only a warningmake_keysig_packet failed: %s
malemalformed CRC
malformed DIRMNGR_INFO environment variable
malformed GPG_AGENT_INFO environment variable
marginalmarginals-needed must be greater than 1
max-cert-depth must be in the range from 1 to 255
menu to change or unblock the PINmissing argumentmissing argument for option "%.50s"
move a backup key to a smartcardmove a key to a smartcardmoving a key signature to the correct place
nNname of socket too long
nested clear text signatures
nevernever     never consult a CRLnew configuration file `%s' created
next trustdb check due at %s
nono --keyfile option provided
no --program option provided
no = sign found in group definition `%s'
no CRL found for certificateno class provided
no corresponding public key: %s
no default secret keyring: %s
no gpg-agent running in this session
no handler for keyserver scheme `%s'
no issuer found in certificateno key usage specified - assuming all usages
no keyserver action!
no keyserver known (use option --keyserver)
no need for a trustdb check
no need for a trustdb check with `%s' trust model
no need for a trustdb update with `%s' trust model
no remote program execution supported
no revocation keys found for "%s"
no running dirmngr - starting `%s'
no secret key
no secret subkey for public subkey %s - ignoring
no signature found
no signed data
no suitable card key found: %s
no ultimately trusted keys found
no valid OpenPGP data found.
no valid addressees
no valid recipients given
no writable keyring found: %s
no writable public keyring found: %s
no writable secret keyring found: %s
nonenot a detached signature
not an OpenPGP cardnot forcednot human readablenote: non-critical certificate policy not allowednumber of issuers matching: %d
oOokay, we are the anonymous recipient.
okay|okayold encoding of the DEK is not supported
old style (PGP 2.x) signature
only --decrypt and --encrypt are supported
only accept updates to existing keysoption "%.50s" does not expect an argument
option "%.50s" is ambiguous
option "%s" ignored due to "%s"
option "%s" requires a program and optional arguments
option file `%s': %s
original file name='%.*s'
out of core in secure memory while allocating %lu bytesout of core while allocating %lu bytesownertrust information cleared
ownertrust value missingpass a command to the dirmngrpassphrase generated with unknown digest algorithm %d
passphrase not correctly repeated; try againplease do a --check-trustdb
please make sure that the "dirmngr" is properly installed
please see %s for more information
please use "%s%s" instead
please use the option `--daemon' to run the program in the background
please wait while key is being generated ...
preference `%s' duplicated
premature eof (in CRC)
premature eof (in trailer)
premature eof (no CRC)
print data out hex encodedprint the card statusproblem handling encrypted packet
problem looking for existing certificate: %s
problem re-searching certificate: %s
problem setting the gpg-agent options
problem with the agent
problem with the agent: %s
program filenameprompt before overwritingprotection algorithm %d%s is not supported
protection digest %d is not supported
pth_select failed: %s - waiting 1s
pty read failed: %s
public and secret key created and signed.
public key %s is %lu second newer than the signature
public key %s is %lu seconds newer than the signature
public key %s not found: %s
public key decryption failed: %s
public key does not match secret key!
public key encrypted data: good DEK
public key is %s
public key of ultimately trusted key %s not found
qQquietquitquit this menuquoted printable character in armor - probably a buggy MTA has been used
re-distribute this key to avoid potential algorithm mismatch problems
read errorread error in `%s': %s
read failed: %s
reading from `%s'
reading options from `%s'
reading public key failed: %s
reading stdin ...
reason for revocation: receiving line failed: %s
refreshing %d keys from %s
refreshing 1 key from %s
register a smartcardremove as much as possible from key after importremove as much as possible from key during exportremove keys from the public keyringremove keys from the secret keyringremove the passphrase from exported subkeysremove unusable parts from key after importremove unusable parts from key during exportrenaming `%s' to `%s' failed: %s
repair damage from the pks keyserver during importrequesting key %s from %s
requesting key %s from %s server %s
required certificate attributes missing: %s%s%sresponse does not contain the RSA modulus
response does not contain the RSA public exponent
response does not contain the public key data
revocation comment: revoke key or selected subkeysrevoke selected user IDsrevoke signatures on the selected user IDsrevokedrevoked by your key %s on %s
revoked: %sroot certificate has expiredroot certificate has now been marked as trusted
root certificate is good
root certificate is not marked trustedroot certificate not yet validrounded up to %u bits
run in daemon mode (background)run in multi server mode (foreground)run in server moderun in server mode (foreground)run the Assuan server given on the command linesave and quitsearch for keys on a key serversearching for "%s" from %s
searching for "%s" from %s server %s
searching for names from %s
searching for names from %s server %s
secret key "%s" not found: %s
secret key already stored on a card
secret key file (required)secret key parts are not available
secret parts of key are not available
select failed: %s
select subkey Nselect user ID Nselected certification digest algorithm is invalid
selected cipher algorithm is invalid
selected compression algorithm is invalid
selected digest algorithm is invalid
self-signed certificate has a BAD signaturesending key %s to %s
sending key %s to %s server %s
sending line failed: %s
set a notation for the selected user IDsset debugging flagsset preference list for the selected user IDsset the preferred keyserver URL for the selected user IDssh-style command outputshadowing the key failed: %s
shellshow IETF standard notations during signature listingsshow IETF standard notations during signature verificationshow admin commandsshow all notations during signature listingsshow all notations during signature verificationshow expiration dates during signature listingsshow key fingerprintshow only the primary user ID in signature verificationshow policy URLs during signature listingsshow policy URLs during signature verificationshow preferred keyserver URLs during signature listingsshow preferred keyserver URLs during signature verificationshow revoked and expired subkeys in key listingsshow revoked and expired user IDs in key listingsshow revoked and expired user IDs in signature verificationshow selected photo IDsshow the keyring name in key listingsshow this helpshow user ID validity during key listingsshow user ID validity during signature verificationshow user-supplied notations during signature listingsshow user-supplied notations during signature verificationsign a keysign a key locallysign or edit a keysign selected user IDs [* see below for related commands]sign selected user IDs locallysign selected user IDs with a non-revocable signaturesign selected user IDs with a trust signaturesignature not created during lifetime of certificatesignature verification suppressed
signatures created so far: %lu
signed by your key %s on %s%s%s
signing failed: %s
signing subkey %s is already cross-certified
signing:skipped "%s": %s
skipped "%s": duplicated
skipped: public key already set
skipped: public key already set as default recipient
skipped: secret key already present
skipping block of type %d
skipping v3 self-signature on user ID "%s"
ssh handler 0x%lx for fd %d started
ssh handler 0x%lx for fd %d terminated
ssh keys greater than %d bits are not supported
standalone revocation - use "gpg --import" to apply
standalone signature of class 0x%02x
stat() failed for `%s': %s
statement "%s" ignored in `%s', line %d
storing key onto card failed: %s
subkey %s does not sign and so does not need to be cross-certified
subpacket of type %d has critical bit set
switching to chain modelsymmetric encryption of `%s' failed: %s
system error while calling external program: %s
system trustlist `%s' not available
textmodethe IDEA cipher plugin is not present
the NullPIN has not yet been changed
the available CRL is too oldthe given certification policy URL is invalid
the given preferred keyserver URL is invalid
the given signature policy URL is invalid
the signature could not be verified.
Please remember that the signature file (.sig or .asc)
should be the first file given on the command line.
the status of the certificate is unknownthere is a secret key for public key "%s"!
this is a PGP generated Elgamal key which is not secure for signatures!this key has already been designated as a revoker
this may be caused by a missing self-signature
this message may not be usable by %s
this platform requires temporary files when calling external programs
toggle between the secret and public key listingstoggle the signature force PIN flagtoo many cipher preferences
too many compression preferences
too many digest preferences
too many entries in pk cache - disabled
tool class (confucius)total number processed: %lu
trust record %lu is not of requested type %d
trust record %lu, req type %d: read failed: %s
trust record %lu, type %d: write failed: %s
trust: %strustdb rec %lu: lseek failed: %s
trustdb rec %lu: write failed (n=%d): %s
trustdb transaction too large
trustdb: lseek failed: %s
trustdb: read failed (n=%d): %s
trustdb: sync failed: %s
trustlevel adjusted to FULL due to valid PKA info
trustlevel adjusted to NEVER due to bad PKA info
ultimateunable to display photo ID!
unable to execute external program
unable to execute program `%s': %s
unable to execute shell `%s': %s
unable to open JPEG file `%s': %s
unable to read external program response: %s
unable to set exec-path to %s
unable to update trustdb version record: write failed: %s
unable to use the IDEA cipher for all of the keys you are encrypting to.
unable to use unknown trust model (%d) - assuming %s trust model
uncompressed|noneundefinedunexpected armor: unknownunknown command `%s'
unknown configuration item `%s'
unknown default recipient "%s"
unknown key protection algorithm
unknown option `%s'
unknown protection algorithm
unknown validation model `%s'
unnatural exit of external program
unspecifiedupdate all keys from a keyserverupdate failed: %s
update secret failed: %s
update the trust databaseusage: %susage: gpg [options] usage: gpgconf [options] usage: gpgsm [options] use a log file for the serveruse a standard location for the socketuse as output fileuse canonical text modeuse option "--delete-secret-keys" to delete it first.
use strict OpenPGP behavioruse system's HTTP proxy settinguse system's dirmngr if availableuse temporary files to pass data to keyserver helpersuser ID "%s" is already revoked
user ID: "%s"
using %s trust model
using cipher %s
using subkey %s instead of primary key %s
validate signatures with PKA datavalidation model requested by certificate: %svalidation model used: %svalidity: %sverboseverification of Admin PIN is currently prohibited through this command
verify CHV%d failed: %s
verify a signatureverify the PIN and list all datawaiting for process %d to terminate failed: %s
waitpid failed: %s
weak key created - retrying
weird size for an encrypted session key (%d)
will not run with insecure memory due to %s
writing direct signature
writing key binding signature
writing public key to `%s'
writing secret key stub to `%s'
writing secret key to `%s'
writing self signature
writing to `%s'
writing to stdout
yYyesyou can only clearsign with PGP 2.x style keys while in --pgp2 mode
you can only detach-sign with PGP 2.x style keys while in --pgp2 mode
you can only encrypt to RSA keys of 2048 bits or less in --pgp2 mode
you can only make detached or clear signatures while in --pgp2 mode
you can update your preferences with: gpg --edit-key %s updpref save
you can't sign and encrypt at the same time while in --pgp2 mode
you cannot appoint a key as its own designated revoker
you cannot use --symmetric --encrypt while in %s mode
you cannot use --symmetric --encrypt with --s2k-mode 0
you cannot use --symmetric --sign --encrypt while in %s mode
you cannot use --symmetric --sign --encrypt with --s2k-mode 0
you found a bug ... (%s:%d)
you may not use %s while in %s mode
you may not use cipher algorithm `%s' while in %s mode
you may not use compression algorithm `%s' while in %s mode
you may not use digest algorithm `%s' while in %s mode
you may want to start the gpg-agent first
you must use files (and not a pipe) when working with --pgp2 enabled.
|AN|New Admin PIN|COMPONENT|change options|COMPONENT|list options|FD|write status info to this FD|FILE|check new passphrases against pattern in FILE|FILE|read options from FILE|FILE|take policy information from FILE|FILE|write environment settings also to FILE|FILE|write server mode logs to FILE|LEVEL|set the debugging level to LEVEL|NAME|connect to Assuan socket NAME|NAME|encrypt to user ID NAME as well|NAME|use NAME as PC/SC driver|NAME|use NAME as ct-API driver|NAME|use NAME as default secret key|NAME|use cipher algorithm NAME|NAME|use encoding NAME for PKCS#12 passphrases|NAME|use message digest algorithm NAME|N|New PIN|N|connect to reader at port N|N|expire SSH keys after N seconds|N|expire cached PINs after N seconds|N|expire the passphrase after N days|N|number of certificates to include|N|require at least N non-alpha characters for a new passphrase|N|set maximum PIN cache lifetime to N seconds|N|set maximum SSH key lifetime to N seconds|N|set minimal required length for new passphrases to N|PGM|use PGM as the PIN-Entry program|PGM|use PGM as the SCdaemon program||Please enter the PIN%%0A[sigs done: %lu]||Please enter your PIN at the reader's keypadProject-Id-Version: gnupg-2.0.7
Report-Msgid-Bugs-To: translations@gnupg.org
POT-Creation-Date: 2009-12-21 16:05+0100
PO-Revision-Date: 2007-11-26 19:01+0100
Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>
Language-Team: Polish <translation-team-pl@lists.sourceforge.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-2
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);

Identyfikator uytkownika (pusta linia oznacza koniec): 
Wybierz zdjcie ktre chcesz doczy do swojego klucza jako identyfikator.
Musi to by plik w formacie JPEG. Zostanie on zapisany w Twoim kluczu
publicznym. Jeli bdzie duy, powikszy to take rozmiar Twojego klucza!
Dobry rozmiar to okoo 240 na 288 pikseli.

Obsugiwane algorytmy:

Musisz poda identyfikator uytkownika aby mona byo rozpozna twj klucz;
program zoy go z twojego imienia i nazwiska, komentarza i adresu poczty
elektronicznej. Bdzie on mia, na przykad, tak posta:
    "Tadeusz eleski (Boy) <tzb@ziemianska.pl>"

                        alias                        alias ,,%s''               przy uyciu klucza %s %s
         doczono do zbioru: %lu                   bez zmian: %lu
            nowych podkluczy: %lu
      nowych identyfikatorw: %lu
      nie wczono do zbioru: %lu
          bez identyfikatora: %lu
         ,,%s'': preferowany szyfr %s
         ,,%s'': preferowany algorytm kompresji %s
         ,,%s'': preferowany algorytm skrtu %s
         (podklucz dla gwnego klucza o ID %s)             Nie ma pewnoci co do tosamoci osoby ktra zoya ten podpis.
             Ten podpis prawdopodobnie jest FASZYWY.
             Nie ma pewnoci co do tosamoci osoby ktra zoya podpis.
             To moe oznacza, e podpis jest faszerstwem.
             nowych podpisw: %lu
      ,,%s''
    Nr seryjny karty =       Odcisk klucza =       Odcisk podklucza:   tajnych kluczy wczytanych: %lu
   pominitych nowych kluczy: %lu
ID uytkownika wyczyszczonych: %lu
      Odcisk podklucza:     podpisw wyczyszczonych: %lu
   (%c) Zakoczenie
   (%c) Przeczenie moliwoci uwierzytelniania
   (%c) Przeczenie moliwoci szyfrowania
   (%c) Przeczenie moliwoci podpisywania
   (%d) DSA (moliwoci do ustawienia)
   (%d) DSA (tylko do podpisywania)
   (%d) Klucz dla algorytmu Elgamala (tylko do szyfrowania)
   (%d) RSA (tylko do szyfrowania)
   (%d) RSA (moliwoci do ustawienia)
   (%d) RSA (tylko do podpisywania)
   (0) Nie odpowiem na to pytanie. %s
   (1) W ogle nie.%s
   (1) Klucz do podpisw
   (2) Klucz do szyfrowania
   (2) Pobienie.%s
   (3) Klucz do uwierzytelniania
   (3) Bardzo dokadnie.%s
   nowych uniewanie kluczy: %lu
  %d = NIE ufam
  %d = nie wiem albo nie powiem
  %d = mam pene zaufanie
  %d = mam ograniczone zaufanie
  %d = ufam absolutnie
  (     wystawca wany od   (  podpis utworzony   (certyfikat utworzony   (certyfikat wany od  Nie da si zoy podpisu.
  alias ,,%s''
  m = powrt do gwnego menu
  w = wyjcie
  p = pominicie tego klucza
     tajnych kluczy dodanych: %lu
 (ID gwnego klucza %s) (podpis nieeksportowalny)  (podpis nieuniewanialny)  Odcisk klucza gwnego:    tajnych kluczy bez zmian: %lu
 przy uyciu certyfikatu o ID 0x%08lX
,,%s'' nie jest identyfikatorem klucza - pominito
,,%s'' jest ju lokalnie podpisany kluczem %s
,,%s'' jest ju podpisany kluczem %s
# Lista przypisanych wartoci zaufania, stworzona %s
# (uyj "gpg --import-ownertrust" aby j przywrci)
Zostao %d prb PIN-u administratora do trwaego zablokowania karty
%d niepoprawnych podpisw
przetworzono %d kluczy (rozwizano %d przelicze zaufania)
potrzeba %d marginalnych, %d penych, model zaufania %s
%d podpisw nie sprawdzonych z powodu bdw
%d podpisw nie zostao sprawdzonych z powodu braku kluczy
wykryto %d identyfikatorw uytkownika niepodpisanych tym samym kluczem
%lu kluczy zbuforowano (%lu podpisw)
%lu kluczy zbuforowano do tej pory (%lu podpisw)
%lu kluczy przetworzonych do tej chwili
%s %s zatrzymany
%s ...
%s nie obsuguje moduu obsugi w wersji %d
%s jeszcze nie dziaa z %s!
dane zaszyfrowano za pomoc %s
klucz sesyjny zaszyfrowany %s
zostanie uyty szyfr %s
%s zosta utworzony
%s pozosta bez zmian
biblioteka %s jest zbyt stara (potrzebna %s, zainstalowana %s)
Klucz %s uywa niebezpiecznego (%u-bitowego) skrtu
Klucze %s bd miay od %u do %u bitw dugoci.
Rozmiary kluczy %s musz by z przedziau %u-%u
%s nie ma sensu w poczeniu z %s!
Nie wolno uywa %s z %s!
%s na %s przerwany ze stanem %i
%s na %s nie powid si ze stanem %i
podpis %s, skrt %s
%s.
%s/%s zaszyfrowany dla: ,,%s''
podpis %s/%s zoony przez: ,,%s''
%s: Nie ma cakowitej pewnoci, czy ten klucz naley do tej osoby
%s: Nie ma adnej pewnoci, czy ten klucz naley do tej osoby
%s: katalog nie istnieje!
%s: bd odczytu pustego wpisu: %s
%s: bd odczytu numeru wersji: %s
%s: bd przy uaktualnianiu numeru wersji: %s
%s: bd zapisu wpisu katalogowego: %s
%s: bd zapisu numeru wersji: %s
%s: dopisanie rekordu nie powiodo si: %s
%s: tworzenie tablicy skrtw nie powiodo si: %s
%s: stworzenie zapisu o wersji nie powiodo si: %s%s: zerowanie rekordu nie powiodo si: %s
%s: niewaciwa wersja pliku %d
%s: niepoprawny plik bazy zaufania
%s: stworzony niepoprawny plik bazy zaufania
%s: zbir kluczy utworzony
%s: to nie jest plik bazy zaufania
%s: pominity: %s
%s: pominity: zosta ju wybrany w innej opcji
%s: pominity: klucz publiczny wyczony z uytku
%s: baza zaufania utworzona
%s: nieznana kocwka nazwy
%s: wpis wersji z numerem %lu
%s:%d jest przestarza opcj ,,%s''
%s:%d: niepoprawna lista auto-key-locate
%s:%d niepoprawne opcje eksportu kluczy
%s:%d: niepoprawne opcje wczytania kluczy
%s:%d: niepoprawne opcje serwera kluczy
%s:%d: niepoprawne opcje wypisywania
%s:%d: niepoprawne opcje sprawdzania
%s:%u: przestarzaa opcja ,,%s'' - nie ma efektu
dugo %u bitw, typ %s, numer %s, stworzony %s(nie podano)
(Prawdopodobnie chcesz tu wybra %d)
(to jest czuy klucz uniewaniajcy)
(poufne)(to nie wyglda na zaszyfrowan wiadomo)
(to jest algorytm MD2)
(to jest algorytm RC2)
(chyba, e klucz zostaje wybrany przez podanie odcisku)
* Polecenie `sign' mona poprzedzi ,,l'' dla lokalnych sygnatur (lsign),
  ,,t'' dla sygnatur zaufania (tsign) albo ,,nr'' dla sygnatur nie
  podlegajcych uniewanieniu (nrsign), albo dowoln ich kombinacj (ltsign,
  tnrsign itd.).
--clearsign [plik]--decrypt [plik]--edit-key nazwa uytkownika [polecenia]--encrypt [plik]--lsign-key nazwa uytkownikaopcja --output nie dziaa z tym poleceniem
--sign --encrypt [plik]--sign --symmetric [plik]--sign [plik]--sign-key nazwa uytkownika--store [plik]--symmetric --encrypt [plik]--symmetric --sign --encrypt [plik]--symmetric [plik]1 niepoprawny podpis
1 podpis nie zosta sprawdzony z powodu braku klucza
1 podpis nie zosta sprawdzony z powodu bdu
wykryto 1 identyfikator uytkownika niepodpisany tym samym kluczem
17@
(Pen list polece i opcji mona znale w podrczniku systemowym.)
@
Polecenia:
 @
Przykady:

 -se -r Bob [plik]          podpisanie i zaszyfrowanie kluczem Boba
 --clearsign [plik]         podpisanie z pozostawieniem czytelnoci dokumentu
 --detach-sign [plik]       podpisanie z umieszczeniem podpisu w osobnym pliku
 --list-keys [nazwy]        pokazanie klucze
 --fingerprint [nazwy]      pokazanie odciskw kluczy
@
Opcje:
 @Polecenia:
 @Opcje:
 wymuszono opakowanie ASCII wyniku.
PIN administratoraPolecenia dla administratora s dozwolone
Polecenia dla administratora nie s dozwolone
Polecenie tylko dla administratora
Czy jeste naprawd pewien, e chcesz podpisa ten klucz
swoim kluczem ,,%s'' (%s)
Czy dalej chcesz je doda? (t/N) Czy dalej chcesz go uniewani? (t/N) Czy na pewno chcesz podpisa? (t/N) Czy na pewno chcesz wyznaczy ten klucz jako uniewaniajcy? (t/N) Czy na pewno chcesz go usun? (t/N) Czy na pewno chcesz go zastpi? (t/N) Czy na pewno chcesz go uy? (t/N) UwierzytelnianieNIEPOPRAWNY podpis zoony przez ,,%s''Niepoprawny PINNiepoprawne hasoOdcisk CA:Bd sumy CRC; %06lX - %06lX
Nie mona sprawdzi podpisu: %s
Tego klucza nie mona modyfikowa: %s.
Nie mona otworzy ,,%s'': %s
AnulujImi posiadacza karty: Nazwisko posiadacza karty: Certyfikaty prowadzce do ostatecznie zaufanego klucza:
CertyfikowanieZmieni (I)mi/nazwisko, (K)omentarz, adres (E)mail, przej (D)alej,
czy (W)yj z programu? Zmieni (I)mi/nazwisko, (K)omentarz, adres (E)mail, czy (W)yj? Zmiana hasaZmiana daty wanoci podklucza.
Zmiana daty wanoci gwnego klucza.
Symetryczne: Polecenie oczekuje argumentu bdcego nazw pliku
Polecenie> Komentarz: Nie znaleziono komponentuKompresji: Konfiguracja dla serwerw HTTPKonfiguracja dla serwerw kluczyKonfiguracja dla OCSPKonfiguracja uywanych serwerw LDAPAkceptujStworzy certyfikat uniewanienia tego klucza? (t/N) Stworzy certyfikat uniewanienia tego klucza? (t/N) Stworzy certyfikat uniewanienia tego podpisu? (t/N) Krytyczny preferowany serwer kluczy: Krytyczne adnotacje podpisu: Krytyczny regulamin podpisu: Aktualnie dopuszczalne akcje: Aktualni odbiorcy:
Klucz DSA %s wymaga %u-bitowego lub wikszego skrtu
Klucz DSA %s uywa niebezpiecznego (%u-bitowego) skrtu
DSA wymaga dugoci skrtu bdcego wielokrotnoci 8 bitw
Usun ten poprawny podpis? (t/N/w) Usun ten niepoprawny podpis? (t/N/w) Usun ten klucz ze zbioru? (t/N) Usun ten nieznany podpis? (t/N/w) %d podpis usunity.
%d podpisw usunitych.
Podpis oddzielony od danych.
Skrt: Wywietlanie zdjcia w formacie %s o rozmiarze %ld bajtw dla klucza %s (id %d).
Czy na pewno chcesz usun wybrane klucze? (t/N) Czy na pewno chcesz usun ten klucz? (t/N) Czy na pewno chcesz to zrobi? (t/N) Czy na pewno chcesz uniewani cay klucz? (t/N) Czy na pewno chcesz uniewani wybrane podklucze? (t/N) Czy na pewno chcesz uniewani ten podklucz? (t/N) Czy na pewno chcesz przypisa absolutne zaufanie temu kluczowi? (t/N) Czy absolutnie ufasz, e%%0A  ,,%s''%%0Apoprawnie powiadcza certyfikaty uytkownikw?Czy chcesz zastpi przeterminowany podpis nowym? (t/N) Czy chcesz zamieni go na peny, publiczny, eksportowalny podpis? (t/N) Czy chcesz zamieni go na podpis OpenPGP? (t/N) Czy na pewno chcesz to podpisa jeszcze raz? (t/N) Czy chcesz eby wano Twojego podpisu wygasaa w tej samej chwili? (T/n) Adres poczty elektronicznej: SzyfrowanieNazwa pliku ze zdjciem w formacie JPEG: Wprowad opis (nieobowizkowy) i zakocz go pust lini:
Nazwa plikuWprowad nowe hasoWprowad numer(y), N)astpny lub Q)uit > Haso
Wprowad nowe dugie, skomplikowane haso dla tego klucza tajnego.

Adnotacje: Podaj identyfikator klucza uniewaniajcego: Podaj preferowany URL serwera kluczy: Bd podczas odczytu klucza zapasowego z `%s': %s
Bd: pene personalia zbyt dugie (limit to %d znakw).
Bd: podwjne spacje nie s dopuszczalne.
Bd: dane logowania zbyt dugie (limit to %d znakw).
Bd: aktualnie dopuszczalne jest tylko czyste ASCII.
Bd: prywatne DO zbyt dugie (limit to %d znakw).
Bd: znak ,,<'' nie moe by uyty.
Bd: URL zbyt dugi (limit to %d znakw).
Bd: niewaciwe znaki w tekcie preferencji.
Bd: niewaciwie sformatowany odcisk.
Bd: niewaciwa dugo tekstu preferencji.
Bd: niewaciwa odpowied.
Przeterminowany podpis zoony przez ,,%s''Ustawienia: Plik ,,%s'' ju istnieje. GPG_TTY nie zostao ustawione - uycie by moe nieprawidowego domylnego
Wpisz tutaj swoj wiadomo ...
Poprawny podpis zoony przezPoprawny podpis zoony przez ,,%s''Skrtw: Podpowied: wybierz identyfikatory uytkownika do podpisania.
Jak dokadnie zostaa przez Ciebie sprawdzona tosamo tej osoby?
Jeli nie wiesz co odpowiedzie, podaj ,,0''.
Jak bardzo ufasz, e ten klucz naprawd naley do tej osoby?
Tosamo uytkownika zostaa sprawdzona pobienie.
Tosamo uytkownika zostaa dokadnie sprawdzona.
Tosamo uytkownika nie zostaa w ogle sprawdzona.
Zmieni je pniejszyfr IDEA nie jest dostpny, prba uycia %s zamiast niego
Niewaciwy znak w komentarzu
Niewaciwy znak w imieniu lub nazwisku
Niewaciwy znak w PIN-ieNiepoprawne polecenie  (sprbuj ,,help'')
Opcja --allow-non-selfsigned-uid wymusia uznanie za poprawny klucza %s.
Niepoprawne haso; prosz sprbowa ponownieNiewaciwy wybr.
Czy wszystko si zgadza (t/N)? Informacje poprawne? (t/N) Czy zdjcie jest w porzdku? (t/N/w) NIE MA pewnoci, czy klucz naley do osoby wymienionej w identyfikatorze.
Jeli nie masz co do tego adnych wtpliwoci i *naprawd* wiesz co robisz,
moesz odpowiedzie ,,tak'' na nastpne pytanie.
Klucz %s jest ju uniewaniony.
Klucz dostpny w: Klucz nie wyganie w ogle
Klucz traci wano %s
Procedura generacji klucza zostaa anulowana.
Generacja klucza nie powioda si: %s
klucz zosta skompromitowanyKlucz ma tylko zalepk albo elementy na karcie - nie ma hasa do zmiany.
klucz nie jest ju uywanyKlucz jest chroniony.
Klucz uniewaniony.klucz zosta zastpionyOkres wanoci klucza? (0) Klucz nie zosta zmieniony wic zapis zmian nie jest konieczny.
Zbir kluczyno-modify dla serwera kluczyPreferowane jzyki: Dane logowania (nazwa konta): Stworzy poza kart kopi zapasow klucza szyfrujcego? (T/n) UWAGA: %s nie jest do normalnego uytku!
UWAGA: Ten klucz nie jest chroniony!
UWAGA: numer seryjny klucza nie zgadza si z numerem karty
UWAGA: kopia zapasowa klucza karty zapisana do ,,%s''
UWAGA: tworzenie podkluczy dla kluczy wersji 3 jest niezgodne z OpenPGP.
UWAGA: klucz zosta uniewanionyUWAGA: brak domylnego pliku opcji ,,%s''
UWAGA: stary domylny plik opcji ,,%s'' zosta zignorowany
UWAGA: klucz gwny jest aktywny i zapisany na karcie
UWAGA: klucz dodatkowy jest aktywny i zapisany na karcie
UWAGA: wano klucza tajnego %s wygasa %s
UWAGA: nadawca zaznaczy e wiadomo nie powinna by zapisywana
UWAGA: klucz podpisujcy %s przekroczy dat wanoci %s
UWAGA: prosty tryb S2K (0) jest stanowczo odradzany
UWAGA: nie mona zapisywa bazy zaufania
UWAGA: nie mona zaszyfrowa do ,,%s'': %s
Imi lub nazwisko nie moe zaczyna si od cyfry
Imi i nazwisko musz mie co najmniej 5 znakw dugoci.
Wymagany jest jeden argument komponentuDo wykonania tej operacji potrzebny jest klucz tajny.
IiKkEeDdWwNieArgument nie jest dozwolonyBrak odpowiadajcego podpisu w zbiorze kluczy prywatnych
Pomoc niedostpnaBrak pomocy o ,,%s''nie podano przyczynyBrak podklucza o numerze %d.
Brak takiego identyfikatora uytkownika.
Brak wartoci zaufania dla:
Brak identyfikatora uytkownika o skrcie %s
Brak identyfikatora uytkownika o numerze %d.
To nie jest poprawny adres poczty elektronicznej
Adnotacje: Uwaga, okrelenia grup s ignorowane
Ten klucz nie moe by wykorzystany do szyfrowania. Komend "--edit-key"
mona doda do niego podklucz szyfrujcy.
Naley zauway, e to oprogramowaie nie jest oficjalnie zatwierdzone do tworzenia i sprawdzania takich podpisw.
Uwaga: Adres podpisujcego `%s' nie pasuje do wpisu DNS
Uwaga: Ten klucz zosta wyczony z uytku.
Uwaga: Data wanoci tego klucza upyna!
Uwaga: To haso nie byo nigdy zmieniane.%0AProsz zmieni je teraz.Uwaga: Sprawdzony adres pospisujcego to `%s'
Uwaga: klucz %s nie ma cechy %s
Uwaga: klucz %s nie ma preferencji dla %s
Nic nie zostao usunite.
Nie ma nic do podpisania kluczem %s
Wykryto kart OpenPGP nr %s
Karta OpenPGP niedostpna: %s
Opcje sterujce konfiguracjOpcje sterujce wyjciem diagnostycznymOpcje sterujce formatem wyjciaOpcje sterujce interaktywnoci i wymuszaniemOpcje sterujce bezpieczestwemOpcje wymuszajce polityk haseOpcje przydatne do diagnostykiNadpisa? (t/N) Zapytanie zwrotne o PIN zwrcio bd: %s
PIN dla CHV%d jest zbyt krtki; minimalna dugo to %d
PIN nie powtrzony poprawnie; sprbuj jeszcze razPIN zbyt dugiPIN zbyt krtkiHasoHaso zbyt dugieHaso:Najpierw trzeba poprawi ten bd
Zastanw si jak bardzo ufasz temu uytkownikowi w kwestii sprawdzania
tosamoci innych uytkownikw (czy sprawdzi on odciski kluczy pobrane
z rnych rde, dokumenty potwierdzajce tosamo, itd.).
Nie naley umieszcza adresu poczty elektronicznej w polu nazwiska czy
komentarza.
Prosz wpisa domen ograniczajc ten podpis lub Enter dla adnej.
Prosz wprowadzi haso do zabezpieczenia odebranego klucza tajnego%%0A   %s%%0A w miejscu przechowywania kluczy gpg-agentaNazwa pliku danych: Prosz wprowadzi PIN%s%s%s aby odblokowa kartProsz wpisa poziom tego podpisu zaufania.
Poziom wyszy ni 1 umoliwia uywanie podpisywanego wanie klucza
do wykonywania zaufanych podpisw w twoim imieniu.
Prosz wprowadzi nowe hasoProsz wprowadzi haso dla klucza ssh%0A  %cProsz wprowadzi haso lub PIN
Potrzebny do zakoczenia tej operacji.Prosz wprowadzi haso do zabezpieczenia wanego obiektu w systemie GnuPG.Prosz wprowadzi haso do zabezpieczenia obiektu PKCS#12.Prosz wprowadzi haso do odbezpieczenia obiektu PKCS#12.Prosz wprowadzi haso do%0Azabezpieczenia swojego nowego kluczaProsz wprowadzi swj PIN, eby odblokowa klucz tajny dla tej sesjiProsz wprowadzi swoje haso, eby odblokowa klucz tajny dla tej sesjiProsz usun to naruszenie zasad bezpieczestwa
Fabryczne ustawienia PIN-w to
   PIN = ,,%s''   PIN administratora = ,,%s''
Naley je zmieni przy uyciu polecenia --change-pin
Pokazana warto wiarygodnoci klucza moe by niepoprawna,
dopki program nie zostanie uruchomiony ponownie.
Prosz ponownie wprowadzi to hasoProsz usun znacznik wyboru z kluczy prywatnych.
Prosz wybra najwyej jeden podklucz.
Prosz wybra dokadnie jeden identyfikator uytkownika.
Prosz wybra powd uniewanienia:
Prosz wybra rodzaj klucza do wygenerowania:
Prosz wybra rodzaj klucza:
Prosz wybra gdzie zapisa klucz:
Okres wanoci klucza.
         0 = klucz nie ma okrelonego terminu wanoci
      <n>  = termin wanoci klucza upywa za n dni
      <n>w = termin wanoci klucza upywa za n tygodni
      <n>m = termin wanoci klucza upywa za n miesicy
      <n>y = termin wanoci klucza upywa za n lat
Okres wanoci podpisu.
         0 = klucz nie ma okrelonego terminu wanoci
      <n>  = termin wanoci podpisu upywa za n dni
      <n>w = termin wanoci podpisu upywa za n tygodni
      <n>m = termin wanoci podpisu upywa za n miesicy
      <n>y = termin wanoci podpisu upywa za n lat
Najpierw trzeba uy polecenia "prze".
Prosz sprawdzi, e certyfikat zidentyfikowany jako:%%0a  ,,%s''%%0Ama odcisk:%%0A  %sMoliwe akcje dla klucza %s: Preferowany serwer kluczy: Odcisk klucza gwnego:Prywatne dane DO: Kontynuowa? (t/N) Asymetryczne: Klucz publiczny wyczony z uycia.
Wyj bez zapisania zmian? (t/N) reszta RSA brakujca lub o rozmiarze innym ni %d bity
liczba pierwsza %s RSA brakujca lub o rozmiarze innym ni %d bitw
publiczny wykadnik RSA brakujcy lub wikszy ni %d bity
Imi i nazwisko: Na pewno utworzy certyfikaty uniewanienia ? (t/N) Czy na pewno utworzy? (t/N) Na pewno usun ten podpis klucza nim samym? (t/N) Czy na pewno przenie gwny klucz (t/N) Czy na pewno usun wszystkie wybrane identyfikatory uytkownika? (t/N) Czy na pewno usun ten identyfikator uytkownika? (t/N) Czy na pewno uniewani wszystkie wybrane identyfikatory uytkownika? (t/N) Czy na pewno uniewani ten identyfikator uytkownika? (t/N) Czy na pewno podpisa wszystkie identyfikatory uytkownika? (t/N) Czy na pewno podpisa? (t/N) Czy na pewno uaktualni ustawienia dla wybranych identyfikatorw? (t/N) Czy na pewno uaktualni ustawienia? (t/N) Powd uniewanienia: %s
Powtrz ten PINZastpi istniejcy klucz? (t/N) Zastpi istniejce klucze? (t/N) dana dugo klucza to %u bitw.
Certyfikat uniewanienia zosta utworzony.
Certyfikat uniewanienia zosta utworzony.

Naley przenie go na nonik ktry mona bezpiecznie ukry; jeli li ludzie
dostan ten certyfikat w swoje rce, mog uy go do uczynienia klucza
nieuytecznym.

Niezym pomysem jest wydrukowanie certyfikatu uniewanienia i schowanie
wydruku w bezpiecznym miejscu, na wypadek gdyby nonik z certyfikatem sta si
nieczytelny. Ale naley zachowa ostrono, systemy drukowania rnych
komputerw mog zachowa tre wydruku i udostpni j osobom nieupowanionym.
SETERROR %s (prba %d z %d)Zapisa zmiany? (t/N) Dostpny jest klucz tajny.
Cz tajna gwnego klucza jest niedostpna.
Cz tajna gwnego klucza jest zapisana na karcie.
Ustawienie listy ustawie na:
Pe (M - mczyzna, F - kobieta lub spacja): PodpisywaniePodpisa go? (t/N) Podpis nie wyganie w ogle
Wano podpisu wygasa %s.
Wano podpisu wygasa %s.
Wano podpisu wygasa %s
Okres wanoci podpisu? (%s) Podpisano w Podpisano w %s
Podpisano w %s kluczem %s o numerze %s
Adnotacje podpisu: Regulamin podpisu: PpSsUuZzPodklucz %s jest ju uniewaniony.
Skadnia: gpg [opcje] [pliki]
podpisywanie, sprawdzanie podpisw, szyfrowanie, deszyfrowanie
domylnie wykonywana operacja zaley od danych wejciowych
Skadnia: gpg-agent [opcje] [polecenie [argumenty]]
Zarzdzanie kluczem tajnym dla GnuPG
Skadnia: gpg-connect-agent [opcje]
Poczenie z dziaajcym agentem i wysyanie polece
Skadnia: gpg-preset-passphrase [opcje] UCHWYT_KLUCZA
Utrzymuwanie pamici hase
Skadnia: gpg-protect-tool [opcje] [argumenty]
Narzdzie do utrzymywania kluczy tajnych
Skadnia: gpgconf [opcje]
Zarzdzanie opcjami konfiguracji dla narzdzi z systemu GnuPG
Skadnia: gpgsm [opcje] [pliki]
podpisywanie, sprawdzanie podpisw, szyfrowanie, deszyfrowanie z uyciem S/MIME
domylnie wykonywana operacja zaley od danych wejciowych
Skadnia: kbxutil [opcje] [pliki]
wypisywanie, eksport, import danych Keybox
Skadnia: scdaemon [opcje] [polecenie [argumenty]]
Demon kart procesorowych dla GnuPG
Skadnia: symcryptrun --class KLASA --program PROGRAM --keyfile PLIK_KLUCZA [opcje...] POLECENIE [plik-weciowy]
Wywoanie prostego narzdzia do szyfrowania symetrycznego
Przyjmij je mimo toMinimalny poziom zaufania dla tego klucza to: %s

Podpis klucza nim samym na ,,%s''
jest podpisem zoonym przez PGP 2.x.
Podpis zostanie oznaczony jako prywatny (nieeksportowalny).
Podpis zostanie oznaczony jako nie podlegajcy uniewanieniu.
Klucze PGP 2.x nie zawieraj opisu ustawie.
Ten JPEG jest naprawd duy (%d bajtw)!
To polecenie nie jest dostpne w trybie %s.
To jest podpis kwalifikowany
To jest klucz tajny! - czy na pewno go usun? (t/N) Ten klucz naley do nas
Ten klucz zosta wyczony z uytkuData wanoci tego klucza upyna!Wano tego klucza wygasa %s.
Ten klucz nie jest chroniony.
Klucz moe zosta uniewaniony przez klucz %s uytkownika %sTen klucz prawdopodobnie naley do tej osoby
Ten klucz zosta uniewaniony %s przez klucz %s uytkownika %s
To haso nie zostao zmienione%%0Aod %.4s-%.2s-%.2s. Prosz zmieni je teraz.Wano tego klucza wygasa %s.
To bdzie podpis klucza nim samym.
To uczyni ten klucz nieuytecznym dla PGP 2.x.
Zostanie uniewaniony przez:
Ogem przetworzonych kluczy: %lu
URL do odczytania klucza publicznego: NieskompresowanyNieznany rodzaj podpisu ,,%s''
Wywoanie: gpg [opcje] [pliki] (-h podaje pomoc)Wywoanie: gpg-agent [opcje] (-h podaje pomoc)Wywoanie: gpg-connect-agent [opcje] (-h podaje pomoc)Wywoanie: gpg-preset-passphrase [opcje] UCHWYT_KLUCZA (-h podaje pomoc)
Wywoanie: gpg-protect-tool [opcje] (-h podaje pomoc)
Wywoanie: gpgconf [opcje] (-h podaje pomoc)Wywoanie: gpgsm [opcje] [pliki] (-h podaje pomoc)Wywoanie: gpgv [opcje] [pliki] (-h podaje pomoc)Wywoanie: kbxutil [opcje] [pliki] (-h podaje pomoc)Wywoanie: scdaemon [opcje] (-h podaje pomoc)Wywoanie: symcryptrun [opcje] (-h podaje pomoc)Uy tego klucza pomimo to? (t/N) Identyfikator uytkownika ,,%s'' upakowany: %s
Identyfikator uytkownika ,,%s'' przekroczy swj termin wanoci.Identyfikator ,,%s'' nie jest podpisany swoim kluczem.Identyfikator uytkownika ,,%s'' zosta uniewaniony.Identyfikator uytkownika ,,%s'' jest podpisywalny. Identyfikator uytkownika ,,%s'': %d podpis wyczyszczony
Identyfikator uytkownika ,,%s'': %d podpisw wyczyszczonych
Identyfikator uytkownika ,,%s'': ju czysty.
Identyfikator uytkownika ,,%s'': ju zmniejszony.
identyfikator uytkownika przesta by poprawnyOSTRZEENIE: ,,%s'' jest przestarzaym poleceniem - nie naley go uywa
OSTRZEENIE: ,,%s'' jest przestarza opcj.
OSTRZEENIE: ,,%s'' jest przestarza opcj - nie ma efektu
OSTRZEENIE: %s powoduje obejcie %s
OSTRZEENIE: Istniej dwa pliki z poufnymi informacjami.
OSTRZEENIE: To jest klucz PGP wersji 2.x. Wyznaczenie mu klucza
             uniewaniajcego spowoduje, e niektre wersje PGP przestan
             go rozumie.
OSTRZEENIE: To jest klucz PGP wersji 2. Dodanie zdjcia spowoduje, e
             niektre wersje przestan go rozumie.
OSTRZEENIE: Ten klucz zosta uniewaniony kluczem uniewaniajcym!
OSTRZEENIE: Ten klucz zosta uniewaniony przez waciciela!
OSTRZEENIE: Ten klucz nie jest powiadczony zaufanym podpisem!
OSTRZEENIE: Tego klucza nie powiadczaj wystarczajco zaufane podpisy!
OSTRZEENIE: Ten podklucz zosta uniewaniony przez waciciela!
OSTRZEENIE: uywany jest klucz nie obdarzony zaufaniem!
OSTRZEENIE: NIE UFAMY temu kluczowi!
OSTRZEENIE: Wykryto saby klucz - naley ponownie zmieni haso.
OSTRZEENIE: plik ,,%s'' jest pusty
OSTRZEENIE: identyfikator uytkownika podpisany za %d sekund (w przyszoci)
OSTRZEENIE: nie mona cofn wyznaczenia klucza jako uniewaniajcego!
OSTRZEENIE: brak algorytmu szyfrujcego %s w ustawieniach odbiorcy
UWAGA: czas utworzenia podpisu nie jest znany - przyjto czas biecyOSTRZEENIE: algorytm skrtu %s jest odradzany
OSTRZEENIE: zaszyfrowana wiadomo bya manipulowana!
OSTRZEENIE: wymuszone uycie kompresji %s (%d) kci si z ustawieniami adresata
OSTRZEENIE: wymuszone uycie skrtu %s (%d) kci si z ustawieniami adresata
OSTRZEENIE: wymuszone uycie szyfru %s (%d) kci si z ustawieniami adresata
OSTRZEENIE: napotkano bdne dane adnotacji
OSTRZEENIE: klucz %s zawiera preferencje dla niedostpnych
algorytmw dla tych ID uytkownika:
OSTRZEENIE: klucz %s mg zosta uniewaniony:
             zapytanie o uniewaniajcy klucz %s w serwerze kluczy
OSTRZEENIE: klucz %s mg zosta uniewaniony:
             brak uniewaniajcego klucza %s.
OSTRZEENIE: modu obsugi serwera kluczy z innej wersji GnuPG (%s)
OSTRZEENIE: opcja serwera kluczy ,,%s'' nie jest uywana na tej platformie.
OSTRZEENIE: wiadomo bya szyfrowana kluczem sabym szyfru symetrycznego.
OSTRZEENIE: wiadomo nie bya zabezpieczona przed manipulacj
OSTRZEENIE: widziano wiele czystych tekstw
OSTRZEENIE: wielokrotne podpisy. Tylko pierwszy zostanie sprawdzony.
OSTRZEENIE: aden identyfikator uytkownika nie zosta oznaczony explicite
             jako gwny. Wykonanie tego polecenie moe wic spowodowa
             wywietlanie innego identyfikatora jako domylnego gwnego.
OSTRZEENIE: nic nie zostao wyeksportowane!
OSTRZEENIE: opcje w ,,%s'' nie s jeszcze uwzgldnione.
OSTRZEENIE: symetrycznie zaszyfrowany klucz sesyjny moe nie by bezpieczny
OSTRZEENIE: program moe stworzy plik zrzutu pamici!
OSTRZEENIE: podano adresatw (-r) w dziaaniu ktre ich nie dotyczy
OSTRZEENIE: dziaanie z faszywym czasem systemowym: OSTRZEENIE: klucz prywatny %s nie ma prostej sumy kontrolnej SK.
OSTRZEENIE: konflikt skrtw podpisw w wiadomoci
OSTRZEENIE: podklucz podpisujcy %s jest niepoprawnie skronie podpisany
OSTRZEENIE: podklucz podpisujcy %s nie jest skronie podpisany
OSTRZEENIE: niektre programy OpenPGP nie potrafi obsuy klucza RSA o tej dugoci skrtu
OSTRZEENIE: podpis nie zostanie oznaczony jako prywatny (nieeksportowalny).
OSTRZEENIE: podpis nie zostanie oznaczony jako nie podlegajcy uniewanieniu.
OSTRZEENIE: ten klucz mg zosta uniewaniony
             (brak klucza uniewaniajcego aby to sprawdzi)
OSTRZEENIE: nie mona rozwin %% w URL adnotacji (jest zbyt dugi).
             Uyty zostanie nie rozwinity.
OSTRZEENIE: nie mona rozwin znacznikw %% w URL regulaminu
           (jest zbyt dugi). Uyty zostanie nie rozwinity.
OSTRZEENIE: nie mona rozwin znacznikw %% w URL-u preferowanego
           serwera kluczy (jest zbyt dugi). Uyty zostanie nie rozwinity.
OSTRZEENIE: nie mona pobra URI %s: %s
OSTRZEENIE: nie mona przeanalizowa URI %s
OSTRZEENIE: nie mona odwiey klucza %s przez %s: %s
OSTRZEENIE: nie mona skasowa tymczasowego katalogu ,,%s'': %s.
OSTRZEENIE: nie mona skasowa pliku tymczasowego (%s) ,,%s'': %s.
OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu zawierajcego plik konfiguracyjny ,,%s''
OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu zawierajcego rozszerzenie ,,%s''
OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu zawierajcego katalog domowy ,,%s''
OSTRZEENIE: niebezpieczne prawa dostpu do katalogu zawierajcego plik konfiguracyjny ,,%s''
OSTRZEENIE: niebezpieczne prawa dostpu do katalogu zawierajcego rozszerzenie ,,%s''
OSTRZEENIE: niebezpieczne prawa dostpu do katalogu zawierajcego katalog domowy ,,%s''
OSTRZEENIE: niebezpieczne prawa wasnoci do pliku konfiguracyjnego ,,%s''
OSTRZEENIE: niebezpieczne prawa wasnoci do rozszerzenia ,,%s''
OSTRZEENIE: niebezpieczne prawa wasnoci do katalogu domowego ,,%s''
OSTRZEENIE: niebezpieczne prawa dostpu do pliku konfiguracyjnego ,,%s''
OSTRZEENIE: niebezpieczne prawa dostpu do rozszerzenia ,,%s''
OSTRZEENIE: niebezpieczne prawa dostpu do katalogu domowego ,,%s''
OSTRZEENIE: uycie eksperymentalnego szyfru %s
OSTRZEENIE: uycie eksperymentalnego algorytmu skrtu %s
OSTRZEENIE: uycie eksperymentalnego algorytmu klucza publicznego %s
Ostrzeenie: niebezpieczne prawa wasnoci do %s ,,%s''
Ostrzeenie: niebezpieczne prawa dostpu do %s ,,%s''
Musimy wygenerowa duo losowych bajtw. Dobrym pomysem aby pomc komputerowi
podczas generowania liczb pierwszych jest wykonywanie w tym czasie innych
dziaa (pisanie na klawiaturze, poruszanie myszk, odwoanie si do dyskw);
dziki temu generator liczb losowych ma moliwo zebrania odpowiedniej iloci
entropii.
Jakiej dugoci klucz wygenerowa? (%u) TakTak, ochrona nie jest potrzebnaTa operacja zoy podpis przy uyciu certyfikatu:
,,%s''
Naley zauway, e ten certyfikat NIE utworzy kwalifikowanego podpisu!Ta operacja zoy podpis przy uyciu certyfikatu:
,,%s''
Utworzy to kwalifikowany podpis rwnowany prawnie podpisowi odrcznemu.

%s%sNa pewno chcesz to zrobi?Czy na pewno chcesz uniewani te podpisy:
Uywasz zestawu znakw %s.
Nie mona zmieni daty wanoci klucza w wersji 3.
Nie moesz usun ostatniego identyfikatora uytkownika!
Nie zosta podany identyfikator uytkownika (np. za pomoc ,,-r'')
Nie chcesz hasa - to *zy* pomys!

Nie chcesz poda hasa - to *zy* pomys!
W kadej chwili moesz ustawi haso uywajc tego programu i opcji
"--edit-key".

Nie wprowadzono hasa - to jest oglnie zy pomys!%0AProsz potwierdzi, e naprawd ma nie by adnej ochrony tego klucza.Nie wprowadzono hasa!%0APuste haso nie jest dozwolone.Te identyfikatory na kluczu %s s podpisane przez Ciebie:
Do klucza dla PGP 2.x nie mona wyznaczy klucza uniewaniajcego.
Do klucza dla PGP 2.x nie mona doda zdjcia.
W trybie --pgp2 nie mona podpisywa kluczy PGP 2.x podpisami OpenPGP.
Musisz wybra co najmniej jeden klucz.
Musisz wybra co najmniej jeden identyfikator uytkownika.
Musisz wybra dokadnie jeden klucz.
Musisz poda dugie, skomplikowane haso aby ochroni swj klucz tajny.

Musisz poda haso aby odbezpieczy klucz prywatny uytkownika:
,,%s''
Twj identyfikator uytkownika bdzie wyglda tak:
    "%s"

Twj podpis na ,,%s''
przekroczy dat wanoci.
Twj podpis na ,,%s''
jest podpisem prywatnym (lokalnym).
Twoja decyzja? Twj wybr? Twj wybr (,,?'' podaje wicej informacji): Twj system nie potrafi pokaza daty po roku 2038.
Niemniej daty do roku 2106 bd poprawnie obsugiwane.
[      pene    ][  nieokrelone ][przeterminowany][  uniewaniony ][    nieznane   ][Bd - Brak nazwy][Bd - niewaciwe DN][Bd - niewaciwe kodowanie][Bd - brak pamici][brak identyfikatora uytkownika][nie podano daty][nazwa pliku][   marginalne  ][brak][nie ustawiono][uniewanienie][podpis klucza nim samym][    absolutne   ][niepewne],,%s'' ju jest skompresowany
,,%s'' nie jest plikiem JPEG
,,%s'' nie jest poprawn nazw zestawu znakw
,,%s'' nie jest poprawnym dugim numerem klucza
,,%s'' nie jest poprawnym czasem wyganicia podpisu
skrt %u-bitowy nie jest poprawny dla %u-bitowego klucza %s
gpg-agent ju dziaa - nie uruchamianie nowego
nazwa adnotacji musi zawiera tylko znaki drukowalne lub spacje i koczy si znakiem ,,=''
nazwa adnotacjinie moe zawiera wicej ni jednego znaku ,,@''
warto adnotacji nie moe zawiera adnych znakw sterujcych
nazwa adnotacji uytkownika musi zawiera znak ,,@''
ma by wyeksportowany niezabezpieczony podklucz
dostp do polece administratora nie zosta skonfigurowany
akcja ,,%s'' nie jest obsugiwana przez schemat serwera kluczy ,,%s''
uaktywnienie zmian w czasie dziaania o ile to moliwedodanie klucza do karty procesorowejdodanie zdjcia uytkownika do kluczadodanie klucza uniewaniajcegododanie podkluczadodanie nowego identyfikatora uytkownika do kluczazezwolenie na wyszukiwania PKA (dania DNS)zezwolenie klientom na oznaczanie kluczy jako "zaufanych"zezwolenie na predefiniowane hasoniejednoznaczna opcja ,,%s''
adresat anonimowy; sprawdzanie klucza tajnego %s...
zastosowanie globalnych wartoci domylnychnieoczekiwany argumentnagwek opakowania: opakowanie: %s
przyjcie wejcia w formacie PEMprzyjcie wejcia w formacie base-64przyjcie wejcia w formacie binarnymprzyjcie odpowiedzi ,,nie'' na wikszo pytaprzyjcie odpowiedzi ,,tak'' na wikszo pytaprzyjmujc e dane zostay zaszyfrowane za pomoc %s
uznano za zy podpis utworzony kluczem %s z powodu nieznanego bitu krytycznego
przyjto obecno podpisanych danych w '%s'
automatyczne pobieranie kluczy przy sprawdzaniu podpiswautomatycznie pobrano `%s' poprzez %s
bdny odcisk w ,,%s'', w linii %d
podstawowe sprawdzenia certyikatu nie powiody si - nie zaimportowany
tryb wsadowy: bez adnych pytamniej komunikatwbinarnywywoanie funkcji build_packet nie powiodo si: %s
aAbuforowanie zbioru kluczy ,,%s''
nie mona dosta si do %s - niepoprawna karta OpenPGP?
nie mona dosta si do ,,%s'': %s
nie mona si poczy z ,,%s'': %s
nie mona poczy si z dirmngr - prba fallbacku
nie mona utworzy ,,%s'': %s
nie mona utworzy pliku kopii zapasowej ,,%s'': %s
nie mona utworzy katalogu ,,%s'': %s
nie mona utworzy blokady dla ,,%s''
nie mona utworzy gniazda: %s
nie mona utworzy katalogu tymczasowego,,%s'': %s
nie mona wyczy zrzutw pamici: %s
nie dziaa w trybie wsadowym
bez opcji ,,--yes'' nie dziaa w trybie wsadowym
nie mona wykona fdopen do odczytu na potoku: %s
nie mona obsuy tego algorytmu klucza publicznego: %d
nie mona obsuy linii tekstu duszej ni %d znakw
nie mona obsuy tych wieloznacznych danych podpisu
nie mona zablokowa ,,%s''
nie mona otworzy ,,%s''
nie mona otworzy ,,%s'': %s
nie mona otworzy fd %d: %s
nie mona otworzy podpisanego pliku ,,%s''
nie mona otworzy podpisanych danych z fd=%d: %s
nie mona podpisa z uyciem ,,%s'': %s
nie mona uy ,,%s'' jako katalogu domowego
ustawiony tryb S2K nie pozwala uy pakietu ESK dla szyfru symetrycznego
anulowano przez uytkownika
anulowano
anulowano przez uytkownika
anuluj|anulujnie mona przydzieli wektora args
nie mona przydzieli acucha pliku wejciowego: %s
nie mona przydzieli acucha pliku wyjciowego: %s
klucza PGP 2.x nie mona wyznaczy jako uniewaniajcego
brak moliwoci generacji dobrego klucza dla szyfru symetrycznego;
operacja bya powtarzana %d razy!
karta nie obsuguje algorytmu skrtu %s
karta zostaa trwale zablokowana!
nr-karty: certyfikat ,,%s'' usunity
nie znaleziono certyfikatu ,,%s'': %s
acuch certyfikatw duszy ni zezwala CA (%d)acuch certyfikatw zbyt dugi
certyfikat ma ZY podpiscertyfikat zosta uniewanionycertyfikat wygascertyfikat jest dobry
certyfikat nie nadaje si do szyfrowania
certyfikat nie nadaje si do podpisywania
certyfikat nie utworzony w czasie ycia wystawcycertyfikat jeszcze nie jest wanypolityka certyfikatu niedozwolonacertyfikat nie powinien by uywany do podpisywania odpowiedzi OCSP
certyfikat nie powinien by uywany do powiadczania
certyfikat nie powinien by uywany do szyfrowania
certyfikat nie powinien by uywany do podpisywania
certyfikat o niewanej wanocicertyfikat o niewanej wanoci: %sacuchowyzmiana URL-a do odczytu kluczazmiana odcisku CAzmiana PIN-u kartyzmiana hasazmiana nazwy posiadacza kartyzmiana pci posiadacza kartyzmiana danych na karciezmiana daty wyganicia dla klucza lub wybranych podkluczyzmiana preferowanych jzykwzmiana nazwy logowaniazmiana zaufania wacicielazmiana hasa kluczasprawdzenie wszystkich programwsprawdzenie globalnego pliku konfiguracyjnegosprawdzenie podpiswsprawdzenie poprawnoci przy uyciu OCSPsprawdzenie zoonego podpisu nie powiodo si: %s
sprawdzenie certyfikatu kwalifikowanego nie powiodo si: %s
sprawdzenie CRL nie powiodo si: %ssprawdzenie listy zaufania nie powiodo si: %s
sprawdzanie bazy zaufania
potomek zosta przerwany ze stanem %i
algorytm szyfrujcy %d%s jest nieznany lub zosta wyczony
klasa %s nie jest obsugiwana
brak dwukropkapolecenie ,,%.50s'' jest niejednoznaczne
problem z komunikacj z gpg-agentem
zagszczanie bezuytecznych ID uytkownikw i usuwanie wszystkich podpisw z kluczyzagszczanie bezuytecznych ID uytkownikw i usuwanie bezuytecznych podpisw z kluczywarto completes-needed musi by wiksza od 0
sprzeczne polecenia
konwersja z ,,%s'' do ,,%s'' nie powioda si: %s
konwersja z ,,%s'' do ,,%s'' niedostpna
nie udao si utworzy potoku: %s
nie udao si utworzy pty: %s
nie udao si wykona fork: %s
nie udao si otworzy %s do zapisu: %s
niezrozumiay URL serwera kluczy
tworzenie kluczy publicznych przy imporcie kluczy tajnychopakowanie ASCII pliku wynikowegotworzenie wyjcia zakodowanego base-64utworzono: %sbrak datownika utworzenia
krytyczne rozszerzenie certyfikatu %s nie jest obsugiwanepolityka oznaczona jako krytyczna bez skonfigurowanych politykwyjcie polece w stylu cshdane nie zostay zapisane; aby to zrobi, naley uy opcji "--output"
zdjcie opakowania ASCII nie powiodo si: %s
dekodowanie otrzymanych linii danychodszyfrowywanie danych (domylne)bd odszyfrowywania: %s
tryb deszyfrowaniaodszyfrowanie poprawne
usunicie wybranych podkluczyusunicie wybranych identyfikatorw uytkownika z kluczausunicie podpisw z wybranych identyfikatorw uytkownikausunicie certyfikatu ,,%s'' nie powiodo si: %s
usunicie bloku klucza nie powiodo si: %s
poziom: %d poprawnych: %3d podpisanych: %3d zaufanie: %d-,%dq,%dn,%dm,%df,%du
wykryto kart o numerze seryjnym: %s
katalog ,,%s'' utworzony
wersja %d protokou dirmngr nie jest obsugiwana
wyczenie klucza z uyciawyczonywywietlenie ID zdj przy wypisywaniu kluczywywietlanie ID zdj przy sprawdzaniu podpiswnie zezwalanie na ponowne uycie starych hasenie zezwalanie na pominicie polityki hasenie sprawdzanie CRL dla gwnych certyfikatwnie sprawdzanie polityk certyfikatwnie usuwanie plikw tymczasowych po uyciu ichnie odczepianie od konsolinie przechwytywanie klawiatury i myszypozostawienie bez zmiannie uaktualnianie bazy zaufania po imporcienie uywanie klawiatury czytnikanie uywanie rozszerzonego trybu poczenianie uywanie pamici PIN-w przy podpisywaniunie uywanie SCdaemonanie uywanie wewntrznego sterownika CCIDnie pasuj - prosz sprbowa jeszcze raznie uywanie w ogle terminalapowtrzony certyfikat ,,%s'' usunity
musi by podane %s lub %s
zwikszenie zaufania podpisw z poprawnymi danymi PKAwczenie penej diagnostykiwczenie klucza do uyciawczenie emulacji ssh-agentaopakowywanie ASCII nie powiodo si: %s
szyfrowanie danychzaszyfrowane za pomoc %lu hase
zaszyfrowano kluczem %s o identyfikatorze %s
zaszyfrowano %u-bitowym kluczem %s o identyfikatorze %s, stworzonym %s
zaszyfrowane jednym hasem
dane zaszyfrowano nieznanym algorytmem numer %d
szyfrowanie wiadomoci w trybie --pgp2 wymaga moduu szyfru IDEA
tryb szyfrowaniaszyfrowanie tylko szyfrem symetrycznymbd przydzielania wystarczajcej iloci pamici: %s
bd podczas przypisywania gniazda do ,,%s'': %s
bd zamykania %s: %s
bd tworzenia ,,%s'': %s
bd tworzenia potoku: %s
bd tworzenia keyboksa ,,%s'': %s
bd tworzenia zbioru kluczy `%s': %s
bd podczas tworzenia hasa: %s
bd tworzenia gniazda: %s
bd tworzenia pliku tymczasowego: %s
bd podczas szukania zapisu wartoci zaufania w ,,%s'': %s
bd podczas szukania zapisywalnego keyDB: %s
bd podczas tworzenia procesu: %s
bd podczas odczytu aktualnych informacji o kluczu: %s
bd pobierania domylnego keyID uwierzytelnienia karty: %s
bd odczytu kodu zakoczenia procesu %d: %s
bd podczas pobierania informacji o wykorzystaniu klucza: %s
bd podczas odczytu nowego PIN-u: %s
bd pobierania numeru seryjnego karty: %s
bd pobierania zapisanych flag: %s
bd importu certyfikatu: %s
bd w ,,%s'': %s
bd w linii koczcej
bd odczytu ,,%s'': %s
bd blokowania keyboksa: %s
bd podczas otwierania ,,%s'': %s
bd odczytu ,,%s'', w linii %d: %s
bd odczytu ,,%s'': %s
bd podczas odczytu danych aplikacji
bd podczas odczytu odcisku DO
bd odczytu z %s: %s
bd odczytu wejcia: %s
bd odczytu bloku kluczy: %s
bd odczytu listy zaufanych certyfikatw gwnych
bd odczytu bloku klucza tajnego ,,%s'': %s
bd podczas odczytu stanu CHV z karty
bd uruchamiania ,,%s'': kod wyjcia %d
bd uruchamiania ,,%s'': prawdopodobnie nie zainstalowany
bd uruchamiania ,,%s'': zakoczono
bd wysyania polecenia %s: %s
bd wysyania standardowych opcji: %s
bd zapisywania certyfikatu
bd zapisywania certyfikatu: %s
bd zapisywania flag: %s
bd podczas pytania o haso: %s
bd zapisu klucza: %s
bd zapisu zbioru kluczy ,,%s'': %s
bd podczas zapisu zbioru kluczy publicznych ,,%s'': %s
bd podczas zapisu zbioru kluczy tajnych ,,%s'': %s
bd zapisu do %s: %s
bd zapisu do pliku tymczasowego: %s
execv nie powiodo si: %s
istniejcy klucz zostanie zastpiony
wygaswygas: %swygasa: %seksport atrybutw ID uytkownika (oglnie ID zdj)eksport certyfikatweksport kluczy do plikueksport kluczy w formacie opartym na S-wyraeniacheksport kluczy do serwera kluczyeksport kluczy uniewaniajcych oznaczonych jako ,,poufne''eksport podpisw oznaczonych jako tylko lokalneeksport kluczy tajnych nie jest dozwolony
zewntrzne wywoania serwera kluczy nie s obsugiwane w tej kompilacji
nieszczelne uprawnienia ustawie - woanie zewntrznych programw wyczone
nie udao si uzyska blokady pinentry: %s
nie udao si przydzieli uchwytu keyDB
nie udao si przydzieli uchwytu keyDB
nie udao si utworzy strumienia z gniazda: %s
nie udao si pobra odcisku
inicjowanie Bazy Zaufania nie powiodo si: %s
nie udao si otworzy ,,%s'': %s
nie powioda si odbudowa bufora bazy: %s
nie powid si zapis daty utworzenia: %s
nie powid si zapis odcisku: %s
nie powid si zapis klucza: %s
nie powiodo si odbezpieczanie podklucza: %s
kobietapobranie brakujcych certyfikatw wystawcwpobranie klucza okrelonego w URL-u kartyplik ,,%s'', linia %d: %s
odcisk na karcie nie zgadza si z danym
odcisk=%s
oznaczenie wybranego identyfikatora uytkownika jako gwnegowymuszonowymuszone uycie szyfru %s (%d) kci si z ustawieniami adresata
znaleziono inny by moe pasujcy certyfikat CA - ponawianie prbyfstat na ,,%s'' nie powiodo si w %s: %s
fstat(%d) nie powiodo si w %s: %s
penegeneracja nowej pary kluczytworzenie certyfikatu uniewanienia kluczawygenerowanie nowych kluczygenerowanie klucza nie powiodo si
generowanie nowego klucza
tworzenie przestarzaej 16-bitowej sumy kontrolnej dla ochrony klucza
gpg-agent nie jest dostpny w tej sesji
wersja %d protokou agenta nie jest obsugiwana
obsuga 0x%lx dla fd %d uruchomiona
obsuga 0x%lx dla fd %d zakoczona
obsuga fd %d uruchomiona
obsuga fd %d zakoczona
honorowanie rekordu PKA ustawionego w kluczu przy pobieraniu kluczyhonorowanie URL-a preferowanego serwera kluczy ustawionego w kluczunie znaleziono hostaiImMwWpPiconv_open nie powiodo si: %s
ignorowanie da zmiany TTYignorowanie da zmiany ekranu Ximport certyfikatwimport kluczy z serwera kluczyimport podpisw oznaczonych jako tylko lokalneimport/doczenie kluczyimport wsplnych certyfikatw ,,%s''
wczytywanie kluczy tajnych nie jest dozwolone
wczenie uniewanionych kluczy do wynikw wyszukiwaniawczenie podkluczy przy poszukiwaniu po ID kluczanazwa pliku wejciowego (domylnie standardowe wejcie)linia wejcia %u zbyt duga lub brak znaku LF
linia dusza ni %d znakw
interaktywne oznaczanie zaufania wyczone dla tej sesji
interaktywne oznaczanie zaufania nie wczone w gpg-agencie
certyfikat poredni wygascertyfikat poredni jest dobry
poredni certyfikat nie utworzony w czasie ycia wystawcycertyfikat poredni jeszcze nie jest wanyniepoprawnyniepoprawny tryb S2K; musi mie warto 0, 1 lub 3
bdna definicja aliasuniepoprawny nagwek opakowania: bd opakowania: linia dusza ni %d znakw
Niepoprawna lista auto-key-locate
niewaciwy nagwek dokumentu z podpisem na kocu
bdne poleceniebdne polecenie ,,%.50s''
niewaciwy kod kraju w ,,%s'', w linii %d
niepoprawne oznaczenie linii minusami: podano bdny poziom diagnostyki ,,%s''
niewaciwe domylne ustawienia
niewaciwy domylny poziom sprawdzania; musi mie warto 0, 1, 2 lub 3
niepoprawne opcje eksportu kluczy
niewaciwy odciskniewaciwie sformatowany odcisk w ,,%s'', w linii %d
niewaciwy algorytm skrtu ,,%s''
niepoprawne opcje wczytania kluczy
niewaciwy element `%s' w tekcie ustawie
nieprawidowa flaga klucza w ,,%s'', w linii %d
niepoprawne opcje serwera kluczy
niepoprawny protok serwera kluczy (nasz %d != modu obsugi %d)
niepoprawne opcje wypisywania
niewaciwy minimalny poziom sprawdzania; musi mie warto 0, 1, 2 lub 3
bdna opcjabdna opcja ,,%.50s''
niewaciwe ustawienia szyfrw
niewaciwe ustawienia algorytmw kompresji
niewaciwe ustawienia skrtw
niewaciwy znak formatu radix64 ,,%02X'' zosta pominity
niewaciwy znak formatu radix64 %02x zosta pominity
wykryto niepoprawny pakiet pierwotny w proc_tree()
niepoprawna struktura karty OpenPGP (DO 0x93)
niepoprawna warto
niepoprawne opcje sprawdzania
wywoanie gpg-protect-toolwystawca certyfikatu nie jest oznaczony jako CAnie znaleziono wystawcy certyfikatuzdecydowanie sugerowane jest uaktualnienie ustawie i ponowne
klucz ,,%s'' nie zosta odnaleziony na serwerze kluczy
klucz ,,%s'' nie zosta odnaleziony: %s
klucz %s nie ma identyfikatorw uytkownika
klucz %s zosta oznaczony jako obdarzony absolutnym zaufaniem.
klucz %s jest wpisany wicej ni raz w bazie zaufania
klucz %s zosta stworzony %lu sekund w przyszoci (zaburzenia
czasoprzestrzeni lub le ustawiony zegar systemowy)
klucz %s zosta stworzony %lu sekund w przyszoci (zaburzenia
czasoprzestrzeni lub le ustawiony zegar systemowy)
klucz %s: ,,%s'' %d nowych podpisw
klucz %s: ,,%s'' %d nowych podkluczy
klucz %s: ,,%s'' %d nowych identyfikatorw uytkownika
klucz %s: ,,%s'' %d podpis wyczyszczony
klucz %s: ,,%s'' %d podpisw wyczyszczonych
klucz %s: ,,%s'' %d identyfikator uytkownika wyczyszczony
klucz %s: ,,%s'' %d identyfikatorw uytkownika wyczyszczonych
klucz %s: ,,%s'' 1 nowy podpis
klucz %s: ,,%s'' 1 nowy podklucz
klucz %s: ,,%s'' 1 nowy identyfikator uytkownika
klucz %s: ,,%s'' bez zmian
klucz %s: ,,%s'' dodany certyfikat uniewanienia
klucz %s: ,,%s'' certyfikat uniewanienia zosta ju wczytany
klucz %s: klucz PGP 2.x - pominity
klucz %s: podklucz uszkodzony przez serwer zosta naprawiony
klucz %s: zaakceptowany jako klucz zaufany
klucz %s: przyjto identyfikator nie podpisany nim samym ,,%s''
klucz %s: ten klucz tajny ju znajduje si w zbiorze
klucz %s: brak oryginalnego bloku klucza; %s
klucz %s: nie mona odczyta oryginalnego bloku klucza: %s
klucz %s: dodano bezporedni podpis
klucz %s: nie zgadza si z lokaln kopi
key %s: doczono powtrzony identyfikator uytkownika
klucz %s: niepoprawny certyfikat uniewanienia: %s - odrzucony
klucz %s: pominito -  niepoprawny certyfikat uniewanienia: %s
klucz %s: niepoprawny podpis na identyfikatorze ,,%s''
klucz %s: niepoprawne dowizanie podklucza
klucz %s: niepoprawne uniewanienie podklucza
klucz %s: zawarto klucza na karcie - pominito
klucz %s: nowy klucz - pominity
klucz %s: brak klucza publicznego ktrego dotyczy wczytany certyfikat
              uniewanienia
klucz %s: brak klucza publicznego dla zaufanego klucza - pominity
klucz %s: brak podklucza do dowizania
klucz %s: brak podklucza, ktrego dotyczy uniewanienie
klucz %s: brak podklucza dowizywanego podpisem
klucz %s: brak podklucza dla podpisu uniewanienia podklucza
klucz %s: brak identyfikatora uytkownika
klucz %s: brak identyfikatora uytkownika do podpisu
klucz %s: brak poprawnych identyfikatorw uytkownika
klucz %s: podpis nieeksportowalny (klasy 0x%02X) - pominity
klucz %s: nie jest chroniony - pominity
klucz %s: klucz publiczny ,,%s'' wczytano do zbioru
klucz %s: brak klucza publicznego: %s
klucz %s: usunito wielokrotne dowizanie podklucza
klucz %s: usunito wielokrotne uniewanienie podklucza
klucz %s: pominito certyfikat uniewanienia umieszczony
              w niewaciwym miejscu
klucz %s: klucz tajny wczytany do zbioru
klucz %s: brak klucza tajnego: %s
klucz %s: klucz tajny z bdnym szyfrem %d - pominity
klucz %s: klucz tajny bez klucza jawnego - pominity
klucz %s: podklucz pominity
klucz %s: pominito identyfikator uytkownika ,,%s''
klucz %s: pominito - podpis na podkluczu w niewaciwym miejscu
klucz %s: pominito - nieoczekiwana klasa podpisu (0x%02X)
klucz %s: nieobsugiwany algorytm asymetryczny
klucz %s: algorytm asymetryczny dla id ,,%s'' nie jest obsugiwany
klucz ju istnieje
eksport kluczy nie powid si: %s
generowanie klucza zakoczone (%d sekund)
klucz zosta stworzony %lu sekund w przyszoci (zaburzenia
czasoprzestrzeni, lub le ustawiony zegar systemowy)
klucz zosta stworzony %lu sekund w przyszoci (zaburzenia
czasoprzestrzeni, lub le ustawiony zegar systemowy)
klucz nie jest oznaczony jako niepewny - nie mona go uy z atrap
generatora liczb losowych!
klucz nie zosta odnaleziony na serwerze kluczy
operacja na kluczu niewykonalna: %s
zasb bloku klucza `%s': %s
keybox ,,%s'' utworzony
zbir kluczy ,,%s'' zosta utworzony
bd komunikacji z serwerem kluczy: %s
serwer kluczy nie wysa VERSION
bd wewntrzny serwera kluczy
odbir z serwera kluczy nie powid si: %s
odwieenie kluczy z serwera nie powiodo si: %s
szukanie w serwerze kluczy nie powiodo si: %s
wysyka do serwera kluczy nie powioda si: %s
zbyt dugi czas oczekiwania na serwer kluczy
niewaciwa dugo klucza; wykorzystano %u bitw
rozmiar klucza zaokrglony w gr do %u bitw
sowo kluczowe zbyt dugiebiblioteka libgcrypt jest zbyt stara (potrzebna %s, zainstalowana %s)
linia %d: bd pobierania klucza z uchwytu ,,%s'': %s
linia %d: bd odczytu klucza ,,%s'' z karty: %s
linia %d: niewaciwy algorytm
linia %d: niewaciwa dugo klucza %u (poprawne s od %d do %d)
linia %d: niewaciwa nazwa przedmiotu ,,%s'' na pozycji %d
linia %d: niewaciwa etykieta nazwy przedmiotu ,,%.*s''
linia %d: generowanie klucza nie powiodo si: %s <%s>
linia %d: nie podano nazwy przedmiotu
linia %d: niepoprawny adres e-mail
linia skrcona z powodu osadzonego znaku Nul
linia zbyt dugalinia zbyt duga - pominita
wypisanie wszystkich dostpnych danychlista wszystkich komponentwwypisanie i sprawdzenie podpisw kluczywypisanie acucha certyfikatwwypisanie kluczy zewntrznychlista kluczy i identyfikatorw uytkownikalista kluczylista kluczy i ich odciskwlista kluczy i podpiswustawienia (zaawansowane)rozbudowana lista ustawielista kluczy prywatnychlisten() nie powiodo si: %s
nasuchiwanie na gniedzie ,,%s''
poszukiwanie wystawcy na zewntrz
zoenie podpisu oddzielonego od dokumentunie traktowa konfliktu datownikw jako bduwywoanie funkcji make_keysig_packet nie powiodo si: %s
mczyznabd formatu CRC
zy format zmiennej rodowiskowej DIRMNGR_INFO
zy format zmiennej rodowiskowej GPG_AGENT_INFO
marginalnewarto marginals-needed musi by wiksza od 1
warto max-cert-depth musi mieci si w zakresie od 1 do 255
menu do zmiany lub odblokowania PIN-ubrak argumentubrak argumentu dla opcji ,,%.50s''
przeniesienie klucza zapasowego na kart procesorowprzeniesienie klucza na kart procesorowprzenosz podpis klucza na waciwe miejsce
nNnazwa gniazda zbyt duga
zagniedone podpisy na kocu dokumentu
nigdynigdy     pominicie CRLnowy plik ustawie ,,%s'' zosta utworzony
nastpne sprawdzanie bazy odbdzie si %s
nienie podano opcji --keyfile
nie podano opcji --program
w definicji grupy ,,%s'' brak znaku ,,=''
nie znaleziono CRL dla certyfikatunie podano klasy
brak odpowiadajcego klucza publicznego: %s
brak domylnego zbioru kluczy tajnych: %s
brak dziaajcego gpg-agenta w tej sesji
brak moduu obsugi dla schematu serwera kluczy ,,%s''
nie znaleziono wystawcy w certyfikacienie okrelono sposobu wykorzystania klucza - przyjto wszystkie sposoby
brak akcji serwera kluczy!
brak znanyk serwerw kluczy (uyj opcji --keyserver)
sprawdzanie bazy jest niepotrzebne
sprawdzanie bazy jest niepotrzebne przy modelu zaufania ,,%s''
aktualizacja bazy jest niepotrzebna przy modelu zaufania ,,%s''
odwoania do zewntrznych programw s wyczone
brak kluczy uniewaniajcych dla ,,%s''
dirmngr nie dziaa - uruchamianie ,,%s''
brak klucza tajnego
brak prywatnego odpowiednika podklucza publicznego %s - pominity
nie znaleziono podpisu
brak podpisanych danych
nie znaleziono pasujcego klucza karty: %s
brak absolutnie zaufanych kluczy
nie odnaleziono poprawnych danych w formacie OpenPGP.
brak poprawnych adresatw
nie podano poprawnych adresatw
brak zapisywalnego zbioru kluczy: %s
brak zapisywalnego zbioru kluczy publicznych: %s
brak zapisywalnego zbioru kluczy tajnych: %s
braknie jest oddzielonym podpisem.
to nie jest karta OpenPGPnie wymuszononieczytelne dla czowiekauwaga: niekrytyczna polityka certyfikatu niedozwolonaliczba pasujcych wystawcw: %d
oOOK, to my jestemy adresatem anonimowym.
ok|okstary, nieobsugiwany algorytm szyfrowania klucza sesyjnego
podpis starego typu (PGP 2.x).
obsugiwane s tylko --decrypt i --encrypt
przyjmowanie tylko uaktualnie istniejcych kluczyopcja ,,%.50s'' nie moe mie argumentw
opcja ,,%.50s'' jest niejednoznaczna
opcja ,,%s'' zignorowana z powodu ,,%s''
opcja ,,%s'' wymaga programu i opcjonalnych argumentw
plik opcji ,,%s'': %s
pierwotna nazwa pliku='%.*s'
brak miejsca w bezpiecznej pamici podczas przydzielania %lu bajtwbrak miejsca podczas przydzielania %lu bajtwinformacja o zaufaniu dla waciciela klucza zostaa wymazana
brak wartoci zaufania wacicielaprzekazanie polecenia do dirmngrhaso wygenerowane nieznanym algorytmem skrtu %d
haso nie zostao poprawnie powtrzone; jeszcze jedna prbanaley uruchomi gpg z opcj ,,--check-trustdb''
prosz upewni si, e ,,dirmngr'' jest poprawnie zainstalowany
objanienie mona przeczyta tutaj: %s
w jej miejsce naley uy ,,%s%s''
prosz uy opcji ,,--daemon'' do uruchomienia programu w tle
prosz czeka na wygenerowanie klucza...
ustawienie ,,%s'' powtarza si
przedwczesny koniec pliku (w CRC)
przedwczesny koniec pliku (w linii koczcej)
przedwczesny koniec pliku (brak CRC)
wypisanie danych zakodowanych szesnastkowowywietlenie stanu kartyproblem podczas obrbki pakietu szyfrowego
problem odszukaniem istniejcego certyfikatu: %s
problem z ponownym odszukaniem certyfikatu: %s
problem z ustawieniem opcji gpg-agenta
problem z agentem
problem z agentem: %s
nazwa programupytanie przed nadpisaniem plikwalgorytm ochrony %d%s nie jest obsugiwany
algorytm ochrony %d nie jest obsugiwany
pth_select nie powiodo si: %s - czekanie 1s
odczyt pty nie powid si: %s
klucz publiczny i prywatny (tajny) zostay utworzone i podpisane.
klucz publiczny %s jest o %lu sekund modszy od podpisu
klucz publiczny %s jest o %lu sekund(y) modszy od podpisu
klucz publiczny %s nie odnaleziony: %s
bd odszyfrowywania kluczem publicznym: %s
klucz publiczny nie pasuje do klucza prywatnego!
dane zaszyfrowane kluczem publicznym: poprawny klucz sesyjny
klucz publiczny to %s
klucz publiczny absolutnie zaufanego klucza %s nie odnaleziony
wWcichowyjciewyjcie z tego menuznak kodowania quoted-printable w opakowaniu ASCII - prawdopodobnie
przekamanie wprowadzone przez serwer pocztowy
rozesanie tego klucza w celu uniknicia niezgodnoci algorytmw
bd odczytubd odczytu w ,,%s'': %s
odczyt nie powid si: %s
odczyt z ,,%s''
odczyt opcji z ,,%s''
odczyt klucza publicznego nie powid si: %s
czytam strumie standardowego wejcia
powd uniewanienia: odbieranie linii nie powiodo si: %s
odwieanie %d kluczy z %s
odwieanie 1 klucza z %s
zarejestrowanie karty procesorowejusuwanie jak najwikszej czci kluczy po imporcieusunicie jak najwikszej czci klucza przy eksporcieusunicie klucza ze zbioru kluczy publicznychusunicie klucza ze zbioru kluczy prywatnychusunicie hasa z wyeksportowanych podkluczyusuwanie bezuytecznych czci kluczy po imporcieusunicie bezuytecznych czci z klucza przy eksporciezmiana nazwy ,,%s'' na ,,%s'' nie powioda si: %s
naprawienie uszkodze z serwera pks przy imporciezapytanie o klucz %s z %s
zapytanie o klucz %s z serwera %s %s
brak wymaganych atrybutw certyfikatu: %s%s%sodpowied nie zawiera wspczynnika RSA
odpowied nie zawiera publicznego wykadnika RSA
odpowied nie zawiera danych klucza publicznego
komentarz do uniewanienia: uniewanienie klucza lub wybranych podkluczyuniewanienie wybranych identyfikatorw uytkownikauniewanienie podpisw na wybranych identyfikatorach uytkownikauniewanionyuniewaniony przez twj klucz %s w %s
uniewaniono: %scertyfikat gwny wygasgwny certyfikat nie zosta oznaczony jako zaufany
certyfikat gwny jest dobry
gwny certyfikat nie jest oznaczony jako zaufanycertyfikat gwny jeszcze nie jest wanyzaokrglono do %u bitw
uruchomienie w trybie demona (w tle)uruchomienie w trybie serwera (pierwszoplanowo)uruchomienie w trybie serwerauruchomienie w trybie serwera (pierwszoplanowo)uruchomienie serwera Assuan podanego z linii polecezapis zmian i wyjcieszukanie kluczy na serwerzeposzukiwanie ,,%s'' z %s
poszukiwanie ,,%s'' z serwera %s %s
poszukiwanie nazw z %s
poszukiwanie nazw z serwera %s %s
klucz prywatny ,,%s'' nie zosta odnaleziony: %s
klucz prywatny jest ju zapisany na karcie
plik klucza tajnego (wymagany)tajne czci klucza s niedostpne
czci tajne klucza s niedostpne
select nie powiodo si: %s
wybr podklucza Nwybr identyfikatora uytkownika Nwybrany algorytm skrtw powiadcze jest niepoprawny
wybrany algorytm szyfrujcy jest niepoprawny
wybrany algorytm kompresji jest niepoprawny
wybrany algorytm skrtw wiadomoci jest niepoprawny
wasnorcznie podpisany certyfikat ma ZY podpiswysyanie klucza %s na %s
wysyanie klucza %s na serwer %s %s
wysyanie linii nie powiodo si: %s
ustawienie adnotacji dla wybranych identyfikatorw uytkownikaustawienie flag diagnostycznychustawienie listy preferencji dla wybranych identyfikatorw uytkownikaustawienie URL-a preferowanego serwera kluczy dla wybranych identyfikatorw uytkownikawyjcie polece w stylu shzaciemnienie klucza nie powiodo si: %s
powokowypokazywanie standardowych adnotacji IETF przy wypisywaniu podpiswpokazywanie standardowych adnotacji IETF przy sprawdzaniu podpiswpokazanie polece administratorapokazywanie wszystkich adnotacji przy wypisywaniu podpiswpokazywanie wszystkich adnotacji przy sprawdzaniu podpiswpokazywanie dat wyganicia przy wypisywaniu podpiswokazanie odcisku kluczapokazywanie tylko gwnego ID uytkownika przy sprawdzaniu podpisupokazywanie URL-i polityk przy wypisywaniu podpiswpokazywanie URL-i polityk przy sprawdzaniu podpiswpokazywanie URL-i preferowanych serwerw kluczy przy wypisywaniu podpiswpokazywanie URL-i preferowanych serwerw kluczy przy sprawdzaniu podpiswpokazywanie uniewanionych i wygasych podkluczy na listach kluczypokazywanie uniewanionych i wygasych ID uytkownika na listach kluczypokazywanie uniewanionych i wygasych ID uytkownika przy sprawdzaniu podpiswokazanie wybranych identyfikatorw - zdjpokazywanie nazwy zbioru kluczy na listach kluczyten tekst pomocypokazywanie poprawnoci ID uytkownika przy wypisywaniu kluczypokazywanie poprawnoci ID uytkownika przy sprawdzaniu podpiswpokazywanie adnotacji uytkownika przy wypisywaniu podpiswpokazywanie adnotacji uytkownika przy sprawdzaniu podpiswzoenie podpisu na kluczuzoenie prywatnego podpisu na kluczupodpisanie lub modyfikacja kluczazoenie podpisu na wybranych identyfikatorach uytkownika [* poniej powizane polecenia]zoenie prywatnego (lokalnego) podpisu na wybranych identyfikatorach uytkownikapodpisanie wybranych identyfikatorw uytkownika sygnatur nie podlegajc uniewanieniupodpisanie wybranych identyfikatorw uytkownika sygnatur zaufaniapodpis nie utworzony w czasie ycia certyfikatuwymuszono pominicie sprawdzenia podpisu
dotychczas stworzono podpisw: %lu
podpisany twoim kluczem %s w %s%s%s
zoenie podpisu nie powiodo si: %s
podklucz podpisujcy %s jest ju skronie podpisany
podpis:pominity ,,%s'': %s
pominity ,,%s'': duplikat
pominity: zosta ju wybrany w innej opcji
pominity: klucz publiczny ju jest domylnym adresatem
pominity: klucz prywatny jest ju wpisany
blok typu %d zostaje pominity
podpis w wersji 3 na identyfikatorze ,,%s'' zostaje pominity
obsuga ssh 0x%lx dla fd %d uruchomiona
obsuga ssh 0x%lx dla fd %d zakoczona
klucze ssh wiksze ni %d bitw nie s obsugiwane
osobny certyfikat uniewanienia - uyj ,,gpg --import'' aby go wczyta
oddzielony podpis klasy 0x%02x.
stat() nie powiodo si dla ,,%s'': %s
instrukcja "%s" zignorowana w ,,%s'', w linii %d
zapis klucza na karcie nie powid si: %s
podklucz %s nie jest podpisujcy, wic nie musi by skronie podpisany
podpakiet typu %d ma ustawiony krytyczny bit
przeczanie do modelu acuchowegoszyfrowanie symetryczne ,,%s'' nie powiodo si: %s
bd systemu podczas woania programu zewntrznego: %s
systemowa lista zaufania ,,%s'' niedostpna
tekstowymodu szyfru IDEA nie jest dostpny
NullPIN nie zosta jeszcze zmieniony
dostpny CRL jest zbyt starypodany URL regulaminu powiadczania jest niepoprawny
podany preferowany URL serwera kluczy jest niepoprawny
podany URL regulaminu podpisw jest niepoprawny
nie mona sprawdzi podpisu.
Naley pamita o podawaniu pliku podpisu (.sig lub .asc) jako pierwszego
argumentu linii polece.
status certyfikatu jest nieznanydla klucza publicznego ,,%s'' istnieje klucz prywatny!
klucz algorytmu Elgamala wygenerowany przez PGP nie zapewniajcy bezpiecznych podpisw!ten klucz zosta ju uznany kluczem uniewaniajcym
to moe by spowodowane brakiem podpisu klucza nim samym
ta wiadomo moe nie da si odczyta za pomoc %s
platforma wymaga uycia plikw tymczasowych do woania zewntrznych programw
przeczenie pomidzy listami kluczy tajnych i publicznychzmiana flagi wymuszenia PIN-u do podpisuzbyt wiele ustawie szyfru
zbyt wiele ustawie kompresji
zbyt wiele ustawie funkcji skrtu
zbyt wiele wpisw w buforze kluczy publicznych - wyczony
klasa narzdzia (confucius)cakowita liczba przetworzonych: %lu
wpis zaufania %lu jest typu innego ni poszukiwany %d
wpis zaufania %lu, typ zapytania %d: odczyt nie powid si: %s
wpis zaufania %lu, typ zapytania %d: zapis nie powid si: %s
zaufanie: %sbaza zaufania, wpis %lu: funkcja lseek() nie powioda si: %s
baza zaufania, wpis %lu: zapis nie powid si (n=%d): %s
zbyt due zlecenie dla bazy zaufania
baza zaufania: funkcja lseek() zawioda: %s
baza zaufania: funkcja read() (n=%d) zawioda: %s
baza zaufania: synchronizacja nie powioda si %s
poziom zaufania poprawiony na PENY ze wzgldu na poprawne informacje PKA
poziom zaufania poprawiony na ADEN ze wzgldu na bdne informacje PKA
absolutnenie mona wywietli zdjcia!
nie mona uruchomi zewntrznego programu
nie mona uruchomi programu ,,%s'': %s
nie mona uruchomi powoki ,,%s'': %s
nie mona otworzy pliku JPEG ,,%s'': %s
nie mona odczyta odpowiedzi programu zewntrznego: %s
nie mona ustawi cieki programw wykonywalnych na %s
nie mona uaktualni rekordu wersji bazy zaufania: zapis nie powid si: %s
nie mona uy szyfru IDEA z wszystkimi kluczami dla ktrych szyfrujesz.
nie mona uy nieznanego modelu zaufania (%d) - przyjto model zaufania %s
nieskompresowany|braknieokrelonenieoczekiwane opakowanie: nieznanynieznane polecenie ,,%s''
nieznana opcja konfiguracyjna ,,%s''
nieznany domylny adresat ,,%s''
nieznany algorytm ochrony klucza
nieznana opcja ,,%s''
nieznany algorytm ochrony
nieznany model poprawnoci ,,%s''
nienaturalne zakoczenie pracy zewntrznego programu
nie podanoodwieenie wszystkich kluczy z serwerazapis zmian nie powid si: %s
zapis zmian na kluczu prywatnym nie powid si: %s
uaktualnienie bazy zaufaniauycie: %swywoanie: gpg [opcje]wywoanie: gpgconf [opcje]wywoanie: gpgsm [opcje]uycie pliku loga dla serwerauycie standardowego pooenia gniazdaplik wyjciowykanoniczny format tekstowyaby go usun naley najpierw uy opcji "--delete-secret-key".
cise zachowanie OpenPGPuycie systemowego ustawienia proxy HTTPuycie systemowego dirmngr jeli jest dostpnyuycie plikw tymczasowych do przekazywania danych do moduw obsugi serwera kluczyidentyfikator uytkownika ,,%s'' zosta ju uniewaniony
identyfikator uytkownika: ,,%s''
uycie modelu zaufania %s
szyfrem %s
uywany jest podklucz %s zamiast klucza gwnego %s
sprawdzanie podpisw z danymi PKAmodel poprawnoci dany przez certyfikat: %suyty model poprawnoci: %spoprawno: %sz dodatkowymi informacjamiweryfikacja PIN-u administratora tym poleceniem jest aktualnie zabroniona
weryfikacja CHV%d nie powioda si: %s
sprawdzenie podpisusprawdzenie PIN-u i wypisanie wszystkich danychoczekiwanie na zakoczenie procesu %d nie powiodo si: %s
waitpid nie powiodo si: %s
wygenerowano saby klucz - operacja zostaje powtrzona
dziwny rozmiar jak na zaszyfrowany klucz sesyjny (%d)
nie zadziaa z niebezpieczn pamici z powodu %s
zapis podpisu bezporedniego
zapis podpisu wicego klucz
zapisuj klucz publiczny w ,,%s''
zapisuj zalepk klucza tajnego w ,,%s''
zapisuj klucz tajny w ,,%s''
zapis podpisu klucza nim samym
zapis do ,,%s''
zapisywanie na wyjcie standardowe
tTtakw trybie --pgp2 mona podpisywa tylko za pomoc kluczy z wersji 2.x
kluczami PGP 2 w trybie --pgp2 mona podpisywa tylko do oddzielonych podpisw
w trybie --pgp2 mona szyfrowa dla kluczy RSA krtszych od 2048 bitw
w trybie --pgp2 mona skada tylko podpisy oddzielne lub doczone do tekstu
mona uaktualni swoje ustawienia poprzez: gpg --edit-key %s updpref save
w trybie --pgp2 nie mona jednoczenie szyfrowa i podpisywa
nie mona wyznaczy klucza do uniewaniania jego samego
nie mona uy --symmetric --encrypt w trybie %s
nie mona uy --symmetric --encrypt wraz z --s2k-mode 0
nie mona uy --symmetric --sign --encrypt w trybie %s
nie mona uy --symmetric --sign --encrypt wraz z --s2k-mode 0
znalaze(a) bd w programie ... (%s:%d)
%s nie jest dostpne w trybie %s
szyfr ,,%s'' nie jest dostpny w trybie %s
kompresja ,,%s'' nie jest dostpna w trybie %s
skrt ,,%s'' nie jest dostpny w trybie %s
mona najpierw uruchomi najpierw gpg-agenta
w trybie --pgp2 trzeba uywa plikw a nie potokw.
|AN|Nowy PIN administratora|KOMPONENT|zmiana opcji|KOMPONENT|wypisanie opcji|FD|pisanie opisu stanu do deskryptora FD|PLIK|sprawdzanie nowych hase pod ktem wzorcw z PLIKU|PLIK|odczyt opcji z PLIKU|PLIK|pobranie informacji o polityce z PLIKU|PLIK|zapis ustawie rodowiska take do PLIKU|PLIK|zapisanie logw trybu serwerowego do PLIKu|POZIOM|ustawienie POZIOMU diagnostyki|NAZWA|poczenie z gniazdem Assuan o tej nazwie|NAZWA|szyfrowanie take dla odbiorcy NAZWA|NAZWA|uycie NAZWY jako sterownika PC/SC|NAZWA|uycie NAZWY jako sterownika ct-API|NAZWA|uycie NAZWY jako domylnego klucza tajnego|NAZWA|uycie tego algorytmu szyfrowania NAZWA|NAZWA|uycie kodowania NAZWA dla hase PKCS#12|NAZWA|uycie tego algorytmu skrtu wiadomoci|N|Nowy PIN|N|poczenie z czytnikiem na porcie N|N|przedawnienie kluczy SSH po N sekundach|N|przedawnienie pamitanych PIN-w po N sekundach|N|przedawnianie hase po N dniach|N|liczba certyfikatw do doczenia|N|wymaganie przynajmniej N znakw niealfanumerycznych w nowym hale|N|ustawienie maksymalnego czasu ycia pamici podrcznej PIN-w na N sekund|N|ustawienie maksymalnego czasu ycia kluczy SSH na N sekund|N|ustawienie minimalnej dugoci nowych hase na N|PGM|uycie PGM jako programu do wprowadzania PIN-u|PGM|uycie PGM jako programu SCdaemon||Prosz wpisa PIN%%0A[podpisw wykonanych: %lu]||Prosz wprowadzi PIN na klawiaturze czytnika