File: zh_TW.po

package info (click to toggle)
git-cola 2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,444 kB
  • ctags: 3,201
  • sloc: python: 20,539; sh: 311; makefile: 310; tcl: 48; xml: 27
file content (3747 lines) | stat: -rw-r--r-- 96,439 bytes parent folder | download
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
# Translation of git-cola to Traditional Chinese(Taiwan)
# Copyright (C) 2007, 2008 Shawn Pearce at el.
# This file is distributed under the same license as the git-cola package.
# Xudong Guan <xudong.guan@gmail.com>, 2007.
# Eric Miao <eric.y.miao@gmail.com>, 2008.
# V字龍(Vdragon) <Vdragon.Taiwan@gmail.com>, 2014.
#
# 敬請參考 glossary/zh_tw.po 的辭彙翻譯
#
msgid ""
msgstr ""
"Project-Id-Version: git-cola VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-28 01:01-0700\n"
"PO-Revision-Date: 2017-01-02 21:00+0800\n"
"Last-Translator: V字龍 <Vdragon.Taiwan@gmail.com>\n"
"Language-Team: Chinese l10n <chinese-l10n@googlegroups.com>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Poedit 1.8.7.1\n"

#: cola/cmds.py:157
msgid "Amend"
msgstr "修正前一次的修訂版提交"

#: cola/cmds.py:191
msgid "Cannot Amend"
msgstr "無法修正前一次的修訂版提交"

#: cola/cmds.py:192
msgid ""
"You are in the middle of a merge.\n"
"Cannot amend while merging."
msgstr ""
"您現在正在進行分支合併。\n"
"您不能在進行分支合併時修正前一次的修訂版提交。"

#: cola/cmds.py:265
#, python-format
msgid "PATCH %(current)d/%(count)d"
msgstr "正在套用 %(current)d/%(count)d 修正"

#: cola/cmds.py:269
msgid "Summary:"
msgstr "總結:"

#: cola/cmds.py:278
msgid "Patch(es) Applied"
msgstr "已套用所有修正"

#: cola/cmds.py:279
#, python-format
msgid "%d patch(es) applied."
msgstr "已套用 %d 個修正。"

#: cola/cmds.py:343
msgid "Error Launching Blame Viewer"
msgstr "啟動指謫(Blame)檢視器時發生錯誤"

#: cola/cmds.py:344
#, python-format
msgid "Cannot exec \"%s\": please configure a blame viewer"
msgstr "無法執行「%s」:請設定您慣用的 Blame 檢視器"

#: cola/cmds.py:405 cola/cmds.py:408 cola/widgets/createbranch.py:271
msgid "Reset Branch"
msgstr "重設分支"

#: cola/cmds.py:406
msgid "Point the current branch head to a new commit?"
msgstr "將當前分支的 head 指向一個新的修訂版提交?"

#: cola/cmds.py:407
#, python-format
msgid "The branch will be reset using \"git reset --mixed %s\""
msgstr "這個分支將會被用「git reset --mixed %s」命令重設"

#: cola/cmds.py:420 cola/cmds.py:423 cola/guicmds.py:305
#: cola/widgets/main.py:245 cola/widgets/dag.py:243
msgid "Reset Worktree"
msgstr "重設工作目錄樹"

#: cola/cmds.py:421
msgid "Reset worktree?"
msgstr "要重設工作目錄樹嗎?"

#: cola/cmds.py:422
#, python-format
msgid "The worktree will be reset using \"git reset --merge %s\""
msgstr "工作目錄數將被用「git reset --merge %s」命令重設"

#: cola/cmds.py:463
#, python-format
msgid "Created commit: %s"
msgstr "建立了一個新的修訂版提交:%s"

#: cola/cmds.py:465
#, python-format
msgid "Commit failed: %s"
msgstr "提交失敗:%s"

#: cola/cmds.py:531
#, python-format
msgid "Error creating remote \"%s\""
msgstr "建立「%s」遠端分支時發生錯誤"

#: cola/cmds.py:537
msgid "Delete Remote"
msgstr "移除遠端版控庫"

#: cola/cmds.py:538
msgid "Delete remote?"
msgstr "要移除遠端版控庫嗎?"

#: cola/cmds.py:539
#, python-format
msgid "Delete remote \"%s\""
msgstr "移除「%s」遠端版控庫"

#: cola/cmds.py:540 cola/guicmds.py:24 cola/guicmds.py:32
#: cola/widgets/bookmarks.py:41
msgid "Delete"
msgstr "移除"

#: cola/cmds.py:548
#, python-format
msgid "Error deleting remote \"%s\""
msgstr "移除「%s」遠端分支時發生錯誤"

#: cola/cmds.py:558
msgid "Rename Remote"
msgstr "重新命名遠端版控庫"

#: cola/cmds.py:559
msgid "Rename remote?"
msgstr "重新命名遠端版控庫嗎?"

#: cola/cmds.py:560
#, python-format
msgid "Rename remote \"%(current)s\" to \"%(new)s\"?"
msgstr "要將「%(current)s」遠端分支重新命名為「%(new)s」嗎?"

#: cola/cmds.py:562 cola/guicmds.py:292
msgid "Rename"
msgstr "更名..."

#: cola/cmds.py:587
msgid "Delete Bookmark?"
msgstr "要刪除書籤嗎?"

#: cola/cmds.py:588
#, python-format
msgid "%s will be removed from your bookmarks."
msgstr "「%s」版控庫將會從您的書籤中被刪除。"

#: cola/cmds.py:589
msgid "Delete Bookmark"
msgstr "刪除書籤"

#: cola/cmds.py:601
#, python-format
msgid "Remove %s from the recent list?"
msgstr "要將「%s」版控庫從最近使用的版控庫清單中移除嗎?"

#: cola/cmds.py:602
#, python-format
msgid "%s will be removed from your recent repositories."
msgstr "「%s」版控庫將從您最近使用的版控庫中移除。"

#: cola/cmds.py:603 cola/widgets/patch.py:91 cola/widgets/patch.py:103
msgid "Remove"
msgstr "移除"

#: cola/cmds.py:641 cola/cmds.py:1873 cola/widgets/bookmarks.py:290
msgid "Error"
msgstr "發生錯誤"

#: cola/cmds.py:642
#, python-format
msgid "Deleting \"%s\" failed"
msgstr "「%s」移除失敗"

#: cola/cmds.py:659
msgid "Delete Files?"
msgstr "要刪除檔案嗎?"

#: cola/cmds.py:660
msgid "The following files will be deleted:"
msgstr "下列檔案將會被移除:"

#: cola/cmds.py:662
#, python-format
msgid "Delete %d file(s)?"
msgstr "刪除 %d 個檔案?"

#: cola/cmds.py:663
msgid "Delete Files"
msgstr "刪除檔案"

#: cola/cmds.py:723
msgid "Remote Branch Deleted"
msgstr "已移除遠端分支"

#: cola/cmds.py:724
#, python-format
msgid "\"%(branch)s\" has been deleted from \"%(remote)s\"."
msgstr "「%(branch)s」分支已從「%(remote)s」版控庫中移除。"

#: cola/cmds.py:728 cola/guicmds.py:98 cola/widgets/remote.py:529
#, python-format
msgid "\"%(command)s\" returned exit status %(status)d"
msgstr "「%(command)s」命令傳回了 %(status)d 結束狀態碼"

#: cola/cmds.py:731
msgid "Error Deleting Remote Branch"
msgstr "移除遠端分支失敗"

#: cola/cmds.py:808 cola/cmds.py:916
msgid "Launch Editor"
msgstr "啟動文字編輯器"

#: cola/cmds.py:844
#, python-format
msgid "Cannot exec \"%s\": please configure your editor"
msgstr "無法執行「%s」:請設定您慣用的文字編輯器"

#: cola/cmds.py:847
msgid "Error Editing File"
msgstr "編輯檔案發生錯誤"

#: cola/cmds.py:867 cola/widgets/dag.py:234 cola/widgets/filelist.py:30
#: cola/widgets/filelist.py:33
msgid "Launch Diff Tool"
msgstr "啟動差異檢視工具"

#: cola/cmds.py:898
msgid "Launch Terminal"
msgstr "啟動終端機"

#: cola/cmds.py:937
msgid "Error: Cannot find commit template"
msgstr "錯誤:無法找到修訂版提交範本"

#: cola/cmds.py:938
#, python-format
msgid "%s: No such file or directory."
msgstr "%s:無此檔案或目錄。"

#: cola/cmds.py:958
msgid "Error: Unconfigured commit template"
msgstr "錯誤:未被設定的修訂版提交範本"

#: cola/cmds.py:959
msgid ""
"A commit template has not been configured.\n"
"Use \"git config\" to define \"commit.template\"\n"
"so that it points to a commit template."
msgstr ""
"修訂版提交範本尚未被設定。\n"
"使用「git config」命令來定義「commit.template」設定值\n"
"使其指向一個修訂版提交範本。"

#: cola/cmds.py:1023
msgid "Open Using Default Application"
msgstr "以系統預設的軟體開啟"

#: cola/cmds.py:1045
msgid "Open Parent Directory"
msgstr "開啟上一層目錄"

#: cola/cmds.py:1107
#, python-format
msgid "Error: could not clone \"%s\""
msgstr "錯誤:無法克隆「%s」版控庫"

#: cola/cmds.py:1109
#, python-format
msgid "git clone returned exit code %s"
msgstr "git clone 命令傳回了 %s 錯誤狀態碼"

#: cola/cmds.py:1196
#, python-format
msgid "Rebase onto %s"
msgstr "變更基底至 %s"

#: cola/cmds.py:1197 cola/cmds.py:1227 cola/cmds.py:1228 cola/cmds.py:1240
#: cola/cmds.py:1241 cola/widgets/main.py:429 cola/widgets/remote.py:161
msgid "Rebase"
msgstr "變更基底"

#: cola/cmds.py:1214
msgid "Edit Rebase"
msgstr "編輯變更基底"

#: cola/cmds.py:1215 cola/widgets/archive.py:121 cola/widgets/browse.py:579
#: cola/widgets/stash.py:57
msgid "Save"
msgstr "保存"

#: cola/cmds.py:1268 cola/qtutils.py:672 cola/widgets/action.py:60
#: cola/widgets/dag.py:476 cola/widgets/recent.py:103 cola/widgets/grep.py:80
#: cola/widgets/editremotes.py:69 cola/widgets/browse.py:175
msgid "Refresh"
msgstr "重新整理"

#: cola/cmds.py:1316
msgid "Revert Unstaged Edits..."
msgstr "撤銷尚未移入新修訂版準備區域的內容修改……"

#: cola/cmds.py:1325
msgid "Revert Unstaged Changes?"
msgstr "要撤銷尚未移入新修訂版準備區域的內容變動嗎?"

#: cola/cmds.py:1326
msgid ""
"This operation drops unstaged changes.\n"
"These changes cannot be recovered."
msgstr ""
"此操作將丟棄尚未移入新修訂版準備區域的內容變動。\n"
"這些內容變動將無法被還原。"

#: cola/cmds.py:1328
msgid "Revert the unstaged changes?"
msgstr "要撤銷尚未移入新修訂版準備區域的內容變動嗎?"

#: cola/cmds.py:1329
msgid "Revert Unstaged Changes"
msgstr "撤銷尚未移入新修訂版準備區域的內容變動"

#: cola/cmds.py:1338
msgid "Revert Uncommitted Edits..."
msgstr "撤銷尚未提交到版控庫的內容變更……"

#: cola/cmds.py:1344
msgid "Revert Uncommitted Changes?"
msgstr "要撤銷尚未提交至版控庫的內容變更嗎?"

#: cola/cmds.py:1345 cola/widgets/diff.py:449
msgid ""
"This operation drops uncommitted changes.\n"
"These changes cannot be recovered."
msgstr ""
"此操作將會丟棄尚未提交至版控庫的內容變更。\n"
"這些內容變更將無法被救回。"

#: cola/cmds.py:1347 cola/widgets/diff.py:451
msgid "Revert the uncommitted changes?"
msgstr "要撤銷尚未提交至版控庫的內容變更嗎?"

#: cola/cmds.py:1348
msgid "Revert Uncommitted Changes"
msgstr "撤銷尚未提交至版控庫的內容變更"

#: cola/cmds.py:1376
#, python-format
msgid "Run \"%s\"?"
msgstr "要執行「%s」操作嗎?"

#: cola/cmds.py:1383
msgid "Please select a file"
msgstr "請選擇一個檔案"

#: cola/cmds.py:1384
#, python-format
msgid "\"%s\" requires a selected file."
msgstr "「%s」操作需要有選取檔案才能執行。"

#: cola/cmds.py:1396
msgid "Invalid Revision"
msgstr "無效的修訂版"

#: cola/cmds.py:1397
msgid "The revision expression cannot be empty."
msgstr "修訂版表達式不可以是空的。"

#: cola/cmds.py:1412
#, python-format
msgid "Running command: %s"
msgstr "執行命令:%s"

#: cola/cmds.py:1424 cola/cmds.py:1691 cola/interaction.py:77
#, python-format
msgid "Output: %s"
msgstr "輸出:%s"

#: cola/cmds.py:1425 cola/guicmds.py:103 cola/interaction.py:78
#, python-format
msgid "Errors: %s"
msgstr "錯誤:%s"

#: cola/cmds.py:1478
msgid "Sign Off"
msgstr "署名(Sign Off)"

#: cola/cmds.py:1499
msgid "unknown"
msgstr "未知使用者"

#: cola/cmds.py:1543
msgid "Stage conflicts?"
msgstr "要將合併衝突移入新修訂版準備區域嗎?"

#: cola/cmds.py:1544
#, python-format
msgid ""
"%s appears to contain merge conflicts.\n"
"\n"
"You should probably skip this file.\n"
"Stage it anyways?"
msgstr ""
"%s 看起來包含未解決的合併衝突。\n"
"\n"
"您可能應該要跳過這個檔案。\n"
"無論如何都要將它移入新修訂版準備區域嗎?"

#: cola/cmds.py:1547
msgid "Stage conflicts"
msgstr "將合併衝突移入新修訂版準備區域"

#: cola/cmds.py:1548
msgid "Skip"
msgstr "跳過"

#: cola/cmds.py:1558 cola/widgets/action.py:58 cola/widgets/diff.py:243
#: cola/widgets/commitmsg.py:225
msgid "Stage"
msgstr "移動到新修訂版準備區域"

#: cola/cmds.py:1565
#, python-format
msgid "Staging: %s"
msgstr "移動到新修訂版準備區域:%s..."

#: cola/cmds.py:1606
msgid "Stage Modified"
msgstr "將已變更的項目移入新修訂版準備區域"

#: cola/cmds.py:1617
msgid "Stage Unmerged"
msgstr "將尚未合併的檔案移動到新修訂版準備區域"

#: cola/cmds.py:1628
msgid "Stage Untracked"
msgstr "將尚未追蹤其版本的項目移動到新修訂版準備區域"

