1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
|
# Traditional Chinese(zh-tw) messages for GnuPG
# Copyright (C) 2002 Free Software Foundation, Inc.
# This file is distributed under the same license as the PACKAGE package.
# Jedi Lin <[email protected]>, 2003, 2004, 2005, 2006, 2007, 2008.
#
# Special thanks to "Audrey Tang <[email protected]>".
#
msgid ""
msgstr ""
"Project-Id-Version: gnupg 1.4.18\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"PO-Revision-Date: 2014-11-21 23:17+0800\n"
"Last-Translator: Jedi Lin <[email protected]>\n"
"Language-Team: Chinese (traditional) <[email protected]>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Basepath: gnupg-1.4.18/\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 1.5.7\n"
#, c-format
msgid "can't gen prime with pbits=%u qbits=%u\n"
msgstr "無法以 %u 位元長的 p 及 %u 位元長的 q 產生質數\n"
#, c-format
msgid "can't generate a prime with less than %d bits\n"
msgstr "無法產生少於 %d 位元的質數\n"
msgid "no entropy gathering module detected\n"
msgstr "偵測不到亂數蒐集模組\n"
#, c-format
msgid "can't lock `%s': %s\n"
msgstr "無法鎖定 `%s': %s\n"
#, c-format
msgid "waiting for lock on `%s'...\n"
msgstr "正在等候 `%s' 鎖定...\n"
#, c-format
msgid "can't open `%s': %s\n"
msgstr "無法開啟 `%s': %s\n"
#, c-format
msgid "can't stat `%s': %s\n"
msgstr "無法取得檔案 `%s' 的資訊: %s\n"
#, c-format
msgid "`%s' is not a regular file - ignored\n"
msgstr "`%s' 不是一個標準的檔案 - 已略過\n"
msgid "note: random_seed file is empty\n"
msgstr "請注意: random_seed 檔案是空的\n"
msgid "WARNING: invalid size of random_seed file - not used\n"
msgstr "警告: random_seed 檔案大小無效 - 不予採用\n"
#, c-format
msgid "can't read `%s': %s\n"
msgstr "無法讀取 `%s': %s\n"
msgid "note: random_seed file not updated\n"
msgstr "請注意: random_seed 檔案未更新\n"
#, c-format
msgid "can't create `%s': %s\n"
msgstr "無法建立 `%s': %s\n"
#, c-format
msgid "can't write `%s': %s\n"
msgstr "無法寫入 `%s': %s\n"
#, c-format
msgid "can't close `%s': %s\n"
msgstr "無法關閉 `%s': %s\n"
msgid "WARNING: using insecure random number generator!!\n"
msgstr "警告: 正在使用不安全的隨機數字產生器!!\n"
msgid ""
"The random number generator is only a kludge to let\n"
"it run - it is in no way a strong RNG!\n"
"\n"
"DON'T USE ANY DATA GENERATED BY THIS PROGRAM!!\n"
"\n"
msgstr ""
"這個隨機數字產生器根本就是七拼八湊出來的鳥東西 -\n"
"它根本就不是強而有力的亂數產生器!\n"
"\n"
"*** 絕對不要把這個程式產生的任何資料拿來用!! ***\n"
"\n"
msgid ""
"Please wait, entropy is being gathered. Do some work if it would\n"
"keep you from getting bored, because it will improve the quality\n"
"of the entropy.\n"
msgstr ""
"請稍待片刻, 系統此時正在蒐集亂數. 如果你會覺得無聊的話,\n"
"不妨做些別的事, 這樣子甚至能夠讓亂數的品質更好.\n"
#, c-format
msgid ""
"\n"
"Not enough random bytes available. Please do some other work to give\n"
"the OS a chance to collect more entropy! (Need %d more bytes)\n"
msgstr ""
"\n"
"隨機位元組不夠多. 請多做一些有的沒的事情, \n"
"這樣作業系統纔能蒐集到更多的亂數! (還需要 %d 位元組)\n"
#, c-format
msgid "failed to store the fingerprint: %s\n"
msgstr "存放指紋失敗: %s\n"
#, c-format
msgid "failed to store the creation date: %s\n"
msgstr "存放創生日期失敗: %s\n"
#, c-format
msgid "reading public key failed: %s\n"
msgstr "讀取公鑰時失敗: %s\n"
msgid "response does not contain the public key data\n"
msgstr "回應中未包含公鑰資料\n"
msgid "response does not contain the RSA modulus\n"
msgstr "回應中未包含 RSA 系數\n"
msgid "response does not contain the RSA public exponent\n"
msgstr "回應中未包含 RSA 公用指數\n"
#, c-format
msgid "using default PIN as %s\n"
msgstr "正在使用 %s 為預設個人識別碼 (PIN)\n"
#, c-format
msgid "failed to use default PIN as %s: %s - disabling further default use\n"
msgstr "以 %s 做為預設個人識別碼 (PIN) 時失敗: %s - 正在停用接下來的預設用法\n"
#, c-format
msgid "||Please enter the PIN%%0A[sigs done: %lu]"
msgstr "||請輸入 PIN%%0A[簽署完成: %lu]"
msgid "||Please enter the PIN"
msgstr "||請輸入 PIN"
#, c-format
msgid "PIN callback returned error: %s\n"
msgstr "收回個人識別碼 (PIN) 時傳回錯誤: %s\n"
#, c-format
msgid "PIN for CHV%d is too short; minimum length is %d\n"
msgstr "用於 CHV%d 的個人識別碼 (PIN) 太短; 長度最少要有 %d\n"
#, c-format
msgid "verify CHV%d failed: %s\n"
msgstr "驗證 CHV%d 失敗: %s\n"
msgid "error retrieving CHV status from card\n"
msgstr "從卡片取回 CHV 狀態時出錯\n"
msgid "card is permanently locked!\n"
msgstr "卡片永久鎖定了!!\n"
#, c-format
msgid "%d Admin PIN attempts remaining before card is permanently locked\n"
msgstr "%d 管理者個人識別碼 (PIN) 試圖在卡片永久鎖定前遺留下來\n"
#. TRANSLATORS: Do not translate the "|A|" prefix but keep it at
#. the start of the string. Use %%0A to force a linefeed.
#, c-format
msgid "|A|Please enter the Admin PIN%%0A[remaining attempts: %d]"
msgstr "|A|請輸入管理者 PIN%%0A[剩餘嘗試次數: %d]"
msgid "|A|Please enter the Admin PIN"
msgstr "|A|請輸入管理者 PIN"
msgid "access to admin commands is not configured\n"
msgstr "管理者指令存取權限尚未組態\n"
msgid "Reset Code not or not anymore available\n"
msgstr "沒有重設碼或無法再用重設碼\n"
msgid "||Please enter the Reset Code for the card"
msgstr "||請輸入卡片重設碼"
#, c-format
msgid "Reset Code is too short; minimum length is %d\n"
msgstr "重設碼太短; 長度最少要有 %d\n"
#. TRANSLATORS: Do not translate the "|*|" prefixes but
#. keep it at the start of the string. We need this elsewhere
#. to get some infos on the string.
msgid "|RN|New Reset Code"
msgstr "|RN|新增重設碼"
msgid "|AN|New Admin PIN"
msgstr "|AN|新增管理者 PIN"
msgid "|N|New PIN"
msgstr "|N|新增 PIN"
#, c-format
msgid "error getting new PIN: %s\n"
msgstr "取得新的個人識別碼 (PIN) 時出錯: %s\n"
msgid "error reading application data\n"
msgstr "讀取應用程式資料時出錯\n"
msgid "error reading fingerprint DO\n"
msgstr "讀取指紋 DO 時出錯\n"
msgid "key already exists\n"
msgstr "金鑰已存在\n"
msgid "existing key will be replaced\n"
msgstr "既有的金鑰將被取代\n"
msgid "generating new key\n"
msgstr "正在產生新的金鑰\n"
msgid "writing new key\n"
msgstr "正在寫入新的金鑰\n"
msgid "creation timestamp missing\n"
msgstr "缺漏創生時間戳印\n"
#, c-format
msgid "RSA modulus missing or not of size %d bits\n"
msgstr "RSA 模組缺漏或者並非 %d 位元大\n"
#, c-format
msgid "RSA public exponent missing or larger than %d bits\n"
msgstr "RSA 公用指數缺漏或者大於 %d 位元\n"
#, c-format
msgid "RSA prime %s missing or not of size %d bits\n"
msgstr "RSA 質數 %s 缺漏或者並非 %d 位元大\n"
#, c-format
msgid "failed to store the key: %s\n"
msgstr "存放金鑰失敗: %s\n"
msgid "please wait while key is being generated ...\n"
msgstr "正在產生金鑰中, 請稍候 ...\n"
msgid "generating key failed\n"
msgstr "產生金鑰時失敗\n"
#, c-format
msgid "key generation completed (%d seconds)\n"
msgstr "金鑰產生完畢 (%d 秒)\n"
msgid "invalid structure of OpenPGP card (DO 0x93)\n"
msgstr "無效的 OpenPGP 卡片結構 (DO 0x93)\n"
msgid "fingerprint on card does not match requested one\n"
msgstr "卡片上的指紋與所要求的並不吻合\n"
#, c-format
msgid "card does not support digest algorithm %s\n"
msgstr "卡片不支援 %s 摘要演算法\n"
#, c-format
msgid "signatures created so far: %lu\n"
msgstr "目前建立的簽章: %lu\n"
msgid ""
"verification of Admin PIN is currently prohibited through this command\n"
msgstr "目前在此指令中的管理者個人識別碼 (PIN) 驗證被禁止了\n"
#, c-format
msgid "can't access %s - invalid OpenPGP card?\n"
msgstr "無法存取 %s - 無效的 OpenPGP 卡片?\n"
#, c-format
msgid "armor: %s\n"
msgstr "封裝: %s\n"
msgid "invalid armor header: "
msgstr "無效的封裝檔頭: "
msgid "armor header: "
msgstr "封裝檔頭: "
msgid "invalid clearsig header\n"
msgstr "無效的明文簽章檔頭\n"
msgid "unknown armor header: "
msgstr "未知的封裝檔頭: "
msgid "nested clear text signatures\n"
msgstr "多層明文簽章\n"
msgid "unexpected armor: "
msgstr "未預期的封裝: "
msgid "invalid dash escaped line: "
msgstr "無效的破折號逸出列: "
#, c-format
msgid "invalid radix64 character %02X skipped\n"
msgstr "無效的 64 進位字符 %02x 已跳過\n"
msgid "premature eof (no CRC)\n"
msgstr "檔案未預期的結束 (沒有 CRC 的部分)\n"
msgid "premature eof (in CRC)\n"
msgstr "檔案未預期的結束 (CRC 的部分未結束)\n"
msgid "malformed CRC\n"
msgstr "格式不對的 CRC\n"
#, c-format
msgid "CRC error; %06lX - %06lX\n"
msgstr "CRC 錯誤; %06lX - %06lX\n"
msgid "premature eof (in trailer)\n"
msgstr "檔案未預期的結束 (於結尾處)\n"
msgid "error in trailer line\n"
msgstr "結尾列有問題\n"
msgid "no valid OpenPGP data found.\n"
msgstr "找不到有效的 OpenPGP 資料.\n"
#, c-format
msgid "invalid armor: line longer than %d characters\n"
msgstr "無效的封裝: 列長超出 %d 字符\n"
msgid ""
"quoted printable character in armor - probably a buggy MTA has been used\n"
msgstr "封裝裡出現被引號括住的可列印字符 - 可能是有瑕疵的送信程式造成的\n"
#, c-format
msgid "OpenPGP card not available: %s\n"
msgstr "沒有可用的 OpenPGP 卡片: %s\n"
#, c-format
msgid "OpenPGP card no. %s detected\n"
msgstr "偵測到 OpenPGP 卡片編號 %s\n"
msgid "can't do this in batch mode\n"
msgstr "無法在批次模式中這樣做\n"
msgid "This command is only available for version 2 cards\n"
msgstr "這個指令僅能用於第二版卡片\n"
msgid "Your selection? "
msgstr "你要選哪一個? "
msgid "[not set]"
msgstr "[未設定]"
msgid "male"
msgstr "男性"
msgid "female"
msgstr "女性"
msgid "unspecified"
msgstr "未特定"
msgid "not forced"
msgstr "不強迫使用"
msgid "forced"
msgstr "強迫使用"
msgid "Error: Only plain ASCII is currently allowed.\n"
msgstr "錯誤: 目前祇允許使用單純的 ASCII 字符.\n"
msgid "Error: The \"<\" character may not be used.\n"
msgstr "錯誤: 不能使用 \"<\" 字符.\n"
msgid "Error: Double spaces are not allowed.\n"
msgstr "錯誤: 並不允許使用連續兩個以上的空格.\n"
msgid "Cardholder's surname: "
msgstr "卡片持有者的姓氏: "
msgid "Cardholder's given name: "
msgstr "卡片持有者的名字: "
#, c-format
msgid "Error: Combined name too long (limit is %d characters).\n"
msgstr "錯誤: 合併後的名字太長 (上限是 %d 個字符).\n"
msgid "URL to retrieve public key: "
msgstr "取回公鑰的 URL: "
#, c-format
msgid "Error: URL too long (limit is %d characters).\n"
msgstr "錯誤: URL 太長 (上限是 %d 個字符).\n"
#, c-format
msgid "error allocating enough memory: %s\n"
msgstr "分派足夠的記憶體時出錯: %s\n"
#, c-format
msgid "error reading `%s': %s\n"
msgstr "讀取 `%s' 時出錯: %s\n"
#, c-format
msgid "error writing `%s': %s\n"
msgstr "寫入 `%s' 時出錯: %s\n"
msgid "Login data (account name): "
msgstr "登入資料 (帳號名稱): "
#, c-format
msgid "Error: Login data too long (limit is %d characters).\n"
msgstr "錯誤: 登入資料太長 (上限是 %d 個字符).\n"
msgid "Private DO data: "
msgstr "私人的 DO 資料: "
#, c-format
msgid "Error: Private DO too long (limit is %d characters).\n"
msgstr "錯誤: 私人的 DO 太長 (上限是 %d 個字符).\n"
msgid "Language preferences: "
msgstr "介面語言偏好設定: "
msgid "Error: invalid length of preference string.\n"
msgstr "錯誤: 無效的偏好設定字串長度\n"
msgid "Error: invalid characters in preference string.\n"
msgstr "錯誤: 偏好設定字串中含有無效的字符\n"
msgid "Sex ((M)ale, (F)emale or space): "
msgstr "性別 ((M)男性, (F)女性或留空): "
msgid "Error: invalid response.\n"
msgstr "錯誤: 無效的回應.\n"
msgid "CA fingerprint: "
msgstr "憑證中心 (CA) 指紋: "
msgid "Error: invalid formatted fingerprint.\n"
msgstr "錯誤: 無效的格式化指紋.\n"
#, c-format
msgid "key operation not possible: %s\n"
msgstr "不可能進行金鑰操作: %s\n"
msgid "not an OpenPGP card"
msgstr "這不是 OpenPGP 卡片"
#, c-format
msgid "error getting current key info: %s\n"
msgstr "取得現用金鑰資訊時出錯: %s\n"
msgid "Replace existing key? (y/N) "
msgstr "是否要取代既有的金鑰? (y/N) "
msgid ""
"NOTE: There is no guarantee that the card supports the requested size.\n"
" If the key generation does not succeed, please check the\n"
" documentation of your card to see what sizes are allowed.\n"
msgstr ""
"請注意: 我們完全無法保證卡片支援你想用的尺寸.\n"
" 如果金鑰產生失敗了, 煩請查閱你卡片上的文件,\n"
" 看看這張卡片支援哪些尺寸.\n"
#, c-format
msgid "What keysize do you want for the Signature key? (%u) "
msgstr "你的簽署金鑰想要用多大的金鑰尺寸? (%u) "
#, c-format
msgid "What keysize do you want for the Encryption key? (%u) "
msgstr "你的加密金鑰想要用多大的金鑰尺寸? (%u) "
#, c-format
msgid "What keysize do you want for the Authentication key? (%u) "
msgstr "你的認證金鑰想要用多大的金鑰尺寸? (%u) "
#, c-format
msgid "rounded up to %u bits\n"
msgstr "加大到 %u 位元\n"
#, c-format
msgid "%s keysizes must be in the range %u-%u\n"
msgstr "%s 金鑰尺寸一定要介於 %u 到 %u 之間\n"
#, c-format
msgid "The card will now be re-configured to generate a key of %u bits\n"
msgstr "這張卡片將重新加以組態, 以便產生 %u 位元的金鑰\n"
#, c-format
msgid "error changing size of key %d to %u bits: %s\n"
msgstr "將 %d 金鑰尺寸變更為 %u 位元時出錯: %s\n"
msgid "Make off-card backup of encryption key? (Y/n) "
msgstr "是否要為加密用金鑰建立卡外備份? (Y/n) "
msgid "NOTE: keys are already stored on the card!\n"
msgstr "請注意: 金鑰已經存放在卡片上了!\n"
msgid "Replace existing keys? (y/N) "
msgstr "是否要取代既有的金鑰? (y/N) "
#, c-format
msgid ""
"Please note that the factory settings of the PINs are\n"
" PIN = `%s' Admin PIN = `%s'\n"
"You should change them using the command --change-pin\n"
msgstr ""
"請注意個人識別碼 (PIN) 的出廠設定值為\n"
" PIN = `%s' 管理者 (Admin) PIN = `%s'\n"
"你應該用 --change-pin 指令來加以變更\n"
msgid "Please select the type of key to generate:\n"
msgstr "請選擇你要產生的金鑰種類:\n"
msgid " (1) Signature key\n"
msgstr " (1) 簽署用金鑰\n"
msgid " (2) Encryption key\n"
msgstr " (2) 加密用金鑰\n"
msgid " (3) Authentication key\n"
msgstr " (3) 憑證用金鑰\n"
msgid "Invalid selection.\n"
msgstr "無效的選擇.\n"
msgid "Please select where to store the key:\n"
msgstr "請選擇要把金鑰存放在哪裡:\n"
msgid "unknown key protection algorithm\n"
msgstr "未知的金鑰保護演算法\n"
msgid "secret parts of key are not available\n"
msgstr "私鑰部分無法取用\n"
msgid "secret key already stored on a card\n"
msgstr "私鑰已經存放在卡片上了\n"
#, c-format
msgid "error writing key to card: %s\n"
msgstr "金鑰寫入卡片時出錯: %s\n"
msgid "quit this menu"
msgstr "離開這個選單"
msgid "show admin commands"
msgstr "顯示管理者指令"
msgid "show this help"
msgstr "顯示這份線上說明"
msgid "list all available data"
msgstr "列出所有可用的資料"
msgid "change card holder's name"
msgstr "變更卡片持有人的名字"
msgid "change URL to retrieve key"
msgstr "變更取回金鑰的 URL"
msgid "fetch the key specified in the card URL"
msgstr "從卡片 URL 取回指定的金鑰"
msgid "change the login name"
msgstr "變更登入名稱"
msgid "change the language preferences"
msgstr "變更介面語言偏好設定"
msgid "change card holder's sex"
msgstr "變更卡片持有者的性別"
msgid "change a CA fingerprint"
msgstr "變更某個憑證中心 (CA) 的指紋"
msgid "toggle the signature force PIN flag"
msgstr "切換簽章是否強制使用個人識別碼 (PIN) 的旗標"
msgid "generate new keys"
msgstr "產生新的金鑰"
msgid "menu to change or unblock the PIN"
msgstr "變更或解凍個人識別碼 (PIN) 的選單"
msgid "verify the PIN and list all data"
msgstr "驗證個人識別碼 (PIN) 並列出所有的資料"
msgid "unblock the PIN using a Reset Code"
msgstr "以重設碼來解開個人識別碼 (PIN) 鎖定狀態"
msgid "gpg/card> "
msgstr "gpg/卡片> "
msgid "Admin-only command\n"
msgstr "限管理者使用的指令\n"
msgid "Admin commands are allowed\n"
msgstr "允許使用管理者指令\n"
msgid "Admin commands are not allowed\n"
msgstr "未允許使用管理者指令\n"
msgid "Invalid command (try \"help\")\n"
msgstr "無效的指令 (試試看 \"help\")\n"
msgid "card reader not available\n"
msgstr "沒有讀卡機可用\n"
msgid "Please insert the card and hit return or enter 'c' to cancel: "
msgstr "請插入卡片並按下 [Enter], 或者輸入 'c' 取消: "
#, c-format
msgid "selecting openpgp failed: %s\n"
msgstr "挑選 openpgp 時失敗: %s\n"
#, c-format
msgid ""
"Please remove the current card and insert the one with serial number:\n"
" %.*s\n"
msgstr ""
"請移除現用中的卡片並插入下列序號的卡片:\n"
" %.*s\n"
msgid "Hit return when ready or enter 'c' to cancel: "
msgstr "準備好時請按下 [Enter], 或者輸入 'c' 取消: "
msgid "Enter New Admin PIN: "
msgstr "請輸入新的管理者個人識別碼 (PIN): "
msgid "Enter New PIN: "
msgstr "請輸入新的個人識別碼 (PIN): "
msgid "Enter Admin PIN: "
msgstr "請輸入管理者個人識別碼 (PIN): "
msgid "Enter PIN: "
msgstr "請輸入個人識別碼 (PIN): "
msgid "Repeat this PIN: "
msgstr "請再次輸入個人識別碼 (PIN): "
msgid "PIN not correctly repeated; try again"
msgstr "前後兩次輸入的個人識別碼 (PIN) 不一致; 請再試一次"
#, c-format
msgid "can't open `%s'\n"
msgstr "無法開啟 `%s'\n"
msgid "--output doesn't work for this command\n"
msgstr "--output 在這個指令中沒有作用\n"
#, c-format
msgid "key \"%s\" not found: %s\n"
msgstr "找不到金鑰 \"%s\": %s\n"
#, c-format
msgid "error reading keyblock: %s\n"
msgstr "讀取金鑰區塊時出錯: %s\n"
msgid "(unless you specify the key by fingerprint)\n"
msgstr "(除非你用指紋指定了金鑰)\n"
msgid "can't do this in batch mode without \"--yes\"\n"
msgstr "沒有 \"--yes\" 就沒辦法在批次模式中這麼做\n"
msgid "Delete this key from the keyring? (y/N) "
msgstr "要從鑰匙圈裡刪除這把金鑰嗎? (y/N) "
msgid "This is a secret key! - really delete? (y/N) "
msgstr "這是一把私鑰! - 真的要刪除嗎? (y/N) "
#, c-format
msgid "deleting keyblock failed: %s\n"
msgstr "刪除金鑰區塊時失敗: %s\n"
msgid "ownertrust information cleared\n"
msgstr "主觀信任資訊已清除\n"
#, c-format
msgid "there is a secret key for public key \"%s\"!\n"
msgstr "公鑰 \"%s\" 有相對應的私鑰!\n"
msgid "use option \"--delete-secret-keys\" to delete it first.\n"
msgstr "請先以 \"--delete-secret-keys\" 選項來刪除它.\n"
#, c-format
msgid "error creating passphrase: %s\n"
msgstr "建立密語時出錯: %s\n"
msgid "can't use a symmetric ESK packet due to the S2K mode\n"
msgstr "因處於 S2K 模式下而無法使用對稱式 ESK 封包\n"
#, c-format
msgid "using cipher %s\n"
msgstr "正在使用 %s 編密法\n"
#, c-format
msgid "`%s' already compressed\n"
msgstr "`%s' 已經被壓縮了\n"
#, c-format
msgid "WARNING: `%s' is an empty file\n"
msgstr "警告: `%s' 是個空檔案\n"
msgid "you can only encrypt to RSA keys of 2048 bits or less in --pgp2 mode\n"
msgstr "在 --pgp2 模式中, 你祇能以 2048 位元以下的 RSA 金鑰加密\n"
#, c-format
msgid "reading from `%s'\n"
msgstr "正在從 `%s' 讀取中\n"
msgid ""
"unable to use the IDEA cipher for all of the keys you are encrypting to.\n"
msgstr "你正要用來加密的所有金鑰都不能使用 IDEA 編密法.\n"
#, c-format
msgid ""
"WARNING: forcing symmetric cipher %s (%d) violates recipient preferences\n"
msgstr "警告: 強迫使用 %s (%d) 對稱式編密法會違反收件者偏好設定\n"
#, c-format
msgid ""
"WARNING: forcing compression algorithm %s (%d) violates recipient "
"preferences\n"
msgstr "警告: 強迫使用 %s (%d) 壓縮演算法會違反收件者偏好設定\n"
#, c-format
msgid "forcing symmetric cipher %s (%d) violates recipient preferences\n"
msgstr "強迫使用 %s (%d) 對稱式編密法會違反收件者偏好設定\n"
#, c-format
msgid "you may not use %s while in %s mode\n"
msgstr "你不能夠將 %s 用於 %s 模式中\n"
#, c-format
msgid "%s/%s encrypted for: \"%s\"\n"
msgstr "%s/%s 已加密給: \"%s\"\n"
#, c-format
msgid "%s encrypted data\n"
msgstr "%s 已加密的資料\n"
#, c-format
msgid "encrypted with unknown algorithm %d\n"
msgstr "以 %d 未知演算法所加密\n"
msgid ""
"WARNING: message was encrypted with a weak key in the symmetric cipher.\n"
msgstr "警告: 訊息已用對稱式編密法的弱金鑰加密了.\n"
msgid "problem handling encrypted packet\n"
msgstr "處理已加密封包有問題\n"
msgid "no remote program execution supported\n"
msgstr "沒有支援的遠端程式執行\n"
#, c-format
msgid "can't create directory `%s': %s\n"
msgstr "無法建立目錄 `%s': %s\n"
msgid ""
"external program calls are disabled due to unsafe options file permissions\n"
msgstr "因為不安全的檔案權限選項, 而禁用了外部程式叫用\n"
msgid "this platform requires temporary files when calling external programs\n"
msgstr "在這個作業平台上叫用外部程式時需要暫存檔\n"
#, c-format
msgid "unable to execute program `%s': %s\n"
msgstr "無法執行程式 `%s': %s\n"
#, c-format
msgid "unable to execute shell `%s': %s\n"
msgstr "無法執行 shell `%s': %s\n"
#, c-format
msgid "system error while calling external program: %s\n"
msgstr "叫用外部程式時發生系統錯誤: %s\n"
msgid "unnatural exit of external program\n"
msgstr "外部程式不自然地離開\n"
msgid "unable to execute external program\n"
msgstr "無法執行外部程式\n"
#, c-format
msgid "unable to read external program response: %s\n"
msgstr "無法讀取外部程式回應: %s\n"
#, c-format
msgid "WARNING: unable to remove tempfile (%s) `%s': %s\n"
msgstr "警告: 無法移除暫存檔 (%s) `%s': %s\n"
#, c-format
msgid "WARNING: unable to remove temp directory `%s': %s\n"
msgstr "警告: 無法移除暫存目錄 `%s': %s\n"
msgid "export signatures that are marked as local-only"
msgstr "匯出標記為僅限本機使用的簽章"
msgid "export attribute user IDs (generally photo IDs)"
msgstr "匯出署名使用者 ID (通常是照片 ID)"
msgid "export revocation keys marked as \"sensitive\""
msgstr "匯出標記為 \"機密\" 的撤銷金鑰"
msgid "remove the passphrase from exported subkeys"
msgstr "從匯出所得的子鑰中移除密語"
msgid "remove unusable parts from key during export"
msgstr "匯出時從金鑰中移除無法使用的部分"
msgid "remove as much as possible from key during export"
msgstr "匯出時盡可能地從金鑰中移除"
msgid "exporting secret keys not allowed\n"
msgstr "不允許匯出私鑰\n"
#, c-format
msgid "key %s: not protected - skipped\n"
msgstr "金鑰 %s: 未受保護 - 已跳過\n"
#, c-format
msgid "key %s: PGP 2.x style key - skipped\n"
msgstr "金鑰 %s: PGP 2.x 型態的金鑰 - 已跳過\n"
#, c-format
msgid "key %s: key material on-card - skipped\n"
msgstr "金鑰 %s: 金鑰資料在卡片上 - 已跳過\n"
msgid "about to export an unprotected subkey\n"
msgstr "正要匯出未受保護的子鑰\n"
#, c-format
msgid "failed to unprotect the subkey: %s\n"
msgstr "解除子鑰保護失敗: %s\n"
# I hope this warning doesn't confuse people.
#, c-format
msgid "WARNING: secret key %s does not have a simple SK checksum\n"
msgstr "警告: 私鑰 %s 並沒有任的何單一 SK 加總檢查\n"
msgid "WARNING: nothing exported\n"
msgstr "警告: 沒有匯出任何東西\n"
msgid ""
"@Commands:\n"
" "
msgstr ""
"@指令:\n"
" "
msgid "|[file]|make a signature"
msgstr "|[檔案]|建立簽章"
msgid "|[file]|make a clear text signature"
msgstr "|[檔案]|建立明文簽章"
msgid "make a detached signature"
msgstr "建立分離式簽章"
msgid "encrypt data"
msgstr "加密資料"
msgid "encryption only with symmetric cipher"
msgstr "僅使用對稱式編密法來加密"
msgid "decrypt data (default)"
msgstr "資料解密 (預設)"
msgid "verify a signature"
msgstr "驗證簽章"
msgid "list keys"
msgstr "列出金鑰"
msgid "list keys and signatures"
msgstr "列出金鑰和簽章"
msgid "list and check key signatures"
msgstr "列出並檢查金鑰簽章"
msgid "list keys and fingerprints"
msgstr "列出金鑰和指紋"
msgid "list secret keys"
msgstr "列出私鑰"
msgid "generate a new key pair"
msgstr "產生新的金鑰對"
msgid "remove keys from the public keyring"
msgstr "從公鑰鑰匙圈裡移除金鑰"
msgid "remove keys from the secret keyring"
msgstr "從私鑰鑰匙圈裡移除金鑰"
msgid "sign a key"
msgstr "簽署金鑰"
msgid "sign a key locally"
msgstr "僅在本機簽署金鑰"
msgid "sign or edit a key"
msgstr "簽署或編輯金鑰"
msgid "generate a revocation certificate"
msgstr "產生撤銷憑證"
msgid "export keys"
msgstr "匯出金鑰"
msgid "export keys to a key server"
msgstr "把金鑰匯出至金鑰伺服器"
msgid "import keys from a key server"
msgstr "從金鑰伺服器匯入金鑰"
msgid "search for keys on a key server"
msgstr "在金鑰伺服器上搜尋金鑰"
msgid "update all keys from a keyserver"
msgstr "從金鑰伺服器更新所有的金鑰"
msgid "import/merge keys"
msgstr "匯入/合併金鑰"
msgid "print the card status"
msgstr "列印卡片狀態"
msgid "change data on a card"
msgstr "變更卡片上的資料"
msgid "change a card's PIN"
msgstr "變更卡片的個人識別碼 (PIN)"
msgid "update the trust database"
msgstr "更新信任資料庫"
msgid "|algo [files]|print message digests"
msgstr "|演算法 [檔案]|印出訊息摘要"
msgid ""
"@\n"
"Options:\n"
" "
msgstr ""
"@\n"
"選項:\n"
" "
msgid "create ascii armored output"
msgstr "建立以 ASCII 封裝過的輸出"
msgid "|NAME|encrypt for NAME"
msgstr "|名字|以指定名字作為加密對象"
msgid "use this user-id to sign or decrypt"
msgstr "拿這個使用者 ID 來簽署或解密"
msgid "|N|set compress level N (0 disables)"
msgstr "|N|設定壓縮等級為 N (0 表示不壓縮)"
msgid "use canonical text mode"
msgstr "使用標準的文字模式"
msgid "use as output file"
msgstr "當作輸出檔案來使用"
msgid "verbose"
msgstr "囉唆模式"
msgid "do not make any changes"
msgstr "不要做任何改變"
msgid "prompt before overwriting"
msgstr "覆寫前先詢問"
msgid "use strict OpenPGP behavior"
msgstr "使用嚴謹的 OpenPGP 行為"
msgid "generate PGP 2.x compatible messages"
msgstr "產生 PGP 2.x 相容性訊息"
msgid ""
"@\n"
"(See the man page for a complete listing of all commands and options)\n"
msgstr ""
"@\n"
"(請參照線上說明頁面來取得所有命令和選項的完整清單)\n"
msgid ""
"@\n"
"Examples:\n"
"\n"
" -se -r Bob [file] sign and encrypt for user Bob\n"
" --clearsign [file] make a clear text signature\n"
" --detach-sign [file] make a detached signature\n"
" --list-keys [names] show keys\n"
" --fingerprint [names] show fingerprints\n"
msgstr ""
"@\n"
"範例:\n"
"\n"
" -se -r Bob [檔案] 對 Bob 這個使用者簽署及加密\n"
" --clearsign [檔案] 做出明文簽章\n"
" --detach-sign [檔案] 做出分離式簽章\n"
" --list-keys [名字] 顯示金鑰\n"
" --fingerprint [名字] 顯示指紋\n"
msgid "Please report bugs to <[email protected]>.\n"
msgstr ""
"請向 <[email protected]> 回報程式瑕疵, 向 <[email protected]> 回報翻譯瑕疵.\n"
msgid "Usage: gpg [options] [files] (-h for help)"
msgstr "用法: gpg [選項] [檔案] (或用 -h 求助)"
msgid ""
"Syntax: gpg [options] [files]\n"
"Sign, check, encrypt or decrypt\n"
"Default operation depends on the input data\n"
msgstr ""
"語法: gpg [選項] [檔案]\n"
"簽署, 檢查, 加密, 解密\n"
"預設的操作會依輸入資料而定\n"
msgid ""
"\n"
"Supported algorithms:\n"
msgstr ""
"\n"
"已支援的演算法:\n"
msgid "Pubkey: "
msgstr "公鑰: "
msgid "Cipher: "
msgstr "編密法: "
msgid "Hash: "
msgstr "雜湊: "
msgid "Compression: "
msgstr "壓縮: "
msgid "usage: gpg [options] "
msgstr "用法: gpg [選項] "
msgid "conflicting commands\n"
msgstr "指令彼此矛盾\n"
#, c-format
msgid "no = sign found in group definition `%s'\n"
msgstr "在群組定義 `%s' 裡找不到 = 記號\n"
#, c-format
msgid "WARNING: unsafe ownership on homedir `%s'\n"
msgstr "警告: 家目錄 `%s' 的所有權並不安全\n"
#, c-format
msgid "WARNING: unsafe ownership on configuration file `%s'\n"
msgstr "警告: 組態檔案 `%s' 的所有權並不安全\n"
#, c-format
msgid "WARNING: unsafe permissions on homedir `%s'\n"
msgstr "警告: 家目錄 `%s' 的權限並不安全\n"
#, c-format
msgid "WARNING: unsafe permissions on configuration file `%s'\n"
msgstr "警告: 組態檔案 `%s' 的權限並不安全\n"
#, c-format
msgid "WARNING: unsafe enclosing directory ownership on homedir `%s'\n"
msgstr "警告: 家目錄 `%s' 的封入目錄所有權並不安全\n"
#, c-format
msgid ""
"WARNING: unsafe enclosing directory ownership on configuration file `%s'\n"
msgstr "警告: 組態檔案 `%s' 的封入目錄所有權並不安全\n"
#, c-format
msgid "WARNING: unsafe enclosing directory permissions on homedir `%s'\n"
msgstr "警告: 家目錄 `%s' 的封入目錄權限並不安全\n"
#, c-format
msgid ""
"WARNING: unsafe enclosing directory permissions on configuration file `%s'\n"
msgstr "警告: 組態檔案 `%s' 的封入目錄權限並不安全\n"
#, c-format
msgid "unknown configuration item `%s'\n"
msgstr "未知的組態項目 `%s'\n"
msgid "display photo IDs during key listings"
msgstr "列出金鑰時顯示照片 ID"
msgid "show policy URLs during signature listings"
msgstr "列出簽章時顯示原則 URL"
msgid "show all notations during signature listings"
msgstr "列出簽章時顯示所有的註記"
msgid "show IETF standard notations during signature listings"
msgstr "列出簽章時顯示 IETF 標準註記"
msgid "show user-supplied notations during signature listings"
msgstr "列出簽章時顯示使用者提供的註記"
msgid "show preferred keyserver URLs during signature listings"
msgstr "列出簽章時顯示偏好的金鑰伺服器 URL"
msgid "show user ID validity during key listings"
msgstr "列出金鑰時顯示使用者 ID 有效性"
msgid "show revoked and expired user IDs in key listings"
msgstr "列出金鑰時顯示已撤銷或過期的使用者 ID"
msgid "show revoked and expired subkeys in key listings"
msgstr "列出金鑰時顯示已撤銷或過期的子鑰"
msgid "show the keyring name in key listings"
msgstr "在金鑰清單中顯示鑰匙圈名稱"
msgid "show expiration dates during signature listings"
msgstr "列出簽章時顯示有效期限"
#, c-format
msgid "NOTE: old default options file `%s' ignored\n"
msgstr "請注意: 已忽略舊有的預設選項檔 `%s'\n"
#, c-format
msgid "NOTE: no default option file `%s'\n"
msgstr "請注意: 沒有預設選項檔 `%s'\n"
#, c-format
msgid "option file `%s': %s\n"
msgstr "選項檔 `%s': %s\n"
#, c-format
msgid "reading options from `%s'\n"
msgstr "從 `%s' 讀取選項中\n"
#, c-format
msgid "NOTE: %s is not for normal use!\n"
msgstr "請注意: 一般情況下不會用到 %s!\n"
#, c-format
msgid "`%s' is not a valid signature expiration\n"
msgstr "`%s' 不是個有效的簽章使用期限\n"
#, c-format
msgid "`%s' is not a valid character set\n"
msgstr "`%s' 不是個有效的字元集\n"
msgid "could not parse keyserver URL\n"
msgstr "無法剖析金鑰伺服器 URL\n"
#, c-format
msgid "%s:%d: invalid keyserver options\n"
msgstr "%s:%d: 無效的金鑰伺服器選項\n"
msgid "invalid keyserver options\n"
msgstr "無效的金鑰伺服器選項\n"
#, c-format
msgid "%s:%d: invalid import options\n"
msgstr "%s:%d: 無效的匯入選項\n"
msgid "invalid import options\n"
msgstr "無效的匯入選項\n"
#, c-format
msgid "%s:%d: invalid export options\n"
msgstr "%s:%d: 無效的匯出選項\n"
msgid "invalid export options\n"
msgstr "無效的匯出選項\n"
#, c-format
msgid "%s:%d: invalid list options\n"
msgstr "%s:%d: 無效的清單選項\n"
msgid "invalid list options\n"
msgstr "無效的清單選項\n"
msgid "display photo IDs during signature verification"
msgstr "驗證簽章時顯示照片 ID"
msgid "show policy URLs during signature verification"
msgstr "驗證簽章時顯示原則 URL"
msgid "show all notations during signature verification"
msgstr "驗證簽章時顯示所有的註記"
msgid "show IETF standard notations during signature verification"
msgstr "驗證簽章時顯示 IETF 標準註記"
msgid "show user-supplied notations during signature verification"
msgstr "驗證簽章時顯示使用者提供的註記"
msgid "show preferred keyserver URLs during signature verification"
msgstr "驗證簽章時顯示偏好的金鑰伺服器 URL"
msgid "show user ID validity during signature verification"
msgstr "驗證簽章時顯示使用者 ID 有效性"
msgid "show revoked and expired user IDs in signature verification"
msgstr "驗證簽章時顯示已撤銷或過期的使用者 ID"
msgid "show only the primary user ID in signature verification"
msgstr "驗證簽章時祇顯示主要的使用者 ID"
msgid "validate signatures with PKA data"
msgstr "以 PKA 資料驗證簽章"
msgid "elevate the trust of signatures with valid PKA data"
msgstr "提高對持有有效 PKA 資料之簽章的信任"
#, c-format
msgid "%s:%d: invalid verify options\n"
msgstr "%s:%d: 無效的驗證選項\n"
msgid "invalid verify options\n"
msgstr "無效的驗證選項\n"
#, c-format
msgid "unable to set exec-path to %s\n"
msgstr "無法把執行檔路徑設成 %s\n"
#, c-format
msgid "%s:%d: invalid auto-key-locate list\n"
msgstr "%s:%d: 無效的自動金鑰定址清單\n"
msgid "invalid auto-key-locate list\n"
msgstr "無效的自動金鑰定址清單\n"
msgid "WARNING: program may create a core file!\n"
msgstr "警告: 程式可能會傾印出核心檔!\n"
#, c-format
msgid "WARNING: %s overrides %s\n"
msgstr "警告: %s 會推翻 %s\n"
#, c-format
msgid "%s not allowed with %s!\n"
msgstr "%s 不允許跟 %s 併用!\n"
#, c-format
msgid "%s makes no sense with %s!\n"
msgstr "%s 跟 %s 放在一起沒有意義!\n"
#, c-format
msgid "NOTE: %s is not available in this version\n"
msgstr "請注意: %s 在本版中無法使用\n"
#, c-format
msgid "will not run with insecure memory due to %s\n"
msgstr "因為 %s 而不會在不安全的記憶體中執行\n"
msgid "you can only make detached or clear signatures while in --pgp2 mode\n"
msgstr "你祇有在 --pgp2 模式下纔能做出分離式或明文簽章\n"
msgid "you can't sign and encrypt at the same time while in --pgp2 mode\n"
msgstr "你在 --pgp2 模式下時, 不能同時簽署和加密\n"
msgid "you must use files (and not a pipe) when working with --pgp2 enabled.\n"
msgstr "啟用 --pgp2 時你祇應該使用檔案, 而非管道\n"
msgid "encrypting a message in --pgp2 mode requires the IDEA cipher\n"
msgstr "在 --pgp2 模式下加密訊息需要 IDEA 編密法\n"
msgid "selected cipher algorithm is invalid\n"
msgstr "所選的編密演算法無效\n"
msgid "selected digest algorithm is invalid\n"
msgstr "所選的摘要演算法無效\n"
msgid "selected compression algorithm is invalid\n"
msgstr "所選的壓縮演算法無效\n"
msgid "selected certification digest algorithm is invalid\n"
msgstr "所選的憑證摘要演算法無效\n"
msgid "completes-needed must be greater than 0\n"
msgstr "completes-needed 一定要大於 0\n"
msgid "marginals-needed must be greater than 1\n"
msgstr "marginals-needed 一定要大於 1\n"
msgid "max-cert-depth must be in the range from 1 to 255\n"
msgstr "max-cert-depth 一定要介於 1 和 255 之間\n"
msgid "invalid default-cert-level; must be 0, 1, 2, or 3\n"
msgstr "無效的 default-cert-level; 一定要是 0, 1, 2 或 3\n"
msgid "invalid min-cert-level; must be 1, 2, or 3\n"
msgstr "無效的 min-cert-level; 一定要是 1, 2 或 3\n"
msgid "NOTE: simple S2K mode (0) is strongly discouraged\n"
msgstr "請注意: 強烈不建議使用單純的 S2K 模式 (0)\n"
msgid "invalid S2K mode; must be 0, 1 or 3\n"
msgstr "無效的 S2K 模式; 一定要是 0, 1 或 3\n"
msgid "invalid default preferences\n"
msgstr "無效的預設偏好\n"
msgid "invalid personal cipher preferences\n"
msgstr "無效的個人編密法偏好\n"
msgid "invalid personal digest preferences\n"
msgstr "無效的個人摘要偏好\n"
msgid "invalid personal compress preferences\n"
msgstr "無效的個人壓縮偏好\n"
#, c-format
msgid "%s does not yet work with %s\n"
msgstr "%s 還沒辦法跟 %s 一起運作\n"
#, c-format
msgid "you may not use cipher algorithm `%s' while in %s mode\n"
msgstr "你不該將 `%s' 編密演算法用於 %s 模式中\n"
#, c-format
msgid "you may not use digest algorithm `%s' while in %s mode\n"
msgstr "你不該將 `%s' 摘要演算法用於 %s 模式中\n"
#, c-format
msgid "you may not use compression algorithm `%s' while in %s mode\n"
msgstr "你不該將 `%s' 壓縮演算法用於 %s 模式中\n"
#, c-format
msgid "failed to initialize the TrustDB: %s\n"
msgstr "信任資料庫啟始失敗: %s\n"
msgid "WARNING: recipients (-r) given without using public key encryption\n"
msgstr "警告: 給定的收件者 (-r) 未使用公鑰加密\n"
msgid "--store [filename]"
msgstr "--store [檔名]"
msgid "--symmetric [filename]"
msgstr "--symmetric [檔名]"
#, c-format
msgid "symmetric encryption of `%s' failed: %s\n"
msgstr "`%s' 對稱式加密失敗: %s\n"
msgid "--encrypt [filename]"
msgstr "--encrypt [檔名]"
msgid "--symmetric --encrypt [filename]"
msgstr "--symmetric --encrypt [檔名]"
msgid "you cannot use --symmetric --encrypt with --s2k-mode 0\n"
msgstr "你不能在 --s2k-mode 0 中使用 --symmetric --encrypt\n"
#, c-format
msgid "you cannot use --symmetric --encrypt while in %s mode\n"
msgstr "你不能在 %s 模式中使用 --symmetric --encrypt\n"
msgid "--sign [filename]"
msgstr "--sign [檔名]"
msgid "--sign --encrypt [filename]"
msgstr "--sign --encrypt [檔名]"
msgid "--symmetric --sign --encrypt [filename]"
msgstr "--symmetric --sign --encrypt [檔名]"
msgid "you cannot use --symmetric --sign --encrypt with --s2k-mode 0\n"
msgstr "你不能在 --s2k-mode 0 中使用 --symmetric --sign --encrypt\n"
#, c-format
msgid "you cannot use --symmetric --sign --encrypt while in %s mode\n"
msgstr "你不能在 %s 模式中使用 --symmetric --sign --encrypt\n"
msgid "--sign --symmetric [filename]"
msgstr "--sign --symmetric [檔名]"
msgid "--clearsign [filename]"
msgstr "--clearsign [檔名]"
msgid "--decrypt [filename]"
msgstr "--decrypt [檔名]"
msgid "--sign-key user-id"
msgstr "--sign-key 使用者ID"
msgid "--lsign-key user-id"
msgstr "--lsign-key 使用者ID"
msgid "--edit-key user-id [commands]"
msgstr "--edit-key 使用者ID [指令]"
msgid "-k[v][v][v][c] [user-id] [keyring]"
msgstr "-k[v][v][v][c] [使用者ID] [鑰匙圈]"
#, c-format
msgid "keyserver send failed: %s\n"
msgstr "送至金鑰伺服器失敗: %s\n"
#, c-format
msgid "keyserver receive failed: %s\n"
msgstr "從金鑰伺服器接收失敗: %s\n"
#, c-format
msgid "key export failed: %s\n"
msgstr "金鑰匯出失敗: %s\n"
#, c-format
msgid "keyserver search failed: %s\n"
msgstr "用金鑰伺服器搜尋失敗: %s\n"
#, c-format
msgid "keyserver refresh failed: %s\n"
msgstr "從金鑰伺服器更新失敗: %s\n"
#, c-format
msgid "dearmoring failed: %s\n"
msgstr "解開封裝失敗: %s\n"
#, c-format
msgid "enarmoring failed: %s\n"
msgstr "進行封裝失敗: %s\n"
#, c-format
msgid "invalid hash algorithm `%s'\n"
msgstr "無效的 `%s' 雜湊演算法\n"
msgid "[filename]"
msgstr "[檔名]"
msgid "Go ahead and type your message ...\n"
msgstr "請開始輸入你的訊息 ...\n"
msgid "the given certification policy URL is invalid\n"
msgstr "給定的的憑證原則 URL 無效\n"
msgid "the given signature policy URL is invalid\n"
msgstr "給定的簽章原則 URL 無效\n"
msgid "the given preferred keyserver URL is invalid\n"
msgstr "給定的偏好金鑰伺服器 URL 無效\n"
msgid "too many entries in pk cache - disabled\n"
msgstr "pk 快取裡有太多項目 - 已禁用\n"
msgid "[User ID not found]"
msgstr "[找不到使用者 ID]"
#, c-format
msgid "key %s: secret key without public key - skipped\n"
msgstr "金鑰 %s: 祇有私鑰而沒有公鑰 - 已跳過\n"
#, c-format
msgid "automatically retrieved `%s' via %s\n"
msgstr "已自動取回 `%s' (經由 %s )\n"
#, c-format
msgid "Invalid key %s made valid by --allow-non-selfsigned-uid\n"
msgstr "無效的金鑰 %s 可以藉由 --allow-non-selfsigned-uid 而生效\n"
#, c-format
msgid "no secret subkey for public subkey %s - ignoring\n"
msgstr "公鑰 %s 沒有相對應的私鑰 - 正在忽略\n"
#, c-format
msgid "using subkey %s instead of primary key %s\n"
msgstr "使用子鑰 %s 來替換主鑰 %s\n"
msgid "be somewhat more quiet"
msgstr "盡量安靜些"
msgid "take the keys from this keyring"
msgstr "從這個鑰匙圈裡取用金鑰"
msgid "make timestamp conflicts only a warning"
msgstr "僅把時間戳印矛盾視為警告"
msgid "|FD|write status info to this FD"
msgstr "|檔案描述|把狀態資訊寫入此檔案描述"
msgid "Usage: gpgv [options] [files] (-h for help)"
msgstr "用法: gpgv [選項] [檔案] (或用 -h 求助)"
msgid ""
"Syntax: gpgv [options] [files]\n"
"Check signatures against known trusted keys\n"
msgstr ""
"語法: gpgv [選項] [檔案]\n"
"用已知的受信任金鑰來檢查簽章\n"
msgid ""
"It's up to you to assign a value here; this value will never be exported\n"
"to any 3rd party. We need it to implement the web-of-trust; it has nothing\n"
"to do with the (implicitly created) web-of-certificates."
msgstr ""
"在這裡指派的數值完全是看你自己決定; 這些數值永遠不會匯出給其他人.\n"
"我們需要它來實施信任網絡; 這跟 (自動建立起的) 憑證網絡一點關係也沒有."
msgid ""
"To build the Web-of-Trust, GnuPG needs to know which keys are\n"
"ultimately trusted - those are usually the keys for which you have\n"
"access to the secret key. Answer \"yes\" to set this key to\n"
"ultimately trusted\n"
msgstr ""
"要建立起信任網絡, GnuPG 需要知道哪些金鑰是被徹底信任的 -\n"
"那些金鑰通常就是你有辦法存取到私鑰的. 回答 \"yes\" 來將這些\n"
"金鑰設成徹底信任\n"
msgid "If you want to use this untrusted key anyway, answer \"yes\"."
msgstr "如果你無論如何都想要用這把未被信任的金鑰, 請回答 \"yes\"."
msgid ""
"Enter the user ID of the addressee to whom you want to send the message."
msgstr "輸入你要遞送的訊息接收者的使用者 ID."
msgid ""
"Select the algorithm to use.\n"
"\n"
"DSA (aka DSS) is the Digital Signature Algorithm and can only be used\n"
"for signatures.\n"
"\n"
"Elgamal is an encrypt-only algorithm.\n"
"\n"
"RSA may be used for signatures or encryption.\n"
"\n"
"The first (primary) key must always be a key which is capable of signing."
msgstr ""
"請選擇要使用的演算法.\n"
"\n"
"DSA (亦即 DSS) 是數位簽章演算法 (Digital Signature Algorithm),\n"
"祇能用於簽署.\n"
"\n"
"Elgamal 是祇能用於加密的演算法.\n"
"\n"
"RSA 可以被用來簽署及加密.\n"
"\n"
"第一把 (主要的) 金鑰一定要含有能用於簽署的金鑰."
msgid ""
"In general it is not a good idea to use the same key for signing and\n"
"encryption. This algorithm should only be used in certain domains.\n"
"Please consult your security expert first."
msgstr ""
"通常來說用同一把金鑰簽署及加密並不是個好主意.\n"
"這個演算法應該祇被用於特定的情況下.\n"
"請先聯絡你的安全專家."
msgid "Enter the size of the key"
msgstr "請輸入金鑰尺寸"
msgid "Answer \"yes\" or \"no\""
msgstr "請回答 \"yes\" 或 \"no\""
msgid ""
"Enter the required value as shown in the prompt.\n"
"It is possible to enter a ISO date (YYYY-MM-DD) but you won't\n"
"get a good error response - instead the system tries to interpret\n"
"the given value as an interval."
msgstr ""
"請輸入提示裡所要求的數值.\n"
"你可以輸入 ISO 日期格式 (YYYY-MM-DD), 但是不會得到良好的錯誤回應 -\n"
"反之, 系統會試著把給定的數值中斷成若干片段."
msgid "Enter the name of the key holder"
msgstr "請輸入金鑰持有人的名字"
msgid "please enter an optional but highly suggested email address"
msgstr "請輸入選用 (但強烈建議使用) 的電子郵件位址"
msgid "Please enter an optional comment"
msgstr "請輸入選用的註釋"
msgid ""
"N to change the name.\n"
"C to change the comment.\n"
"E to change the email address.\n"
"O to continue with key generation.\n"
"Q to quit the key generation."
msgstr ""
"N 修改姓名.\n"
"C 修改註釋.\n"
"E 修改電子郵件位址.\n"
"O 繼續產生金鑰.\n"
"Q 中止產生金鑰."
msgid "Answer \"yes\" (or just \"y\") if it is okay to generate the sub key."
msgstr "如果你覺得可以產生子鑰的話, 就回答 \"yes\" (或者祇 \"y\" 就好)."
msgid ""
"When you sign a user ID on a key, you should first verify that the key\n"
"belongs to the person named in the user ID. It is useful for others to\n"
"know how carefully you verified this.\n"
"\n"
"\"0\" means you make no particular claim as to how carefully you verified "
"the\n"
" key.\n"
"\n"
"\"1\" means you believe the key is owned by the person who claims to own it\n"
" but you could not, or did not verify the key at all. This is useful "
"for\n"
" a \"persona\" verification, where you sign the key of a pseudonymous "
"user.\n"
"\n"
"\"2\" means you did casual verification of the key. For example, this "
"could\n"
" mean that you verified the key fingerprint and checked the user ID on "
"the\n"
" key against a photo ID.\n"
"\n"
"\"3\" means you did extensive verification of the key. For example, this "
"could\n"
" mean that you verified the key fingerprint with the owner of the key in\n"
" person, and that you checked, by means of a hard to forge document with "
"a\n"
" photo ID (such as a passport) that the name of the key owner matches "
"the\n"
" name in the user ID on the key, and finally that you verified (by "
"exchange\n"
" of email) that the email address on the key belongs to the key owner.\n"
"\n"
"Note that the examples given above for levels 2 and 3 are *only* examples.\n"
"In the end, it is up to you to decide just what \"casual\" and \"extensive"
"\"\n"
"mean to you when you sign other keys.\n"
"\n"
"If you don't know what the right answer is, answer \"0\"."
msgstr ""
"當你要在金鑰上簽署使用者 ID 時, 你首先必須先驗證那把金鑰\n"
"確實屬於那個使用者 ID 上叫那個名字的人. 這對那些知道你多\n"
"小心驗證的人來說很有用.\n"
"\n"
"\"0\" 表示你不能提出任何特別的主張來表明\n"
" 你多仔細驗證那把金鑰\n"
"\n"
"\"1\" 表示你相信這把金鑰屬於那個主張是主人的人,\n"
" 但是你不能或沒有驗證那把金鑰.\n"
" 這對那些祇想要 \"個人的\" 驗證的人來說很有用,\n"
" 因為你簽署了一把擬似匿名使用者的金鑰.\n"
"\n"
"\"2\" 表示你真的仔細驗證了那把金鑰.\n"
" 例如說, 這能表示你驗證了這把金鑰的指紋和\n"
" 使用者 ID, 並比對了照片 ID.\n"
"\n"
"\"3\" 表示你真的做了大規模的驗證金鑰工作.\n"
" 例如說, 這能表示你向金鑰持有人驗證了金鑰指紋,\n"
" 而且你透過附帶照片而難以偽造的文件 (像是護照)\n"
" 確認了金鑰持有人的姓名與金鑰上使用者 ID 的一致,\n"
" 最後你還 (透過電子郵件往來) 驗證了金鑰上的\n"
" 電子郵件位址確實屬於金鑰持有人.\n"
"\n"
"請注意上述關於等級 2 和 3 的例子 \"祇是\" 例子而已.\n"
"最後, 還是得由你自己決定當你簽署其他金鑰時,\n"
"甚麼是 \"漫不經心\", 而甚麼是 \"超級謹慎\".\n"
"\n"
"如果你不知道應該選甚麼答案的話, 就選 \"0\"."
msgid "Answer \"yes\" if you want to sign ALL the user IDs"
msgstr "如果你想要簽署 *所有* 使用者 ID 的話就回答 \"yes\""
msgid ""
"Answer \"yes\" if you really want to delete this user ID.\n"
"All certificates are then also lost!"
msgstr ""
"如果你真的想要刪除這個使用者 ID 的話就回答 \"yes\".\n"
"所有的憑證在那之後也都會失去!"
msgid "Answer \"yes\" if it is okay to delete the subkey"
msgstr "如果可以刪除這把子鑰的話就回答 \"yes\""
msgid ""
"This is a valid signature on the key; you normally don't want\n"
"to delete this signature because it may be important to establish a\n"
"trust connection to the key or another key certified by this key."
msgstr ""
"這是一份在這把金鑰上的有效簽章; 通常你不會想要刪除這份簽章,\n"
"因為要跟這把金鑰或其他由這把金鑰所驗證的金鑰建立起信任連結\n"
"時, 會相當重要."
msgid ""
"This signature can't be checked because you don't have the\n"
"corresponding key. You should postpone its deletion until you\n"
"know which key was used because this signing key might establish\n"
"a trust connection through another already certified key."
msgstr ""
"這份簽章無法被檢驗, 因為你沒有符合的金鑰. 你應該延緩刪除它,\n"
"直到你知道哪一把金鑰被使用了; 因為這把來簽署的金鑰可能透過\n"
"其他已經驗證的金鑰建立了一個信任連結."
msgid ""
"The signature is not valid. It does make sense to remove it from\n"
"your keyring."
msgstr "這份簽章無效. 從你的鑰匙圈中將它移除相當合理."
msgid ""
"This is a signature which binds the user ID to the key. It is\n"
"usually not a good idea to remove such a signature. Actually\n"
"GnuPG might not be able to use this key anymore. So do this\n"
"only if this self-signature is for some reason not valid and\n"
"a second one is available."
msgstr ""
"這是一份和這個金鑰使用者 ID 相繫的簽章. 通常\n"
"把這樣的簽章移除不會是個好點子. 事實上 GnuPG\n"
"可能從此就不能再使用這把金鑰了. 所以祇有在這\n"
"把金鑰的第一個自我簽章因某些原因無效, 而第二\n"
"個還可用的情況下纔這麼做."
msgid ""
"Change the preferences of all user IDs (or just of the selected ones)\n"
"to the current list of preferences. The timestamp of all affected\n"
"self-signatures will be advanced by one second.\n"
msgstr ""
"變更所有 (或祇有被選取的那幾個) 使用者 ID 的偏好成現用的偏好清單.\n"
"所有受到影響的自我簽章的時間戳記都會增加一秒鐘.\n"
msgid "Please enter the passphrase; this is a secret sentence \n"
msgstr "請輸入密語; 這是個秘密的句子 \n"
msgid "Please repeat the last passphrase, so you are sure what you typed in."
msgstr "請再次輸入最後的密語, 以確定你到底鍵入了些甚麼."
msgid "Give the name of the file to which the signature applies"
msgstr "請給定簽章所要套用的檔案名稱"
msgid "Answer \"yes\" if it is okay to overwrite the file"
msgstr "如果可以覆寫這個檔案的話就回答 \"yes\""
msgid ""
"Please enter a new filename. If you just hit RETURN the default\n"
"file (which is shown in brackets) will be used."
msgstr ""
"請輸入一個新的檔名. 如果你直接按下 Enter, 那麼就\n"
"會使用預設的檔案 (顯示在括號中)."
msgid ""
"You should specify a reason for the certification. Depending on the\n"
"context you have the ability to choose from this list:\n"
" \"Key has been compromised\"\n"
" Use this if you have a reason to believe that unauthorized persons\n"
" got access to your secret key.\n"
" \"Key is superseded\"\n"
" Use this if you have replaced this key with a newer one.\n"
" \"Key is no longer used\"\n"
" Use this if you have retired this key.\n"
" \"User ID is no longer valid\"\n"
" Use this to state that the user ID should not longer be used;\n"
" this is normally used to mark an email address invalid.\n"
msgstr ""
"你應該為這份憑證指定一個原因.\n"
"根據情境的不同, 你應該可以從這個清單中選出一項:\n"
" \"金鑰已經被洩漏了\"\n"
" 如果你相信有某個未經許可的傢伙取得了你的私鑰,\n"
" 就選這個.\n"
" \"金鑰被代換了\"\n"
" 如果你把金鑰換成新的了, 就選這個.\n"
" \"金鑰不再被使用了\"\n"
" 如果你已經撤回了這把金鑰, 就選這個.\n"
" \"使用者 ID 不再有效了\"\n"
" 如果這個使用者 ID 不再被使用了, 就選這個;\n"
" 這通常用來表示某個電子郵件位址不再有效了.\n"
msgid ""
"If you like, you can enter a text describing why you issue this\n"
"revocation certificate. Please keep this text concise.\n"
"An empty line ends the text.\n"
msgstr ""
"你也可以輸入一串文字來描述為甚麼發佈這份撤銷憑證的理由.\n"
"請讓這段文字保持簡明扼要.\n"
"用空白列來結束這段文字.\n"
msgid "No help available"
msgstr "沒有可用的說明"
#, c-format
msgid "No help available for `%s'"
msgstr "`%s' 沒有可用的說明"
msgid "import signatures that are marked as local-only"
msgstr "匯入標記為僅限本機使用的簽章"
msgid "repair damage from the pks keyserver during import"
msgstr "匯入時修復來自 pks 金鑰伺服器的損壞"
#, fuzzy
#| msgid "do not update the trustdb after import"
msgid "do not clear the ownertrust values during import"
msgstr "匯入後不要更新信任資料庫"
msgid "do not update the trustdb after import"
msgstr "匯入後不要更新信任資料庫"
msgid "create a public key when importing a secret key"
msgstr "匯入私鑰時亦建立公鑰"
msgid "only accept updates to existing keys"
msgstr "祇接受既有金鑰的更新"
msgid "remove unusable parts from key after import"
msgstr "匯入後從金鑰中移除無法使用的部分"
msgid "remove as much as possible from key after import"
msgstr "匯入後盡可能地從金鑰中移除"
#, c-format
msgid "skipping block of type %d\n"
msgstr "正在跳過 %d 型態的區塊\n"
#, c-format
msgid "%lu keys processed so far\n"
msgstr "目前已處理 %lu 把金鑰\n"
#, c-format
msgid "Total number processed: %lu\n"
msgstr "處理總量: %lu\n"
#, c-format
msgid " skipped new keys: %lu\n"
msgstr " 已跳過的新金鑰: %lu\n"
#, c-format
msgid " w/o user IDs: %lu\n"
msgstr " 沒有使用者的 ID: %lu\n"
#, c-format
msgid " imported: %lu"
msgstr " 已匯入: %lu"
#, c-format
msgid " unchanged: %lu\n"
msgstr " 未改變的: %lu\n"
#, c-format
msgid " new user IDs: %lu\n"
msgstr " 新的使用者 ID: %lu\n"
#, c-format
msgid " new subkeys: %lu\n"
msgstr " 新的子鑰: %lu\n"
#, c-format
msgid " new signatures: %lu\n"
msgstr " 新的簽章: %lu\n"
#, c-format
msgid " new key revocations: %lu\n"
msgstr " 新的金鑰撤銷: %lu\n"
#, c-format
msgid " secret keys read: %lu\n"
msgstr " 已讀取的私鑰: %lu\n"
#, c-format
msgid " secret keys imported: %lu\n"
msgstr " 已匯入的私鑰: %lu\n"
#, c-format
msgid " secret keys unchanged: %lu\n"
msgstr " 未改變的私鑰: %lu\n"
#, c-format
msgid " not imported: %lu\n"
msgstr " 未被匯入: %lu\n"
#, c-format
msgid " signatures cleaned: %lu\n"
msgstr " 已清除的簽章: %lu\n"
#, c-format
msgid " user IDs cleaned: %lu\n"
msgstr " 已清除的使用者 ID: %lu\n"
#, c-format
msgid "WARNING: key %s contains preferences for unavailable\n"
msgstr "警告: 金鑰 %s 用於這些使用者 ID 的演算法偏好設定\n"
#. TRANSLATORS: This string is belongs to the previous one. They are
#. only split up to allow printing of a common prefix.
msgid " algorithms on these user IDs:\n"
msgstr " 無法使用:\n"
#, c-format
msgid " \"%s\": preference for cipher algorithm %s\n"
msgstr " \"%s\": 編密演算法 %s 的偏好設定\n"
#, c-format
msgid " \"%s\": preference for digest algorithm %s\n"
msgstr " \"%s\": 摘要演算法 %s 的偏好設定\n"
#, c-format
msgid " \"%s\": preference for compression algorithm %s\n"
msgstr " \"%s\": 壓縮演算法 %s 的偏好設定\n"
msgid "it is strongly suggested that you update your preferences and\n"
msgstr "我們強烈建議你更新偏好設定, 並重新\n"
msgid "re-distribute this key to avoid potential algorithm mismatch problems\n"
msgstr "散佈此金鑰, 以避免潛在的演算法不一致問題.\n"
#, c-format
msgid "you can update your preferences with: gpg --edit-key %s updpref save\n"
msgstr "你可以像這樣來更新偏好設定: gpg --edit-key %s updpref save\n"
#, c-format
msgid "key %s: no user ID\n"
msgstr "金鑰 %s: 沒有使用者 ID\n"
#, c-format
msgid "key %s: %s\n"
msgstr "金鑰 %s: %s\n"
msgid "rejected by import filter"
msgstr "受到匯入過濾器所排除"
#, c-format
msgid "key %s: PKS subkey corruption repaired\n"
msgstr "金鑰 %s: PKS 子鑰的訛誤已被修復\n"
#, c-format
msgid "key %s: accepted non self-signed user ID \"%s\"\n"
msgstr "金鑰 %s: 已接受非自我簽署的使用者 ID \"%s\"\n"
#, c-format
msgid "key %s: no valid user IDs\n"
msgstr "金鑰 %s: 沒有有效的使用者 ID\n"
msgid "this may be caused by a missing self-signature\n"
msgstr "這可能肇因於遺失自我簽章所致\n"
#, c-format
msgid "key %s: public key not found: %s\n"
msgstr "金鑰 %s: 找不到公鑰: %s\n"
#, c-format
msgid "key %s: new key - skipped\n"
msgstr "金鑰 %s: 新的金鑰 - 已跳過\n"
#, c-format
msgid "no writable keyring found: %s\n"
msgstr "找不到可寫入的鑰匙圈: %s\n"
#, c-format
msgid "writing to `%s'\n"
msgstr "寫入 `%s' 中\n"
#, c-format
msgid "error writing keyring `%s': %s\n"
msgstr "寫入鑰匙圈 `%s' 時出錯: %s\n"
#, c-format
msgid "key %s: public key \"%s\" imported\n"
msgstr "金鑰 %s: 公鑰 \"%s\" 已匯入\n"
#, c-format
msgid "key %s: doesn't match our copy\n"
msgstr "金鑰 %s: 跟我們的副本不吻合\n"
#, c-format
msgid "key %s: can't locate original keyblock: %s\n"
msgstr "金鑰 %s: 無法定址原始的金鑰區塊: %s\n"
#, c-format
msgid "key %s: can't read original keyblock: %s\n"
msgstr "金鑰 %s: 無法讀取原始的金鑰區塊: %s\n"
#, c-format
msgid "key %s: \"%s\" 1 new user ID\n"
msgstr "金鑰 %s: \"%s\" 1 個新的使用者 ID\n"
#, c-format
msgid "key %s: \"%s\" %d new user IDs\n"
msgstr "金鑰 %s: \"%s\" %d 個新的使用者 ID\n"
#, c-format
msgid "key %s: \"%s\" 1 new signature\n"
msgstr "金鑰 %s: \"%s\" 1 份新的簽章\n"
#, c-format
msgid "key %s: \"%s\" %d new signatures\n"
msgstr "金鑰 %s: \"%s\" %d 份新的簽章\n"
#, c-format
msgid "key %s: \"%s\" 1 new subkey\n"
msgstr "金鑰 %s: \"%s\" 1 把新的子鑰\n"
#, c-format
msgid "key %s: \"%s\" %d new subkeys\n"
msgstr "金鑰 %s: \"%s\" %d 把新的子鑰\n"
#, c-format
msgid "key %s: \"%s\" %d signature cleaned\n"
msgstr "金鑰 %s: \"%s\" 已清除 %d 份簽章\n"
#, c-format
msgid "key %s: \"%s\" %d signatures cleaned\n"
msgstr "金鑰 %s: \"%s\" 已清除 %d 份簽章\n"
#, c-format
msgid "key %s: \"%s\" %d user ID cleaned\n"
msgstr "金鑰 %s: \"%s\" 已清除 %d 個使用者 ID\n"
#, c-format
msgid "key %s: \"%s\" %d user IDs cleaned\n"
msgstr "金鑰 %s: \"%s\" 已清除 %d 個使用者 ID\n"
#, c-format
msgid "key %s: \"%s\" not changed\n"
msgstr "金鑰 %s: \"%s\" 未改變\n"
#, c-format
msgid "secret key %s: %s\n"
msgstr "私鑰 %s: %s\n"
msgid "importing secret keys not allowed\n"
msgstr "未允許匯入私鑰\n"
#, c-format
msgid "key %s: secret key with invalid cipher %d - skipped\n"
msgstr "金鑰 %s: 私鑰使用了無效的 %d 編密法 - 已跳過\n"
#, c-format
msgid "no default secret keyring: %s\n"
msgstr "沒有預設的私鑰鑰匙圈: %s\n"
#, c-format
msgid "key %s: secret key imported\n"
msgstr "金鑰 %s: 私鑰已匯入\n"
#, c-format
msgid "key %s: already in secret keyring\n"
msgstr "金鑰 %s: 已在私鑰鑰匙圈之中了\n"
#, c-format
msgid "key %s: secret key not found: %s\n"
msgstr "金鑰 %s: 找不到私鑰: %s\n"
#, c-format
msgid "key %s: no public key - can't apply revocation certificate\n"
msgstr "金鑰 %s: 沒有公鑰 - 無法套用撤銷憑證\n"
#, c-format
msgid "key %s: invalid revocation certificate: %s - rejected\n"
msgstr "金鑰 %s: 無效的撤銷憑證: %s - 已駁回\n"
#, c-format
msgid "key %s: \"%s\" revocation certificate imported\n"
msgstr "金鑰 %s: \"%s\" 撤銷憑證已匯入\n"
#, c-format
msgid "key %s: no user ID for signature\n"
msgstr "金鑰 %s: 簽章沒有使用者 ID\n"
#, c-format
msgid "key %s: unsupported public key algorithm on user ID \"%s\"\n"
msgstr "金鑰 %s: 使用者 ID \"%s\" 用了未支援的公鑰演算法\n"
#, c-format
msgid "key %s: invalid self-signature on user ID \"%s\"\n"
msgstr "金鑰 %s: 使用者 ID \"%s\" 的自我簽章無效\n"
#, c-format
msgid "key %s: unsupported public key algorithm\n"
msgstr "金鑰 %s: 未支援的公鑰演算法\n"
#, c-format
msgid "key %s: invalid direct key signature\n"
msgstr "金鑰 %s: 無效的直接金鑰簽章\n"
#, c-format
msgid "key %s: no subkey for key binding\n"
msgstr "金鑰 %s: 沒有可供附帶的子鑰\n"
#, c-format
msgid "key %s: invalid subkey binding\n"
msgstr "金鑰 %s: 無效的附帶子鑰\n"
#, c-format
msgid "key %s: removed multiple subkey binding\n"
msgstr "金鑰 %s: 多重附帶子鑰已移除\n"
#, c-format
msgid "key %s: no subkey for key revocation\n"
msgstr "金鑰 %s: 沒有子鑰可供金鑰撤銷\n"
#, c-format
msgid "key %s: invalid subkey revocation\n"
msgstr "金鑰 %s: 無效的子鑰撤銷\n"
#, c-format
msgid "key %s: removed multiple subkey revocation\n"
msgstr "金鑰 %s: 多重子鑰撤銷已移除\n"
#, c-format
msgid "key %s: skipped user ID \"%s\"\n"
msgstr "金鑰 %s: 使用者 ID \"%s\" 已跳過\n"
#, c-format
msgid "key %s: skipped subkey\n"
msgstr "金鑰 %s: 子鑰已跳過\n"
# here we violate the rfc a bit by still allowing
# * to import non-exportable signature when we have the
# * the secret key used to create this signature - it
# * seems that this makes sense
#, c-format
msgid "key %s: non exportable signature (class 0x%02X) - skipped\n"
msgstr "金鑰 %s: 不可匯出的簽章 (等級 0x%02X) - 已跳過\n"
#, c-format
msgid "key %s: revocation certificate at wrong place - skipped\n"
msgstr "金鑰 %s: 撤銷憑證在錯誤的地方 - 已跳過\n"
#, c-format
msgid "key %s: invalid revocation certificate: %s - skipped\n"
msgstr "金鑰 %s: 無效的撤銷憑證: %s - 已跳過\n"
#, c-format
msgid "key %s: subkey signature in wrong place - skipped\n"
msgstr "金鑰 %s: 子鑰簽章在錯誤的地方 - 已跳過\n"
#, c-format
msgid "key %s: unexpected signature class (0x%02X) - skipped\n"
msgstr "金鑰 %s: 非預期的簽章等級 (0x%02X) - 已跳過\n"
#, c-format
msgid "key %s: duplicated user ID detected - merged\n"
msgstr "金鑰 %s: 偵測到重複的使用者 ID - 已合併\n"
#, c-format
msgid "WARNING: key %s may be revoked: fetching revocation key %s\n"
msgstr "警告: 金鑰 %s 可能被撤銷了: 正在取回撤銷金鑰 %s\n"
#, c-format
msgid "WARNING: key %s may be revoked: revocation key %s not present.\n"
msgstr "警告: 金鑰 %s 可能被撤銷了: 撤銷金鑰 %s 未出現.\n"
#, c-format
msgid "key %s: \"%s\" revocation certificate added\n"
msgstr "金鑰 %s: 已新增 \"%s\" 撤銷憑證\n"
#, c-format
msgid "key %s: direct key signature added\n"
msgstr "金鑰 %s: 已新增直接金鑰簽章\n"
msgid "NOTE: a key's S/N does not match the card's one\n"
msgstr "請注意: 金鑰的序號 (S/N) 與卡片上的並不一致\n"
msgid "NOTE: primary key is online and stored on card\n"
msgstr "請注意: 主鑰在線上且已存放於卡片上了\n"
msgid "NOTE: secondary key is online and stored on card\n"
msgstr "請注意: 子鑰在線上且已存放於卡片上了\n"
#, c-format
msgid "error creating keyring `%s': %s\n"
msgstr "建立 `%s' 鑰匙圈時出錯: %s\n"
#, c-format
msgid "keyring `%s' created\n"
msgstr "`%s' 鑰匙圈已建立\n"
#, c-format
msgid "keyblock resource `%s': %s\n"
msgstr "`%s' 金鑰區塊資源: %s\n"
#, c-format
msgid "failed to rebuild keyring cache: %s\n"
msgstr "重新建立鑰匙圈快取失敗: %s\n"
msgid "[revocation]"
msgstr "[撤銷]"
msgid "[self-signature]"
msgstr "[自我簽章]"
msgid "1 bad signature\n"
msgstr "1 份損壞的簽章\n"
#, c-format
msgid "%d bad signatures\n"
msgstr "%d 份損壞的簽章\n"
msgid "1 signature not checked due to a missing key\n"
msgstr "有 1 份簽章因為遺失金鑰而未被檢查\n"
#, c-format
msgid "%d signatures not checked due to missing keys\n"
msgstr "有 %d 份簽章因為遺失金鑰而未被檢查\n"
msgid "1 signature not checked due to an error\n"
msgstr "有 1 份簽章因錯誤而未被檢查\n"
#, c-format
msgid "%d signatures not checked due to errors\n"
msgstr "有 %d 份簽章因錯誤而未被檢查\n"
msgid "1 user ID without valid self-signature detected\n"
msgstr "偵測到 1 個沒有有效自我簽章的使用者 ID\n"
#, c-format
msgid "%d user IDs without valid self-signatures detected\n"
msgstr "偵測到 %d 個沒有有效自我簽章的使用者 ID\n"
msgid ""
"Please decide how far you trust this user to correctly verify other users' "
"keys\n"
"(by looking at passports, checking fingerprints from different sources, "
"etc.)\n"
msgstr ""
"請判斷你有多信任這位使用者確實驗證其他使用者的金鑰\n"
"(像是查對身份證, 或從不同的來源檢查指紋等...)的能力\n"
#, c-format
msgid " %d = I trust marginally\n"
msgstr " %d = 我勉強信任\n"
#, c-format
msgid " %d = I trust fully\n"
msgstr " %d = 我完全信任\n"
msgid ""
"Please enter the depth of this trust signature.\n"
"A depth greater than 1 allows the key you are signing to make\n"
"trust signatures on your behalf.\n"
msgstr ""
"請輸入此信任簽章的深度.\n"
"深度大於 1 的話就表示你信任這把正被簽署的金鑰,\n"
"同時也信任這把金鑰所簽署的信任簽章.\n"
msgid "Please enter a domain to restrict this signature, or enter for none.\n"
msgstr "請輸入約束此簽章的網域, 若無請直接按下 [Enter].\n"
#, c-format
msgid "User ID \"%s\" is revoked."
msgstr "使用者 ID \"%s\" 已撤銷."
msgid "Are you sure you still want to sign it? (y/N) "
msgstr "你仍然想要簽署它嗎? (y/N) "
msgid " Unable to sign.\n"
msgstr " 無法簽署.\n"
#, c-format
msgid "User ID \"%s\" is expired."
msgstr "使用者 ID \"%s\" 已過期."
#, c-format
msgid "User ID \"%s\" is not self-signed."
msgstr "使用者 ID \"%s\" 未經自我簽署."
#, c-format
msgid "User ID \"%s\" is signable. "
msgstr "使用者 ID \"%s\" 可被簽署."
msgid "Sign it? (y/N) "
msgstr "是否要簽署? (y/N) "
#, c-format
msgid ""
"The self-signature on \"%s\"\n"
"is a PGP 2.x-style signature.\n"
msgstr ""
"\"%s\" 裡的自我簽章\n"
"是 PGP 2.x 型態的簽章.\n"
msgid "Do you want to promote it to an OpenPGP self-signature? (y/N) "
msgstr "你是否想要將它升級成 OpenPGP 自我簽章? (y/N) "
#, c-format
msgid ""
"Your current signature on \"%s\"\n"
"has expired.\n"
msgstr ""
"你目前在 \"%s\" 的簽章\n"
"已經過期了.\n"
msgid "Do you want to issue a new signature to replace the expired one? (y/N) "
msgstr "你想要發佈一份新的簽章來取代已過期的那個嗎? (y/N) "
#, c-format
msgid ""
"Your current signature on \"%s\"\n"
"is a local signature.\n"
msgstr ""
"你目前在 \"%s\" 的簽章\n"
"是一份本機簽章.\n"
msgid "Do you want to promote it to a full exportable signature? (y/N) "
msgstr "你是否想要把他升級成可以完全匯出的簽章? (y/N) "
#, c-format
msgid "\"%s\" was already locally signed by key %s\n"
msgstr "\"%s\" 已經被金鑰 %s 在本機簽署了\n"
#, c-format
msgid "\"%s\" was already signed by key %s\n"
msgstr "\"%s\" 已經被金鑰 %s 簽署了\n"
msgid "Do you want to sign it again anyway? (y/N) "
msgstr "你仍然想要再次簽署它嗎? (y/N) "
#, c-format
msgid "Nothing to sign with key %s\n"
msgstr "沒有東西可以讓金鑰 %s 簽署\n"
msgid "This key has expired!"
msgstr "這把金鑰已經過期了!"
#, c-format
msgid "This key is due to expire on %s.\n"
msgstr "這把金鑰將在 %s 過期.\n"
msgid "Do you want your signature to expire at the same time? (Y/n) "
msgstr "你想要讓你的簽章也在同一個時候過期嗎? (Y/n) "
msgid ""
"You may not make an OpenPGP signature on a PGP 2.x key while in --pgp2 "
"mode.\n"
msgstr "你不能在 --pgp2 模式下, 拿 PGP 2.x 金鑰做出 OpenPGP 簽章.\n"
msgid "This would make the key unusable in PGP 2.x.\n"
msgstr "這會讓這把金鑰在 PGP 2.x 模式下無法使用.\n"
msgid ""
"How carefully have you verified the key you are about to sign actually "
"belongs\n"
"to the person named above? If you don't know what to answer, enter \"0\".\n"
msgstr ""
"你有多謹慎檢查正要簽署的金鑰確實屬於上面那個人的名字呢?\n"
"如果你不知道這個問題的答案, 請輸入 \"0\".\n"
#, c-format
msgid " (0) I will not answer.%s\n"
msgstr " (0) 我不作答.%s\n"
#, c-format
msgid " (1) I have not checked at all.%s\n"
msgstr " (1) 我根本沒有檢查過.%s\n"
#, c-format
msgid " (2) I have done casual checking.%s\n"
msgstr " (2) 我隨意檢查過了.%s\n"
#, c-format
msgid " (3) I have done very careful checking.%s\n"
msgstr " (3) 我非常小心地檢查過了.%s\n"
msgid "Your selection? (enter `?' for more information): "
msgstr "你的選擇是? (輸入 `?' 以取得更多資訊): "
#, c-format
msgid ""
"Are you sure that you want to sign this key with your\n"
"key \"%s\" (%s)\n"
msgstr ""
"你真的確定要用你的金鑰 \"%s\" (%s)\n"
"來簽署這把金鑰嗎\n"
msgid "This will be a self-signature.\n"
msgstr "這將會是一份自我簽章.\n"
msgid "WARNING: the signature will not be marked as non-exportable.\n"
msgstr "警告: 這份簽章不會被標記為不可匯出.\n"
msgid "WARNING: the signature will not be marked as non-revocable.\n"
msgstr "警告: 這份簽章不會被標記成不可撤銷.\n"
msgid "The signature will be marked as non-exportable.\n"
msgstr "這份簽章會被標記成不可匯出.\n"
msgid "The signature will be marked as non-revocable.\n"
msgstr "這份簽章會被標記成不可撤銷.\n"
msgid "I have not checked this key at all.\n"
msgstr "我根本沒有檢查過這把金鑰.\n"
msgid "I have checked this key casually.\n"
msgstr "我隨意檢查過這把金鑰了.\n"
msgid "I have checked this key very carefully.\n"
msgstr "我非常小心地檢查過這把金鑰了.\n"
msgid "Really sign? (y/N) "
msgstr "真的要簽署嗎? (y/N)"
#, c-format
msgid "signing failed: %s\n"
msgstr "簽署時失敗: %s\n"
msgid "Key has only stub or on-card key items - no passphrase to change.\n"
msgstr "金鑰祇剩下殘骸或者祇含有卡上金鑰項目 - 沒有可變更的密語.\n"
msgid "This key is not protected.\n"
msgstr "這把金鑰未被保護.\n"
msgid "Secret parts of primary key are not available.\n"
msgstr "主鑰的私鑰部分無法取用.\n"
msgid "Secret parts of primary key are stored on-card.\n"
msgstr "主鑰的私鑰部分存放於卡上.\n"
msgid "Key is protected.\n"
msgstr "金鑰已保護.\n"
#, c-format
msgid "Can't edit this key: %s\n"
msgstr "無法編輯這把金鑰: %s\n"
msgid ""
"Enter the new passphrase for this secret key.\n"
"\n"
msgstr ""
"請輸入要給這把私鑰用的新密語.\n"
"\n"
msgid "passphrase not correctly repeated; try again"
msgstr "前後兩次輸入的密語不一致; 請再試一次"
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"\n"
msgstr ""
"你不想要用密語 - 這大概是個 *糟* 點子!\n"
"\n"
msgid "Do you really want to do this? (y/N) "
msgstr "你真的想要這麼做嗎? (y/N) "
msgid "moving a key signature to the correct place\n"
msgstr "正在把金鑰的簽章搬移到正確的位置去\n"
msgid "save and quit"
msgstr "儲存並離開"
msgid "show key fingerprint"
msgstr "顯示金鑰指紋"
msgid "list key and user IDs"
msgstr "列出金鑰和使用者 ID"
msgid "select user ID N"
msgstr "選擇使用者 ID N"
msgid "select subkey N"
msgstr "選擇子鑰 N"
msgid "check signatures"
msgstr "檢查簽章"
msgid "sign selected user IDs [* see below for related commands]"
msgstr "簽署所選的使用者 ID [* 請參見底下相關的註解]"
msgid "sign selected user IDs locally"
msgstr "僅在本機簽署所選的使用者 ID"
msgid "sign selected user IDs with a trust signature"
msgstr "用信任簽章來簽署所選的使用者 ID"
msgid "sign selected user IDs with a non-revocable signature"
msgstr "用不可撤銷的簽章來簽署所選的使用者 ID"
msgid "add a user ID"
msgstr "增加使用者 ID"
msgid "add a photo ID"
msgstr "增加照片 ID"
msgid "delete selected user IDs"
msgstr "刪除所選的使用者 ID"
msgid "add a subkey"
msgstr "增加子鑰"
msgid "add a key to a smartcard"
msgstr "將金鑰加到智慧卡"
msgid "move a key to a smartcard"
msgstr "將金鑰移動到智慧卡"
msgid "move a backup key to a smartcard"
msgstr "將備份金鑰移動到智慧卡"
msgid "delete selected subkeys"
msgstr "刪除所選的子鑰"
msgid "add a revocation key"
msgstr "增加撤銷金鑰"
msgid "delete signatures from the selected user IDs"
msgstr "從所選的使用者 ID 中刪除簽章"
msgid "change the expiration date for the key or selected subkeys"
msgstr "變更金鑰或所選子鑰的使用期限"
msgid "flag the selected user ID as primary"
msgstr "把所選的使用者 ID 標為主要"
msgid "toggle between the secret and public key listings"
msgstr "在私鑰清單和公鑰清單間切換"
msgid "list preferences (expert)"
msgstr "列出偏好 (專家模式)"
msgid "list preferences (verbose)"
msgstr "列出偏好 (囉唆模式)"
msgid "set preference list for the selected user IDs"
msgstr "設定所選使用者 ID 的偏好清單"
msgid "set the preferred keyserver URL for the selected user IDs"
msgstr "為所選的使用者 ID 設定偏好的金鑰伺服器 URL"
msgid "set a notation for the selected user IDs"
msgstr "為所選的使用者 ID 設定註記"
msgid "change the passphrase"
msgstr "更改密語"
msgid "change the ownertrust"
msgstr "更改主觀信任"
msgid "revoke signatures on the selected user IDs"
msgstr "撤銷所選使用者 ID 的簽章"
msgid "revoke selected user IDs"
msgstr "撤銷所選的使用者 ID"
msgid "revoke key or selected subkeys"
msgstr "撤銷金鑰或所選的子鑰"
msgid "enable key"
msgstr "啟用金鑰"
msgid "disable key"
msgstr "停用金鑰"
msgid "show selected photo IDs"
msgstr "顯示所選的照片 ID"
msgid "compact unusable user IDs and remove unusable signatures from key"
msgstr "從金鑰中精簡無法使用的使用者 ID 並移除無法使用的簽章"
msgid "compact unusable user IDs and remove all signatures from key"
msgstr "從金鑰中精簡無法使用的使用者 ID 並移除所有的簽章"
#, c-format
msgid "error reading secret keyblock \"%s\": %s\n"
msgstr "讀取私鑰區塊 \"%s\" 時出錯: %s\n"
msgid "Secret key is available.\n"
msgstr "私鑰可用.\n"
msgid "Need the secret key to do this.\n"
msgstr "要有私鑰纔能這麼做.\n"
msgid "Please use the command \"toggle\" first.\n"
msgstr "請先使用 \"toggle\" 指令.\n"
msgid ""
"* The `sign' command may be prefixed with an `l' for local signatures "
"(lsign),\n"
" a `t' for trust signatures (tsign), an `nr' for non-revocable signatures\n"
" (nrsign), or any combination thereof (ltsign, tnrsign, etc.).\n"
msgstr ""
"* 這個 `sign' 指令也可以在前面加上一個 `l' 字母, 來表示本機簽章 (lsign),\n"
" 加上 `t' 的話就是信任簽章 (tsign), 加上 `nr' 的話就是不可撤銷簽章\n"
" (nrsign), 當然也可以任意組合這些選項 (像是 ltsign, tnrsign 等等.).\n"
msgid "Key is revoked."
msgstr "金鑰已撤銷."
msgid "Really sign all user IDs? (y/N) "
msgstr "真的要簽署所有的使用者 ID 嗎? (y/N) "
msgid "Hint: Select the user IDs to sign\n"
msgstr "提示: 選擇使用者 ID 來加以簽署\n"
#, c-format
msgid "Unknown signature type `%s'\n"
msgstr "未知的 `%s' 簽章種類\n"
#, c-format
msgid "This command is not allowed while in %s mode.\n"
msgstr "在 %s 模式中不允許使用這個指令.\n"
msgid "You must select at least one user ID.\n"
msgstr "你至少得選擇一個使用者 ID.\n"
msgid "You can't delete the last user ID!\n"
msgstr "你不能刪除最後一個使用者 ID!\n"
msgid "Really remove all selected user IDs? (y/N) "
msgstr "真的要移除所有被選擇的使用者 ID 嗎? (y/N) "
msgid "Really remove this user ID? (y/N) "
msgstr "真的要移除這個使用者 ID 嗎? (y/N) "
msgid "Really move the primary key? (y/N) "
msgstr "真的要移動主鑰嗎? (y/N) "
msgid "You must select exactly one key.\n"
msgstr "你一定祇得選擇一把金鑰.\n"
msgid "Command expects a filename argument\n"
msgstr "這項指令要拿一個檔名來當作參數\n"
#, c-format
msgid "Can't open `%s': %s\n"
msgstr "無法開啟 `%s': %s\n"
#, c-format
msgid "Error reading backup key from `%s': %s\n"
msgstr "從 `%s' 讀取備份金鑰時出錯: %s\n"
msgid "You must select at least one key.\n"
msgstr "你至少得選擇一把金鑰.\n"
msgid "Do you really want to delete the selected keys? (y/N) "
msgstr "你真的想要刪除所選的金鑰嗎? (y/N) "
msgid "Do you really want to delete this key? (y/N) "
msgstr "你真的想要刪除這把金鑰嗎? (y/N) "
msgid "Really revoke all selected user IDs? (y/N) "
msgstr "真的要撤銷所有所選的使用者 ID 嗎? (y/N) "
msgid "Really revoke this user ID? (y/N) "
msgstr "真的要撤銷這個使用者 ID 嗎? (y/N) "
msgid "Do you really want to revoke the entire key? (y/N) "
msgstr "你真的想要撤銷這整把金鑰嗎? (y/N) "
msgid "Do you really want to revoke the selected subkeys? (y/N) "
msgstr "你真的想要撤銷所選的子鑰嗎? (y/N) "
msgid "Do you really want to revoke this subkey? (y/N) "
msgstr "你真的想要撤銷這把子鑰嗎? (y/N) "
msgid "Owner trust may not be set while using a user provided trust database\n"
msgstr "使用使用者所提供的信任資料庫時可能無法設定主觀信任\n"
msgid "Set preference list to:\n"
msgstr "設定偏好清單至:\n"
msgid "Really update the preferences for the selected user IDs? (y/N) "
msgstr "真的要更新所選使用者 ID 的偏好設定嗎? (y/N) "
msgid "Really update the preferences? (y/N) "
msgstr "真的要更新偏好設定嗎? (y/N) "
msgid "Save changes? (y/N) "
msgstr "要儲存變更嗎? (y/N) "
msgid "Quit without saving? (y/N) "
msgstr "要不儲存就離開嗎? (y/N) "
#, c-format
msgid "update failed: %s\n"
msgstr "更新失敗: %s\n"
#, c-format
msgid "update secret failed: %s\n"
msgstr "更新私鑰失敗: %s\n"
msgid "Key not changed so no update needed.\n"
msgstr "金鑰沒有變更所以不需要更新.\n"
msgid "Digest: "
msgstr "摘要: "
msgid "Features: "
msgstr "特點: "
msgid "Keyserver no-modify"
msgstr "金鑰伺服器無修改"
msgid "Preferred keyserver: "
msgstr "偏好的金鑰伺服器: "
msgid "Notations: "
msgstr "註記: "
msgid "There are no preferences on a PGP 2.x-style user ID.\n"
msgstr "PGP 2.x 型態的使用者 ID 沒有偏好設定.\n"
#, c-format
msgid "This key was revoked on %s by %s key %s\n"
msgstr "這把金鑰已經在 %s 時被 %s 金鑰 %s 所撤銷\n"
#, c-format
msgid "This key may be revoked by %s key %s"
msgstr "這把金鑰可能被 %s 金鑰 %s 所撤銷"
msgid "(sensitive)"
msgstr "(機密)"
#, c-format
msgid "created: %s"
msgstr "建立: %s"
#, c-format
msgid "revoked: %s"
msgstr "撤銷: %s"
# of subkey
#, c-format
msgid "expired: %s"
msgstr "過期: %s"
# of subkey
#, c-format
msgid "expires: %s"
msgstr "到期: %s"
#, c-format
msgid "usage: %s"
msgstr "用途: %s"
#, c-format
msgid "trust: %s"
msgstr "信任: %s"
#, c-format
msgid "validity: %s"
msgstr "有效性: %s"
msgid "This key has been disabled"
msgstr "這把金鑰已經停用了"
msgid "card-no: "
msgstr "卡片編號: "
msgid ""
"Please note that the shown key validity is not necessarily correct\n"
"unless you restart the program.\n"
msgstr ""
"請注意顯示出來的金鑰有效性不需要更正,\n"
"除非你重新執行程式.\n"
msgid "revoked"
msgstr "已撤銷"
msgid "expired"
msgstr "已過期"
msgid ""
"WARNING: no user ID has been marked as primary. This command may\n"
" cause a different user ID to become the assumed primary.\n"
msgstr ""
"警告: 沒有任何使用者 ID 被標示為主要 ID. 這項指令可能會\n"
" 導致不同的使用者 ID 被當成主要 ID.\n"
msgid "WARNING: Your encryption subkey expires soon.\n"
msgstr ""
#, fuzzy
#| msgid "You can't change the expiration date of a v3 key\n"
msgid "You may want to change its expiration date too.\n"
msgstr "你不能變更 v3 金鑰的使用期限\n"
msgid ""
"WARNING: This is a PGP2-style key. Adding a photo ID may cause some "
"versions\n"
" of PGP to reject this key.\n"
msgstr ""
"警告: 這是一把 PGP2 型態的金鑰.\n"
" 增加照片 ID 可能會導致某些版本的 PGP 駁回這把金鑰.\n"
msgid "Are you sure you still want to add it? (y/N) "
msgstr "你確定仍然想要增加嗎? (y/N) "
msgid "You may not add a photo ID to a PGP2-style key.\n"
msgstr "你不可以把照片 ID 增加到 PGP2 型態的金鑰裡.\n"
msgid "Delete this good signature? (y/N/q)"
msgstr "刪除這份完好的簽章嗎? (y/N/q)"
msgid "Delete this invalid signature? (y/N/q)"
msgstr "刪除這份無效的簽章嗎? (y/N/q)"
msgid "Delete this unknown signature? (y/N/q)"
msgstr "刪除這份未知的簽章嗎? (y/N/q)"
msgid "Really delete this self-signature? (y/N)"
msgstr "真的要刪除這份自我簽章嗎? (y/N)"
#, c-format
msgid "Deleted %d signature.\n"
msgstr "已經刪除了 %d 份簽章.\n"
#, c-format
msgid "Deleted %d signatures.\n"
msgstr "已經刪除了 %d 份簽章.\n"
msgid "Nothing deleted.\n"
msgstr "沒有刪除任何東西.\n"
msgid "invalid"
msgstr "無效"
#, c-format
msgid "User ID \"%s\" compacted: %s\n"
msgstr "使用者 ID \"%s\" 已精簡: %s\n"
#, c-format
msgid "User ID \"%s\": %d signature removed\n"
msgstr "使用者 ID \"%s\": 已移除 %d 份簽章\n"
#, c-format
msgid "User ID \"%s\": %d signatures removed\n"
msgstr "使用者 ID \"%s\": 已移除 %d 份簽章\n"
#, c-format
msgid "User ID \"%s\": already minimized\n"
msgstr "使用者 ID \"%s\": 已經最小化了\n"
#, c-format
msgid "User ID \"%s\": already clean\n"
msgstr "使用者 ID \"%s\": 已經是乾淨的了\n"
msgid ""
"WARNING: This is a PGP 2.x-style key. Adding a designated revoker may "
"cause\n"
" some versions of PGP to reject this key.\n"
msgstr ""
"警告: 這是一把 PGP2 型態的金鑰.\n"
" 增加指定撤銷者可能會導致某些版本的 PGP 駁回這把金鑰.\n"
msgid "You may not add a designated revoker to a PGP 2.x-style key.\n"
msgstr "你不可以把指定撤銷者增加到 PGP2 型態的金鑰裡.\n"
msgid "Enter the user ID of the designated revoker: "
msgstr "輸入指定撤銷者的使用者 ID: "
msgid "cannot appoint a PGP 2.x style key as a designated revoker\n"
msgstr "無法將 PGP 2.x 型態的金鑰指派為指定撤銷者\n"
# This actually causes no harm (after all, a key that
# designates itself as a revoker is the same as a
# regular key), but it's easy enough to check.
msgid "you cannot appoint a key as its own designated revoker\n"
msgstr "你不能指派某把金鑰為它自己的指定撤銷者\n"
msgid "this key has already been designated as a revoker\n"
msgstr "已指定這把金鑰為撤銷者了\n"
msgid "WARNING: appointing a key as a designated revoker cannot be undone!\n"
msgstr "警告: 一旦把某把金鑰指派為指定撤銷者後, 就無法反悔了!\n"
msgid ""
"Are you sure you want to appoint this key as a designated revoker? (y/N) "
msgstr "你確定要指派這把金鑰為指定撤銷者嗎? (y/N) "
msgid "Please remove selections from the secret keys.\n"
msgstr "請從私鑰中移除選擇.\n"
msgid "Please select at most one subkey.\n"
msgstr "請至多選擇一把子鑰.\n"
msgid "Changing expiration time for a subkey.\n"
msgstr "正在變更子鑰的使用期限.\n"
msgid "Changing expiration time for the primary key.\n"
msgstr "正在變更主鑰的使用期限.\n"
msgid "You can't change the expiration date of a v3 key\n"
msgstr "你不能變更 v3 金鑰的使用期限\n"
msgid "No corresponding signature in secret ring\n"
msgstr "在私鑰圈裡沒有一致的簽章\n"
#, c-format
msgid "signing subkey %s is already cross-certified\n"
msgstr "簽署子鑰 %s 已經交叉認證過了\n"
#, c-format
msgid "subkey %s does not sign and so does not need to be cross-certified\n"
msgstr "子鑰 %s 不做簽署之用, 因此無須交叉驗證\n"
msgid "Please select exactly one user ID.\n"
msgstr "請祇選擇一個使用者 ID.\n"
#, c-format
msgid "skipping v3 self-signature on user ID \"%s\"\n"
msgstr "正在跳過使用者 ID \"%s\" 的 v3 自我簽章\n"
msgid "Enter your preferred keyserver URL: "
msgstr "請輸入你的偏好金鑰伺服器 URL: "
msgid "Are you sure you want to replace it? (y/N) "
msgstr "你確定要取代它嗎? (y/N) "
msgid "Are you sure you want to delete it? (y/N) "
msgstr "你確定要刪除它嗎? (y/N) "
msgid "Enter the notation: "
msgstr "請輸入註記: "
msgid "Proceed? (y/N) "
msgstr "是否繼續? (y/N) "
#, c-format
msgid "No user ID with index %d\n"
msgstr "索引 %d 沒有對應到使用者 ID\n"
#, c-format
msgid "No user ID with hash %s\n"
msgstr "雜湊 %s 沒有對應到使用者 ID\n"
#, c-format
msgid "No subkey with index %d\n"
msgstr "索引 %d 沒有對應到子鑰\n"
#, c-format
msgid "user ID: \"%s\"\n"
msgstr "使用者 ID: \"%s\"\n"
#, c-format
msgid "signed by your key %s on %s%s%s\n"
msgstr "已被你的金鑰 %s 於 %s%s%s 所簽署\n"
msgid " (non-exportable)"
msgstr " (不可匯出)"
#, c-format
msgid "This signature expired on %s.\n"
msgstr "這份簽章已經在 %s 過期了.\n"
msgid "Are you sure you still want to revoke it? (y/N) "
msgstr "你確定仍然想要撤銷它嗎? (y/N) "
msgid "Create a revocation certificate for this signature? (y/N) "
msgstr "要為這份簽章建立一份撤銷憑證嗎? (y/N) "
msgid "Not signed by you.\n"
msgstr "並非由你所簽署.\n"
#, c-format
msgid "You have signed these user IDs on key %s:\n"
msgstr "你已經簽署了金鑰 %s 上的這些使用者 ID:\n"
msgid " (non-revocable)"
msgstr " (不可撤銷)"
#, c-format
msgid "revoked by your key %s on %s\n"
msgstr "被你的金鑰 %s 於 %s 所撤銷了\n"
msgid "You are about to revoke these signatures:\n"
msgstr "你正要撤銷這些簽章:\n"
msgid "Really create the revocation certificates? (y/N) "
msgstr "真的要建立撤銷憑證嗎? (y/N) "
msgid "no secret key\n"
msgstr "沒有私鑰\n"
#, c-format
msgid "user ID \"%s\" is already revoked\n"
msgstr "使用者 ID \"%s\" 已撤銷\n"
#, c-format
msgid "WARNING: a user ID signature is dated %d seconds in the future\n"
msgstr "警告: 有一份使用者 ID 的簽章日期為 %d 秒後的未來\n"
#, c-format
msgid "Key %s is already revoked.\n"
msgstr "金鑰 %s 已撤銷.\n"
#, c-format
msgid "Subkey %s is already revoked.\n"
msgstr "子鑰 %s 已撤銷.\n"
#, c-format
msgid "Displaying %s photo ID of size %ld for key %s (uid %d)\n"
msgstr "正在顯示 %s 照片 ID, 其尺寸為 %ld, 屬於金鑰 %s (uid %d) 的照片\n"
#, c-format
msgid "preference `%s' duplicated\n"
msgstr "偏好設定 `%s' 重複了\n"
msgid "too many cipher preferences\n"
msgstr "編密偏好過多\n"
msgid "too many digest preferences\n"
msgstr "摘要偏好過多\n"
msgid "too many compression preferences\n"
msgstr "壓縮偏好過多\n"
#, c-format
msgid "invalid item `%s' in preference string\n"
msgstr "偏好字串中含有無效的 `%s' 項目\n"
msgid "writing direct signature\n"
msgstr "寫入直接簽章中\n"
msgid "writing self signature\n"
msgstr "寫入自我簽章中\n"
msgid "writing key binding signature\n"
msgstr "寫入附鑰簽章中\n"
#, c-format
msgid "keysize invalid; using %u bits\n"
msgstr "金鑰尺寸無效; 改用 %u 位元\n"
#, c-format
msgid "keysize rounded up to %u bits\n"
msgstr "金鑰尺寸增大到 %u 位元\n"
msgid "Sign"
msgstr "簽署"
msgid "Certify"
msgstr "保證"
msgid "Encrypt"
msgstr "加密"
msgid "Authenticate"
msgstr "鑑定"
#. TRANSLATORS: Please use only plain ASCII characters for the
#. translation. If this is not possible use single digits. Here is
#. a description of the fucntions:
#.
#. s = Toggle signing capability
#. e = Toggle encryption capability
#. a = Toggle authentication capability
#. q = Finish
#.
msgid "SsEeAaQq"
msgstr "SsEeAaQq"
#, c-format
msgid "Possible actions for a %s key: "
msgstr "%s 金鑰可能的動作: "
msgid "Current allowed actions: "
msgstr "目前可進行的動作: "
#, c-format
msgid " (%c) Toggle the sign capability\n"
msgstr " (%c) 切換簽署性能\n"
#, c-format
msgid " (%c) Toggle the encrypt capability\n"
msgstr " (%c) 切換加密性能\n"
#, c-format
msgid " (%c) Toggle the authenticate capability\n"
msgstr " (%c) 切換鑑定性能\n"
#, c-format
msgid " (%c) Finished\n"
msgstr " (%c) 已完成\n"
msgid "Please select what kind of key you want:\n"
msgstr "請選擇你要使用的金鑰種類:\n"
#, c-format
msgid " (%d) RSA and RSA (default)\n"
msgstr " (%d) RSA 和 RSA (預設)\n"
#, c-format
msgid " (%d) DSA and Elgamal\n"
msgstr " (%d) DSA 和 Elgamal\n"
#, c-format
msgid " (%d) DSA (sign only)\n"
msgstr " (%d) DSA (僅能用於簽署)\n"
#, c-format
msgid " (%d) RSA (sign only)\n"
msgstr " (%d) RSA (僅能用於簽署)\n"
#, c-format
msgid " (%d) Elgamal (encrypt only)\n"
msgstr " (%d) Elgamal (僅能用於加密)\n"
#, c-format
msgid " (%d) RSA (encrypt only)\n"
msgstr " (%d) RSA (僅能用於加密)\n"
#, c-format
msgid " (%d) DSA (set your own capabilities)\n"
msgstr " (%d) DSA (你能自己設定性能)\n"
#, c-format
msgid " (%d) RSA (set your own capabilities)\n"
msgstr " (%d) RSA (你能自己設定性能)\n"
#, c-format
msgid "%s keys may be between %u and %u bits long.\n"
msgstr "%s 金鑰的長度可能介於 %u 位元和 %u 位元之間.\n"
#, c-format
msgid "What keysize do you want for the subkey? (%u) "
msgstr "你的子鑰想要用多大的金鑰尺寸? (%u) "
#, c-format
msgid "What keysize do you want? (%u) "
msgstr "你想要用多大的金鑰尺寸? (%u) "
#, c-format
msgid "Requested keysize is %u bits\n"
msgstr "你所要求的金鑰尺寸是 %u 位元\n"
msgid ""
"Please specify how long the key should be valid.\n"
" 0 = key does not expire\n"
" <n> = key expires in n days\n"
" <n>w = key expires in n weeks\n"
" <n>m = key expires in n months\n"
" <n>y = key expires in n years\n"
msgstr ""
"請指定這把金鑰的有效期限是多久.\n"
" 0 = 金鑰不會過期\n"
" <n> = 金鑰在 n 天後會到期\n"
" <n>w = 金鑰在 n 週後會到期\n"
" <n>m = 金鑰在 n 月後會到期\n"
" <n>y = 金鑰在 n 年後會到期\n"
msgid ""
"Please specify how long the signature should be valid.\n"
" 0 = signature does not expire\n"
" <n> = signature expires in n days\n"
" <n>w = signature expires in n weeks\n"
" <n>m = signature expires in n months\n"
" <n>y = signature expires in n years\n"
msgstr ""
"請指定這份簽章的有效期限是多久.\n"
" 0 = 簽章不會過期\n"
" <n> = 簽章在 n 天後會到期\n"
" <n>w = 簽章在 n 週後會到期\n"
" <n>m = 簽章在 n 月後會到期\n"
" <n>y = 簽章在 n 年後會到期\n"
msgid "Key is valid for? (0) "
msgstr "金鑰的有效期限是多久? (0) "
#, c-format
msgid "Signature is valid for? (%s) "
msgstr "簽章的有效期限是多久? (%s) "
msgid "invalid value\n"
msgstr "無效的數值\n"
msgid "Key does not expire at all\n"
msgstr "金鑰完全不會過期\n"
msgid "Signature does not expire at all\n"
msgstr "簽章完全不會過期\n"
#, c-format
msgid "Key expires at %s\n"
msgstr "金鑰將會在 %s 到期\n"
#, c-format
msgid "Signature expires at %s\n"
msgstr "簽章將會在 %s 到期.\n"
msgid ""
"Your system can't display dates beyond 2038.\n"
"However, it will be correctly handled up to 2106.\n"
msgstr ""
"你的系統無法顯示 2038 年以後的日期.\n"
"不過, 它可以正確處理直到 2106 年之前的年份.\n"
msgid "Is this correct? (y/N) "
msgstr "以上正確嗎? (y/N) "
msgid ""
"\n"
"You need a user ID to identify your key; the software constructs the user "
"ID\n"
"from the Real Name, Comment and Email Address in this form:\n"
" \"Heinrich Heine (Der Dichter) <[email protected]>\"\n"
"\n"
msgstr ""
"\n"
"你需要一個使用者 ID 來辨識你的金鑰; 這個軟體會用真實姓名,\n"
"註釋和電子郵件地址組合成使用者 ID 如下:\n"
" \"Ke-Huan Lin (Jedi) <[email protected]>\"\n"
"\n"
msgid "Real name: "
msgstr "真實姓名: "
msgid "Invalid character in name\n"
msgstr "姓名含有無效的字符\n"
msgid "Name may not start with a digit\n"
msgstr "姓名不可以用數字開頭\n"
msgid "Name must be at least 5 characters long\n"
msgstr "姓名至少要有五個字符長\n"
msgid "Email address: "
msgstr "電子郵件地址: "
msgid "Not a valid email address\n"
msgstr "不是有效的電子郵件地址\n"
msgid "Comment: "
msgstr "註釋: "
msgid "Invalid character in comment\n"
msgstr "註釋含有無效的字符\n"
#, c-format
msgid "You are using the `%s' character set.\n"
msgstr "你正在使用 `%s' 字元集.\n"
#, c-format
msgid ""
"You selected this USER-ID:\n"
" \"%s\"\n"
"\n"
msgstr ""
"你選擇了這個使用者 ID:\n"
" \"%s\"\n"
"\n"
msgid "Please don't put the email address into the real name or the comment\n"
msgstr "請不要把電子郵件地址放進你的真實姓名或註釋裡\n"
#. TRANSLATORS: These are the allowed answers in
#. lower and uppercase. Below you will find the matching
#. string which should be translated accordingly and the
#. letter changed to match the one in the answer string.
#.
#. n = Change name
#. c = Change comment
#. e = Change email
#. o = Okay (ready, continue)
#. q = Quit
#.
msgid "NnCcEeOoQq"
msgstr "NnCcEeOoQq"
msgid "Change (N)ame, (C)omment, (E)mail or (Q)uit? "
msgstr "變更姓名(N), 註釋(C), 電子郵件地址(E)或退出(Q)? "
msgid "Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? "
msgstr "變更姓名(N), 註釋(C), 電子郵件地址(E)或確定(O)/退出(Q)? "
msgid "Please correct the error first\n"
msgstr "請先訂正錯誤\n"
msgid ""
"You need a Passphrase to protect your secret key.\n"
"\n"
msgstr ""
"你需要一個密語來保護你的私鑰.\n"
"\n"
#, c-format
msgid "%s.\n"
msgstr "%s.\n"
msgid ""
"You don't want a passphrase - this is probably a *bad* idea!\n"
"I will do it anyway. You can change your passphrase at any time,\n"
"using this program with the option \"--edit-key\".\n"
"\n"
msgstr ""
"你不想要有密語 - 這個想法實在是 **遭透了**!\n"
"我仍然會照你想的去做. 你任何時候都可以變更你的密語,\n"
"僅需要再次執行這個程式, 並且使用 \"--edit-key\" 選項即可.\n"
"\n"
msgid ""
"We need to generate a lot of random bytes. It is a good idea to perform\n"
"some other action (type on the keyboard, move the mouse, utilize the\n"
"disks) during the prime generation; this gives the random number\n"
"generator a better chance to gain enough entropy.\n"
msgstr ""
"我們需要產生大量的隨機位元組. 這個時候你可以多做一些事情\n"
"(像是敲打鍵盤, 移動滑鼠, 讀寫硬碟之類的)\n"
"這會讓隨機數字產生器有更多的機會獲得夠多的亂數.\n"
msgid "Key generation canceled.\n"
msgstr "金鑰產生已取消.\n"
#, c-format
msgid "writing public key to `%s'\n"
msgstr "正在寫入公鑰至 `%s'\n"
#, c-format
msgid "writing secret key stub to `%s'\n"
msgstr "正在寫入私鑰 stub 至 `%s'\n"
#, c-format
msgid "writing secret key to `%s'\n"
msgstr "正在寫入私鑰至 `%s'\n"
#, c-format
msgid "no writable public keyring found: %s\n"
msgstr "找不到可寫入的公鑰鑰匙圈: %s\n"
#, c-format
msgid "no writable secret keyring found: %s\n"
msgstr "找不到可寫入的私鑰鑰匙圈: %s\n"
#, c-format
msgid "error writing public keyring `%s': %s\n"
msgstr "寫入公鑰鑰匙圈 `%s' 時出錯: %s\n"
#, c-format
msgid "error writing secret keyring `%s': %s\n"
msgstr "寫入私鑰鑰匙圈 `%s' 時出錯: %s\n"
msgid "public and secret key created and signed.\n"
msgstr "公鑰和私鑰已建立及簽署.\n"
msgid ""
"Note that this key cannot be used for encryption. You may want to use\n"
"the command \"--edit-key\" to generate a subkey for this purpose.\n"
msgstr ""
"請注意這把金鑰不能用於加密. 也許你會想藉由 \"--edit-key\" 指令\n"
"來產生加密用的子鑰.\n"
#, c-format
msgid "Key generation failed: %s\n"
msgstr "產生金鑰失敗: %s\n"
#, c-format
msgid ""
"key has been created %lu second in future (time warp or clock problem)\n"
msgstr "金鑰已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n"
#, c-format
msgid ""
"key has been created %lu seconds in future (time warp or clock problem)\n"
msgstr "金鑰已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n"
msgid "NOTE: creating subkeys for v3 keys is not OpenPGP compliant\n"
msgstr "請注意: 對 v3 金鑰製造子鑰會失去 OpenPGP 相容性\n"
msgid "Really create? (y/N) "
msgstr "真的要建立嗎? (y/N) "
#, c-format
msgid "storing key onto card failed: %s\n"
msgstr "儲存金鑰到卡片上時失敗: %s\n"
#, c-format
msgid "can't create backup file `%s': %s\n"
msgstr "無法建立備份檔案 `%s': %s\n"
#, c-format
msgid "NOTE: backup of card key saved to `%s'\n"
msgstr "請注意: 卡片金鑰的備份已儲存至 `%s'\n"
msgid "never "
msgstr "永遠不過期"
msgid "Critical signature policy: "
msgstr "關鍵簽章原則: "
msgid "Signature policy: "
msgstr "簽章原則: "
msgid "Critical preferred keyserver: "
msgstr "執意偏好的金鑰伺服器: "
msgid "Critical signature notation: "
msgstr "關鍵簽章註記: "
msgid "Signature notation: "
msgstr "簽章註記: "
msgid "Keyring"
msgstr "鑰匙圈"
msgid "Primary key fingerprint:"
msgstr " 主鑰指紋:"
msgid " Subkey fingerprint:"
msgstr " 子鑰指紋:"
#. TRANSLATORS: this should fit into 24 bytes to that the
#. * fingerprint data is properly aligned with the user ID
msgid " Primary key fingerprint:"
msgstr " 主鑰指紋:"
msgid " Subkey fingerprint:"
msgstr " 子鑰指紋:"
# use tty
msgid " Key fingerprint ="
msgstr " 金鑰指紋 ="
msgid " Card serial no. ="
msgstr " 卡片序號 ="
#, c-format
msgid "renaming `%s' to `%s' failed: %s\n"
msgstr "把 `%s' 重新新命成 `%s' 時失敗: %s\n"
msgid "WARNING: 2 files with confidential information exists.\n"
msgstr "警告: 2 個檔案存在有互相矛盾的資訊.\n"
#, c-format
msgid "%s is the unchanged one\n"
msgstr "%s 是沒有改變的那一個\n"
#, c-format
msgid "%s is the new one\n"
msgstr "%s 是新的那一個\n"
msgid "Please fix this possible security flaw\n"
msgstr "請修補這個可能的安全漏洞\n"
#, c-format
msgid "caching keyring `%s'\n"
msgstr "快取鑰匙圈 `%s' 中\n"
#, c-format
msgid "%lu keys cached so far (%lu signatures)\n"
msgstr "目前已檢查 %lu 把金鑰 (共 %lu 份簽章)\n"
#, c-format
msgid "%lu keys cached (%lu signatures)\n"
msgstr "已檢查 %lu 把金鑰 (共 %lu 份簽章)\n"
#, c-format
msgid "%s: keyring created\n"
msgstr "%s: 鑰匙圈已建立\n"
msgid "include revoked keys in search results"
msgstr "在搜尋結果中也包含已撤銷的金鑰"
msgid "include subkeys when searching by key ID"
msgstr "以金鑰 ID 搜尋時也搜尋子鑰"
msgid "use temporary files to pass data to keyserver helpers"
msgstr "用暫存檔來將資料遞送給金鑰伺服器協助程式"
msgid "do not delete temporary files after using them"
msgstr "使用暫存檔後不要加以刪除"
msgid "automatically retrieve keys when verifying signatures"
msgstr "驗證簽章時自動取回金鑰"
msgid "honor the preferred keyserver URL set on the key"
msgstr "尊重金鑰上所設定的偏好金鑰伺服器 URL"
msgid "honor the PKA record set on a key when retrieving keys"
msgstr "取回金鑰時尊重金鑰所設定的 PKA 記錄"
#, c-format
msgid "WARNING: keyserver option `%s' is not used on this platform\n"
msgstr "警告: 金鑰伺服器選項 `%s' 並未用於此平台\n"
msgid "disabled"
msgstr "已停用"
msgid "Enter number(s), N)ext, or Q)uit > "
msgstr "請輸入數字, N)下一頁, 或 Q)離開 > "
#, c-format
msgid "invalid keyserver protocol (us %d!=handler %d)\n"
msgstr "無效的金鑰伺服器協定 (我們用 %d!=經手程式 %d)\n"
#, c-format
msgid "key \"%s\" not found on keyserver\n"
msgstr "在金鑰伺服器上找不到金鑰 \"%s\"\n"
msgid "key not found on keyserver\n"
msgstr "在金鑰伺服器上找不到金鑰\n"
#, c-format
msgid "requesting key %s from %s server %s\n"
msgstr "正在請求金鑰 %s 自 %s 伺服器 %s\n"
#, c-format
msgid "requesting key %s from %s\n"
msgstr "正在請求金鑰 %s 自 %s\n"
#, c-format
msgid "searching for names from %s server %s\n"
msgstr "正在從 %s 伺服器 %s 搜尋名字\n"
#, c-format
msgid "searching for names from %s\n"
msgstr "正在從 %s 搜尋名字\n"
#, c-format
msgid "sending key %s to %s server %s\n"
msgstr "遞送金鑰 %s 至 %s 伺服器 %s\n"
#, c-format
msgid "sending key %s to %s\n"
msgstr "遞送金鑰 %s 至 %s\n"
#, c-format
msgid "searching for \"%s\" from %s server %s\n"
msgstr "正在搜尋 \"%s\" 於 %s 伺服器 %s\n"
#, c-format
msgid "searching for \"%s\" from %s\n"
msgstr "正在搜尋 \"%s\" 於 %s\n"
msgid "no keyserver action!\n"
msgstr "沒有金鑰伺服器動作!\n"
#, c-format
msgid "WARNING: keyserver handler from a different version of GnuPG (%s)\n"
msgstr "警告: 金鑰伺服器經手程式係來自不同版本的 GnuPG (%s)\n"
msgid "keyserver did not send VERSION\n"
msgstr "金鑰伺服器並未送出版本 (VERSION)\n"
#, c-format
msgid "keyserver communications error: %s\n"
msgstr "金鑰伺服器通訊錯誤: %s\n"
msgid "no keyserver known (use option --keyserver)\n"
msgstr "沒有已知的金鑰伺服器 (使用 --keyserver 選項)\n"
msgid "external keyserver calls are not supported in this build\n"
msgstr "本版並不支援外部金鑰伺服器叫用\n"
#, c-format
msgid "no handler for keyserver scheme `%s'\n"
msgstr "沒有 `%s' 金鑰伺服器架構的經手程式\n"
#, c-format
msgid "action `%s' not supported with keyserver scheme `%s'\n"
msgstr "`%s' 動作在 `%s' 金鑰伺服器架構中未支援\n"
#, c-format
msgid "%s does not support handler version %d\n"
msgstr "%s 並不支援第 %d 版經手程式\n"
msgid "keyserver timed out\n"
msgstr "金鑰伺服器逾時\n"
msgid "keyserver internal error\n"
msgstr "金鑰伺服器內部錯誤\n"
#, c-format
msgid "\"%s\" not a key ID: skipping\n"
msgstr "\"%s\" 並非金鑰 ID: 跳過中\n"
#, c-format
msgid "WARNING: unable to refresh key %s via %s: %s\n"
msgstr "警告: 無法更新金鑰 %s 於 %s: %s\n"
#, c-format
msgid "refreshing 1 key from %s\n"
msgstr "更新 1 份金鑰中 (從 %s )\n"
#, c-format
msgid "refreshing %d keys from %s\n"
msgstr "更新 %d 份金鑰中 (從 %s )\n"
#, c-format
msgid "WARNING: unable to fetch URI %s: %s\n"
msgstr "警告: 無法抓取 URI %s: %s\n"
#, c-format
msgid "WARNING: unable to parse URI %s\n"
msgstr "警告: 無法剖析 URI %s\n"
#, c-format
msgid "weird size for an encrypted session key (%d)\n"
msgstr "加密過的階段金鑰 (%d) 尺寸詭異\n"
#, c-format
msgid "%s encrypted session key\n"
msgstr "%s 加密過的階段金鑰\n"
#, c-format
msgid "passphrase generated with unknown digest algorithm %d\n"
msgstr "密語係以未知的 %d 摘要演算法所產生\n"
#, c-format
msgid "public key is %s\n"
msgstr "公鑰為 %s\n"
msgid "public key encrypted data: good DEK\n"
msgstr "公鑰加密過的資料: 完好的 DEK\n"
#, c-format
msgid "encrypted with %u-bit %s key, ID %s, created %s\n"
msgstr "已用 %u 位元長的 %s 金鑰, ID %s, 建立於 %s 所加密\n"
#, c-format
msgid " \"%s\"\n"
msgstr " \"%s\"\n"
#, c-format
msgid "encrypted with %s key, ID %s\n"
msgstr "已用 %s 金鑰, ID %s 所加密\n"
#, c-format
msgid "public key decryption failed: %s\n"
msgstr "公鑰解密失敗: %s\n"
#, c-format
msgid "encrypted with %lu passphrases\n"
msgstr "已用 %lu 個密語加密了\n"
msgid "encrypted with 1 passphrase\n"
msgstr "已用 1 個密語加密了\n"
#, c-format
msgid "assuming %s encrypted data\n"
msgstr "假定 %s 為加密過的資料\n"
#, c-format
msgid "IDEA cipher unavailable, optimistically attempting to use %s instead\n"
msgstr "IDEA 編密法不可用, 我們樂觀地試著改以 %s 代替\n"
msgid "decryption okay\n"
msgstr "解密成功\n"
msgid "WARNING: message was not integrity protected\n"
msgstr "警告: 訊息未受到完整的保護\n"
msgid "WARNING: encrypted message has been manipulated!\n"
msgstr "警告: 加密過的訊息已經被變造了!\n"
#, c-format
msgid "decryption failed: %s\n"
msgstr "解密失敗: %s\n"
msgid "NOTE: sender requested \"for-your-eyes-only\"\n"
msgstr "請注意: 寄件者要求了 \"你應該祇用眼睛看\"\n"
#, c-format
msgid "original file name='%.*s'\n"
msgstr "原始的檔名 ='%.*s'\n"
msgid "WARNING: multiple plaintexts seen\n"
msgstr "警告: 看到了多份明文\n"
msgid "standalone revocation - use \"gpg --import\" to apply\n"
msgstr "獨立撤銷 - 請用 \"gpg --import\" 來套用\n"
msgid "no signature found\n"
msgstr "找不到簽章\n"
msgid "signature verification suppressed\n"
msgstr "簽章驗證已抑制\n"
msgid "can't handle this ambiguous signature data\n"
msgstr "無法處理這個不明確的簽章資料\n"
#, c-format
msgid "Signature made %s\n"
msgstr "由 %s 建立的簽章\n"
#, c-format
msgid " using %s key %s\n"
msgstr " 使用 %s 金鑰 %s\n"
#, c-format
msgid "Signature made %s using %s key ID %s\n"
msgstr "由 %s 建立的簽章, 使用 %s 金鑰 ID %s\n"
msgid "Key available at: "
msgstr "可用的金鑰於: "
#, c-format
msgid "BAD signature from \"%s\""
msgstr "*損壞* 的簽章來自於 \"%s\""
#, c-format
msgid "Expired signature from \"%s\""
msgstr "過期的簽章來自於 \"%s\""
#, c-format
msgid "Good signature from \"%s\""
msgstr "完好的簽章來自於 \"%s\""
msgid "[uncertain]"
msgstr "[ 不確定 ]"
#, c-format
msgid " aka \"%s\""
msgstr " 亦即 \"%s\""
#, c-format
msgid "Signature expired %s\n"
msgstr "這份簽署已經在 %s 過期了\n"
#, c-format
msgid "Signature expires %s\n"
msgstr "這份簽署將在 %s 到期\n"
#, c-format
msgid "%s signature, digest algorithm %s\n"
msgstr "%s 簽章, 摘要演算法 %s\n"
msgid "binary"
msgstr "二進制"
msgid "textmode"
msgstr "文字模式"
msgid "unknown"
msgstr "未知"
#, c-format
msgid "WARNING: not a detached signature; file '%s' was NOT verified!\n"
msgstr ""
#, c-format
msgid "Can't check signature: %s\n"
msgstr "無法檢查簽章: %s\n"
msgid "not a detached signature\n"
msgstr "不是一份分離的簽章\n"
msgid ""
"WARNING: multiple signatures detected. Only the first will be checked.\n"
msgstr "警告: 偵測到多重簽章. 祇有第一個簽章纔會被核選.\n"
#, c-format
msgid "standalone signature of class 0x%02x\n"
msgstr "等級 0x%02x 的獨立簽章\n"
msgid "old style (PGP 2.x) signature\n"
msgstr "舊型 (PGP 2.x) 簽章\n"
msgid "invalid root packet detected in proc_tree()\n"
msgstr "在 proc_tree() 中偵測到無效的 root 封包\n"
#, c-format
msgid "can't disable core dumps: %s\n"
msgstr "無法讓系統停止傾印核心檔: %s\n"
#, c-format
msgid "fstat of `%s' failed in %s: %s\n"
msgstr "`%s' 的 fstat 失敗於 %s: %s\n"
#, c-format
msgid "fstat(%d) failed in %s: %s\n"
msgstr "fstat(%d) 失敗於 %s: %s\n"
#, c-format
msgid "WARNING: using experimental public key algorithm %s\n"
msgstr "警告: 正在使用實驗性的 %s 公鑰演算法\n"
msgid "WARNING: Elgamal sign+encrypt keys are deprecated\n"
msgstr "警告: 已不建議使用 Elgamal 簽署暨加密金鑰\n"
#, c-format
msgid "WARNING: using experimental cipher algorithm %s\n"
msgstr "警告: 正在使用實驗性的 %s 編密演算法\n"
#, c-format
msgid "WARNING: using experimental digest algorithm %s\n"
msgstr "警告: 正在使用實驗性的 %s 摘要演算法\n"
#, c-format
msgid "WARNING: digest algorithm %s is deprecated\n"
msgstr "警告: 已不建議使用 %s 摘要演算法\n"
#, c-format
msgid "please see %s for more information\n"
msgstr "請參考 %s 上進一步的資訊\n"
#, c-format
msgid "NOTE: This feature is not available in %s\n"
msgstr "請注意: %s 功能在本版中無法使用\n"
#, c-format
msgid "%s:%d: deprecated option \"%s\"\n"
msgstr "%s:%d: 不建議使用的選項 \"%s\"\n"
#, c-format
msgid "WARNING: \"%s\" is a deprecated option\n"
msgstr "警告: 已不建議使用 \"%s\" 選項\n"
#, c-format
msgid "please use \"%s%s\" instead\n"
msgstr "請改以 \"%s%s\" 代替\n"
#, c-format
msgid "WARNING: \"%s\" is a deprecated command - do not use it\n"
msgstr "警告: \"%s\" 是個棄而不顧的指令 - 別再用了\n"
msgid "Uncompressed"
msgstr "未壓縮"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "uncompressed|none"
msgstr "uncompressed|none|未壓縮|無"
#, c-format
msgid "this message may not be usable by %s\n"
msgstr "這個訊息對 %s 來說無法使用\n"
#, c-format
msgid "ambiguous option `%s'\n"
msgstr "不明確的 `%s' 選項\n"
#, c-format
msgid "unknown option `%s'\n"
msgstr "未知的 `%s' 選項\n"
#, fuzzy, c-format
#| msgid "Unknown signature type `%s'\n"
msgid "Unknown weak digest '%s'\n"
msgstr "未知的 `%s' 簽章種類\n"
#, c-format
msgid "File `%s' exists. "
msgstr "檔案 `%s' 已存在. "
msgid "Overwrite? (y/N) "
msgstr "是否覆寫? (y/N) "
#, c-format
msgid "%s: unknown suffix\n"
msgstr "%s: 未知的副檔名\n"
msgid "Enter new filename"
msgstr "請輸入新的檔名"
msgid "writing to stdout\n"
msgstr "寫到標準輸出中\n"
#, c-format
msgid "assuming signed data in `%s'\n"
msgstr "假設被簽署的資料在 `%s'\n"
#, c-format
msgid "new configuration file `%s' created\n"
msgstr "新的設定檔 `%s' 被建立了\n"
#, c-format
msgid "WARNING: options in `%s' are not yet active during this run\n"
msgstr "警告: 在 `%s' 裡的選項於這次執行期間並沒有被啟用\n"
#, c-format
msgid "directory `%s' created\n"
msgstr "`%s' 目錄已建立\n"
#, c-format
msgid "can't handle public key algorithm %d\n"
msgstr "無法操作 %d 公開金鑰演算法\n"
msgid "WARNING: potentially insecure symmetrically encrypted session key\n"
msgstr "警告: 可能並不安全的對稱式加密階段金鑰\n"
#, c-format
msgid "subpacket of type %d has critical bit set\n"
msgstr "%d 類別的子封包設定了關鍵位元\n"
msgid "gpg-agent is not available in this session\n"
msgstr "gpg-agent 在此階段無法使用\n"
msgid "malformed GPG_AGENT_INFO environment variable\n"
msgstr "格式不對的 GPG_AGENT_INFO 環境變數\n"
#, c-format
msgid "gpg-agent protocol version %d is not supported\n"
msgstr "gpg-agent 協定版本 %d 未被支援\n"
#, c-format
msgid "can't connect to `%s': %s\n"
msgstr "無法連接至 `%s': %s\n"
msgid "problem with the agent - disabling agent use\n"
msgstr "代理程式的問題 - 停用代理程式中\n"
#, c-format
msgid " (main key ID %s)"
msgstr " (主要金鑰 ID %s)"
#, c-format
msgid ""
"You need a passphrase to unlock the secret key for user:\n"
"\"%.*s\"\n"
"%u-bit %s key, ID %s, created %s%s\n"
msgstr ""
"你需要用密語來解開下列使用者的私鑰:\n"
"\"%.*s\"\n"
"%u 位元長的 %s 金鑰, ID %s, 建立於 %s%s\n"
msgid "Repeat passphrase\n"
msgstr "請再輸入一次密語\n"
msgid "Enter passphrase\n"
msgstr "請輸入密語\n"
msgid "cancelled by user\n"
msgstr "由使用者所取消\n"
msgid "can't query passphrase in batch mode\n"
msgstr "無法在批次模式中查詢密語\n"
msgid "Enter passphrase: "
msgstr "請輸入密語: "
#, c-format
msgid ""
"You need a passphrase to unlock the secret key for\n"
"user: \"%s\"\n"
msgstr ""
"你需要用密語來解開下列使用者的\n"
"私鑰: \"%s\"\n"
#, c-format
msgid "%u-bit %s key, ID %s, created %s"
msgstr "%u 位元長的 %s 金鑰, ID %s, 建立於 %s"
#, c-format
msgid " (subkey on main key ID %s)"
msgstr " (在主鑰 ID %s 上的子鑰)"
msgid "Repeat passphrase: "
msgstr "請再輸入一次密語: "
msgid ""
"\n"
"Pick an image to use for your photo ID. The image must be a JPEG file.\n"
"Remember that the image is stored within your public key. If you use a\n"
"very large picture, your key will become very large as well!\n"
"Keeping the image close to 240x288 is a good size to use.\n"
msgstr ""
"\n"
"請挑選一張圖片來當成你的照片 ID. 這張圖片一定要是 JPEG 圖檔纔行.\n"
"請記住這張圖片會被存放在你的公鑰裡. 如果你挑了非常大的圖片的話,\n"
"你的金鑰也會變成非常地大!\n"
"盡量把圖片尺寸控制在 240x288 左右, 會是個非常理想的大小.\n"
msgid "Enter JPEG filename for photo ID: "
msgstr "輸入要當作照片 ID 的 JPEG 檔名: "
#, c-format
msgid "unable to open JPEG file `%s': %s\n"
msgstr "無法開啟 JPEG 圖檔 `%s': %s\n"
#, c-format
msgid "This JPEG is really large (%d bytes) !\n"
msgstr "這個 JPEG 檔案真的很大 (%d 位元組) !\n"
msgid "Are you sure you want to use it? (y/N) "
msgstr "你確定要用它嗎? (y/N) "
#, c-format
msgid "`%s' is not a JPEG file\n"
msgstr "`%s' 不是一個 JPEG 圖檔\n"
msgid "Is this photo correct (y/N/q)? "
msgstr "這張照片正確嗎? (y/N/q) "
msgid "no photo viewer set\n"
msgstr "沒有設定照片檢視程式\n"
msgid "unable to display photo ID!\n"
msgstr "無法顯示照片 ID!\n"
msgid "No reason specified"
msgstr "未指定原因"
msgid "Key is superseded"
msgstr "金鑰被代換了"
msgid "Key has been compromised"
msgstr "金鑰已經被洩漏了"
msgid "Key is no longer used"
msgstr "金鑰不再被使用了"
msgid "User ID is no longer valid"
msgstr "使用者 ID 不再有效了"
msgid "reason for revocation: "
msgstr "撤銷原因: "
msgid "revocation comment: "
msgstr "撤銷註釋: "
# a string with valid answers
#. TRANSLATORS: These are the allowed answers in lower and
#. uppercase. Below you will find the matching strings which
#. should be translated accordingly and the letter changed to
#. match the one in the answer string.
#.
#. i = please show me more information
#. m = back to the main menu
#. s = skip this key
#. q = quit
#.
msgid "iImMqQsS"
msgstr "iImMqQsS"
msgid "No trust value assigned to:\n"
msgstr "下列項目沒有對應的信任值:\n"
#, c-format
msgid " aka \"%s\"\n"
msgstr " 亦即 \"%s\"\n"
msgid ""
"How much do you trust that this key actually belongs to the named user?\n"
msgstr "你有多信任這把金鑰真的屬於叫這個名字的使用者?\n"
#, c-format
msgid " %d = I don't know or won't say\n"
msgstr " %d = 我不知道或不想說\n"
#, c-format
msgid " %d = I do NOT trust\n"
msgstr " %d = 我*不*信任\n"
#, c-format
msgid " %d = I trust ultimately\n"
msgstr " %d = 我徹底信任\n"
msgid " m = back to the main menu\n"
msgstr " m = 回到主選單\n"
msgid " s = skip this key\n"
msgstr " s = 跳過這把金鑰\n"
msgid " q = quit\n"
msgstr " q = 離開\n"
#, c-format
msgid ""
"The minimum trust level for this key is: %s\n"
"\n"
msgstr ""
"這把金鑰的最小信任等級為: %s\n"
"\n"
msgid "Your decision? "
msgstr "你的決定是甚麼? "
msgid "Do you really want to set this key to ultimate trust? (y/N) "
msgstr "請問你是否真的想把這把金鑰設成徹底信任呢? (y/N) "
msgid "Certificates leading to an ultimately trusted key:\n"
msgstr "被徹底信任金鑰的憑證:\n"
#, c-format
msgid "%s: There is no assurance this key belongs to the named user\n"
msgstr "%s: 沒法保證這把金鑰真的屬於叫這個名字的使用者\n"
#, c-format
msgid "%s: There is limited assurance this key belongs to the named user\n"
msgstr "%s: 祇能有限的保證這把金鑰真的屬於叫這個名字的使用者\n"
msgid "This key probably belongs to the named user\n"
msgstr "這把金鑰很可能屬於叫這個名字的使用者\n"
msgid "This key belongs to us\n"
msgstr "這把金鑰是屬於我們自己的\n"
msgid ""
"It is NOT certain that the key belongs to the person named\n"
"in the user ID. If you *really* know what you are doing,\n"
"you may answer the next question with yes.\n"
msgstr ""
"這把金鑰並 *不* 確定屬於使用者 ID 裡的那個人.\n"
"除非你 **真的** 知道自己在做甚麼,\n"
"否則你最好在下一個問題回答 no\n"
msgid "Use this key anyway? (y/N) "
msgstr "無論如何還是使用這把金鑰嗎? (y/N) "
msgid "WARNING: Using untrusted key!\n"
msgstr "警告: 正在使用不被信任的金鑰!\n"
msgid "WARNING: this key might be revoked (revocation key not present)\n"
msgstr "警告: 這把金鑰可能已撤銷 (撤銷金鑰未出現)\n"
msgid "WARNING: This key has been revoked by its designated revoker!\n"
msgstr "警告: 這把金鑰已被指定撤銷者所撤銷!\n"
msgid "WARNING: This key has been revoked by its owner!\n"
msgstr "警告: 這把金鑰已被其持有人所撤銷!\n"
msgid " This could mean that the signature is forged.\n"
msgstr " 這很有可能表示此簽章是偽造的.\n"
msgid "WARNING: This subkey has been revoked by its owner!\n"
msgstr "警告: 這把子鑰已被其持有人所撤銷!\n"
msgid "Note: This key has been disabled.\n"
msgstr "請注意: 這把金鑰已停用.\n"
#, c-format
msgid "Note: Verified signer's address is `%s'\n"
msgstr "請注意: 已驗證的簽署者地址為 `%s'\n"
#, c-format
msgid "Note: Signer's address `%s' does not match DNS entry\n"
msgstr "請注意: 簽署者地址 `%s' 與 DNS 項目並不吻合\n"
msgid "trustlevel adjusted to FULL due to valid PKA info\n"
msgstr "信任等級因有效的 PKA 資訊而調整為 *完全*\n"
msgid "trustlevel adjusted to NEVER due to bad PKA info\n"
msgstr "信任等級因不良的 PKA 資訊而調整為 *永遠不會*\n"
msgid "Note: This key has expired!\n"
msgstr "請注意: 這把金鑰已經過期了!\n"
msgid "WARNING: This key is not certified with a trusted signature!\n"
msgstr "警告: 這把金鑰並非以受信任的簽章所認證!\n"
msgid ""
" There is no indication that the signature belongs to the owner.\n"
msgstr " 沒有證據指出這個簽章屬於這個持有者.\n"
msgid "WARNING: We do NOT trust this key!\n"
msgstr "警告: 我們 *不* 信任這把金鑰!\n"
msgid " The signature is probably a FORGERY.\n"
msgstr " 這個簽章很有可能是 *偽造的*.\n"
msgid ""
"WARNING: This key is not certified with sufficiently trusted signatures!\n"
msgstr "警告: 這把金鑰並非以足夠信任的簽章所認證!\n"
msgid " It is not certain that the signature belongs to the owner.\n"
msgstr " 這份簽章並不屬於這個持有者\n"
#, c-format
msgid "%s: skipped: %s\n"
msgstr "%s: 已跳過: %s\n"
#, c-format
msgid "%s: skipped: public key already present\n"
msgstr "%s: 已跳過: 公鑰已存在\n"
msgid "You did not specify a user ID. (you may use \"-r\")\n"
msgstr "你沒有指定使用者 ID. (你可能得用 \"-r\")\n"
msgid "Current recipients:\n"
msgstr "目前的收件者:\n"
msgid ""
"\n"
"Enter the user ID. End with an empty line: "
msgstr ""
"\n"
"請輸入使用者 ID. 以空白列結束: "
msgid "No such user ID.\n"
msgstr "沒有這個使用者 ID.\n"
msgid "skipped: public key already set as default recipient\n"
msgstr "已跳過: 公鑰已經被設成預設收件者\n"
msgid "Public key is disabled.\n"
msgstr "公鑰已停用.\n"
msgid "skipped: public key already set\n"
msgstr "已跳過: 公鑰已設過\n"
#, c-format
msgid "unknown default recipient \"%s\"\n"
msgstr "未知的預設收件者 \"%s\"\n"
#, c-format
msgid "%s: skipped: public key is disabled\n"
msgstr "%s: 已跳過: 公鑰已停用\n"
msgid "no valid addressees\n"
msgstr "沒有有效的地址\n"
msgid "data not saved; use option \"--output\" to save it\n"
msgstr "資料未被儲存; 請用 \"--output\" 選項來儲存\n"
#, c-format
msgid "error creating `%s': %s\n"
msgstr "建立 `%s' 時出錯: %s\n"
msgid "Detached signature.\n"
msgstr "分離的簽章.\n"
msgid "Please enter name of data file: "
msgstr "請輸入資料檔的名稱: "
msgid "reading stdin ...\n"
msgstr "正在讀取標準輸入中 ...\n"
msgid "no signed data\n"
msgstr "沒有被簽署過的資料\n"
#, c-format
msgid "can't open signed data `%s'\n"
msgstr "無法開啟被簽署過的資料 `%s'\n"
#, c-format
msgid "anonymous recipient; trying secret key %s ...\n"
msgstr "匿名收件者; 正在嘗試使用私鑰 %s ...\n"
msgid "okay, we are the anonymous recipient.\n"
msgstr "很好, 我們就是匿名收件者.\n"
msgid "old encoding of the DEK is not supported\n"
msgstr "不支援舊式的 DEK 編碼\n"
#, c-format
msgid "cipher algorithm %d%s is unknown or disabled\n"
msgstr "%d%s 編密演算法未知或已停用\n"
#, c-format
msgid "WARNING: cipher algorithm %s not found in recipient preferences\n"
msgstr "警告: 收件者偏好設定中找不到 %s 編密演算法\n"
#, c-format
msgid "NOTE: secret key %s expired at %s\n"
msgstr "請注意: 私鑰 %s 在 %s 過期了\n"
msgid "NOTE: key has been revoked"
msgstr "請注意: 金鑰已撤銷"
#, c-format
msgid "build_packet failed: %s\n"
msgstr "build_packet 失敗: %s\n"
#, c-format
msgid "key %s has no user IDs\n"
msgstr "金鑰 %s 沒有使用者 ID\n"
msgid "To be revoked by:\n"
msgstr "將被撤銷:\n"
msgid "(This is a sensitive revocation key)\n"
msgstr "(這是把機密的撤銷金鑰)\n"
msgid "Create a designated revocation certificate for this key? (y/N) "
msgstr "要為這把金鑰建立一份指定撤銷憑證嗎? (y/N) "
msgid "ASCII armored output forced.\n"
msgstr "已強迫使用 ASCII 封裝過的輸出.\n"
#, c-format
msgid "make_keysig_packet failed: %s\n"
msgstr "make_keysig_packet 失敗: %s\n"
msgid "Revocation certificate created.\n"
msgstr "已建立撤銷憑證.\n"
#, c-format
msgid "no revocation keys found for \"%s\"\n"
msgstr "沒有找到 \"%s\" 用的撤銷金鑰\n"
#, c-format
msgid "secret key \"%s\" not found: %s\n"
msgstr "找不到私鑰 \"%s\": %s\n"
#, c-format
msgid "no corresponding public key: %s\n"
msgstr "沒有相對應的公鑰: %s\n"
msgid "public key does not match secret key!\n"
msgstr "公鑰與私鑰並不吻合!\n"
msgid "Create a revocation certificate for this key? (y/N) "
msgstr "要為這把金鑰建立一份撤銷憑證嗎? (y/N) "
msgid "unknown protection algorithm\n"
msgstr "未知的保護演算法\n"
msgid "NOTE: This key is not protected!\n"
msgstr "請注意: 這把金鑰未受保護!\n"
msgid ""
"Revocation certificate created.\n"
"\n"
"Please move it to a medium which you can hide away; if Mallory gets\n"
"access to this certificate he can use it to make your key unusable.\n"
"It is smart to print this certificate and store it away, just in case\n"
"your media become unreadable. But have some caution: The print system of\n"
"your machine might store the data and make it available to others!\n"
msgstr ""
"已建立撤銷憑證.\n"
"\n"
"請把這個檔案搬移到另一個你能夠將之藏起來的媒介上;\n"
"如果有人能夠取得這份憑證的話, 那麼他也能夠讓你的\n"
"金鑰無法繼續使用. 把這份憑證列印出來再藏到別的地\n"
"方也是很好的方法, 以免你的儲存媒介損毀而無法讀取.\n"
"但是千萬小心: 你的機器上的列印系統可能會在列印過\n"
"程中把這些資料暫存在某個其他人也能夠看得到的地方!\n"
msgid "Please select the reason for the revocation:\n"
msgstr "請選擇撤銷的原因:\n"
msgid "Cancel"
msgstr "取消"
#, c-format
msgid "(Probably you want to select %d here)\n"
msgstr "(也許你會想要在這裡選擇 %d)\n"
msgid "Enter an optional description; end it with an empty line:\n"
msgstr "請輸入選用的描述; 以空白列結束:\n"
#, c-format
msgid "Reason for revocation: %s\n"
msgstr "撤銷原因: %s\n"
msgid "(No description given)\n"
msgstr "(沒有給定描述)\n"
msgid "Is this okay? (y/N) "
msgstr "這樣可以嗎? (y/N) "
msgid "secret key parts are not available\n"
msgstr "私鑰部分無法取用\n"
#, c-format
msgid "protection algorithm %d%s is not supported\n"
msgstr "%d%s 保護演算法未支援\n"
#, c-format
msgid "protection digest %d is not supported\n"
msgstr "%d 保護摘要未支援\n"
msgid "Invalid passphrase; please try again"
msgstr "無效的密語; 請再試一次"
#, c-format
msgid "%s ...\n"
msgstr "%s ...\n"
msgid "WARNING: Weak key detected - please change passphrase again.\n"
msgstr "警告: 偵測到金鑰薄弱 - 請再更換一次密語.\n"
msgid "generating the deprecated 16-bit checksum for secret key protection\n"
msgstr "正在產生私鑰保護會用到的舊式 16 位元加總檢查\n"
msgid "weak key created - retrying\n"
msgstr "建立了弱金鑰 - 重試中\n"
#, c-format
msgid "cannot avoid weak key for symmetric cipher; tried %d times!\n"
msgstr "無法避免對稱式編密法的弱金鑰; 已經試了 %d 次了!\n"
msgid "DSA requires the hash length to be a multiple of 8 bits\n"
msgstr "DSA 需要 8 位元倍數的雜湊長度\n"
#, c-format
msgid "DSA key %s uses an unsafe (%u bit) hash\n"
msgstr "DSA 金鑰 %s 使用不安全 (%u 位元) 的雜湊\n"
#, c-format
msgid "DSA key %s requires a %u bit or larger hash\n"
msgstr "DSA 金鑰 %s 需要 %u 位元以上的雜湊\n"
msgid "WARNING: signature digest conflict in message\n"
msgstr "警告: 簽章摘要與訊息不一致\n"
#, c-format
msgid "WARNING: signing subkey %s is not cross-certified\n"
msgstr "警告: 簽署子鑰 %s 未經交叉認證\n"
#, c-format
msgid "WARNING: signing subkey %s has an invalid cross-certification\n"
msgstr "警告: 簽署子鑰 %s 有無效的交叉憑證\n"
#, c-format
msgid "public key %s is %lu second newer than the signature\n"
msgstr "公鑰 %s 比簽章還要新了 %lu 秒\n"
#, c-format
msgid "public key %s is %lu seconds newer than the signature\n"
msgstr "公鑰 %s 比簽章還要新了 %lu 秒\n"
#, c-format
msgid ""
"key %s was created %lu second in the future (time warp or clock problem)\n"
msgstr "金鑰 %s 已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n"
#, c-format
msgid ""
"key %s was created %lu seconds in the future (time warp or clock problem)\n"
msgstr "金鑰 %s 已經在 %lu 秒後的未來製妥 (可能是因為時光旅行或時鐘的問題)\n"
#, c-format
msgid "NOTE: signature key %s expired %s\n"
msgstr "請注意: 簽章金鑰 %s 已於 %s 過期\n"
#, fuzzy, c-format
#| msgid "%s signature, digest algorithm %s\n"
msgid "Note: signatures using the %s algorithm are rejected\n"
msgstr "%s 簽章, 摘要演算法 %s\n"
#, c-format
msgid "assuming bad signature from key %s due to an unknown critical bit\n"
msgstr "假設金鑰 %s 的損壞簽章導因於某個未知的關鍵位元\n"
#, c-format
msgid "key %s: no subkey for subkey revocation signature\n"
msgstr "金鑰 %s: 沒有子鑰可供子鑰撤銷簽章使用\n"
#, c-format
msgid "key %s: no subkey for subkey binding signature\n"
msgstr "金鑰 %s: 沒有子鑰可供附子鑰簽章之用\n"
#, c-format
msgid "WARNING: unable to %%-expand notation (too large). Using unexpanded.\n"
msgstr "警告: 註記 %% 無法擴張 (太大了). 現在使用未擴張的.\n"
#, c-format
msgid ""
"WARNING: unable to %%-expand policy URL (too large). Using unexpanded.\n"
msgstr "警告: 原則 URL 的 %% 無法擴張 (太大了). 現在使用未擴張的.\n"
#, c-format
msgid ""
"WARNING: unable to %%-expand preferred keyserver URL (too large). Using "
"unexpanded.\n"
msgstr "警告: 偏好金鑰伺服器 URL 的 %% 無法擴張 (太大了). 現在使用未擴張的.\n"
#, c-format
msgid "checking created signature failed: %s\n"
msgstr "檢查已建立的簽章時出錯: %s\n"
#, c-format
msgid "%s/%s signature from: \"%s\"\n"
msgstr "%s/%s 簽章來自: \"%s\"\n"
msgid "you can only detach-sign with PGP 2.x style keys while in --pgp2 mode\n"
msgstr "你在 --pgp2 模式下祇能夠使用 PGP 2.x 型態的金鑰來做分離簽署\n"
#, c-format
msgid ""
"WARNING: forcing digest algorithm %s (%d) violates recipient preferences\n"
msgstr "警告: 強迫使用 %s (%d) 摘要演算法會違反收件者偏好設定\n"
msgid "signing:"
msgstr "簽署:"
msgid "you can only clearsign with PGP 2.x style keys while in --pgp2 mode\n"
msgstr "你在 --pgp2 模式下祇能夠使用 PGP 2.x 型態的金鑰來做明文簽署\n"
#, c-format
msgid "%s encryption will be used\n"
msgstr "%s 加密將被採用\n"
msgid "key is not flagged as insecure - can't use it with the faked RNG!\n"
msgstr "金鑰未被標示為不安全 - 不能夠拿來跟假的隨機數字產生器併用!\n"
#, c-format
msgid "skipped \"%s\": duplicated\n"
msgstr "已跳過 \"%s\": 重複了\n"
#, c-format
msgid "skipped \"%s\": %s\n"
msgstr "已跳過 \"%s\": %s\n"
msgid "skipped: secret key already present\n"
msgstr "已跳過: 私鑰已經存在\n"
msgid "this is a PGP generated Elgamal key which is not secure for signatures!"
msgstr "這是由 PGP 產生的 ElGamal 金鑰, 用於簽章並不安全!"
#, c-format
msgid "trust record %lu, type %d: write failed: %s\n"
msgstr "信任記錄 %lu, 類別 %d: 寫入失敗: %s\n"
#, c-format
msgid ""
"# List of assigned trustvalues, created %s\n"
"# (Use \"gpg --import-ownertrust\" to restore them)\n"
msgstr ""
"# 相對應的信任值清單被建立於 %s\n"
"# (請用 \"gpg --import-ownertrust\" 來取回它們)\n"
#, c-format
msgid "error in `%s': %s\n"
msgstr "在 `%s' 中出錯: %s\n"
msgid "line too long"
msgstr "列太長"
msgid "colon missing"
msgstr "冒號缺漏"
msgid "invalid fingerprint"
msgstr "無效的指紋"
msgid "ownertrust value missing"
msgstr "主觀信任值缺漏"
#, c-format
msgid "error finding trust record in `%s': %s\n"
msgstr "在 `%s' 中尋找信任記錄時出錯: %s\n"
#, c-format
msgid "read error in `%s': %s\n"
msgstr "讀取 `%s' 錯誤: %s\n"
#, c-format
msgid "trustdb: sync failed: %s\n"
msgstr "信任資料庫: 同步化失敗: %s\n"
#, c-format
msgid "can't create lock for `%s'\n"
msgstr "無法為 `%s' 建立鎖定\n"
#, c-format
msgid "can't lock `%s'\n"
msgstr "無法鎖定 `%s'\n"
#, c-format
msgid "trustdb rec %lu: lseek failed: %s\n"
msgstr "信任資料庫記錄 %lu: 本機搜尋失敗: %s\n"
#, c-format
msgid "trustdb rec %lu: write failed (n=%d): %s\n"
msgstr "信任資料庫記錄 %lu: 寫入失敗 (n=%d): %s\n"
msgid "trustdb transaction too large\n"
msgstr "信任資料庫更動量過大\n"
#, c-format
msgid "%s: directory does not exist!\n"
msgstr "%s: 目錄不存在!\n"
#, c-format
msgid "can't access `%s': %s\n"
msgstr "無法存取 `%s': %s\n"
#, c-format
msgid "%s: failed to create version record: %s"
msgstr "%s: 建立版本記錄失敗: %s"
#, c-format
msgid "%s: invalid trustdb created\n"
msgstr "%s: 建立了無效的信任資料庫\n"
#, c-format
msgid "%s: trustdb created\n"
msgstr "%s: 建立了信任資料庫\n"
msgid "NOTE: trustdb not writable\n"
msgstr "請注意: 信任資料庫不可寫入\n"
#, c-format
msgid "%s: invalid trustdb\n"
msgstr "%s: 無效的信任資料庫\n"
#, c-format
msgid "%s: failed to create hashtable: %s\n"
msgstr "%s: 建立雜湊表失敗: %s\n"
#, c-format
msgid "%s: error updating version record: %s\n"
msgstr "%s: 更新版本記錄時錯誤: %s\n"
#, c-format
msgid "%s: error reading version record: %s\n"
msgstr "%s: 讀取版本記錄時錯誤: %s\n"
#, c-format
msgid "%s: error writing version record: %s\n"
msgstr "%s: 寫入版本記錄時錯誤: %s\n"
#, c-format
msgid "trustdb: lseek failed: %s\n"
msgstr "信任資料庫: 本機搜尋失敗: %s\n"
#, c-format
msgid "trustdb: read failed (n=%d): %s\n"
msgstr "信任資料庫: 讀取失敗 (n=%d): %s\n"
#, c-format
msgid "%s: not a trustdb file\n"
msgstr "%s: 不是一個信任資料庫檔案\n"
#, c-format
msgid "%s: version record with recnum %lu\n"
msgstr "%s: 記錄編號為 %lu 的版本記錄\n"
#, c-format
msgid "%s: invalid file version %d\n"
msgstr "%s: 無效的檔案版本 %d\n"
#, c-format
msgid "%s: error reading free record: %s\n"
msgstr "%s: 讀取可用空間記錄時出錯: %s\n"
#, c-format
msgid "%s: error writing dir record: %s\n"
msgstr "%s: 寫入目錄記錄時出錯: %s\n"
#, c-format
msgid "%s: failed to zero a record: %s\n"
msgstr "%s: 記錄歸零失敗: %s\n"
#, c-format
msgid "%s: failed to append a record: %s\n"
msgstr "%s: 附加記錄失敗: %s\n"
msgid "Error: The trustdb is corrupted.\n"
msgstr "錯誤: 信任資料庫已毀損.\n"
#, c-format
msgid "can't handle text lines longer than %d characters\n"
msgstr "無法處理長於 %d 字符的文字列\n"
#, c-format
msgid "input line longer than %d characters\n"
msgstr "輸入列比 %d 字符還長\n"
#, c-format
msgid "`%s' is not a valid long keyID\n"
msgstr "`%s' 不是一個有效的長式金鑰 ID\n"
#, c-format
msgid "key %s: accepted as trusted key\n"
msgstr "金鑰 %s: 如受信任的金鑰般被接受了\n"
#, c-format
msgid "key %s occurs more than once in the trustdb\n"
msgstr "金鑰 %s 在信任資料庫中出現了不止一次\n"
#, c-format
msgid "key %s: no public key for trusted key - skipped\n"
msgstr "金鑰 %s: 受信任的金鑰沒有公鑰 - 已跳過\n"
#, c-format
msgid "key %s marked as ultimately trusted\n"
msgstr "金鑰 %s 已標記成徹底信任了\n"
#, c-format
msgid "trust record %lu, req type %d: read failed: %s\n"
msgstr "信任記錄 %lu, 請求類別 %d: 讀取失敗: %s\n"
#, c-format
msgid "trust record %lu is not of requested type %d\n"
msgstr "信任記錄 %lu 不是所請求的類別 %d\n"
msgid "You may try to re-create the trustdb using the commands:\n"
msgstr "你可以試著用下列指令來重建信任資料庫:\n"
msgid "If that does not work, please consult the manual\n"
msgstr "如果行不通的話, 請查閱手冊\n"
#, c-format
msgid "unable to use unknown trust model (%d) - assuming %s trust model\n"
msgstr "無法使用未知的信任模型 (%d) - 現在採用 %s 信任模型\n"
#, c-format
msgid "using %s trust model\n"
msgstr "正在使用 %s 信任模型\n"
#. TRANSLATORS: these strings are similar to those in
#. trust_value_to_string(), but are a fixed length. This is needed to
#. make attractive information listings where columns line up
#. properly. The value "10" should be the length of the strings you
#. choose to translate to. This is the length in printable columns.
#. It gets passed to atoi() so everything after the number is
#. essentially a comment and need not be translated. Either key and
#. uid are both NULL, or neither are NULL.
msgid "10 translator see trustdb.c:uid_trust_string_fixed"
msgstr "10 譯者請參見 trustdb.c:uid_trust_string_fixed"
msgid "[ revoked]"
msgstr "[ 已撤銷 ]"
msgid "[ expired]"
msgstr "[ 已過期 ]"
msgid "[ unknown]"
msgstr "[ 未知 ]"
msgid "[ undef ]"
msgstr "[ 未定義 ]"
msgid "[marginal]"
msgstr "[ 勉強 ]"
msgid "[ full ]"
msgstr "[ 完全 ]"
msgid "[ultimate]"
msgstr "[ 徹底 ]"
msgid "undefined"
msgstr "未定義"
msgid "never"
msgstr "永遠不會"
msgid "marginal"
msgstr "勉強"
msgid "full"
msgstr "完全"
msgid "ultimate"
msgstr "徹底"
msgid "no need for a trustdb check\n"
msgstr "不需要檢查信任資料庫\n"
#, c-format
msgid "next trustdb check due at %s\n"
msgstr "下次信任資料庫檢查將於 %s 進行\n"
#, c-format
msgid "no need for a trustdb check with `%s' trust model\n"
msgstr "在 `%s' 信任模型中並不需要檢查信任資料庫\n"
#, c-format
msgid "no need for a trustdb update with `%s' trust model\n"
msgstr "在 `%s' 信任模型中並不需要更新信任資料庫\n"
#, c-format
msgid "public key %s not found: %s\n"
msgstr "找不到公鑰 %s: %s\n"
msgid "please do a --check-trustdb\n"
msgstr "請做一次 --check-trustdb\n"
msgid "checking the trustdb\n"
msgstr "正在檢查信任資料庫\n"
#, c-format
msgid "%d keys processed (%d validity counts cleared)\n"
msgstr "已經處理了 %d 把金鑰 (共計已解決了 %d 份有效性)\n"
msgid "no ultimately trusted keys found\n"
msgstr "沒有找到任何徹底信任的金鑰\n"
#, c-format
msgid "public key of ultimately trusted key %s not found\n"
msgstr "找不到徹底信任金鑰 %s 的公鑰\n"
#, c-format
msgid "%d marginal(s) needed, %d complete(s) needed, %s trust model\n"
msgstr "%d 個勉強信任以及 %d 個完全信任是 %s 信任模型的最小需求\n"
#, c-format
msgid ""
"depth: %d valid: %3d signed: %3d trust: %d-, %dq, %dn, %dm, %df, %du\n"
msgstr "深度: %d 有效: %3d 已簽署: %3d 信任: %d-, %dq, %dn, %dm, %df, %du\n"
#, c-format
msgid "unable to update trustdb version record: write failed: %s\n"
msgstr "無法更新信任資料庫版本記錄: 寫入失敗: %s\n"
msgid ""
"the signature could not be verified.\n"
"Please remember that the signature file (.sig or .asc)\n"
"should be the first file given on the command line.\n"
msgstr ""
"簽章無法驗證.\n"
"請記住簽章檔 (.sig 或 .asc)\n"
"應該是第一個命令列給定的檔案.\n"
#, c-format
msgid "input line %u too long or missing LF\n"
msgstr "輸入列 %u 太長或者列末的 LF 遺失了\n"
msgid "general error"
msgstr "一般性錯誤"
msgid "unknown packet type"
msgstr "未知的封包型態"
msgid "unknown version"
msgstr "未知的版本"
msgid "unknown pubkey algorithm"
msgstr "未知的公鑰演算法"
msgid "unknown digest algorithm"
msgstr "未知的摘要演算法"
msgid "bad public key"
msgstr "損壞的公鑰"
msgid "bad secret key"
msgstr "損壞的私鑰"
msgid "bad signature"
msgstr "損壞的簽章"
msgid "checksum error"
msgstr "加總檢查錯誤"
msgid "bad passphrase"
msgstr "錯誤的密語"
msgid "public key not found"
msgstr "找不到公鑰"
msgid "unknown cipher algorithm"
msgstr "未知的編密演算法"
msgid "can't open the keyring"
msgstr "沒辦法開啟鑰匙圈"
msgid "invalid packet"
msgstr "無效的封包"
msgid "invalid armor"
msgstr "無效的封裝"
msgid "no such user id"
msgstr "沒有這個使用者 ID"
msgid "secret key not available"
msgstr "無法取用私鑰"
msgid "wrong secret key used"
msgstr "用了錯誤的私鑰"
msgid "not supported"
msgstr "未支援"
msgid "bad key"
msgstr "損壞的金鑰"
msgid "file read error"
msgstr "檔案讀取錯誤"
msgid "file write error"
msgstr "檔案寫入錯誤"
msgid "unknown compress algorithm"
msgstr "未知的壓縮演算法"
msgid "file open error"
msgstr "檔案開啟錯誤"
msgid "file create error"
msgstr "檔案建立錯誤"
msgid "invalid passphrase"
msgstr "無效的密語"
msgid "unimplemented pubkey algorithm"
msgstr "尚未實做的公鑰演算法"
msgid "unimplemented cipher algorithm"
msgstr "尚未實做的編密演算法"
msgid "unknown signature class"
msgstr "未知的簽章層級"
msgid "trust database error"
msgstr "信任資料庫錯誤"
msgid "bad MPI"
msgstr "損壞的 MPI"
msgid "resource limit"
msgstr "資源限制"
msgid "invalid keyring"
msgstr "無效的鑰匙圈"
msgid "bad certificate"
msgstr "損壞的憑證"
msgid "malformed user id"
msgstr "格式不對的使用者 ID"
msgid "file close error"
msgstr "檔案關閉錯誤"
msgid "file rename error"
msgstr "檔案更名錯誤"
msgid "file delete error"
msgstr "檔案刪除錯誤"
msgid "unexpected data"
msgstr "未預期的資料"
msgid "timestamp conflict"
msgstr "時間戳印有矛盾"
msgid "unusable pubkey algorithm"
msgstr "無法使用的公鑰演算法"
msgid "file exists"
msgstr "檔案已存在"
msgid "weak key"
msgstr "金鑰薄弱"
msgid "invalid argument"
msgstr "無效的參數"
msgid "bad URI"
msgstr "損壞的 URI"
msgid "unsupported URI"
msgstr "未支援的 URI"
msgid "network error"
msgstr "網路錯誤"
msgid "not encrypted"
msgstr "未加密"
msgid "not processed"
msgstr "未處理"
msgid "unusable public key"
msgstr "不可用的公鑰"
msgid "unusable secret key"
msgstr "不可用的私鑰"
msgid "keyserver error"
msgstr "金鑰伺服器錯誤"
msgid "canceled"
msgstr "已取消"
msgid "no card"
msgstr "沒有卡片"
msgid "no data"
msgstr "沒有資料"
msgid "ERROR: "
msgstr "錯誤: "
msgid "WARNING: "
msgstr "警告: "
#, c-format
msgid "... this is a bug (%s:%d:%s)\n"
msgstr "... 這是個瑕疵 (%s:%d:%s)\n"
#, c-format
msgid "you found a bug ... (%s:%d)\n"
msgstr "你找到一個瑕疵了 ... (%s:%d)\n"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "yes"
msgstr "yes"
msgid "yY"
msgstr "yY"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "no"
msgstr "no"
msgid "nN"
msgstr "nN"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "quit"
msgstr "quit"
msgid "qQ"
msgstr "qQ"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "okay|okay"
msgstr "okay|okay"
#. TRANSLATORS: See doc/TRANSLATE about this string.
msgid "cancel|cancel"
msgstr "cancel|cancel"
msgid "oO"
msgstr "oO"
msgid "cC"
msgstr "cC"
msgid "WARNING: using insecure memory!\n"
msgstr "警告: 正在使用不安全的記憶體!\n"
msgid ""
"please see http://www.gnupg.org/documentation/faqs.html for more "
"information\n"
msgstr "請參考 http://www.gnupg.org/documentation/faqs.html 上進一步的資訊\n"
msgid "operation is not possible without initialized secure memory\n"
msgstr "尚未啟用安全的記憶體時, 不可能進行操作\n"
msgid "(you may have used the wrong program for this task)\n"
msgstr "(也許你選錯程式來做這件事了)\n"
#~ msgid "WARNING: unsafe ownership on extension `%s'\n"
#~ msgstr "警告: 延伸模組 `%s' 的所有權並不安全\n"
#~ msgid "WARNING: unsafe permissions on extension `%s'\n"
#~ msgstr "警告: 延伸模組 `%s' 的權限並不安全\n"
#~ msgid "WARNING: unsafe enclosing directory ownership on extension `%s'\n"
#~ msgstr "警告: 延伸模組 `%s' 的封入目錄所有權並不安全\n"
#~ msgid "WARNING: unsafe enclosing directory permissions on extension `%s'\n"
#~ msgstr "警告: 延伸模組 `%s' 的封入目錄權限並不安全\n"
#~ msgid "cipher extension `%s' not loaded due to unsafe permissions\n"
#~ msgstr "編密法延伸模組 `%s' 因為權限不安全而未載入\n"
#~ msgid "the IDEA cipher plugin is not present\n"
#~ msgstr "IDEA 編密法外掛模組不存在\n"
#~ msgid "Command> "
#~ msgstr "指令> "
#~ msgid "DSA keypair will have %u bits.\n"
#~ msgstr "DSA 金鑰對會有 %u 位元長.\n"
#~ msgid "the trustdb is corrupted; please run \"gpg --fix-trustdb\".\n"
#~ msgstr "信任資料庫已損毀; 請執行 \"gpg --fix-trustdb\".\n"
#~ msgid "|A|Admin PIN"
#~ msgstr "|A|管理者 PIN"
#~ msgid "can't put notation data into v3 (PGP 2.x style) signatures\n"
#~ msgstr "無法在 v3 (PGP 2.x 型態) 的簽章內放入標記資料\n"
#~ msgid "can't put notation data into v3 (PGP 2.x style) key signatures\n"
#~ msgstr "無法在 v3 (PGP 2.x 型態) 的金鑰簽章內放入標記資料\n"
#~ msgid "can't put a policy URL into v3 (PGP 2.x style) signatures\n"
#~ msgstr "無法在 v3 (PGP 2.x 型態) 的簽章內放入原則 URL\n"
#~ msgid "can't put a policy URL into v3 key (PGP 2.x style) signatures\n"
#~ msgstr "無法在 v3 (PGP 2.x 型態) 的金鑰簽章內放入原則 URL\n"
#~ msgid ""
#~ "a notation name must have only printable characters or spaces, and end "
#~ "with an '='\n"
#~ msgstr "標記名稱一定要採用可印出的字符或空白, 並以一個 '=' 來結尾\n"
#~ msgid "a user notation name must contain the '@' character\n"
#~ msgstr "使用者標記名稱一定要含有 '@' 字符\n"
#~ msgid "a notation name must not contain more than one '@' character\n"
#~ msgstr "使用者標記名稱不得含有兩個或更多的 '@' 字符\n"
#~ msgid "a notation value must not use any control characters\n"
#~ msgstr "標記值一定不能使用任何的控制字符\n"
#~ msgid "WARNING: invalid notation data found\n"
#~ msgstr "警告: 找到無效的標記資料\n"
#~ msgid "not human readable"
#~ msgstr "不是人類能讀得懂的"
#~ msgid ""
#~ "please see http://www.gnupg.org/why-not-idea.html for more information\n"
#~ msgstr "請參考 http://www.gnupg.org/why-not-idea.html 取得更多資訊\n"
#~ msgid "DSA requires the use of a 160 bit hash algorithm\n"
#~ msgstr "DSA 要求使用 160 位元的雜湊演算法\n"
|