File: en%40quot.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 (2437 lines) | stat: -rw-r--r-- 170,439 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
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
D6	ll-;ޒ+Gd2ؓ72C#vD.ߔI7Xѕ =Zs+&Ζ#(B[tʗח(5T
es$̘& ,;h!ԙ
%@[vӚ0%A gޛ*"&]IB/=-(k.3Ý!(B]l't͞!/$Q,v'˟ !"A,dB͠=N"m%&!ݡ%"%#H'l Ң1(B$k#ݣ$!@!_/פ#+ Fg&%̥٥03,P}Xo'˧-?R e'Ũ-֨(0-2^4HƩ
	'4AM	kuDū-
08.iI*+
'9an٭,AHby34-L'^.$		
8U$l?4ٰ:Ih,ѱ(8'`o#ֲ&(!&Jq7ͳ6-<%j39Ĵ0</LlG@>B+=""2
U:`ķ#ٷ./Br-$ڸ'8&D5k.5й*!1.S0&,ں!,=
ju5# "'JH",(O$xE1*@^y8$$"?bzPlB?Uhx%.' Vw!>0`'<+"=,`/1","?(b2+ ('P l
*,Hbv.#Rf+rY&5"E(<e&=.L%l),5 %@fF 1%/U
bp%t3
0EES[g -8f2IIS>}&<&8cNU'A)ic#/D!">#a-+)&	0'[B
/8QZ+v,3591Ew(#+"+)"U x?%.;K[r
.,(2 [}|2G/a0!05ER!f%4I	\fo+jM%jsQK0F|UKCG0x@-^90/5''].3-5Mh!~$,(T7-iv*(=@0~=0&,E+r.'* <X q#$ -N6i%772Pr>v1=I%4o#=%?ED@E+Q1}NIIH%S;?HB<H-Q"Hu<B)C:)~:.>2QL=<@LFHU$s -21IL@>KBb@5,*I7t.,0094jv%'/:06k5.'-1O*&1#2A>teH*;	=f	0	M	9#
"]
&
!
3
>
%<,b52_
y






-

8
C
	J
T
a

r
}


"

)
/(8XS=5#4Y&+5(@Yh}

 '."Qm
! 7BS5$'!C/e($;.V0" -*Fq,"%2"+U!
!(5J

"#;"<^*	0'Xt)&1/a{@852J!}%&@Y:o?P&j.#-4b&}
%<A3(u(+	 $ > "R u  /   !%!2A!2t!!!1!
"!"<"S"j"{""","%"##.#HR###)#-#!'$I$U$%^$/$)$,$'%!3%.U%%%%&%& &%?&e&#}&&&$&&3'R'
h's'''''0'!($>(=c((%(#(!(-)L)b){)) )))"*'4*!\*~*#*7***( +I+#d+(++ ++,,4,N, f,,,,,,-0--!^-'--&-!-#
.+1.].}.#....*/=/U/t//&/&//0$-0R0d0000/000+01,;1/h1"191K1(A2 j2!2(2)23%3E3%^3$3&3$33#4D64{4!4'44145$&5K5@R5=555
66!*6L6^6u6D6-6+6/(7 X7#y777=7+86@80w8888!8'8!979K9/i99#9"9&9(:B:%b:%:9:8:$!;!F;>h;&;;$;;<.+<Z<x<<</<&<=-=M=2j===/==>'.>!V>x>/>>+>??$,?&Q?$x?'?'?,?H@,c@@@@(@@>A TAuAA$A,AIAJABBBB"B#
C .C!OCqCCCC*C-D$9D'^D D.D"D+D)%E#OEsE-E6E5E/.F^F"~F'FF;F0 G"QG%tG/G2GG!H3H:NH H!H!H(H+I8CI|I!I4I0I!J9J2WJ6J)J9J%K9K&PKGwKHKBLKLgLLLL#LLM,MJMhMMMMMM(N/.N.^NN4N-N+O(8OaO#O-O
OOOP&PDP[PnPP	PPPPPQ'Q<QVQ'nQ)QQQQ'R/RNRSR,bR.RR(R2R!#SES$VS {SS,SSSST
#T.T$BTgTTTT)TTU U?U%^U%UU-UU,
V:V2WV3V&V"V#W$,WQW1`WWWW!WWX+XFX%eX%XXXX
XX1Y4Y$TYyY&|Y	Y)YY+Y$"Z+GZsZ Z6ZZZ[%[72[&j[[[[6[,\L\h\:\#\\F\-F]t]]]]]]
^"#^-F^%t^&^^^^_+ _&L_#s__*_5_6
`D`!a`&`$``2`aaa"aI1aF{a
aaaa	b$bCbVbnbbbb0b1c#7c#[c+c+c,c(d!-d2Odd$d/dd*e2<e.oeeee*eff<fHf0eff&fffg&g<g%\ggg/g
ggh%/hUh&rhh$hh#h&iCi]ipii3i%i*i%j+<jhj~jj(jj-j9"k\ktkk6k:k
l,l0Kl/|ll7l*l.$m7Sm;m0m1m;*nfn%~nn)n3n6o:Ho
ooo9oo5
p-Cp4qp"pp p
q-qLqUqgq q5q$qq+rDr$br'r0r4r%s;s(Ws!sCs*st(*t0St$tt&t%tt.u-Ku*yuu(5v+^vGv2v/w%5wF[w1w#ww!x7x(Tx}xx-x/x,y	<y"Fy)iyyy yy2z1;zmzvz#z#z!z"z- {N{:m{I{A{"4|W|	i|s|||| ||!|}3}Q}#p}}} }}}~	"~,~B~\~t~&~~~6~7!W5y *!J-lGɀ* =^&v/́-,,Ys %8;D?FE˃DEVA7ބ67M=>Å$7D<|7*Fcu9͇ )93c''܈).%H n-$؉'9%#_%Ȋ$
/-']\G*
=EH04ތ"%6%\$?'.,>7k%$ɎYDH'*'Em Ӑ,C]tB-Α**'.Re-;QZr@Tqʖ!6>;u6#D.QI7ʘ/G_yЙ+&D#k(њ
 @M(iʛ
ۛ$BX&o,ޜ!4Jeѝ,8Mj% 9 X.y&aϟB1t/=(.3M!(̡'&DWq!$ۢ,'-Uq "ˣ, ?B_="%"&H!o%"#ڥ' &Gdyæ(Ԧ$"7#K"o$֧!4S3m#Ũ &%@fs0ͩ,.La'u׫ '0Xo-(0׬24;Hp
	ǭѮޮ	;[Ho-0.IF*+'-IQ`qűޱ/K3c4-Բ'.<k$t		
ϳ$"G?O4:Ĵ<Xr,(8ݵ%?Yp#&(׶&'>Vkt76-% 3F9z0<P"Gs@>+;=gܺ"
:Uk~#ɻ/,-A$o+8ɼ&5)._5.Ľ!.0D&u,ɾ,
0;5R#ݿ"H"(!$JoE10K"e8$&@Xm.J]yB3FVh%. 4U!0>+o<+&0F/w1"0"-(P2y/ (B ^
*"B\p.L`+lY$9~"E,>k&=4R%r),5 %%FlF 1%5[
hv%z3

6EESag ->l2IOS>,<48qNU'O)wc9/D!2"T#w-+)&F)+0_\+=MVox+,35!W1c(#+"$+G"s ?%1LYiy
.,#(P y}5Pe/0!,NScp!	%,Rg	z+jMCjQKNFU7KC
GN&@;-|=0/5I'.3
-)Wo!$,(0TY-i. *(==f0=0&D,k+.'*Fb$'() R$s:);T7n2rY>1==I{4#==#{?D@$Ee+1N	IXI%S;f?B@%Hf-"HI@B/)rC):
.E>t2L=3<q@FH6U$ -6I5MDBIOFD#9h0.;2>0q004v9){+:6
	5D	.z						y
*C*n1#6>&e
H
*
=0ZM9"&6!]3B)0 9Q6_
C
N
Y
d
oz


	+
<GSp&#-/86WoA5	8?&x+=(	2KZo
|
 +.Kg}
! 1BM!5()%E/k(.I.h0&$
/O.h0"%&2L+ !%G%f5

"#@;d<*	%/#M0q)(&R1y@8% 5^ 2 ! % !!0!H!\!p!!!:!!"*"@"V"i"""&"."
##&#J#`#-~##&#
#!#%$<D$A$($$0%33%g%%%"%%%/
&=&Y&w&&2&2&''56'l'''''''(,()L(v(#(H()))9)-c)!)))%)/))*,H*'u*!*.**
+,+&D+k+ +%++#+,&,(D,m,3,,
,,,- -@-0^--$-=-.% .#F.%j.-....#/$0/U/t/"/+/!/0#07?0*w0(00#0(
131 S1t11111$1252U2s22202!2+3B3&^3%3'3/3#4'4#E4i444*445"5#95*]5*555$56"6A6I6U6/a666+6606/*7"Z79}7K7(8 ,8!M8(o8-88%89%(9$N9&s9$99#9D:E:!L:'n::1::$:;@ ;=a;#;;;;!;<0<G<D[<-<+</< *=#K=o====+=6>0I>z>>>!>'>>	??/;?k?'}?"?&?(?@%8@%^@9@8@$@!A>>A&}AA$AAA.B0BNBgBwB/B*BB#C/C2LCCC3C CD+D%DDjD/DD+DDE$"E&GE$nE'E'E,EHF,YFFFF(FF>G$JGoGG$G,GIGJ?H#H H!H&H'I$@I%eI!IIII.
J19J$kJ'J J2J"K+/K)[K#KK-K6K5.L3dLL"L'LM;M0ZM"M%M/M2N7N!KNmN:N N%N!
O(,O+UO8OO!O4O0.P_P!wP2P6P)Q=-QkQQ&QGQHRBNRRRRRS# SDSdS~SSSSST'TFT(WT3T2TT4U18U/jU(UU#U-V
5VCV\VtVVVVVV	WW*WCW]WxWWWW'W)X*XFX`X'qXXXX,X.X(Y(1Y2ZY!YY(Y Y
Z,$ZQZTZmZZ
ZZ(ZZZZ[-6[d[[ [[%[)[$\-C\q\,\\6\7]&@]&g]']$]]1]^0^@^!`^^^^^%^%_;_@_Z_
n_y_1__$_`&`	-`)7`a`+`$`/` a("a:Kaaaaa7a&b3bSblb6b,bb
c>'c#fccJc-c"dBdZdvdddd"d-d%&e&Leseeee+e&e#%fIf*^f5f6ff!g&5g$\gg2gggggIgF-h
thhhhhhii,iGici}i0i1i#i#j+=j+ij,j(j)j2kHk$ck/kk*k2l.5ldlyll*lllmm0+m\m&vmmmmmn%"nHn[n/{n
nnn)n#o&@o"go$oo#o&op/pBpRp3cp%p*p%p+q:qPqpq(qq-q9q.rFrdr6jr:rr,r0s/Ns~s7s*s.s7%t;]t0t1t;t8u%Puvu)u3u6u:v
Uv`vsv9vv5v-w4Cw"xww ww-wx'x=x [x5|x$xx/x!"y$Dy'iy0y8y%y!z0Az!rzCz*z{,{0I{(z{{&{%{{.|-E|*s||(/}/X}G}2}/~%3~FY~1~#~~!5(R{-/,
	:"D)g ˀ219kt#'%݁&-*X:wIA">a	s}$Ƀ#!4M"k# ؄&	@J`z&ׅ:=Y!y5$ц	0*I!t-ćއG;T g&/Lj-(,V͉$2J_ruDyFEDKEA֋76P7=><$Y;~@;*7Fb9َ-F ^)3ݏ''")Jt% -Ր$'C9k#%ɑ$.S/s'\˒G(p
E0ԓ4$"Y%|%$Ȕ?'-.U,7%$Y4DӖ')C*`'ɗ 7WrBј-*B*m.RAnNws'Fk,~@ZW].$EE)*Q(-|/}d941
`+LY6xt )*pyz!*#kDSkFGwT'vb"a?xiOuRE)pP$r-yr!q{@PQ@\Zy^1[j(><3-8C#EbGT[uqMb;aS.LKjgIt>ZF[+0|i#ds%45o`]g:8`}L3	AuX0{1?0ek<v;)V{S`6cm$ryURnvfK=f0:Ii/=T(aPM*xU][g~$!ce'vXogCR=8+N;
X5CG0WARxmkf&8_"~2"A9
J9,y[XsrNZ<$@K|^_; dzq]Jxxl'o%hj>~z,6JE22ze|6YV[)ToFhQ{c63}@ni(hPI/?48.&C'_mg	k<Z"c|61)H7^i#aKBF,mQ>t
=QD^eZ~_\q2r?In^zP/4e3SAJ%4UlS\o9b
O%o\+-0s:c#h==W];L;3IOd
%l8m}^}ntpZ<+&T-RLu}.y #!{qzMa/1-_3kv{	B~`MlC~\i:Ud?|h:wD2Lpvm.D5$YawQWVO0V*<	Hbt\MIcj>v_EUJ7S %t`,Y_H9/YE&*K+
XQUbHBhwHFMy
l('.ho-s:,4?H!b(5p%aOF,@
U	fX1lfVHg
1j q3T9 NY59Dd7D/7Y46Gn]tIfJKON'e{uB@&Bp uiG:A=zjC"+	B	rL
G&sl[N!}j(WxWnORpP
JNu"B<g|2cm!w
)5fDs#MTWG*`7727X&e^Awq;\?d>"rC]5VVK
S.8$>P
Enter the user ID.  End with an empty line: 
GnuPG needs to construct a user ID to identify your key.


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) DSA and Elgamal
   (%d) Elgamal (encrypt only)
   (%d) Existing key
   (%d) Existing key from card
   (%d) RSA
   (%d) RSA (encrypt only)
   (%d) RSA (set your own capabilities)
   (%d) RSA (sign only)
   (%d) RSA and RSA (default)
   (%d) encrypt
   (%d) sign
   (%d) sign, encrypt
   (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
 (end with an empty line):
 (main key ID %s) (non-exportable) (non-revocable) (optional; end with an empty line):
 - probably dead - removing lock 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%%0A%%0AUse the reader's keypad for input.%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: no hostname given
%s:%u: obsolete option "%s" - it has no effect
%s:%u: password given without user
%s:%u: skipping this line
%u-bit %s key, ID %s, created %s(No description given)
(Probably you want to select %d here)
(This is a sensitive revocation key)
(deadlock?) (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_fixed22 translator: see certreg-ui.c:gpgsm_gencertreq_tty@
(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) AuthenticateAvailable keys:
BAD signature from "%s"Bad PINBad PassphraseCA fingerprint: CRC error; %06lX - %06lX
CRL/OCSP check of certificatesCan't check signature: %s
Can't edit this key: %s
Can't open `%s': %s
CancelCardholder's given name: Cardholder's surname: Certificate chain availableCertificate chain validCertificates 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
Data availableData decryption succeededData encryption succeededData signing succeededData verification succeededDelete 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: Dirmngr usableDisplaying %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: EncryptEncryption algorithm supportedEnter DNS namesEnter JPEG filename for photo ID: Enter URIsEnter an optional description; end it with an empty line:
Enter email addressesEnter new filenameEnter new passphraseEnter number(s), N)ext, or Q)uit > Enter passphrase
Enter the X.509 subject name: Enter the keygrip: 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 - 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: The trustdb is corrupted.
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"External verification of component %s failedFeatures: 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"Gpg-Agent usableHash: 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
If that does not work, please consult the manual
Included certificatesInvalid 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.
Invalid subject name `%s'
Invalid subject name label `%.*s'
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-modifyLDAP server listLanguage preferences: Login data (account name): Make off-card backup of encryption key? (Y/n) NOTE: %s is not for normal use!
NOTE: There is no guarantee that the card supports the requested size.
      If the key generation does not succeed, please check the
      documentation of your card to see what sizes are allowed.
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: keys are already stored on the card!
NOTE: 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: signature key %s has been revoked
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 audit log entries.No corresponding signature in secret ring
No fingerprintNo help availableNo help available for `%s'No help available for `%s'.No key with this keygrip
No reason specifiedNo subject name given
No 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
Not a valid keygrip (expecting 40 hex digits)
Not signed by you.
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
Now creating certificate request.  This may take a while ...
Number of recipientsOpenPGP 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) Owner trust may not be set while using a user provided trust database
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 shortPUKPUK not correctly repeated; try againParameters to be used for the certificate request:
Parsing data succeededPassphrasePassphrase 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 off-card backup of the new encryption key.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 unlock the secret key for the OpenPGP certificate:
"%.*s"
%u-bit %s key, ID %s,
created %s%s.
Please enter the passphrase to unlock the secret key for the X.509 certificate:
"%s"
S/N %s, ID 0x%08lX,
created %s, expires %s.
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 insert the card with serial numberPlease 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 remove the current card and insert the one with serial numberPlease report bugs to <@EMAIL@>.
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:
Possible actions for a %s key: Preferred keyserver: Primary key fingerprint:Private DO data: Proceed? (y/N) Pubkey: Public key is disabled.
Quality: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
Ready.  You should now send this request to your CA.
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
Recipient %dRepeat this PINRepeat this PUKRepeat this Reset CodeReplace existing key? (y/N) Replace existing keys? (y/N) Requested keysize is %u bits
Reset CodeReset Code is too short; minimum length is %d
Reset Code not correctly repeated; try againReset Code not or not anymore available
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!
Root certificate trustworthySETERROR %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.
Serial number of the card: %s
Session key createdSet preference list to:
Sex ((M)ale, (F)emale or space): SignSign it? (y/N) Signature %dSignature availableSignature 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: Signer %dSsEeAaQqSubkey %s is already revoked.
Such a user ID already exists on this key!
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-check-pattern [options] patternfile
Check a passphrase given on stdin against the patternfile
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: gpgv [options] [files]
Check signatures against known trusted keys
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 card will now be re-configured to generate a key of %u bits
The 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 command is only available for version 2 cards
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:
To complete this certificate request please enter the passphrase for the key you just created once more.
Total number processed: %lu
URL to retrieve public key: UncompressedUnknown operationUnknown signature type `%s'
Usage: gpg [options] [files] (-h for help)Usage: gpg-agent [options] (-h for help)Usage: gpg-check-pattern [options] patternfile (-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: Elgamal sign+encrypt keys are deprecated
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: You have entered an insecure passphrase.%%0AA passphrase may not be a known term or match%%0Acertain pattern.Warning: You have entered an insecure passphrase.%%0AA passphrase should be at least %u character long.Warning: You have entered an insecure passphrase.%%0AA passphrase should be at least %u characters long.Warning: You have entered an insecure passphrase.%%0AA passphrase should contain at least %u digit or%%0Aspecial character.Warning: You have entered an insecure passphrase.%%0AA passphrase should contain at least %u digits or%%0Aspecial characters.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 for the Authentication key? (%u) What keysize do you want for the Encryption key? (%u) What keysize do you want for the Signature key? (%u) What keysize do you want for the subkey? (%u) What keysize do you want? (%u) WrongYesYes, 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 may try to re-create the trustdb using the commands:
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 IDalgorithm: %sallow 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'
attr hash algorithm: %sautomatically retrieve keys when verifying signaturesautomatically retrieved `%s' via %s
bad data hash algorithm: %sbad 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 agent - trying fall back
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
cleared passphrase cached with ID: %s
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
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 hash algorithm: %sdata 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
deny the use of admin card commandsdepth: %d  valid: %3d  signed: %3d  trust: %d-, %dq, %dn, %dm, %df, %du
detected card with S/N: %s
directory `%s' created
dirmngr cache-only key lookup failed: %s
dirmngr protocol version %d is not supported
disable all access to the dirmngrdisable 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 changing size of key %d to %u bits: %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 nonce for the socket
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 nonce on fd %d: %s
error reading secret keyblock "%s": %s
error reading the card: %s
error retrieving CHV status from card
error retrieving `%s' via %s: %s
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 `%s': %s
error writing key to card: %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 `%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 create temporary file `%s': %s
failed to get the fingerprint
failed to initialize the TrustDB: %s
failed to open `%s': %s
failed to proxy %s inquiry to client
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
failed to use default PIN as %s: %s - disabling further default use
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
get the configuration directories for gpgconfgpg-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
hash algorithm %d (%s) for signer %d not supported; using %s
hash algorithm used for signer %d: %s (%s)
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 displayignoring garbage lineimport 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 command (there is no implicit command)
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 signature: message digest attribute does not match computed one
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 global configuration filelist 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'
lock `%s' not made: %s
looking up issuer at external location
looking up issuer from the Dirmngr cache
make a clear text signaturemake a detached signaturemake a 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 running gpg-agent - starting one
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
number of matching certificates: %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 coreout of core
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 againpinentry.qualitybar.tooltipplease 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 message digestsprint 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 exportremoving stale lockfile (created by %d)
renaming `%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%sresource problem: out of core
response 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 missingroot certificate not yet validrounded up to %u bits
run /subst on startuprun 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
seems to be not encryptedselect 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"
socket name `%s' is too long
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
unblock the PIN using a Reset Codeuncompressed|noneundefinedunexpected armor: unknownunknown armor header: unknown 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
unspecifiedunsupported algorithm: %supdate 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 default PIN as %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 lock %s...
waiting for lock (held by %d%s) %s...
waiting 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 new key
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|A|Please enter the Admin PIN|A|Please enter the Admin PIN%%0A[remaining attempts: %d]|COMPONENT|change options|COMPONENT|check options|COMPONENT|list options|FD|write status info to this FD|FILE|add keyring to the list of keyrings|FILE|check new passphrases against pattern in FILE|FILE|read options from FILE|FILE|run commands from FILE on startup|FILE|take policy information from FILE|FILE|take the keys from the keyring FILE|FILE|write a log to FILE|FILE|write a server mode log to FILE|FILE|write an audit log to FILE|FILE|write environment settings also to FILE|FILE|write output to FILE|FILE|write server mode logs to FILE|LEVEL|set the debugging level to LEVEL|MECHANISMS|use MECHANISMS to locate keys by mail address|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|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create qualified signatures.|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys.|N|Initial New PIN|N|New PIN|N|Please enter a new PIN for the key to create qualified signatures.|N|Please enter a new PIN for the standard keys.|N|connect to reader at port N|N|disconnect the card after N seconds of inactivity|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 compress level to N (0 disables)|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|P|Please enter the PIN Unblocking Code (PUK) for the key to create qualified signatures.|P|Please enter the PIN Unblocking Code (PUK) for the standard keys.|RN|New Reset Code|SPEC|set up email aliases|SPEC|use this keyserver to lookup keys|URL|use keyserver at URL|USER-ID|encrypt for USER-ID|USER-ID|use USER-ID as default secret key|USER-ID|use USER-ID to sign or decrypt|audit-log-result|Bad|audit-log-result|Error|audit-log-result|Good|audit-log-result|No certificate|audit-log-result|Not enabled|audit-log-result|Not supported|audit-log-result|Not used|audit-log-result|Okay|audit-log-result|Skipped|audit-log-result|Some||Please enter the PIN||Please enter the PIN for the key to create qualified signatures.||Please enter the PIN for the standard keys.||Please enter the PIN%%0A[sigs done: %lu]||Please enter the Reset Code for the card||Please enter your PIN at the reader's keypadProject-Id-Version: GNU gnupg 2.0.14
Report-Msgid-Bugs-To: translations@gnupg.org
POT-Creation-Date: 2009-12-21 16:05+0100
PO-Revision-Date: 2009-12-21 16:05+0100
Last-Translator: Automatically generated
Language-Team: none
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Plural-Forms: nplurals=2; plural=(n != 1);

Enter the user ID.  End with an empty line: 
GnuPG needs to construct a user ID to identify your key.


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) DSA and Elgamal
   (%d) Elgamal (encrypt only)
   (%d) Existing key
   (%d) Existing key from card
   (%d) RSA
   (%d) RSA (encrypt only)
   (%d) RSA (set your own capabilities)
   (%d) RSA (sign only)
   (%d) RSA and RSA (default)
   (%d) encrypt
   (%d) sign
   (%d) sign, encrypt
   (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
 (end with an empty line):
 (main key ID %s) (non-exportable) (non-revocable) (optional; end with an empty line):
 - probably dead - removing lock 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%%0A%%0AUse the reader's keypad for input.%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: no hostname given
%s:%u: obsolete option “%s” - it has no effect
%s:%u: password given without user
%s:%u: skipping this line
%u-bit %s key, ID %s, created %s(No description given)
(Probably you want to select %d here)
(This is a sensitive revocation key)
(deadlock?) (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_fixed22 translator: see certreg-ui.c:gpgsm_gencertreq_tty@
(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) AuthenticateAvailable keys:
BAD signature from “%s”Bad PINBad PassphraseCA fingerprint: CRC error; %06lX - %06lX
CRL/OCSP check of certificatesCan't check signature: %s
Can't edit this key: %s
Can't open ‘%s’: %s
CancelCardholder's given name: Cardholder's surname: Certificate chain availableCertificate chain validCertificates 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
Data availableData decryption succeededData encryption succeededData signing succeededData verification succeededDelete 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: Dirmngr usableDisplaying %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: EncryptEncryption algorithm supportedEnter DNS namesEnter JPEG filename for photo ID: Enter URIsEnter an optional description; end it with an empty line:
Enter email addressesEnter new filenameEnter new passphraseEnter number(s), N)ext, or Q)uit > Enter passphrase
Enter the X.509 subject name: Enter the keygrip: 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 - 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: The trustdb is corrupted.
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”External verification of component %s failedFeatures: 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”Gpg-Agent usableHash: 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
If that does not work, please consult the manual
Included certificatesInvalid 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.
Invalid subject name ‘%s’
Invalid subject name label ‘%.*s’
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-modifyLDAP server listLanguage preferences: Login data (account name): Make off-card backup of encryption key? (Y/n) NOTE: %s is not for normal use!
NOTE: There is no guarantee that the card supports the requested size.
      If the key generation does not succeed, please check the
      documentation of your card to see what sizes are allowed.
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: keys are already stored on the card!
NOTE: 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: signature key %s has been revoked
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 audit log entries.No corresponding signature in secret ring
No fingerprintNo help availableNo help available for ‘%s’No help available for ‘%s’.No key with this keygrip
No reason specifiedNo subject name given
No 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
Not a valid keygrip (expecting 40 hex digits)
Not signed by you.
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
Now creating certificate request.  This may take a while ...
Number of recipientsOpenPGP 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) Owner trust may not be set while using a user provided trust database
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 shortPUKPUK not correctly repeated; try againParameters to be used for the certificate request:
Parsing data succeededPassphrasePassphrase 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 off-card backup of the new encryption key.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 unlock the secret key for the OpenPGP certificate:
“%.*s”
%u-bit %s key, ID %s,
created %s%s.
Please enter the passphrase to unlock the secret key for the X.509 certificate:
“%s”
S/N %s, ID 0x%08lX,
created %s, expires %s.
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 insert the card with serial numberPlease 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 remove the current card and insert the one with serial numberPlease report bugs to <@EMAIL@>.
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:
Possible actions for a %s key: Preferred keyserver: Primary key fingerprint:Private DO data: Proceed? (y/N) Pubkey: Public key is disabled.
Quality: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
Ready.  You should now send this request to your CA.
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
Recipient %dRepeat this PINRepeat this PUKRepeat this Reset CodeReplace existing key? (y/N) Replace existing keys? (y/N) Requested keysize is %u bits
Reset CodeReset Code is too short; minimum length is %d
Reset Code not correctly repeated; try againReset Code not or not anymore available
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!
Root certificate trustworthySETERROR %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.
Serial number of the card: %s
Session key createdSet preference list to:
Sex ((M)ale, (F)emale or space): SignSign it? (y/N) Signature %dSignature availableSignature 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: Signer %dSsEeAaQqSubkey %s is already revoked.
Such a user ID already exists on this key!
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-check-pattern [options] patternfile
Check a passphrase given on stdin against the patternfile
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: gpgv [options] [files]
Check signatures against known trusted keys
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 card will now be re-configured to generate a key of %u bits
The 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 command is only available for version 2 cards
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:
To complete this certificate request please enter the passphrase for the key you just created once more.
Total number processed: %lu
URL to retrieve public key: UncompressedUnknown operationUnknown signature type ‘%s’
Usage: gpg [options] [files] (-h for help)Usage: gpg-agent [options] (-h for help)Usage: gpg-check-pattern [options] patternfile (-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: Elgamal sign+encrypt keys are deprecated
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: You have entered an insecure passphrase.%%0AA passphrase may not be a known term or match%%0Acertain pattern.Warning: You have entered an insecure passphrase.%%0AA passphrase should be at least %u character long.Warning: You have entered an insecure passphrase.%%0AA passphrase should be at least %u characters long.Warning: You have entered an insecure passphrase.%%0AA passphrase should contain at least %u digit or%%0Aspecial character.Warning: You have entered an insecure passphrase.%%0AA passphrase should contain at least %u digits or%%0Aspecial characters.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 for the Authentication key? (%u) What keysize do you want for the Encryption key? (%u) What keysize do you want for the Signature key? (%u) What keysize do you want for the subkey? (%u) What keysize do you want? (%u) WrongYesYes, 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 may try to re-create the trustdb using the commands:
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 IDalgorithm: %sallow 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’
attr hash algorithm: %sautomatically retrieve keys when verifying signaturesautomatically retrieved ‘%s’ via %s
bad data hash algorithm: %sbad 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 agent - trying fall back
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
cleared passphrase cached with ID: %s
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
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 hash algorithm: %sdata 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
deny the use of admin card commandsdepth: %d  valid: %3d  signed: %3d  trust: %d-, %dq, %dn, %dm, %df, %du
detected card with S/N: %s
directory ‘%s’ created
dirmngr cache-only key lookup failed: %s
dirmngr protocol version %d is not supported
disable all access to the dirmngrdisable 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 changing size of key %d to %u bits: %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 nonce for the socket
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 nonce on fd %d: %s
error reading secret keyblock “%s”: %s
error reading the card: %s
error retrieving CHV status from card
error retrieving ‘%s’ via %s: %s
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 ‘%s’: %s
error writing key to card: %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 ‘%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 create temporary file ‘%s’: %s
failed to get the fingerprint
failed to initialize the TrustDB: %s
failed to open ‘%s’: %s
failed to proxy %s inquiry to client
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
failed to use default PIN as %s: %s - disabling further default use
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
get the configuration directories for gpgconfgpg-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
hash algorithm %d (%s) for signer %d not supported; using %s
hash algorithm used for signer %d: %s (%s)
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 displayignoring garbage lineimport 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 command (there is no implicit command)
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 signature: message digest attribute does not match computed one
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 global configuration filelist 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’
lock ‘%s’ not made: %s
looking up issuer at external location
looking up issuer from the Dirmngr cache
make a clear text signaturemake a detached signaturemake a 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 running gpg-agent - starting one
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
number of matching certificates: %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 coreout of core
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 againpinentry.qualitybar.tooltipplease 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 message digestsprint 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 exportremoving stale lockfile (created by %d)
renaming ‘%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%sresource problem: out of core
response 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 missingroot certificate not yet validrounded up to %u bits
run /subst on startuprun 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
seems to be not encryptedselect 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”
socket name ‘%s’ is too long
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
unblock the PIN using a Reset Codeuncompressed|noneundefinedunexpected armor: unknownunknown armor header: unknown 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
unspecifiedunsupported algorithm: %supdate 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 default PIN as %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 lock %s...
waiting for lock (held by %d%s) %s...
waiting 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 new key
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|A|Please enter the Admin PIN|A|Please enter the Admin PIN%%0A[remaining attempts: %d]|COMPONENT|change options|COMPONENT|check options|COMPONENT|list options|FD|write status info to this FD|FILE|add keyring to the list of keyrings|FILE|check new passphrases against pattern in FILE|FILE|read options from FILE|FILE|run commands from FILE on startup|FILE|take policy information from FILE|FILE|take the keys from the keyring FILE|FILE|write a log to FILE|FILE|write a server mode log to FILE|FILE|write an audit log to FILE|FILE|write environment settings also to FILE|FILE|write output to FILE|FILE|write server mode logs to FILE|LEVEL|set the debugging level to LEVEL|MECHANISMS|use MECHANISMS to locate keys by mail address|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|NP|Please enter a new PIN Unblocking Code (PUK) for the key to create qualified signatures.|NP|Please enter a new PIN Unblocking Code (PUK) for the standard keys.|N|Initial New PIN|N|New PIN|N|Please enter a new PIN for the key to create qualified signatures.|N|Please enter a new PIN for the standard keys.|N|connect to reader at port N|N|disconnect the card after N seconds of inactivity|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 compress level to N (0 disables)|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|P|Please enter the PIN Unblocking Code (PUK) for the key to create qualified signatures.|P|Please enter the PIN Unblocking Code (PUK) for the standard keys.|RN|New Reset Code|SPEC|set up email aliases|SPEC|use this keyserver to lookup keys|URL|use keyserver at URL|USER-ID|encrypt for USER-ID|USER-ID|use USER-ID as default secret key|USER-ID|use USER-ID to sign or decrypt|audit-log-result|Bad|audit-log-result|Error|audit-log-result|Good|audit-log-result|No certificate|audit-log-result|Not enabled|audit-log-result|Not supported|audit-log-result|Not used|audit-log-result|Okay|audit-log-result|Skipped|audit-log-result|Some||Please enter the PIN||Please enter the PIN for the key to create qualified signatures.||Please enter the PIN for the standard keys.||Please enter the PIN%%0A[sigs done: %lu]||Please enter the Reset Code for the card||Please enter your PIN at the reader's keypad