#: cola/cmds.py:1639
msgid "Stage / Unstage"
msgstr "移入/移出新修訂版準備區域"

#: cola/cmds.py:1669
#, python-format
msgid "Tagging \"%(revision)s\" as \"%(name)s\""
msgstr "將「%(revision)s」修訂版加上「%(name)s」標籤"

#: cola/cmds.py:1680
msgid "GPG-signed"
msgstr "已簽署 GPG 簽章"

#: cola/cmds.py:1704 cola/widgets/action.py:59 cola/widgets/diff.py:245
#: cola/widgets/commitmsg.py:227
msgid "Unstage"
msgstr "移出新修訂版準備區域"

#: cola/cmds.py:1711
#, python-format
msgid "Unstaging: %s"
msgstr "正在將「%s」移出新修訂版準備區域"

#: cola/cmds.py:1739
#, python-format
msgid "Untracking: %s"
msgstr "正在將「%s」移出新修訂版準備區域"

#: cola/cmds.py:1824
msgid "Error Launching History Browser"
msgstr "無法啟動變動紀錄瀏覽器"

#: cola/cmds.py:1825
#, python-format
msgid "Cannot exec \"%s\": please configure a history browser"
msgstr "無法執行「%s」:請設定一個變動紀錄瀏覽器"

#: cola/actions.py:34
msgid "Next File"
msgstr "下個檔案"

#: cola/actions.py:40
msgid "Previous File"
msgstr "上個檔案"

#: cola/fsmonitor.py:129
msgid "File system change monitoring: enabled.\n"
msgstr "檔案系統變動監控:已啟用。\n"

#: cola/fsmonitor.py:170
msgid ""
"File system change monitoring: disabled because the limit on the total "
"number of inotify watches was reached.  You may be able to increase the "
"limit on the number of watches by running:\n"
"\n"
"    echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf "
"&& sudo sysctl -p\n"
msgstr ""
"檔案系統變動監控:因為已經達到 inotify watch 的總數上限而被停用。您可以執行下"
"列命令來增加 watch 的數量限制:\n"
"\n"
"    echo fs.inotify.max_user_watches=100000 | sudo tee -a /etc/sysctl.conf "
"&& sudo sysctl -p\n"

#: cola/fsmonitor.py:503
msgid ""
"File system change monitoring: disabled because \"cola.inotify\" is false.\n"
msgstr ""
"檔案系統變動監控:因為「cola.inotify」 Git 設定值被設定為 false 而被停用。\n"

#: cola/fsmonitor.py:512
msgid ""
"File system change monitoring: disabled because pywin32 is not installed.\n"
msgstr "檔案系統變動監控:因為 pywin32 沒有安裝而被停用。\n"

#: cola/fsmonitor.py:516
msgid ""
"File system change monitoring: disabled because libc does not support the "
"inotify system calls.\n"
msgstr "檔案系統變動監控:因為 libc 程式庫不支援 inotify 系統呼叫而被停用。\n"

#: cola/guicmds.py:24
msgid "Delete Branch"
msgstr "移除分支"

#: cola/guicmds.py:32
msgid "Delete Remote Branch"
msgstr "移除遠端分支"

#: cola/guicmds.py:53
msgid "Browse Commits..."
msgstr "瀏覽修訂版提交……"

#: cola/guicmds.py:53
msgid "Browse"
msgstr "瀏覽"

#: cola/guicmds.py:61
msgid "Checkout Branch"
msgstr "取出分支內容"

#: cola/guicmds.py:61
msgid "Checkout"
msgstr "取出"

#: cola/guicmds.py:70
msgid "Cherry-Pick Commit"
msgstr "挑取(cherry-pick)修訂版提交並合併至當前分支"

#: cola/guicmds.py:83 cola/widgets/main.py:176
msgid "New Repository..."
msgstr "新版控庫……"

#: cola/guicmds.py:97
msgid "Error Creating Repository"
msgstr "無法建立新的版控庫"

#: cola/guicmds.py:100
#, python-format
msgid ""
"Output:\n"
"%s"
msgstr ""
"命令輸出:\n"
"%s"

#: cola/guicmds.py:122
msgid "Path or URL to clone (Env. $VARS okay)"
msgstr "要克隆的路徑或 URL(可使用環境 $變數 )"

#: cola/guicmds.py:143
msgid "Error Cloning"
msgstr "克隆發生錯誤"

#: cola/guicmds.py:144 cola/guicmds.py:145
#, python-format
msgid "Could not parse Git URL: \"%s\""
msgstr "無法分析 Git URL:「%s」"

#: cola/guicmds.py:149
msgid "Select a parent directory for the new clone"
msgstr "選取新克隆的 Git 版控庫要放置的目錄"

#: cola/guicmds.py:158
#, python-format
msgid "\"%s\" already exists, cola will create a new directory"
msgstr "「%s」目錄已存在,cola 將會另外建立一個新的目錄"

#: cola/guicmds.py:160
msgid "Directory Exists"
msgstr "目錄已存在"

#: cola/guicmds.py:173 cola/widgets/search.py:77
msgid "Export Patches"
msgstr "匯出修正檔"

#: cola/guicmds.py:191 cola/guicmds.py:200 cola/widgets/startup.py:140
msgid "Open Git Repository..."
msgstr "開啟一個 Git 版控庫"

#: cola/guicmds.py:209
msgid "Load Commit Message"
msgstr "自檔案載入修訂版提交訊息"

#: cola/guicmds.py:242
msgid "Select Branch to Review"
msgstr "選擇要審視(review)的分支"

#: cola/guicmds.py:242
msgid "Review"
msgstr "審視(review)"

#: cola/guicmds.py:272
msgid "Clone Repository"
msgstr "克隆版控庫"

#: cola/guicmds.py:273
#, python-format
msgid "Cloning repository at %s"
msgstr "克隆位於 %s 的版控庫"

#: cola/guicmds.py:289
msgid "Rename Existing Branch"
msgstr "重新命名已存在的分支"

#: cola/guicmds.py:289 cola/widgets/selectcommits.py:53
#: cola/widgets/browse.py:577
msgid "Select"
msgstr "選擇"

#: cola/guicmds.py:292
msgid "Enter New Branch Name"
msgstr "輸入新的分支名稱"

#: cola/guicmds.py:299 cola/widgets/main.py:242 cola/widgets/dag.py:240
msgid "Reset Branch Head"
msgstr "重設分支 Head"

#: cola/guicmds.py:299 cola/guicmds.py:305 cola/widgets/main.py:385
#: cola/widgets/dag.py:201 cola/widgets/createbranch.py:125
msgid "Reset"
msgstr "重設"

#: cola/interaction.py:58 cola/widgets/main.py:320
msgid "Continue"
msgstr "繼續"

#: cola/interaction.py:69
#, python-format
msgid "Run %s?"
msgstr "執行 %s?"

#: cola/interaction.py:70
#, python-format
msgid "Run the \"%s\" command?"
msgstr "要執行「%s」命令嗎?"

#: cola/interaction.py:72 cola/widgets/cfgactions.py:241
msgid "Run"
msgstr "執行"

#: cola/interaction.py:79
#, python-format
msgid "Exit code: %s"
msgstr "結束狀態碼:%s"

#: cola/app.py:215
#, python-format
msgid ""
"fatal: \"%s\" is not a directory.  Please specify a correct --repo <path>."
msgstr "致命錯誤:「%s」並不是個目錄。請指定一個正確的 --repo 〈路徑〉。"

#: cola/qtutils.py:573
msgid "Close..."
msgstr "關閉……"

#: cola/qtutils.py:663 cola/qtutils.py:770 cola/widgets/text.py:494
#: cola/widgets/about.py:337 cola/widgets/remote.py:261
msgid "Close"
msgstr "關閉"

#: cola/qtutils.py:667 cola/widgets/grep.py:77
msgid "Edit"
msgstr "編輯"

#: cola/qtutils.py:773 cola/qtutils.py:807
msgid "Detach"
msgstr "分離"

#: cola/qtutils.py:805
msgid "Attach"
msgstr "連接"

#: cola/gitcmds.py:441
msgid "Nothing to do"
msgstr "沒有事情可做"

#: cola/difftool.py:132
msgid "git-cola diff"
msgstr "git-cola diff"

#: cola/difftool.py:146 cola/widgets/compare.py:66
msgid "Compare"
msgstr "比較差異"

#: cola/difftool.py:149
msgid "Compare All"
msgstr "比較全部檔案差異"

#: cola/widgets/finder.py:48
#, fuzzy
msgid ""
"\n"
"Keyboard Shortcuts\n"
"------------------\n"
"J, Down     = Move Down\n"
"K, Up       = Move Up\n"
"Enter       = Edit Selected Files\n"
"Spacebar    = Open File Using Default Application\n"
"Ctrl + L    = Focus Text Entry Field\n"
"?           = Show Help\n"
"\n"
"The up and down arrows change focus between the text entry field\n"
"and the results.\n"
msgstr ""
"\n"
"鍵盤快捷鍵\n"
"------------------\n"
"J, Down     = 往下移動\n"
"K, Up       = 往上移動\n"
"Enter       = 編輯選取的檔案\n"
"Spacebar    = 以預設應用軟體開啟檔案\n"
"Ctrl+L      = 將焦點移至文字輸入欄位\n"
"?           = 顯示幫助訊息\n"
"\n"
"用上、下方向鍵來瀏覽文字輸入欄位\n"
"以及結果。\n"

#: cola/widgets/finder.py:61
msgid "Help - Find Files"
msgstr "尋求幫助 - 尋找檔案"

#: cola/widgets/finder.py:90 cola/widgets/main.py:193
msgid "Find Files"
msgstr "尋找檔案"

#: cola/widgets/finder.py:96
msgid "<path> ..."
msgstr "〈路徑〉……"

#: cola/widgets/finder.py:116 cola/widgets/main.py:453
msgid "Help"
msgstr "尋求幫助"

#: cola/widgets/finder.py:116
msgid ""
"Show help\n"
"Shortcut: ?"
msgstr ""
"顯示幫助訊息\n"
"鍵盤快捷鍵:?"

#: cola/widgets/finder.py:156
msgid "Show Help"
msgstr "顯示幫助訊息"

#: cola/widgets/selectcommits.py:49
msgid "Revision Expression:"
msgstr "修訂版表達式:"

#: cola/widgets/selectcommits.py:87
msgid "No commits exist in this branch."
msgstr "此分支中無任何修訂版提交。"

#: cola/widgets/bookmarks.py:39 cola/widgets/patch.py:87
#: cola/widgets/patch.py:100
msgid "Add"
msgstr "新增"

#: cola/widgets/bookmarks.py:44 cola/widgets/bookmarks.py:108
msgid "Open"
msgstr "開啟"

#: cola/widgets/bookmarks.py:52
msgid "Favorite repositories"
msgstr "喜愛的版控庫"

#: cola/widgets/bookmarks.py:54
msgid "Recent repositories"
msgstr "最近使用的版控庫"

#: cola/widgets/bookmarks.py:111
msgid "Accept"
msgstr "接受"

#: cola/widgets/bookmarks.py:114
msgid "Open in New Window"
msgstr "於新 git-cola 視窗中開啟"

#: cola/widgets/bookmarks.py:117
msgid "Set Default Repository"
msgstr "設定預設版控庫"

#: cola/widgets/bookmarks.py:120
msgid "Clear Default Repository"
msgstr "清除預設版控庫"

#: cola/widgets/bookmarks.py:123
msgid "Rename Repository"
msgstr "更名版控庫"

#: cola/widgets/bookmarks.py:137 cola/widgets/diff.py:307
msgid "Copy"
msgstr "複製"

#: cola/widgets/bookmarks.py:173 cola/widgets/main.py:87
#: cola/widgets/main.py:374 cola/widgets/dag.py:188 cola/widgets/diff.py:237
#: cola/widgets/commitmsg.py:103 cola/widgets/filelist.py:82
#: cola/widgets/browse.py:297
msgid "Actions"
msgstr "操作"

#: cola/widgets/bookmarks.py:277 cola/widgets/editremotes.py:200
#: cola/widgets/createtag.py:57 cola/models/browse.py:40
msgid "Name"
msgstr "名稱"

#: cola/widgets/bookmarks.py:278
msgid "Path"
msgstr "所在路徑"

#: cola/widgets/bookmarks.py:280
msgid "Add Favorite"
msgstr "新增喜愛的版控庫"

#: cola/widgets/bookmarks.py:291
#, python-format
msgid "%s is not a Git repository."
msgstr "%s 不是一個 Git 版控庫"

#: cola/widgets/main.py:82
msgid "Browser"
msgstr "檔案瀏覽器"

#: cola/widgets/main.py:94 cola/models/browse.py:42
msgid "Status"
msgstr "狀態"

#: cola/widgets/main.py:101
msgid "Favorites"
msgstr "喜愛的版控庫"

#: cola/widgets/main.py:106
msgid "Recent"
msgstr "最近使用的版控庫"

# V字龍:注意此應翻譯為動詞。
#: cola/widgets/main.py:125 cola/widgets/merge.py:84
msgid "Commit"
msgstr "提交變更"

#: cola/widgets/main.py:134
msgid "Console"
msgstr "終端機輸出"

#: cola/widgets/main.py:140 cola/widgets/main.py:404 cola/widgets/dag.py:456
msgid "Diff"
msgstr "內容差異"

#: cola/widgets/main.py:148 cola/widgets/status.py:507
msgid "Unstage All"
msgstr "將所有項目移出新修訂版準備區域"

#: cola/widgets/main.py:152
msgid "Unstage From Commit"
msgstr "移出新修訂版準備區域"

#: cola/widgets/main.py:156
msgid "Diffstat"
msgstr "顯示內容差異"

#: cola/widgets/main.py:159
msgid "Stage Changed Files To Commit"
msgstr "將所有被修改的檔案移入新修訂版準備區域"

#: cola/widgets/main.py:164
msgid "Stage All Untracked"
msgstr "將所有尚未追蹤其版本的項目移動到新修訂版準備區域"

#: cola/widgets/main.py:169
msgid "Apply Patches..."
msgstr "套用修正……"

#: cola/widgets/main.py:172
msgid "Export Patches..."
msgstr "匯出修正……"

#: cola/widgets/main.py:180 cola/widgets/prefs.py:238
msgid "Preferences"
msgstr "偏好設定"

#: cola/widgets/main.py:184
msgid "Edit Remotes..."
msgstr "編輯遠端版控庫……"

#: cola/widgets/main.py:198
msgid "Recently Modified Files..."
msgstr "最近修改過的檔案……"

#: cola/widgets/main.py:202
msgid "Cherry-Pick..."
msgstr "挑取(cherry-pick)……"

#: cola/widgets/main.py:206
msgid "Load Commit Message..."
msgstr "自檔案載入修訂版提交訊息"

#: cola/widgets/main.py:209 cola/widgets/dag.py:228
msgid "Save As Tarball/Zip..."
msgstr "保存為 Tarball/Zip 封存檔…"

#: cola/widgets/main.py:212
msgid "Quit"
msgstr "結束"

#: cola/widgets/main.py:215
msgid "Grep"
msgstr "搜尋(grep)"

#: cola/widgets/main.py:218
msgid "Merge..."
msgstr "分支合併(merge)……"

#: cola/widgets/main.py:221 cola/widgets/merge.py:30
msgid "Abort Merge..."
msgstr "中止分支合併(merge)……"

#: cola/widgets/main.py:224 cola/widgets/action.py:61
msgid "Fetch..."
msgstr "自遠端版控庫撈取(fetch)……"

#: cola/widgets/main.py:226 cola/widgets/action.py:62
msgid "Push..."
msgstr "推送至遠端版控庫(push)……"

#: cola/widgets/main.py:228 cola/widgets/action.py:63
msgid "Pull..."
msgstr "自遠端分支撈取並合併(pull)……"

#: cola/widgets/main.py:231 cola/widgets/startup.py:47
msgid "Open..."
msgstr "打開版控庫……"

#: cola/widgets/main.py:235
msgid "Open in New Window..."
msgstr "於新 git-cola 視窗中開啟版控庫……"

#: cola/widgets/main.py:239 cola/widgets/action.py:64
msgid "Stash..."
msgstr "蒐藏(stash)..."

#: cola/widgets/main.py:248 cola/widgets/startup.py:49
msgid "Clone..."
msgstr "克隆另一個版控庫……"

#: cola/widgets/main.py:252
msgid "Documentation"
msgstr "說明文件"

#: cola/widgets/main.py:256
msgid "Keyboard Shortcuts"
msgstr "鍵盤快捷鍵"

#: cola/widgets/main.py:260
msgid "Visualize Current Branch..."
msgstr "視覺化顯示當前分支……"

#: cola/widgets/main.py:263
msgid "Visualize All Branches..."
msgstr "視覺化顯示所有分支……"

#: cola/widgets/main.py:266
msgid "Search..."
msgstr "尋找……"

#: cola/widgets/main.py:269
msgid "Browse Current Branch..."
msgstr "瀏覽目前分支中的檔案……"

#: cola/widgets/main.py:271
msgid "Browse Other Branch..."
msgstr "瀏覽其他分支中的檔案……"

#: cola/widgets/main.py:273
msgid "Get Commit Message Template"
msgstr "取得修訂版提交訊息範本"

#: cola/widgets/main.py:276 cola/widgets/about.py:59
msgid "About"
msgstr "關於"

#: cola/widgets/main.py:279
msgid "Expression..."
msgstr "比較表達式之間的內容差異……"

#: cola/widgets/main.py:281
msgid "Branches..."
msgstr "比較分支之間的內容差異……"

#: cola/widgets/main.py:284
msgid "Create Tag..."
msgstr "建立新的標籤(tag)……"

#: cola/widgets/main.py:288
msgid "Create..."
msgstr "新建……"

#: cola/widgets/main.py:293
msgid "Delete..."
msgstr "移除..."

#: cola/widgets/main.py:296
msgid "Delete Remote Branch..."
msgstr "移除遠端分支"

#: cola/widgets/main.py:299
msgid "Rename Branch..."
msgstr "重新命名分支……"

#: cola/widgets/main.py:302
msgid "Checkout..."
msgstr "取出……"

#: cola/widgets/main.py:304
msgid "Review..."
msgstr "審視(review)……"

#: cola/widgets/main.py:307
msgid "File Browser..."
msgstr "檔案瀏覽器……"

#: cola/widgets/main.py:310
msgid "DAG..."
msgstr "有向無環圖(DAG)……"

#: cola/widgets/main.py:314
msgid "Start Interactive Rebase..."
msgstr "開始互動式變更基底"

#: cola/widgets/main.py:317
msgid "Edit..."
msgstr "編輯……"

#: cola/widgets/main.py:323
msgid "Skip Current Patch"
msgstr "跳過目前的修正"

#: cola/widgets/main.py:326 cola/widgets/cfgactions.py:82
msgid "Abort"
msgstr "中止"

#: cola/widgets/main.py:342 cola/widgets/dag.py:473
msgid "Lock Layout"
msgstr "鎖住版面"

#: cola/widgets/main.py:349
msgid "File"
msgstr "檔案"

#: cola/widgets/main.py:351
msgid "Open Recent"
msgstr "打開最近使用的版控庫"

#: cola/widgets/main.py:394 cola/widgets/main.py:395
msgid "Staging Area"
msgstr "新修訂版準備區域"

#: cola/widgets/main.py:412
msgid "Branch"
msgstr "分支"

#: cola/widgets/main.py:440 cola/widgets/dag.py:482
msgid "View"
msgstr "檢視"

#: cola/widgets/main.py:515
#, python-format
msgid "git cola version %s"
msgstr "git cola %s 版"

#: cola/widgets/main.py:602 cola/widgets/browse.py:81
#, python-format
msgid "Repository: %s"
msgstr "版控庫:%s"

#: cola/widgets/main.py:604 cola/widgets/browse.py:83
#, python-format
msgid "Branch: %s"
msgstr "分支:%s"

#: cola/widgets/main.py:608
msgid ""
"This repository is currently being rebased.\n"
"Resolve conflicts, commit changes, and run:\n"
"    Rebase > Continue"
msgstr ""
"這個版控庫正在進行變更基底程序。\n"
"解決所有的變更基底衝突,提交變更,然後執行:\n"
"    變更基底 > 繼續"

#: cola/widgets/main.py:611
msgid "Rebasing"
msgstr "正在進行變更基底程序"

#: cola/widgets/main.py:615
msgid ""
"This repository is in the middle of a merge.\n"
"Resolve conflicts and commit changes."
msgstr ""
"本版控庫正在進行分支合併程序。\n"
"將所有的合併衝突解決並提交內容變更。"

#: cola/widgets/main.py:617
msgid "Merging"
msgstr "正在進行分支合併"

#: cola/widgets/main.py:620
msgid "Amending"
msgstr "正在修正前一個修訂版提交"

#: cola/widgets/main.py:756
msgid "Unable to rebase"
msgstr "無法變更基底"

#: cola/widgets/main.py:757
msgid "You cannot rebase with uncommitted changes."
msgstr "您不能在還有尚未提交至版控庫的內容變更的時候進行變更基底。"

#: cola/widgets/main.py:759
msgid "Select New Upstream"
msgstr "選擇新的上游版本"

#: cola/widgets/main.py:760
msgid "Interactive Rebase"
msgstr "互動式變更基底"

#: cola/widgets/status.py:35
msgid "Toggle the paths filter"
msgstr "切換路徑過濾器開關"

#: cola/widgets/status.py:118 cola/models/browse.py:407
msgid "Staged"
msgstr "已被移入新修訂版準備區域"

#: cola/widgets/status.py:119 cola/models/browse.py:401
msgid "Unmerged"
msgstr "尚未合併"

#: cola/widgets/status.py:120 cola/models/browse.py:405
msgid "Modified"
msgstr "已被修改"

#: cola/widgets/status.py:121
msgid "Untracked"
msgstr "未納入版本追蹤"

#: cola/widgets/status.py:162
msgid "Move Up"
msgstr "往上移動"

#: cola/widgets/status.py:166 cola/widgets/commitmsg.py:176
#: cola/widgets/commitmsg.py:179
msgid "Move Down"
msgstr "往下移動"

#: cola/widgets/status.py:170
msgid "Copy Path to Clipboard"
msgstr "將路徑複製到剪貼簿"

#: cola/widgets/status.py:174
msgid "Copy Relative Path to Clipboard"
msgstr "將相對路徑複製到剪貼簿"

#: cola/widgets/status.py:179 cola/widgets/browse.py:135
msgid "View History..."
msgstr "檢視變更紀錄"

#: cola/widgets/status.py:182
msgid "Blame..."
msgstr "指摘(Blame)..."

#: cola/widgets/status.py:190
msgid "Move files to trash"
msgstr "將檔案移動到資源回收筒"

#: cola/widgets/status.py:199
msgid "Delete Files..."
msgstr "刪除檔案……"

#: cola/widgets/status.py:532 cola/widgets/status.py:575
msgid "Unstage Selected"
msgstr "將被選取的項目移出新修訂版準備區域"

#: cola/widgets/status.py:568 cola/widgets/status.py:670
#: cola/widgets/diff.py:253 cola/widgets/diff.py:277
msgid "Launch git-cola"
msgstr "啟動 git-cola"

#: cola/widgets/status.py:588 cola/widgets/status.py:620
#: cola/widgets/status.py:677
msgid "Stage Selected"
msgstr "將被選取的項目移入新修訂版準備區域"

#: cola/widgets/status.py:658
msgid "Add to .gitignore"
msgstr "新增到 Git 忽略規則(.gitignore)"

#: cola/widgets/status.py:953
msgid "Filter paths..."
msgstr "過濾檔案路徑……"

#: cola/widgets/log.py:42
#, python-format
msgid "exit code %s"
msgstr "程式以 %s 狀態碼結束"

#: cola/widgets/cfgactions.py:150 cola/widgets/cfgactions.py:154
msgid "Abort Action"
msgstr "中止操作"

#: cola/widgets/cfgactions.py:151
msgid ""
"An action is still running.\n"
"Terminating it could result in data loss."
msgstr ""
"一個操作仍在進行。\n"
"將其中止可能會造成資料損失。"

#: cola/widgets/cfgactions.py:153
msgid "Abort the action?"
msgstr "要中止操作嗎?"

#: cola/widgets/cfgactions.py:204
msgid "Arguments"
msgstr "參數"

#: cola/widgets/cfgactions.py:224 cola/widgets/merge.py:61
#: cola/widgets/remote.py:112
msgid "Local Branch"
msgstr "本地分支"

#: cola/widgets/cfgactions.py:225 cola/widgets/merge.py:62
msgid "Tracking Branch"
msgstr "跟蹤分支:"

#: cola/widgets/cfgactions.py:226 cola/widgets/merge.py:64
#: cola/widgets/createbranch.py:115
msgid "Tag"
msgstr "標籤"

#: cola/widgets/cfgactions.py:230 cola/widgets/createtag.py:79
msgid "Revision"
msgstr "修訂版"

#: cola/widgets/dag.py:213
msgid "Diff this -> selected"
msgstr "顯示此修訂版→被選取的修訂版的內容差異"

#: cola/widgets/dag.py:216
msgid "Diff selected -> this"
msgstr "顯示被選取的修訂版→此修訂版的內容差異"

#: cola/widgets/dag.py:219 cola/widgets/createbranch.py:90
#: cola/widgets/createbranch.py:134 cola/widgets/createbranch.py:276
msgid "Create Branch"
msgstr "建立一個新的分支"

#: cola/widgets/dag.py:222
msgid "Create Patch"
msgstr "產生修正檔"

#: cola/widgets/dag.py:225 cola/widgets/createtag.py:51
#: cola/widgets/createtag.py:85
msgid "Create Tag"
msgstr "建立新的標籤"

#: cola/widgets/dag.py:231 cola/widgets/search.py:80
msgid "Cherry Pick"
msgstr "挑取(cherry-pick)"

#: cola/widgets/dag.py:237
msgid "Launch Directory Diff Tool"
msgstr "啟動目錄差異檢視工具"

#: cola/widgets/dag.py:246
msgid "Grab File..."
msgstr "提取檔案……"

#: cola/widgets/dag.py:249
msgid "Copy SHA-1"
msgstr "複製 SHA-1 雜湊"

#: cola/widgets/dag.py:274
msgid "Summary"
msgstr "總結"

#: cola/widgets/dag.py:274 cola/models/browse.py:46
msgid "Author"
msgstr "作者"

#: cola/widgets/dag.py:274
msgid "Date, Time"
msgstr "時間,日期"

#: cola/widgets/dag.py:282
msgid "Go Up"
msgstr "往上移動"

#: cola/widgets/dag.py:285
msgid "Go Down"
msgstr "往下移動"

#: cola/widgets/dag.py:412 cola/widgets/dag.py:1135
msgid "Zoom Out"
msgstr "縮小"

#: cola/widgets/dag.py:415 cola/widgets/dag.py:1132
msgid "Zoom In"
msgstr "放大"

#: cola/widgets/dag.py:418 cola/widgets/dag.py:1138
msgid "Zoom to Fit"
msgstr "縮放以符合視窗大小"

#: cola/widgets/dag.py:448
msgid "Log"
msgstr "紀錄"

#: cola/widgets/dag.py:453
msgid "Files"
msgstr "檔案"

#: cola/widgets/dag.py:467
msgid "Graph"
msgstr "圖"

#: cola/widgets/dag.py:561
#, python-format
msgid "%(project)s: %(ref)s - DAG"
msgstr "%(project)s: %(ref)s - 有向無環圖(DAG)"

#: cola/widgets/dag.py:564
msgid " - DAG"
msgstr " - 有向無環圖(DAG)"

#: cola/widgets/dag.py:1141
msgid "Select Parent"
msgstr "選取"

#: cola/widgets/dag.py:1144
msgid "Select Oldest Parent"
msgstr "選取最舊的母節點"

#: cola/widgets/dag.py:1147
msgid "Select Child"
msgstr "選擇子節點"

#: cola/widgets/dag.py:1150
msgid "Select Newest Child"
msgstr "選取最新的子節點"

#: cola/widgets/patch.py:67
msgid "Apply Patches"
msgstr "套用修正"

#: cola/widgets/patch.py:76
msgid ""
"\n"
"            <p>\n"
"                Drag and drop or use the <strong>Add</strong> button to add\n"
"                patches to the list\n"
"            </p>\n"
"            "
msgstr ""
"\n"
"            <p>\n"
"                拖放或使用<strong>新增</strong>按鈕以將\n"
"                修正檔加到清單中\n"
"            </p>\n"
"            "

#: cola/widgets/patch.py:88
msgid "Add patches (+)"
msgstr "加入修正檔 (+)"

#: cola/widgets/patch.py:92
msgid "Remove selected (Delete)"
msgstr "移除被選取的項目(刪除)"

#: cola/widgets/patch.py:95 cola/widgets/stash.py:52
msgid "Apply"
msgstr "套用"

#: cola/widgets/patch.py:135
msgid "Select patch files..."
msgstr "選擇修正檔……"

#: cola/widgets/search.py:43 cola/widgets/search.py:61 cola/widgets/grep.py:72
msgid "Search"
msgstr "搜尋"

#: cola/widgets/search.py:47
msgid "Browse..."
msgstr "瀏覽……"

#: cola/widgets/search.py:53 cola/widgets/search.py:58
msgid "yyyy-MM-dd"
msgstr "yyyy-MM-dd"

#: cola/widgets/search.py:212
msgid "Search by Expression"
msgstr "以表達式搜尋"

#: cola/widgets/search.py:213
msgid "Search by Path"
msgstr "以路徑搜尋"

#: cola/widgets/search.py:214
msgid "Search Commit Messages"
msgstr "搜尋修訂版提交訊息"

#: cola/widgets/search.py:215
msgid "Search Diffs"
msgstr "搜尋內容變更"

#: cola/widgets/search.py:216
msgid "Search Authors"
msgstr "搜尋作者名"

#: cola/widgets/search.py:217
msgid "Search Committers"
msgstr "搜尋提交者名"

#: cola/widgets/search.py:218
msgid "Search Date Range"
msgstr "搜尋日期範圍"

#: cola/widgets/search.py:306
msgid "Choose Paths"
msgstr "選取路徑"

#: cola/widgets/spellcheck.py:139
msgid "Spelling Suggestions"
msgstr "拼字建議"

#: cola/widgets/prefs.py:119
msgid "Detect conflict markers in unmerged files"
msgstr "偵測尚未合併檔案中的衝突標記"

#: cola/widgets/prefs.py:122
msgid "User Name"
msgstr "使用者名稱"

#: cola/widgets/prefs.py:123
msgid "Email Address"
msgstr "電子郵件地址"

#: cola/widgets/prefs.py:124
msgid "Merge Verbosity"
msgstr "合併資訊詳細程度"

#: cola/widgets/prefs.py:125
msgid "Number of Diff Context Lines"
msgstr "內容差異上下文行數"

#: cola/widgets/prefs.py:126
msgid "Summarize Merge Commits"
msgstr "概述合併進來的內容提交(commit)"

#: cola/widgets/prefs.py:127
msgid "Show Diffstat After Merge"
msgstr "在合併後顯示內容差異"

#: cola/widgets/prefs.py:128
msgid "Display Untracked Files"
msgstr "顯示未納入版本追蹤的檔案"

#: cola/widgets/prefs.py:129
msgid "Detect Conflict Markers"
msgstr "偵測衝突標記"

#: cola/widgets/prefs.py:174
msgid "Fixed-Width Font"
msgstr "等寬字型"

#: cola/widgets/prefs.py:175
msgid "Font Size"
msgstr "字體大小"

#: cola/widgets/prefs.py:176
msgid "Tab Width"
msgstr "Tab 字元的顯示寬度"

#: cola/widgets/prefs.py:177
msgid "Text Width"
msgstr "單行文字寬度限制"

#: cola/widgets/prefs.py:178 cola/widgets/commitmsg.py:142
msgid "Auto-Wrap Lines"
msgstr "自動折行"

#: cola/widgets/prefs.py:179
msgid "Editor"
msgstr "文字編輯器"

#: cola/widgets/prefs.py:180
msgid "History Browser"
msgstr "變更紀錄瀏覽器"

#: cola/widgets/prefs.py:181
msgid "Blame Viewer"
msgstr "指謫(blame)查看器"

#: cola/widgets/prefs.py:182
msgid "Diff Tool"
msgstr "顯示內容差異的工具"

#: cola/widgets/prefs.py:183
msgid "Merge Tool"
msgstr "合併(merge)工具"

#: cola/widgets/prefs.py:184
msgid "Keep *.orig Merge Backups"
msgstr "保留 *.orig merge 備份檔"

#: cola/widgets/prefs.py:185
msgid "Sort bookmarks alphabetically"
msgstr "以字母順序排序書籤"

#: cola/widgets/prefs.py:186
msgid ""
"Bold with dark background font instead of italic headers (restart required)"
msgstr "標題用帶深色底色的粗體而非斜體(需要重新啟動應用軟體設定才會生效)"

#: cola/widgets/prefs.py:188
msgid "Save GUI Settings"
msgstr "保存圖形介面設定"

#: cola/widgets/prefs.py:246
msgid "All Repositories"
msgstr "所有的版控庫"

#: cola/widgets/prefs.py:247
msgid "Current Repository"
msgstr "當前的版控庫"

#: cola/widgets/prefs.py:248
msgid "Settings"
msgstr "設定值"

#: cola/widgets/diff.py:155
msgid "Ignore changes in whitespace at EOL"
msgstr "忽略行結尾處空白的變更"

#: cola/widgets/diff.py:160
msgid "Ignore changes in amount of whitespace"
msgstr "忽略空白數量的變更"

#: cola/widgets/diff.py:165
msgid "Ignore all whitespace"
msgstr "忽略所有的空白"

#: cola/widgets/diff.py:169
msgid "Show whole surrounding functions of changes"
msgstr "秀出整個包含變更的函式內容"

#: cola/widgets/diff.py:174 cola/widgets/diff.py:175
msgid "Diff Options"
msgstr "內容差異選項"

#: cola/widgets/diff.py:258
msgid "Stage Selected Lines"
msgstr "將選取的行移入新修訂版準備區域(&S)"

#: cola/widgets/diff.py:259
msgid "Revert Selected Lines..."
msgstr "撤銷選取行的內容變更……"

#: cola/widgets/diff.py:261
msgid "Stage Diff Hunk"
msgstr "將此內容差異區塊移入新修訂版準備區域"

#: cola/widgets/diff.py:262
msgid "Revert Diff Hunk..."
msgstr "撤銷此內容差異區塊的內容變更……"

#: cola/widgets/diff.py:282
msgid "Unstage Selected Lines"
msgstr "將被選取的行移出新修訂版準備區域"

#: cola/widgets/diff.py:284
msgid "Unstage Diff Hunk"
msgstr "將此內容差異區塊移出新修訂版準備區域"

#: cola/widgets/diff.py:310
msgid "Select All"
msgstr "全選"

#: cola/widgets/diff.py:442
msgid "Revert Selected Lines?"
msgstr "要撤銷選取行的內容變更嗎?"

#: cola/widgets/diff.py:443
msgid "Revert Selected Lines"
msgstr "撤銷選取行的內容變更"

#: cola/widgets/diff.py:445
msgid "Revert Diff Hunk?"
msgstr "要撤銷選取內容差異區塊的內容變更嗎?"

#: cola/widgets/diff.py:446
msgid "Revert Diff Hunk"
msgstr "撤銷選取內容差異區塊的內容變更"

#: cola/widgets/diff.py:521
msgid "Loading..."
msgstr "正在載入……"

#: cola/widgets/recent.py:44
msgid "Recently Modified Files"
msgstr "最近修改過的檔案"

#: cola/widgets/recent.py:54
msgid " commits ago"
msgstr " 個修訂版提交前"

#: cola/widgets/recent.py:57
msgid "Showing changes since"
msgstr "顯示變更自前"

#: cola/widgets/recent.py:65
msgid "Expand all"
msgstr "全部展開"

#: cola/widgets/recent.py:68
msgid "Collapse all"
msgstr "全部折疊"

#: cola/widgets/about.py:35
msgid "About git-cola"
msgstr "關於 git-cola"

#: cola/widgets/about.py:60
msgid "Version"
msgstr "版本"

#: cola/widgets/about.py:61
msgid "Authors"
msgstr "作者群"

#: cola/widgets/about.py:62
msgid "Translators"
msgstr "翻譯者們"

#: cola/widgets/about.py:126
#, python-format
msgid ""
"\n"
"        <br>\n"
"            Git Cola version %(cola_version)s\n"
"        <ul>\n"
"            <li> %(platform_version)s\n"
"            <li> Python (%(python_path)s) %(python_version)s\n"
"            <li> Git %(git_version)s\n"
"            <li> Qt %(qt_version)s\n"
"            <li> QtPy %(qtpy_version)s\n"
"            <li> %(pyqt_api_name)s %(pyqt_api_version)s\n"
"        </ul>\n"
"    "
msgstr ""
"\n"
"        <br>\n"
"            Git Cola 第 %(cola_version)s 版\n"
"        <ul>\n"
"            <li> %(platform_version)s\n"
"            <li> Python (%(python_path)s) 第 %(python_version)s 版\n"
"            <li> Git 第 %(git_version)s 版\n"
"            <li> Qt 第 %(qt_version)s 版\n"
"            <li> QtPy 第 %(qtpy_version)s 版\n"
"            <li> %(pyqt_api_name)s 第 %(pyqt_api_version)s 版\n"
"        </ul>\n"
"    "

#: cola/widgets/about.py:180
#, python-format
msgid ""
"\n"
"        <br>\n"
"        Please use %(bug_link)s to report issues.\n"
"        <br>\n"
"\n"
"        %(author_text)s\n"
"        %(epilogue)s\n"
"    "
msgstr ""
"\n"
"        <br>\n"
"        請透過 %(bug_link)s 來回報使用問題\n"
"        <br>\n"
"\n"
"        %(author_text)s\n"
"        %(epilogue)s\n"
"    "

#: cola/widgets/about.py:192 cola/widgets/about.py:272
msgid "Email contributor"
msgstr "寄電子郵件給這位貢獻者"

#: cola/widgets/about.py:195
msgid "Maintainer (since 2007) and developer"
msgstr "(自從 2007 年開始)維護者與開發者"

#: cola/widgets/about.py:203 cola/widgets/about.py:204
#: cola/widgets/about.py:205 cola/widgets/about.py:206
#: cola/widgets/about.py:207 cola/widgets/about.py:208
#: cola/widgets/about.py:209 cola/widgets/about.py:210
#: cola/widgets/about.py:211 cola/widgets/about.py:212
#: cola/widgets/about.py:213 cola/widgets/about.py:214
#: cola/widgets/about.py:215 cola/widgets/about.py:216
#: cola/widgets/about.py:217 cola/widgets/about.py:218
#: cola/widgets/about.py:219 cola/widgets/about.py:220
#: cola/widgets/about.py:221 cola/widgets/about.py:222
#: cola/widgets/about.py:223 cola/widgets/about.py:224
#: cola/widgets/about.py:225 cola/widgets/about.py:226
#: cola/widgets/about.py:227 cola/widgets/about.py:228
#: cola/widgets/about.py:229 cola/widgets/about.py:230
#: cola/widgets/about.py:231 cola/widgets/about.py:232
#: cola/widgets/about.py:233 cola/widgets/about.py:234
#: cola/widgets/about.py:235 cola/widgets/about.py:236
#: cola/widgets/about.py:237 cola/widgets/about.py:238
#: cola/widgets/about.py:239 cola/widgets/about.py:240
#: cola/widgets/about.py:241 cola/widgets/about.py:242
#: cola/widgets/about.py:243 cola/widgets/about.py:244
#: cola/widgets/about.py:245 cola/widgets/about.py:246
#: cola/widgets/about.py:247 cola/widgets/about.py:248
#: cola/widgets/about.py:249 cola/widgets/about.py:250
#: cola/widgets/about.py:251 cola/widgets/about.py:252
#: cola/widgets/about.py:253 cola/widgets/about.py:254
#: cola/widgets/about.py:255 cola/widgets/about.py:256
#: cola/widgets/about.py:257 cola/widgets/about.py:258
#: cola/widgets/about.py:259 cola/widgets/about.py:260
#: cola/widgets/about.py:261 cola/widgets/about.py:262
#: cola/widgets/about.py:263 cola/widgets/about.py:264
#: cola/widgets/about.py:265
msgid "Developer"
msgstr "軟體開發者"

#: cola/widgets/about.py:278
msgid "Turkish translation"
msgstr "土耳其語翻譯"

#: cola/widgets/about.py:281
msgid "Polish translation"
msgstr "波蘭語翻譯"

#: cola/widgets/about.py:284 cola/widgets/about.py:292
msgid "Indonesian translation"
msgstr "印度尼西亞語翻譯"

#: cola/widgets/about.py:286 cola/widgets/about.py:301
msgid "Traditional Chinese (Taiwan) translation"
msgstr "傳統中文(台灣地區)翻譯"

#: cola/widgets/about.py:289 cola/widgets/about.py:310
msgid "Spanish translation"
msgstr "西班牙語翻譯"

#: cola/widgets/about.py:295
msgid "German translation"
msgstr "德語翻譯"

#: cola/widgets/about.py:298
msgid "Russian translation"
msgstr "俄羅斯語翻譯"

#: cola/widgets/about.py:304
msgid "Brazilian translation"
msgstr "巴西語翻譯"

#: cola/widgets/about.py:307
msgid "Chinese translation"
msgstr "簡體中文翻譯"

#: cola/widgets/about.py:316
msgid "hotkeys.html"
msgstr "hotkeys_zh_TW.html"

#: cola/widgets/about.py:329
msgid "Shortcuts"
msgstr "鍵盤快捷鍵"

#: cola/widgets/startup.py:29
msgid "git-cola"
msgstr "git-cola"

#: cola/widgets/startup.py:45
msgid "New..."
msgstr "新建……"

#: cola/widgets/startup.py:57
msgid "Select Repository..."
msgstr "選擇版控庫"

#: cola/widgets/startup.py:62
msgid "Select manually..."
msgstr "手動選取……"

#: cola/widgets/compare.py:37
msgid "*** Branch Point ***"
msgstr "*** 分支點 ***"

#: cola/widgets/compare.py:38
msgid "*** Sandbox ***"
msgstr "*** 沙盒 ***"

#: cola/widgets/compare.py:39 cola/widgets/compare.py:50
#: cola/widgets/compare.py:55
msgid "Local"
msgstr "本地"

#: cola/widgets/compare.py:41
msgid "Branch Diff Viewer"
msgstr "分支差異檢視器"

#: cola/widgets/compare.py:51 cola/widgets/compare.py:56
#: cola/widgets/remote.py:119
msgid "Remote"
msgstr "遠端"

#: cola/widgets/compare.py:71
msgid "File Differences"
msgstr "檔案變化"

#: cola/widgets/grep.py:85
msgid "command-line arguments"
msgstr "命令列參數"

#: cola/widgets/grep.py:89
msgid "Choose the \"git grep\" regular expression mode"
msgstr "選擇「git grep」命令的正規表達式模式"

#: cola/widgets/grep.py:90
msgid "Basic Regexp"
msgstr "基本正規表達式"

#: cola/widgets/grep.py:90
msgid "Extended Regexp"
msgstr "延伸正規表達式"

#: cola/widgets/grep.py:90
msgid "Fixed String"
msgstr "固定內容字串"

#: cola/widgets/grep.py:96
msgid "Search using a POSIX basic regular expression"
msgstr "使用 POSIX 基本正規表達式來搜尋"

#: cola/widgets/grep.py:100
msgid "Search using a POSIX extended regular expression"
msgstr "使用 POSIX 延伸正規表達式來搜尋"

#: cola/widgets/grep.py:102
msgid "Search for a fixed string"
msgstr "搜尋一個固定內容字串"

#: cola/widgets/grep.py:107
msgid "grep result..."
msgstr "搜尋結果……"

#: cola/widgets/grep.py:116
msgid "Shell arguments"
msgstr "殼程式參數"

#: cola/widgets/grep.py:117
msgid ""
"Parse arguments using a shell.\n"
"Queries with spaces will require \"double quotes\"."
msgstr ""
"使用殼程式(shell)來解析參數。\n"
"內含空白字元的查詢需使用 \"雙引號\" 括住。"

#: cola/widgets/commitmsg.py:53
msgid "Sign off on this commit"
msgstr "於此修訂版提交上簽名"

#: cola/widgets/commitmsg.py:56 cola/widgets/commitmsg.py:99
msgid "Commit@@verb"
msgstr "提交"

#: cola/widgets/commitmsg.py:58
msgid "Commit staged changes"
msgstr "提交新修訂版準備區域中的變更"

#: cola/widgets/commitmsg.py:59
msgid "Clear..."
msgstr "清除……"

#: cola/widgets/commitmsg.py:96
msgid ""
"Commit staged changes\n"
"Shortcut: Ctrl+Enter"
msgstr ""
"提交新修訂版準備區域中的變更\n"
"鍵盤快捷鍵:Ctrl+Enter"

#: cola/widgets/commitmsg.py:105
msgid "Actions..."
msgstr "操作……"

#: cola/widgets/commitmsg.py:116
msgid "Amend Last Commit"
msgstr "修正上次提交"

#: cola/widgets/commitmsg.py:123
msgid "Bypass Commit Hooks"
msgstr "不執行提交掛勾程式"

#: cola/widgets/commitmsg.py:130 cola/widgets/merge.py:88
msgid "Create Signed Commit"
msgstr "建立經 GPG 簽署過的修訂版提交"

#: cola/widgets/commitmsg.py:136
msgid "Check Spelling"
msgstr "檢查拼字問題"

#: cola/widgets/commitmsg.py:149
msgid "Load Previous Commit Message"
msgstr "載入先前的修訂版提交的訊息"

#: cola/widgets/commitmsg.py:153
msgid "Fixup Previous Commit"
msgstr "修正先前的修訂版提交"

#: cola/widgets/commitmsg.py:311
msgid "Clear commit message?"
msgstr "清除修訂版提交訊息?"

#: cola/widgets/commitmsg.py:312
msgid "The commit message will be cleared."
msgstr "修訂版提交訊息將會被移除。"

#: cola/widgets/commitmsg.py:313
msgid "This cannot be undone.  Clear commit message?"
msgstr "此操作將無法復原。要清除提交訊息嗎?"

#: cola/widgets/commitmsg.py:314
msgid "Clear commit message"
msgstr "清除修訂版提交訊息"

#: cola/widgets/commitmsg.py:420
msgid ""
"Please supply a commit message.\n"
"\n"
"A good commit message has the following format:\n"
"\n"
"- First line: Describe in one sentence what you did.\n"
"- Second line: Blank\n"
"- Remaining lines: Describe why this change is good.\n"
msgstr ""
"請提供一條修訂版提交訊息。\n"
"\n"
"一條好的修訂版提交有下列格式:\n"
"\n"
"- 第一行: 一句話概括您所做的變更。\n"
"- 第二行: 空行\n"
"- 剩餘行: 描述為什麼您所做的變更是好的。\n"

#: cola/widgets/commitmsg.py:426
msgid "Missing Commit Message"
msgstr "缺少修訂版提交訊息"

#: cola/widgets/commitmsg.py:433
msgid ""
"No changes to commit.\n"
"\n"
"You must stage at least 1 file before you can commit."
msgstr ""
"沒有可以提交的內容變動。\n"
"\n"
"提交前你必須至少將至少一個檔案移入新修訂版準備區域。"

#: cola/widgets/commitmsg.py:436
msgid "Would you like to stage and commit all modified files?"
msgstr "您要將所有被修改的檔案移入新修訂版準備區域並提交出去嗎?"

#: cola/widgets/commitmsg.py:439
msgid "Stage and commit?"
msgstr "要移入新修訂版準備區域並提交出去嗎?"

#: cola/widgets/commitmsg.py:440
msgid "Stage and Commit"
msgstr "移入新修訂版準備區域並提交出去"

#: cola/widgets/commitmsg.py:444
msgid "Nothing to commit"
msgstr "沒有東西可以提交"

#: cola/widgets/commitmsg.py:452
msgid "Rewrite Published Commit?"
msgstr "要重寫已推送出去的修訂版提交嗎?"

#: cola/widgets/commitmsg.py:453
msgid ""
"This commit has already been published.\n"
"This operation will rewrite published history.\n"
"You probably don't want to do this."
msgstr ""
"此修訂版提交已經被推送到遠端版控庫。\n"
"此操作將會重寫已推送出去的變更紀錄。\n"
"您可能不想要做此操作。"

#: cola/widgets/commitmsg.py:456
msgid "Amend the published commit?"
msgstr "要修正已被推送出去的修訂版提交嗎?"

#: cola/widgets/commitmsg.py:457
msgid "Amend Commit"
msgstr "修正前一個修訂版提交"

#: cola/widgets/commitmsg.py:465
msgid "Commit failed"
msgstr "提交失敗"

#: cola/widgets/commitmsg.py:466
#, python-format
msgid "\"git commit\" returned exit code %s"
msgstr "「git commit」命令傳回 %s 結束狀態碼"

#: cola/widgets/commitmsg.py:497
msgid "More..."
msgstr "更多……"

#: cola/widgets/commitmsg.py:501
msgid "Select Commit"
msgstr "選取修訂版提交"

#: cola/widgets/commitmsg.py:547
msgid "Commit summary"
msgstr "修訂版提交描述"

#: cola/widgets/commitmsg.py:573
msgid "Extended description..."
msgstr "延伸描述"

#: cola/widgets/merge.py:31
msgid ""
"Aborting the current merge will cause *ALL* uncommitted changes to be lost.\n"
"Recovering uncommitted changes is not possible."
msgstr ""
"中止目前的分支合併操作將導致 *所有* 尚未提交到版控庫的內容變更遺失,\n"
"且所有遺失的變更將無法被復原或找回。"

#: cola/widgets/merge.py:34
msgid "Aborting the current merge?"
msgstr "中止目前正在進行的分支合併?"

#: cola/widgets/merge.py:35
msgid "Abort Merge"
msgstr "中止分支合併(merge"

#: cola/widgets/merge.py:55 cola/widgets/merge.py:59
msgid "Revision to Merge"
msgstr "要合併的修訂版"

#: cola/widgets/merge.py:69
msgid "Visualize"
msgstr "視覺化顯示"

#: cola/widgets/merge.py:72
msgid "Squash the merged commits into a single commit"
msgstr "將合併之修訂版提交(們)壓為單一修訂版提交"

#: cola/widgets/merge.py:73
msgid "Squash"
msgstr "壓為單一修訂版提交"

#: cola/widgets/merge.py:76
msgid ""
"Always create a merge commit when enabled, even when the merge is a fast-"
"forward update"
msgstr "於啟用時,就算該合併是一個快速前移式更新也總是建立一個合併修訂版提交"

#: cola/widgets/merge.py:78
msgid "No fast forward"
msgstr "不進行快速前移式合併"

#: cola/widgets/merge.py:82
msgid ""
"Commit the merge if there are no conflicts.  Uncheck to leave the merge "
"uncommitted"
msgstr "若不存在版本衝突時提交該合併。取消勾選以保持合併於尚未提交狀態"

#: cola/widgets/merge.py:90
msgid "GPG-sign the merge commit"
msgstr "用 GPG 簽署合併修訂版提交"

#: cola/widgets/merge.py:96
msgid "Merge"
msgstr "合併"

#: cola/widgets/merge.py:144
#, python-format
msgid "Merge \"%(revision)s\" into \"%(branch)s\""
msgstr "合併「%(revision)s」修訂版至「%(branch)s」分支中"

#: cola/widgets/merge.py:147
#, python-format
msgid "Merge into \"%s\""
msgstr "合併到「%s」分支"

#: cola/widgets/merge.py:195 cola/widgets/merge.py:204
msgid "No Revision Specified"
msgstr "沒有選取修訂版"

#: cola/widgets/merge.py:196
msgid "You must specify a revision to view."
msgstr "您必須要選擇一個修訂版來檢視。"

#: cola/widgets/merge.py:205
msgid "You must specify a revision to merge."
msgstr "您必須要選擇一個修訂版來合併。"

#: cola/widgets/filelist.py:23
msgid "Filename"
msgstr "檔案名稱"

#: cola/widgets/filelist.py:23
msgid "Additions"
msgstr "新增行數"

#: cola/widgets/filelist.py:23
msgid "Deletions"
msgstr "移除行數"

#: cola/widgets/filelist.py:27
msgid "Show History"
msgstr "檢視變更紀錄"

#: cola/widgets/archive.py:107
msgid "Save Archive"
msgstr "保存封存檔"

#: cola/widgets/archive.py:125
msgid "Prefix"
msgstr "前綴路徑"

#: cola/widgets/archive.py:130
msgid "Advanced"
msgstr "進階選項"

#: cola/widgets/archive.py:176 cola/widgets/browse.py:507
msgid "File Saved"
msgstr "檔案已保存"

#: cola/widgets/archive.py:177 cola/widgets/browse.py:508
#, python-format
msgid "File saved to \"%s\""
msgstr "檔案已保存至「%s」"

#: cola/widgets/archive.py:184
msgid "Overwrite File?"
msgstr "要覆寫檔案嗎?"

#: cola/widgets/archive.py:185
#, python-format
msgid "The file \"%s\" exists and will be overwritten."
msgstr "檔案「%s」已存在且將會被覆寫。"

#: cola/widgets/archive.py:186
#, python-format
msgid "Overwrite \"%s\"?"
msgstr "要覆寫「%s」嗎?"

#: cola/widgets/archive.py:187
msgid "Overwrite"
msgstr "覆寫"

#: cola/widgets/remote.py:109 cola/widgets/createbranch.py:277
msgid "Updating"
msgstr "正在更新"

#: cola/widgets/remote.py:129
msgid "Remote Branch"
msgstr "遠端分支名"

#: cola/widgets/remote.py:135
msgid "Prompt on creation"
msgstr "建新分支時提示"

#: cola/widgets/remote.py:136
msgid "Prompt when pushing creates new remote branches"
msgstr "在建立新的遠端分支時提示使用者"

#: cola/widgets/remote.py:140
msgid "Fast-forward only"
msgstr "只允許快速前移式合併"

#: cola/widgets/remote.py:141
msgid ""
"Refuse to merge unless the current HEAD is already up-to-date or the merge "
"can be resolved as a fast-forward"
msgstr ""
"除非當前 HEAD 指標早就是最新版本或是分支合併能以快速前移式處理否則拒絕合併分"
"支"

#: cola/widgets/remote.py:146
msgid "No fast-forward"
msgstr "不進行快速前移式合併"

#: cola/widgets/remote.py:147
msgid "Create a merge commit even when the merge resolves as a fast-forward"
msgstr "就算該合併是一個快速前移式合併也總是建立一個合併修訂版提交"

#: cola/widgets/remote.py:151
msgid "Force"
msgstr "強制推送"

#: cola/widgets/remote.py:152
msgid ""
"Allow non-fast-forward updates.  Using \"force\" can cause the remote "
"repository to lose commits; use it with care"
msgstr ""
"允許非快速前移式更新。使用「強制」可能會造成遠端版控庫遺失修訂版提交;請小心使"
"用"

#: cola/widgets/remote.py:158
msgid "Include tags "
msgstr "包含標籤 "

#: cola/widgets/remote.py:160
msgid "Rebase the current branch instead of merging"
msgstr "不合併分支,而是將遠端分支變更基底到當前分支"

#: cola/widgets/remote.py:164
msgid "Set upstream"
msgstr "設為上游追蹤分支"

#: cola/widgets/remote.py:165
msgid "Configure the remote branch as the the new upstream"
msgstr "將此遠端分支設維新的上游分支"

#: cola/widgets/remote.py:362
#, python-format
msgid "URL: %s"
msgstr "URL: %s"

#: cola/widgets/remote.py:464
msgid "No repository selected."
msgstr "沒有選擇版控庫"

#: cola/widgets/remote.py:481 cola/widgets/remote.py:576
msgid "Push"
msgstr "推送至遠端版控庫"

#: cola/widgets/remote.py:483
#, python-format
msgid ""
"Branch \"%(branch)s\" does not exist in \"%(remote)s\".\n"
"A new remote branch will be published."
msgstr ""
"「%(branch)s」分支並無存在於「%(remote)s」遠端版控庫。\n"
"一個新的遠端方支將被發佈。"

#: cola/widgets/remote.py:485
msgid "Create a new remote branch?"
msgstr "要建立新的遠端分支嗎?"

#: cola/widgets/remote.py:486
msgid "Create Remote Branch"
msgstr "建立新的遠端分支"

#: cola/widgets/remote.py:493
msgid "Force Fetch?"
msgstr "要進行強制撈取(fetch)嗎?"

#: cola/widgets/remote.py:494
msgid "Non-fast-forward fetch overwrites local history!"
msgstr "非快速前移式的撈取(fetch)將會覆寫本地版控庫的變更紀錄!"

#: cola/widgets/remote.py:495
#, python-format
msgid "Force fetching from %s?"
msgstr "是否要強制自「%s」撈取(fetch)?"

#: cola/widgets/remote.py:496
msgid "Force Fetch"
msgstr "強制撈取(fetch)"

#: cola/widgets/remote.py:498
msgid "Force Push?"
msgstr "要進行強制推送(push)嗎?"

#: cola/widgets/remote.py:499
msgid ""
"Non-fast-forward push overwrites published history!\n"
"(Did you pull first?)"
msgstr ""
"非快速前移式的推送(push)將會覆寫遠端版控庫的變更紀錄!\n"
"(您有先 Pull 過了嗎?)"

#: cola/widgets/remote.py:501
#, python-format
msgid "Force push to %s?"
msgstr "要強制推送至「%s」遠端版控庫嗎?"

#: cola/widgets/remote.py:502
msgid "Force Push"
msgstr "強制推送"

#: cola/widgets/remote.py:523
msgid "Already up-to-date."
msgstr "早就已經是最新版本。"

#: cola/widgets/remote.py:548
msgid "Have you rebased/pulled lately?"
msgstr "您最近有作變更基底或 pull 操作嗎?"

#: cola/widgets/remote.py:558
msgid "Fetch"
msgstr "自遠端版控庫撈取(fetch)"

#: cola/widgets/remote.py:600
msgid "Pull"
msgstr "自遠端分支撈取並合併(pull)"

#: cola/widgets/editremotes.py:34
msgid "Edit Remotes"
msgstr "編輯遠端版控庫"

#: cola/widgets/editremotes.py:44
msgid ""
"Add and remove remote repositories using the \n"
"Add(+) and Delete(-) buttons on the left-hand side.\n"
"\n"
"Remotes can be renamed by selecting one from the list\n"
"and pressing \"enter\", or by double-clicking."
msgstr ""
"使用左手測的新增(+)與移除(-)按鈕\n"
"新增或移除遠端版控庫\n"
"\n"
"選取其中一個清單中的遠端版控庫\n"
"再按下 Enter 或是連續點兩下就可以將其重新命名。"

#: cola/widgets/editremotes.py:53
msgid "Remote git repositories - double-click to rename"
msgstr "遠端 Git 版控庫 - 連續點兩下以重新命名"

#: cola/widgets/editremotes.py:65
msgid "Add new remote git repository"
msgstr "加一個新的遠端 Git 版控庫"

#: cola/widgets/editremotes.py:71
msgid "Delete remote"
msgstr "移除遠端版控庫"

#: cola/widgets/editremotes.py:151
#, python-format
msgid "Gathering info for \"%s\"..."
msgstr "正在蒐集「%s」遠端版控庫的資訊……"

#: cola/widgets/editremotes.py:184
msgid "Add Remote"
msgstr "新增遠端版控庫"

#: cola/widgets/editremotes.py:195
msgid "Add remote"
msgstr "新增遠端版控庫"

#: cola/widgets/editremotes.py:196
msgid "Name for the new remote"
msgstr "新遠端版控庫的名稱"

#: cola/widgets/editremotes.py:201
msgid "URL"
msgstr "URL"

#: cola/widgets/browse.py:87
#, python-format
msgid "%(project)s: %(branch)s - Browse"
msgstr "%(project)s:%(branch)s - 瀏覽"

#: cola/widgets/browse.py:89
msgid "(Amending)"
msgstr "(正在修正前一個修訂版提交)"

#: cola/widgets/browse.py:136
msgid "View history for selected paths"
msgstr "檢視被選取的路徑(們)的變更紀錄"

#: cola/widgets/browse.py:141
msgid "Stage/unstage selected paths for commit"
msgstr "將被選取的路徑移進/移出新修訂版準備區域"

#: cola/widgets/browse.py:145
msgid "Untrack Selected"
msgstr "將被選取的項目移出新修訂版準備區域"

#: cola/widgets/browse.py:146
msgid "Stop tracking paths"
msgstr "停止追蹤路徑"

#: cola/widgets/browse.py:151
msgid "Launch git-difftool on the current path."
msgstr "在目前的路徑中啟動 git-difftool。"

#: cola/widgets/browse.py:155
msgid "Diff Against Predecessor..."
msgstr "與過去版本比較內容差異"

#: cola/widgets/browse.py:156
msgid "Launch git-difftool against previous versions."
msgstr "對先前的版本啟動 git-difftool 。"

#: cola/widgets/browse.py:161
msgid "Revert unstaged changes to selected paths."
msgstr "撤銷被選取的路徑尚未移入新修訂版準備區域的內容變更。"

#: cola/widgets/browse.py:166
msgid "Revert uncommitted changes to selected paths."
msgstr "撤銷被選取的路徑尚未被提交的內容變更。"

#: cola/widgets/browse.py:171
msgid "Edit selected paths"
msgstr "編輯選取的路徑"

#: cola/widgets/browse.py:470
msgid "Select Previous Version"
msgstr "選擇先前版本"

#: cola/widgets/browse.py:500
#, python-format
msgid "Saved \"%(filename)s\" from \"%(ref)s\" to \"%(destination)s\""
msgstr "已將「%(filename)s」檔案自「%(ref)s」修訂版保存至「%(destination)s」目錄"

#: cola/widgets/browse.py:520
#, python-format
msgid "Browsing %s"
msgstr "正在瀏覽 %s"

#: cola/widgets/browse.py:538
#, python-format
msgid "Select file from \"%s\""
msgstr "於「%s」中選取檔案"

#: cola/widgets/browse.py:547
msgid "Select File"
msgstr "選取檔案"

#: cola/widgets/createbranch.py:101
msgid "Branch Name"
msgstr "分支名稱"

#: cola/widgets/createbranch.py:106
msgid "Starting Revision"
msgstr "起始修訂版"

#: cola/widgets/createbranch.py:113
msgid "Local branch"
msgstr "本地分支"

#: cola/widgets/createbranch.py:114
msgid "Tracking branch"
msgstr "追蹤分支"

#: cola/widgets/createbranch.py:120
msgid "Update Existing Branch:"
msgstr "是否更新既有分支:"

#: cola/widgets/createbranch.py:122
msgid "No"
msgstr "不更新"

#: cola/widgets/createbranch.py:123
msgid "Fast Forward Only"
msgstr "僅更新可進行快速前移式合併者"

#: cola/widgets/createbranch.py:127
msgid "Fetch Tracking Branch"
msgstr "撈取(fetch)追蹤分支"

#: cola/widgets/createbranch.py:130
msgid "Checkout After Creation"
msgstr "在建立新分支後取出該分支"

#: cola/widgets/createbranch.py:232
msgid "Missing Data"
msgstr "缺少資料"

#: cola/widgets/createbranch.py:233
msgid "Please provide both a branch name and revision expression."
msgstr "請填寫分支名稱與修訂版表達式。"

#: cola/widgets/createbranch.py:238
#, python-format
msgid "Branch \"%s\" already exists."
msgstr "「%s」分支早已存在。"

#: cola/widgets/createbranch.py:239 cola/widgets/createbranch.py:250
msgid "Branch Exists"
msgstr "分支已存在"

#: cola/widgets/createbranch.py:246
#, python-format
msgid "Resetting \"%(branch)s\" to \"%(revision)s\" will lose commits."
msgstr "重置「%(branch)s」分支到「%(revision)s」修訂版將導致修訂版提交的丟失。"

#: cola/widgets/createbranch.py:260
#, python-format
msgid "%d skipped"
msgstr "%d 個跳過了"

#: cola/widgets/createbranch.py:262
msgid "Recovering lost commits may not be easy."
msgstr "恢復丟失的提交是比較困難的."

#: cola/widgets/createbranch.py:265
#, python-format
msgid "Reset \"%(branch)s\" to \"%(revision)s\"?"
msgstr "要重設「%(branch)s」分支到 「%(revision)s」修訂版嗎?"

#: cola/widgets/createbranch.py:268
msgid "Reset Branch?"
msgstr "要重設分支嗎?"

#: cola/widgets/createbranch.py:292
msgid "Error Creating Branch"
msgstr "建立新的分支時發生錯誤"

#: cola/widgets/createbranch.py:293
#, python-format
msgid "\"%(command)s\" returned exit status \"%(status)d\""
msgstr "「%(command)s」命令傳回了 %(status)d 結束狀態代碼"

#: cola/widgets/stash.py:40
msgid "Stash"
msgstr "蒐藏"

#: cola/widgets/stash.py:53
msgid "Apply the selected stash"
msgstr "套用被選取的 stash"

#: cola/widgets/stash.py:58
msgid "Save modified state to new stash"
msgstr "將被修改的狀態保存至一個新的 stash"

#: cola/widgets/stash.py:62
msgid "Drop"
msgstr "丟棄"

#: cola/widgets/stash.py:63
msgid "Drop the selected stash"
msgstr "丟棄被選取的 stash"

#: cola/widgets/stash.py:68
msgid "Keep Index"
msgstr "保留 index"

#: cola/widgets/stash.py:161
msgid "Save Stash"
msgstr "保存蒐藏(stash)"

#: cola/widgets/stash.py:162
msgid "Enter a name for the stash"
msgstr "輸入蒐藏(stash)的名稱"

#: cola/widgets/stash.py:169
msgid "Error: Stash exists"
msgstr "錯誤:蒐藏(stash)已存在"

#: cola/widgets/stash.py:170
#, python-format
msgid "A stash named \"%s\" already exists"
msgstr "名為「%s」的蒐藏(stash)已經存在。"

#: cola/widgets/stash.py:186
msgid "Drop Stash?"
msgstr "丟棄蒐藏(stash)?"

#: cola/widgets/stash.py:187
msgid "Recovering a dropped stash is not possible."
msgstr "要救回一個丟棄的蒐藏(stash)是不可能的。"

#: cola/widgets/stash.py:188
#, python-format
msgid "Drop the \"%s\" stash?"
msgstr "是否要丟棄名為「%s」的蒐藏(stash)"

#: cola/widgets/stash.py:189
msgid "Drop Stash"
msgstr "丟棄蒐藏(stash)"

#: cola/widgets/createtag.py:59
msgid "vX.Y.Z"
msgstr "X.Y.Z版本"

#: cola/widgets/createtag.py:61
msgid "Specifies the tag name"
msgstr "指定標籤的名稱"

#: cola/widgets/createtag.py:65
msgid "Sign Tag"
msgstr "為標籤簽名"

#: cola/widgets/createtag.py:67
msgid "Whether to sign the tag (git tag -s)"
msgstr "是否簽名此標籤 (git tag -s)"

#: cola/widgets/createtag.py:72 cola/models/browse.py:44
msgid "Message"
msgstr "訊息"

#: cola/widgets/createtag.py:74
msgid "Tag message..."
msgstr "標籤訊息……"

#: cola/widgets/createtag.py:75
msgid "Specifies the tag message"
msgstr "指定標籤訊息"

#: cola/widgets/createtag.py:83
msgid "Specifies the SHA-1 to tag"
msgstr "指定 SHA-1 雜湊給標籤"

#: cola/widgets/createtag.py:118
msgid "Missing Revision"
msgstr "缺少的修訂版"

#: cola/widgets/createtag.py:119
msgid "Please specify a revision to tag."
msgstr "請指定一個修訂版來套用標籤。"

#: cola/widgets/createtag.py:122
msgid "Missing Name"
msgstr "缺少標籤名稱"

#: cola/widgets/createtag.py:123
msgid "Please specify a name for the new tag."
msgstr "請指定新標籤的名稱"

#: cola/widgets/createtag.py:126
msgid "Missing Tag Message"
msgstr "缺少標籤訊息"

#: cola/widgets/createtag.py:127
msgid "Tag-signing was requested but the tag message is empty."
msgstr "被要求要有標籤簽名但是標籤訊息是空的。"

#: cola/widgets/createtag.py:129
msgid ""
"An unsigned, lightweight tag will be created instead.\n"
"Create an unsigned tag?"
msgstr ""
"一個無簽名的,輕量的標籤將會被建立。\n"
"要建立此無簽名的標籤嗎?"

#: cola/widgets/createtag.py:132
msgid "Create Unsigned Tag"
msgstr "建立一個無簽名的標籤"

#: cola/widgets/createtag.py:140
msgid "Tag Created"
msgstr "標籤已建立"

#: cola/widgets/createtag.py:141
#, python-format
msgid "Created a new tag named \"%s\""
msgstr "建立了一個名為「%s」的新標籤"

#: cola/widgets/createtag.py:145
#, python-format
msgid "Error: could not create tag \"%s\""
msgstr "錯誤:無法建立標籤「%s」"

#: cola/widgets/createtag.py:146
#, python-format
msgid "git tag returned exit code %s"
msgstr "git tag 命令傳回了 %s 錯誤狀態碼"

#: cola/models/browse.py:48
msgid "Age"
msgstr "建立時間"

#: cola/models/browse.py:380 cola/models/browse.py:384
#, python-format
msgid "%d minutes ago"
msgstr "%d 分鐘前"

#: cola/models/browse.py:387
#, python-format
msgid "%d hours ago"
msgstr "%d 小時前"

#: cola/models/browse.py:388
#, python-format
msgid "%d days ago"
msgstr "%d 天前"

#: cola/models/browse.py:403
msgid "Partially Staged"
msgstr "部份內容變更被移入新修訂版準備區域"

#: cola/models/browse.py:409
msgid "Changed Upstream"
msgstr "在上游被變更"

#~ msgid "Path to git repository"
#~ msgstr "Git 版本倉庫的路徑"

#~ msgid "Enter Git Repository"
#~ msgstr "請輸入 Git 版本倉庫的路徑"

#~ msgid ""
#~ "This PyQt4 does not include QtWebKit.\n"
#~ "The keyboard shortcuts feature is unavailable."
#~ msgstr ""
#~ "此 PyQt4 並未包含 QtWebKit。\n"
#~ "不支援顯示軟體的鍵盤快捷鍵列表。翻譯者注:"

#~ msgid "Fast Forward Only "
#~ msgstr "只允許快速前移式的合併"

#~ msgid "Rebase "
#~ msgstr "變更基底(rebase)"

#~ msgid "Updating..."
#~ msgstr "正在更新……"

#~ msgid ""
#~ "file notification: disabled\n"
#~ "Note: install pywin32 to enable.\n"
#~ msgstr ""
#~ "inotify 檔案變更通知:停用\n"
#~ "注意:安裝 pywin32 以啟用此功能。\n"

#~ msgid ""
#~ "inotify: disabled\n"
#~ "Note: install python-pyinotify to enable inotify.\n"
#~ msgstr ""
#~ "inotify:停用\n"
#~ "注意:安裝 python-pyinotify 軟體包以啟用 inotify 檔案變更通知功能。\n"

#~ msgid "On Debian-based systems try: sudo apt-get install python-pyinotify"
#~ msgstr ""
#~ "於基於 Debian 的系統中嘗試於終端機下執行:sudo apt-get install python-"
#~ "pyinotify"

#~ msgid "inotify enabled."
#~ msgstr "inotify 已啟用。"

#~ msgid "Cancel"
#~ msgstr "取消"

#~ msgid "Options"
#~ msgstr "選項..."

#~ msgid "Bookmarks"
#~ msgstr "書籤"

#~ msgid "No files selected for checkout from HEAD."
#~ msgstr "沒有選取任何需要自 HEAD 取出的檔案"

#~ msgid "Remove selected paths from the staging area"
#~ msgstr "將選取的路徑自修訂版提交準備區域中移除"

#~ msgid "Revert Uncommitted Changes..."
#~ msgstr "撤銷尚未建立修訂版提交的內容變動"

#~ msgid "Bookmarks..."
#~ msgstr "書籤……"

#~ msgid "Process Diff Hunk"
#~ msgstr "處理內容差異區域"

#~ msgid "Process Selection"
#~ msgstr "處理選取的項目"

#~ msgid "Apply Diff Selection to Work Tree"
#~ msgstr "套用選取的內容差異至當前工作目錄樹"

#~ msgid "Index"
#~ msgstr "修訂版提交準備區域"

#~ msgid "Branch created"
#~ msgstr "分支已建立"

#, fuzzy
#~ msgid "Action"
#~ msgstr "選項..."

#, fuzzy
#~ msgid "Rebase..."
#~ msgstr "復位(Reset)..."

#~ msgid "Success"
#~ msgstr "成功"

#~ msgid "Rescan"
#~ msgstr "重新掃瞄"

#, fuzzy
#~ msgid "Browse Revision..."
#~ msgstr "版本"

#, fuzzy
#~ msgid "Rebase Branch"
#~ msgstr "更改分支名:"

#~ msgid "git-gui: fatal error"
#~ msgstr "git-gui: 致命錯誤"

#~ msgid "Invalid font specified in %s:"
#~ msgstr "%s 中指定的字體無效:"

#~ msgid "Main Font"
#~ msgstr "主要字體"

#~ msgid "Diff/Console Font"
#~ msgstr "Diff/控制終端字體"

#~ msgid "Cannot find git in PATH."
#~ msgstr "PATH 中沒有找到 git"

#~ msgid "Cannot parse Git version string:"
#~ msgstr "無法解析 Git 的版本信息:"

#~ msgid ""
#~ "Git version cannot be determined.\n"
#~ "\n"
#~ "%s claims it is version '%s'.\n"
#~ "\n"
#~ "%s requires at least Git 1.5.0 or later.\n"
#~ "\n"
#~ "Assume '%s' is version 1.5.0?\n"
#~ msgstr ""
#~ "無法確定 Git 的版本.\n"
#~ "\n"
#~ "%s 聲明其版本為 '%s'.\n"
#~ "\n"
#~ "而 %s 需要 1.5.0 或這以後的 Git 版本.\n"
#~ "\n"
#~ "是否假定 '%s' 為版本 1.5.0?\n"

#~ msgid "Git directory not found:"
#~ msgstr "Git 目錄無法找到:"

#~ msgid "Cannot move to top of working directory:"
#~ msgstr "無法移動到工作根目錄:"

#~ msgid "Cannot use funny .git directory:"
#~ msgstr "無法使用 .git 目錄:"

#~ msgid "No working directory"
#~ msgstr "沒有工作目錄"

#~ msgid "Refreshing file status..."
#~ msgstr "更新文件狀態..."

#~ msgid "Ready."
#~ msgstr "就緒"

#~ msgid "Modified, not staged"
#~ msgstr "修改但未緩存"

#~ msgid "Portions staged for commit"
#~ msgstr "部分緩存為提交"

#~ msgid "Staged for commit, missing"
#~ msgstr "緩存為提交, 不存在"

#~ msgid "Staged for removal"
#~ msgstr "緩存為刪除"

#~ msgid "Staged for removal, still present"
#~ msgstr "緩存為刪除, 但仍存在"

#~ msgid "Requires merge resolution"
#~ msgstr "需要解決合併衝突"

#~ msgid "Starting gitk... please wait..."
#~ msgstr "啟動 gitk... 請等待..."

#~ msgid ""
#~ "Unable to start gitk:\n"
#~ "\n"
#~ "%s does not exist"
#~ msgstr ""
#~ "無法啟動 gitk:\n"
#~ "\n"
#~ "%s 不存在"

#~ msgid "Repository"
#~ msgstr "版本庫(repository)"

#~ msgid "Commit@@noun"
#~ msgstr "提交(commit)"

#~ msgid "Browse %s's Files"
#~ msgstr "瀏覽 %s 上的文件"

#~ msgid "Visualize %s's History"
#~ msgstr "圖示 %s 分支的歷史"

#~ msgid "Database Statistics"
#~ msgstr "數據庫統計信息"

#~ msgid "Compress Database"
#~ msgstr "壓縮數據庫"

#~ msgid "Verify Database"
#~ msgstr "驗證數據庫"

#~ msgid "Create Desktop Icon"
#~ msgstr "創建桌面圖標"

#~ msgid "Undo"
#~ msgstr "撤銷"

#~ msgid "Redo"
#~ msgstr "重做"

#~ msgid "Cut"
#~ msgstr "剪切"

#~ msgid "Paste"
#~ msgstr "粘貼"

#~ msgid "New Commit"
#~ msgstr "新建提交"

#~ msgid "Local Merge..."
#~ msgstr "本地合併..."

#~ msgid "Preferences..."
#~ msgstr "首選項..."

#~ msgid "Current Branch:"
#~ msgstr "當前分支:"

#~ msgid "Staged Changes (Will Commit)"
#~ msgstr "已緩存的改動 (將被提交)"

#~ msgid "Initial Commit Message:"
#~ msgstr "初始的提交描述:"

#~ msgid "Amended Commit Message:"
#~ msgstr "修正的提交描述:"

#~ msgid "Amended Initial Commit Message:"
#~ msgstr "修正的初始提交描述:"

#~ msgid "Amended Merge Commit Message:"
#~ msgstr "修正的合併提交描述:"

#~ msgid "Apply/Reverse Hunk"
#~ msgstr "應用/撤消此修改塊"

#~ msgid "Show Less Context"
#~ msgstr "顯示更少上下文"

#~ msgid "Show More Context"
#~ msgstr "顯示更多上下文"

#~ msgid "Decrease Font Size"
#~ msgstr "縮小字體"

#~ msgid "Increase Font Size"
#~ msgstr "放大字體"

#~ msgid "Unstage Hunk From Commit"
#~ msgstr "從提交中撤除修改塊"

#~ msgid "Stage Hunk For Commit"
#~ msgstr "緩存修改塊為提交"

#~ msgid "Initializing..."
#~ msgstr "初始化..."

#~ msgid ""
#~ "Possible environment issues exist.\n"
#~ "\n"
#~ "The following environment variables are probably\n"
#~ "going to be ignored by any Git subprocess run\n"
#~ "by %s:\n"
#~ "\n"
#~ msgstr ""
#~ "可能存在環境變量的問題.\n"
#~ "\n"
#~ "由 %s 執行的 Git 子進程可能忽略下列環境變量:\n"
#~ "\n"

#~ msgid ""
#~ "\n"
#~ "This is due to a known issue with the\n"
#~ "Tcl binary distributed by Cygwin."
#~ msgstr ""
#~ "\n"
#~ "這是由 Cygwin 發佈的 Tcl 代碼中一個\n"
#~ "已知問題所引起."

#~ msgid ""
#~ "\n"
#~ "\n"
#~ "A good replacement for %s\n"
#~ "is placing values for the user.name and\n"
#~ "user.email settings into your personal\n"
#~ "~/.gitconfig file.\n"
#~ msgstr ""
#~ "\n"
#~ "\n"
#~ "%s 的一個很好的替代方案是將 user.name 以及\n"
#~ "user.email 設置放在你的個人 ~/.gitconfig 文件中.\n"

#~ msgid "git-gui - a graphical user interface for Git."
#~ msgstr "git-gui - Git 的圖形化用戶界面"

#~ msgid "Reading %s..."
#~ msgstr "讀取 %s..."

#~ msgid "Loading copy/move tracking annotations..."
#~ msgstr "裝載複製/移動跟蹤標註..."

#~ msgid "lines annotated"
#~ msgstr "標註行"

#~ msgid "Loading original location annotations..."
#~ msgstr "裝載原始位置標註..."

#~ msgid "Annotation complete."
#~ msgstr "標註完成."

#~ msgid "Loading annotation..."
#~ msgstr "裝載標註..."

#~ msgid "Original File:"
#~ msgstr "原始文件:"

#~ msgid "Originally By:"
#~ msgstr "最初由:"

#~ msgid "In File:"
#~ msgstr "在文件:"

#~ msgid "Copied Or Moved Here By:"
#~ msgstr "由複製或移動至此:"

#~ msgid "Detach From Local Branch"
#~ msgstr "從本地分支脫離"

#~ msgid "Match Tracking Branch Name"
#~ msgstr "匹配跟蹤分支名字"

#~ msgid "Tracking branch %s is not a branch in the remote repository."
#~ msgstr "跟蹤分支 %s 並不是遠端版本庫中的一個分支"

#~ msgid "Please supply a branch name."
#~ msgstr "請提供分支名字."

#~ msgid "'%s' is not an acceptable branch name."
#~ msgstr "'%s'不是一個可接受的分支名."

#~ msgid "Delete Local Branch"
#~ msgstr "刪除本地分支"

#~ msgid "Local Branches"
#~ msgstr "本地分支"

#~ msgid "Delete Only If Merged Into"
#~ msgstr "僅在合併後刪除"

#~ msgid "Always (Do not perform merge test.)"
#~ msgstr "總是合併 (不作合併測試.)"

#~ msgid "The following branches are not completely merged into %s:"
#~ msgstr "下列分支沒有完全被合併到 %s:"

#~ msgid ""
#~ "Recovering deleted branches is difficult. \n"
#~ "\n"
#~ " Delete the selected branches?"
#~ msgstr ""
#~ "恢復被刪除的分支非常困難.\n"
#~ "\n"
#~ "是否要刪除所選分支?"

#~ msgid ""
#~ "Failed to delete branches:\n"
#~ "%s"
#~ msgstr ""
#~ "無法刪除分支:\n"
#~ "%s"

#~ msgid "New Name:"
#~ msgstr "新名字:"

#~ msgid "Failed to rename '%s'."
#~ msgstr "無法更名 '%s'."

#~ msgid "[Up To Parent]"
#~ msgstr "[上層目錄]"

#~ msgid "Browse Branch Files"
#~ msgstr "瀏覽分支文件"

#~ msgid "fatal: Cannot resolve %s"
#~ msgstr "致命錯誤: 無法解決 %s"

#~ msgid "Branch '%s' does not exist."
#~ msgstr "分支 '%s' 並不存在."

#~ msgid ""
#~ "Branch '%s' already exists.\n"
#~ "\n"
#~ "It cannot fast-forward to %s.\n"
#~ "A merge is required."
#~ msgstr ""
#~ "分支 '%s' 已經存在.\n"
#~ "\n"
#~ "無法快速合併到 %s.\n"
#~ "需要普通合併."

#~ msgid "Merge strategy '%s' not supported."
#~ msgstr "合併策略 '%s' 不支持."

#~ msgid "Failed to update '%s'."
#~ msgstr "無法更新 '%s'."

#~ msgid "Staging area (index) is already locked."
#~ msgstr "緩存區域 (index) 已被鎖定."

#~ msgid ""
#~ "Last scanned state does not match repository state.\n"
#~ "\n"
#~ "Another Git program has modified this repository since the last scan.  A "
#~ "rescan must be performed before the current branch can be changed.\n"
#~ "\n"
#~ "The rescan will be automatically started now.\n"
#~ msgstr ""
#~ "最後一次掃瞄的狀態和當前版本庫狀態不符.\n"
#~ "\n"
#~ "另一 Git 程序自上次掃瞄後修改了本版本庫. 在修改當前分支之前需要重新做一次"
#~ "掃瞄.\n"
#~ "\n"
#~ "重新掃瞄將自動開始.\n"

#~ msgid "Updating working directory to '%s'..."
#~ msgstr "更新工作目錄到 '%s'..."

#~ msgid "Aborted checkout of '%s' (file level merging is required)."
#~ msgstr "中止 '%s' 的 checkout 操作 (需要做文件級合併)."

#~ msgid "File level merge required."
#~ msgstr "需要文件級合併."

#~ msgid "Staying on branch '%s'."
#~ msgstr "停留在分支 '%s'."

#~ msgid ""
#~ "You are no longer on a local branch.\n"
#~ "\n"
#~ "If you wanted to be on a branch, create one now starting from 'This "
#~ "Detached Checkout'."
#~ msgstr ""
#~ "你不在某個本地分支上.\n"
#~ "\n"
#~ "如果你想位於某分支上, 從當前脫節的Checkout中創建一個新分支."

#~ msgid "Checked out '%s'."
#~ msgstr "'%s' 已被 checkout"

#~ msgid "Reset '%s'?"
#~ msgstr "復位 '%s'?"

#~ msgid ""
#~ "Failed to set current branch.\n"
#~ "\n"
#~ "This working directory is only partially switched.  We successfully "
#~ "updated your files, but failed to update an internal Git file.\n"
#~ "\n"
#~ "This should not have occurred.  %s will now close and give up."
#~ msgstr ""
#~ "無法設定當前分支.\n"
#~ "\n"
#~ "當前工作目錄僅有部分被切換出, 我們已成功的更新了您的文件但是無法更新某個內"
#~ "部的Git文件.\n"
#~ "\n"
#~ "這本不該發生, %s 將關閉並放棄."

#~ msgid "Font Family"
#~ msgstr "字體族"

#~ msgid "Font Example"
#~ msgstr "字體樣例"

#~ msgid ""
#~ "This is example text.\n"
#~ "If you like this text, it can be your font."
#~ msgstr ""
#~ "這是樣例文本.\n"
#~ "如果你喜歡, 你可以設置該字體."

#~ msgid "Git Gui"
#~ msgstr "Git Gui"

#~ msgid "Failed to create repository %s:"
#~ msgstr "無法創建版本庫 %s:"

#~ msgid "Directory %s already exists."
#~ msgstr "目錄 %s 已經存在."

#~ msgid "Clone"
#~ msgstr "克隆"

#~ msgid "Clone Type:"
#~ msgstr "克隆類型:"

#~ msgid "Standard (Fast, Semi-Redundant, Hardlinks)"
#~ msgstr "標準方式 (快速, 部分備份, 作硬連接)"

#~ msgid "Full Copy (Slower, Redundant Backup)"
#~ msgstr "全部複製 (較慢, 做備份)"

#~ msgid "Shared (Fastest, Not Recommended, No Backup)"
#~ msgstr "共享方式 (最快, 不推薦, 不做備份)"

#~ msgid "Standard only available for local repository."
#~ msgstr "標準方式僅當是本地版本庫時有效."

#~ msgid "Shared only available for local repository."
#~ msgstr "共享方式僅當是本地版本庫時有效."

#~ msgid "Location %s already exists."
#~ msgstr "位置 %s 已經存在."

#~ msgid "Failed to configure origin"
#~ msgstr "無法配置 origin"

#~ msgid "Counting objects"
#~ msgstr "清點對象"

#, fuzzy
#~ msgid "buckets"
#~ msgstr "水桶??"

#~ msgid "Unable to copy objects/info/alternates: %s"
#~ msgstr "無法複製 objects/info/alternates: %s"

#~ msgid "The 'master' branch has not been initialized."
#~ msgstr "'master'分支尚未初始化."

#~ msgid "Hardlinks are unavailable.  Falling back to copying."
#~ msgstr "硬連接不可用. 使用複製."

#~ msgid "Cloning from %s"
#~ msgstr "從 %s 克隆"

#~ msgid "Copying objects"
#~ msgstr "複製 objects"

#~ msgid "KiB"
#~ msgstr "KiB"

#~ msgid "Unable to copy object: %s"
#~ msgstr "無法複製 object: %s"

#~ msgid "Linking objects"
#~ msgstr "鏈接 objects"

#~ msgid "objects"
#~ msgstr "objects"

#~ msgid "Unable to hardlink object: %s"
#~ msgstr "無法硬鏈接 object: %s"

#~ msgid "Cannot fetch branches and objects.  See console output for details."
#~ msgstr "無法獲取分支和對象. 請查看控制終端的輸出."

#~ msgid "Cannot fetch tags.  See console output for details."
#~ msgstr "無法獲取標籤. 請查看控制終端的輸出."

#~ msgid "Cannot determine HEAD.  See console output for details."
#~ msgstr "無法確定 HEAD. 請查看控制終端的輸出."

#~ msgid "Clone failed."
#~ msgstr "克隆失敗."

#~ msgid "No default branch obtained."
#~ msgstr "沒有獲取缺省分支"

#~ msgid "Cannot resolve %s as a commit."
#~ msgstr "無法解析 %s 為提交."

#~ msgid "Creating working directory"
#~ msgstr "創建工作目錄"

#~ msgid "files"
#~ msgstr "文件"

#~ msgid "Initial file checkout failed."
#~ msgstr "初始的文件checkout失敗"

#~ msgid "Failed to open repository %s:"
#~ msgstr "無法打開版本庫 %s:"

#~ msgid "This Detached Checkout"
#~ msgstr "該脫節的Checkout"

#~ msgid "Updated"
#~ msgstr "已更新"

#~ msgid ""
#~ "There is nothing to amend.\n"
#~ "\n"
#~ "You are about to create the initial commit.  There is no commit before "
#~ "this to amend.\n"
#~ msgstr ""
#~ "沒有改動需要修正.\n"
#~ "\n"
#~ "你正在創建最初的提交. 在此之前沒有提交可以修正.\n"

#~ msgid ""
#~ "Cannot amend while merging.\n"
#~ "\n"
#~ "You are currently in the middle of a merge that has not been fully "
#~ "completed.  You cannot amend the prior commit unless you first abort the "
#~ "current merge activity.\n"
#~ msgstr ""
#~ "在合併時無法修正.\n"
#~ "\n"
#~ "你當前正在一次尚未完成的合併操作過程中. 除非中止當前合併活動,\n"
#~ "否則無法修正之前的提交.\n"

#~ msgid "Error loading commit data for amend:"
#~ msgstr "為修正裝載提交數據出錯:"

#~ msgid "Unable to obtain your identity:"
#~ msgstr "無法獲知你的身份:"

#~ msgid "Invalid GIT_COMMITTER_IDENT:"
#~ msgstr "無效的 GIT_COMMITTER_IDENT"

#~ msgid ""
#~ "Last scanned state does not match repository state.\n"
#~ "\n"
#~ "Another Git program has modified this repository since the last scan.  A "
#~ "rescan must be performed before another commit can be created.\n"
#~ "\n"
#~ "The rescan will be automatically started now.\n"
#~ msgstr ""
#~ "最後一次掃瞄的狀態和當前版本庫狀態不符.\n"
#~ "\n"
#~ "另一 Git 程序自上次掃瞄後修改了本版本庫. 在修改當前分支之前需要重新做一次"
#~ "掃瞄.\n"
#~ "\n"
#~ "重新掃瞄將自動開始.\n"

#~ msgid ""
#~ "Unmerged files cannot be committed.\n"
#~ "\n"
#~ "File %s has merge conflicts.  You must resolve them and stage the file "
#~ "before committing.\n"
#~ msgstr ""
#~ "尚未合併的文件沒有辦法提交.\n"
#~ "\n"
#~ "文件 %s 有合併衝突, 你必須解決這些衝突並緩存該文件作提交.\n"

#~ msgid ""
#~ "Unknown file state %s detected.\n"
#~ "\n"
#~ "File %s cannot be committed by this program.\n"
#~ msgstr ""
#~ "檢測到未知文件狀態 %s.\n"
#~ "\n"
#~ "文件 %s 無法由該程序提交.\n"

#~ msgid "warning: Tcl does not support encoding '%s'."
#~ msgstr "警告: Tcl 不支持編碼方式 '%s'."

#~ msgid "write-tree failed:"
#~ msgstr "write-tree 失敗:"

#~ msgid "Commit %s appears to be corrupt"
#~ msgstr "提交 %s 似乎已損壞"

#~ msgid ""
#~ "No changes to commit.\n"
#~ "\n"
#~ "No files were modified by this commit and it was not a merge commit.\n"
#~ "\n"
#~ "A rescan will be automatically started now.\n"
#~ msgstr ""
#~ "沒有改動提交.\n"
#~ "\n"
#~ "該提交沒有改動任何文件也不是一個合併提交.\n"
#~ "\n"
#~ "重新掃瞄將自動開始.\n"

#~ msgid "commit-tree failed:"
#~ msgstr "commit-tree 失敗:"

#~ msgid "update-ref failed:"
#~ msgstr "update-ref 失敗:"

#~ msgid "Working... please wait..."
#~ msgstr "工作中... 請等待..."

#~ msgid "Error: Command Failed"
#~ msgstr "錯誤: 命令失敗"

#~ msgid "Number of loose objects"
#~ msgstr "鬆散對象的數量"

#~ msgid "Disk space used by loose objects"
#~ msgstr "鬆散對象所使用的磁盤空間"

#~ msgid "Number of packed objects"
#~ msgstr "壓縮對象數量"

#~ msgid "Number of packs"
#~ msgstr "壓縮包數量"

#~ msgid "Disk space used by packed objects"
#~ msgstr "壓縮對象所使用的磁盤空間"

#~ msgid "Packed objects waiting for pruning"
#~ msgstr "壓縮對象等待清理"

#~ msgid "Garbage files"
#~ msgstr "垃圾文件"

#~ msgid "Compressing the object database"
#~ msgstr "壓縮對象數據庫"

#~ msgid "Verifying the object database with fsck-objects"
#~ msgstr "使用 fsck-objects 驗證對象數據庫"

#~ msgid ""
#~ "This repository currently has approximately %i loose objects.\n"
#~ "\n"
#~ "To maintain optimal performance it is strongly recommended that you "
#~ "compress the database when more than %i loose objects exist.\n"
#~ "\n"
#~ "Compress the database now?"
#~ msgstr ""
#~ "該版本庫當前約有 %i 個鬆散對象.\n"
#~ "\n"
#~ "為達到較優的性能,強烈建議你在鬆散對象多於 %i 時壓縮數據庫.\n"
#~ "\n"
#~ "現在就壓縮數據庫麼?"

#~ msgid "Invalid date from Git: %s"
#~ msgstr "無效的日期: %s"

#~ msgid ""
#~ "No differences detected.\n"
#~ "\n"
#~ "%s has no changes.\n"
#~ "\n"
#~ "The modification date of this file was updated by another application, "
#~ "but the content within the file was not changed.\n"
#~ "\n"
#~ "A rescan will be automatically started to find other files which may have "
#~ "the same state."
#~ msgstr ""
#~ "未檢測到改動.\n"
#~ "\n"
#~ "該文件的修改日期被另一個程序所更新, 但其內容並沒有變化.\n"
#~ "\n"
#~ "對於類似情況的其他文件的重新掃瞄將自動開始."

#~ msgid "Unable to display %s"
#~ msgstr "無法顯示 %s"

#~ msgid "Git Repository (subproject)"
#~ msgstr "Git 版本庫 (子項目)"

#~ msgid "* Binary file (not showing content)."
#~ msgstr "* 二進制文件 (不顯示內容)."

#~ msgid "Failed to unstage selected hunk."
#~ msgstr "無法將選擇的代碼段從緩存中刪除."

#~ msgid "Failed to stage selected hunk."
#~ msgstr "無法緩存所選代碼段."

#~ msgid "warning"
#~ msgstr "警告"

#~ msgid "You must correct the above errors before committing."
#~ msgstr "你必須在提交前修正上述錯誤."

#~ msgid "Unable to unlock the index."
#~ msgstr "無法解鎖緩存 (index)"

#~ msgid ""
#~ "Updating the Git index failed.  A rescan will be automatically started to "
#~ "resynchronize git-gui."
#~ msgstr "更新 Git 緩存(Index)失敗, 重新掃瞄將自動開始以重新同步 git-gui."

#~ msgid "Unlock Index"
#~ msgstr "解鎖 Index"

#, fuzzy
#~ msgid "Ready to commit."
#~ msgstr "緩存為提交"

#~ msgid "Revert changes in these %i files?"
#~ msgstr "撤銷這些 (%i個) 文件的改動?"

#~ msgid "Any unstaged changes will be permanently lost by the revert."
#~ msgstr "任何未緩存的改動將在這次撤銷中永久丟失."

#~ msgid "Do Nothing"
#~ msgstr "不做操作"

#~ msgid ""
#~ "Cannot merge while amending.\n"
#~ "\n"
#~ "You must finish amending this commit before starting any type of merge.\n"
#~ msgstr ""
#~ "修正時無法做合併.\n"
#~ "\n"
#~ "你必須完成對該提交的修正才能繼續任何類型的合併操作.\n"

#~ msgid ""
#~ "Last scanned state does not match repository state.\n"
#~ "\n"
#~ "Another Git program has modified this repository since the last scan.  A "
#~ "rescan must be performed before a merge can be performed.\n"
#~ "\n"
#~ "The rescan will be automatically started now.\n"
#~ msgstr ""
#~ "最後一次掃瞄的狀態和當前版本庫狀態不符.\n"
#~ "\n"
#~ "另一 Git 程序自上次掃瞄後修改了本版本庫. 在修改當前分支之前需要重新做一次"
#~ "掃瞄.\n"
#~ "\n"
#~ "重新掃瞄將自動開始.\n"

#~ msgid ""
#~ "You are in the middle of a conflicted merge.\n"
#~ "\n"
#~ "File %s has merge conflicts.\n"
#~ "\n"
#~ "You must resolve them, stage the file, and commit to complete the current "
#~ "merge.  Only then can you begin another merge.\n"
#~ msgstr ""
#~ "你正處在一個有衝突的合併操作中.\n"
#~ "\n"
#~ "文件 %s 有合併衝突.\n"
#~ "\n"
#~ "你必須解決這些衝突, 緩存該文件, 並提交來完成當前的合併.僅當這樣後才能開始"
#~ "下一個合併操作.\n"

#~ msgid ""
#~ "You are in the middle of a change.\n"
#~ "\n"
#~ "File %s is modified.\n"
#~ "\n"
#~ "You should complete the current commit before starting a merge.  Doing so "
#~ "will help you abort a failed merge, should the need arise.\n"
#~ msgstr ""
#~ "你正處在一個改動當中.\n"
#~ "\n"
#~ "文件 %s 已被修改.\n"
#~ "\n"
#~ "你必須完成當前的提交後才能開始合併. 如果需要, 這麼做將有助於中止一次失敗的"
#~ "合併.\n"

#, fuzzy
#~ msgid "Merging %s and %s..."
#~ msgstr "合併 %s 和 %s"

#~ msgid "Merge completed successfully."
#~ msgstr "合併成功完成."

#~ msgid "Merge failed.  Conflict resolution is required."
#~ msgstr "合併失敗. 需要解決衝突."

#~ msgid ""
#~ "Cannot abort while amending.\n"
#~ "\n"
#~ "You must finish amending this commit.\n"
#~ msgstr ""
#~ "修正操作中無法中止.\n"
#~ "\n"
#~ "你必須先完成本次修正操作.\n"

#~ msgid ""
#~ "Reset changes?\n"
#~ "\n"
#~ "Resetting the changes will cause *ALL* uncommitted changes to be lost.\n"
#~ "\n"
#~ "Continue with resetting the current changes?"
#~ msgstr ""
#~ "是否復位當前改動?\n"
#~ "\n"
#~ "復位當前的改動將導致 *所有* 未提交的改動丟失.\n"
#~ "\n"
#~ "是否要繼續復位當前的改動?"

#, fuzzy
#~ msgid "files reset"
#~ msgstr "文件"

#~ msgid "Abort failed."
#~ msgstr "中止失敗"

#~ msgid "Abort completed.  Ready."
#~ msgstr "中止完成. 就緒."

#~ msgid "Restore Defaults"
#~ msgstr "恢復默認值"

#~ msgid "%s Repository"
#~ msgstr "%s 版本庫"

#~ msgid "Prune Tracking Branches During Fetch"
#~ msgstr "獲取時清除跟蹤分支"

#~ msgid "Match Tracking Branches"
#~ msgstr "匹配跟蹤分支"

#~ msgid "New Branch Name Template"
#~ msgstr "新建分支命名模板"

#~ msgid "Change Font"
#~ msgstr "更改字體"

#~ msgid "pt."
#~ msgstr "磅"

#~ msgid "Failed to completely save options:"
#~ msgstr "無法完全保存選項:"

#~ msgid "From Repository"
#~ msgstr "從版本庫"

#~ msgid "Remote:"
#~ msgstr "Remote:"

#~ msgid "Arbitrary URL:"
#~ msgstr "任意 URL:"

#~ msgid "Delete Only If"
#~ msgstr "刪除僅當"

#~ msgid "Merged Into:"
#~ msgstr "合併到"

#~ msgid "Always (Do not perform merge checks)"
#~ msgstr "總是合併 (不作合併檢查)"

#~ msgid "A branch is required for 'Merged Into'."
#~ msgstr "'合併到' 需要指定某個分支"

#~ msgid ""
#~ "The following branches are not completely merged into %s:\n"
#~ "\n"
#~ " - %s"
#~ msgstr ""
#~ "下列分支沒有被全部合併到 %s 中:\n"
#~ "\n"
#~ " - %s"

#~ msgid ""
#~ "One or more of the merge tests failed because you have not fetched the "
#~ "necessary commits.  Try fetching from %s first."
#~ msgstr ""
#~ "由於沒有獲取到必要的提交,一個或多個合併測試失敗。請嘗試從 %s 處先獲取。"

#~ msgid "Please select one or more branches to delete."
#~ msgstr "請選擇某個或多個分支來刪除"

#~ msgid ""
#~ "Recovering deleted branches is difficult.\n"
#~ "\n"
#~ "Delete the selected branches?"
#~ msgstr ""
#~ "恢復被刪除的分支非常困難.\n"
#~ "\n"
#~ "是否要刪除所選分支?"

#~ msgid "Prune from"
#~ msgstr "從..清除(prune)"

#~ msgid "Fetch from"
#~ msgstr "從..獲取(fetch)"

#~ msgid "Push to"
#~ msgstr "上傳到(push)"

#~ msgid "Cannot write shortcut:"
#~ msgstr "無法修改快捷方式:"

#~ msgid "%s ... %*i of %*i %s (%3i%%)"
#~ msgstr "%s ... %*i of %*i %s (%3i%%)"

#~ msgid "Fetching new changes from %s"
#~ msgstr "從 %s 處獲取新的改動"

#~ msgid "remote prune %s"
#~ msgstr "清除遠端 %s"

#~ msgid "Pruning tracking branches deleted from %s"
#~ msgstr "清除"

#~ msgid "push %s"
#~ msgstr "上傳 %s"

#~ msgid "Pushing %s %s to %s"
#~ msgstr "上傳 %s %s 到 %s"

#~ msgid "Push Branches"
#~ msgstr "上傳分支"

#~ msgid "Source Branches"
#~ msgstr "源端分支:"

#~ msgid "Destination Repository"
#~ msgstr "目標版本庫"

#~ msgid "Transfer Options"
#~ msgstr "傳輸選項"

#~ msgid "Force overwrite existing branch (may discard changes)"
#~ msgstr "強制覆蓋已有的分支 (可能會丟失改動)"

#~ msgid "Use thin pack (for slow network connections)"
#~ msgstr "使用 thin pack (適用於低速網絡連接)"