~ubuntu-branches/ubuntu/trusty/kdevplatform/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
# translation of kdevplatform.po to 简体中文
# Copyright (C) 2002,2003, 2004, 2008, 2009 Free Software Foundation, Inc.
#
# Qi Liang <cavendish@eyou.com>, 2001.
# Xiong Jiang <jxiong@offtopic.org>, 2002,2003, 2004.
# Funda Wang <fundawang@linux.net.cn>, 2005.
# Ni Hui <shuizhuyuanluo@126.com>, 2008, 2009, 2010.
# Weng Xuetian <wengxt@gmail.com>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: kdevplatform\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-05-29 01:23+0000\n"
"PO-Revision-Date: 2013-04-16 15:09-0400\n"
"Last-Translator: Weng Xuetian <wengxt@gmail.com>\n"
"Language-Team: Chinese Simplified <kde-china@kde.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Lokalize 1.5\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "KDE 中国"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "kde-china@kde.org"

#: debugger/breakpoint/breakpoint.cpp:135
msgctxt "@info:tooltip"
msgid "error"
msgstr "错误"

#: debugger/breakpoint/breakpoint.cpp:141
msgctxt "@info:tooltip"
msgid "dirty"
msgstr "脏"

#: debugger/breakpoint/breakpoint.cpp:143
msgctxt "@info:tooltip"
msgid "pending"
msgstr "推迟"

#: debugger/breakpoint/breakpoint.cpp:145
msgctxt "@info:tooltip"
msgid "clean"
msgstr "干净"

#: debugger/breakpoint/breakpointdetails.cpp:74
#: debugger/breakpoint/breakpointdetails.cpp:148
msgid "Not hit yet"
msgstr "未命中"

#: debugger/breakpoint/breakpointdetails.cpp:82
msgid "Ignore"
msgstr "忽略"

#: debugger/breakpoint/breakpointdetails.cpp:90
msgid "next hits"
msgstr "下次命中"

#: debugger/breakpoint/breakpointdetails.cpp:133
msgid "Breakpoint is <a href=\"pending\">pending</a>"
msgstr "断点<a href=\"pending\">推迟</a>"

#: debugger/breakpoint/breakpointdetails.cpp:136
msgid "Breakpoint is <a href=\"dirty\">dirty</a>"
msgstr "断点<a href=\"dirty\">脏</a>"

#: debugger/breakpoint/breakpointdetails.cpp:139
msgid "Breakpoint is active"
msgstr "断点激活"

#: debugger/breakpoint/breakpointdetails.cpp:146
#, kde-format
msgid "Hit %1 time"
msgid_plural "Hit %1 times"
msgstr[0] "命中 %1 次"

#: debugger/breakpoint/breakpointdetails.cpp:150
msgid "Breakpoint has errors"
msgstr "断点有错误"

#: debugger/breakpoint/breakpointdetails.cpp:161
msgid ""
"<b>Breakpoint is pending</b><p>Pending breakpoints are those that have been "
"passed to GDB, but which are not yet installed in the target, because GDB "
"cannot find the function or file to which the breakpoint refers. The most "
"common case is a breakpoint in a shared library: GDB will insert this "
"breakpoint only when the library is loaded.</p>"
msgstr ""
"<b>断点推迟</b><p>推迟的断点是那些已经被发送给 GDB,但是 GDB 还未能找到对应的"
"函数或者文件,因此还未在目标代码上提交的断点。常见情况是一个断点在共享库中:"
"GDB 将只会在库加载时添加此断点。</p>"

#: debugger/breakpoint/breakpointdetails.cpp:174
msgid ""
"<b>Breakpoint is dirty</b><p>The breakpoint has not yet been passed to the "
"debugger.</p>"
msgstr "<b>断点脏</b><p>断点还未被传递给调试器。</p>"

#: debugger/breakpoint/breakpointmodel.cpp:88
msgid "Breakpoint"
msgstr "断点"

#: debugger/breakpoint/breakpointmodel.cpp:131
msgid "&Delete Breakpoint"
msgstr "删除断点(&D)"

#: debugger/breakpoint/breakpointmodel.cpp:132
msgid "&Disable Breakpoint"
msgstr "禁用断点(&D)"

#: debugger/breakpoint/breakpointmodel.cpp:133
msgid "&Enable Breakpoint"
msgstr "启用断点(&E)"

#: debugger/breakpoint/breakpointmodel.cpp:169
msgid "Type"
msgstr "类型"

#: debugger/breakpoint/breakpointmodel.cpp:170
#: vcs/models/vcsitemeventmodel.cpp:42
msgid "Location"
msgstr "位置"

#: debugger/breakpoint/breakpointmodel.cpp:171
msgid "Condition"
msgstr "条件"

#: debugger/breakpoint/breakpointmodel.cpp:175
msgid "Active status"
msgstr "活动状态"

#: debugger/breakpoint/breakpointmodel.cpp:176
#: shell/sessioncontroller.cpp:1023
msgid "State"
msgstr "状态"

#: debugger/breakpoint/breakpointmodel.cpp:254
msgid "Double-click to create new code breakpoint"
msgstr "双击以创建新代码断点"

#: debugger/breakpoint/breakpointwidget.cpp:51
msgctxt "@title:window"
msgid "Debugger Breakpoints"
msgstr "调试器断点"

#: debugger/breakpoint/breakpointwidget.cpp:52
msgctxt "@info:whatsthis"
msgid ""
"<b>Breakpoint list</b><p>Displays a list of breakpoints with their current "
"status. Clicking on a breakpoint item allows you to change the breakpoint "
"and will take you to the source in the editor window.</p>"
msgstr ""
"<b>断点列表</b><p>显示断点列表和他们当前的状态。点击断点允许你修改断点并且将"
"会在编辑器窗口显示对应源代码。</p>"

#: debugger/breakpoint/breakpointwidget.cpp:101
msgctxt "New breakpoint"
msgid "&New"
msgstr "新建(&N)"

#: debugger/breakpoint/breakpointwidget.cpp:104
msgctxt "Code breakpoint"
msgid "&Code"
msgstr "代码(&C)"

#: debugger/breakpoint/breakpointwidget.cpp:113
msgctxt "Data breakpoint"
msgid "Data &write"
msgstr "数据写入(&W)"

#: debugger/breakpoint/breakpointwidget.cpp:116
msgctxt "Data read breakpoint"
msgid "Data &read"
msgstr "数据读取(&R)"

#: debugger/breakpoint/breakpointwidget.cpp:119
msgctxt "Data access breakpoint"
msgid "Data &access"
msgstr "数据访问(&A)"

#: debugger/breakpoint/breakpointwidget.cpp:123
msgid "Show text"
msgstr "显示文本"

#: debugger/breakpoint/breakpointwidget.cpp:126
msgid "Edit"
msgstr "编辑"

#: debugger/breakpoint/breakpointwidget.cpp:129
#: debugger/breakpoint/breakpointwidget.cpp:172
msgid "Disable"
msgstr "禁用"

#: debugger/breakpoint/breakpointwidget.cpp:134
msgid "&Delete"
msgstr "删除(&D)"

#: debugger/breakpoint/breakpointwidget.cpp:143
msgid "Disable &all"
msgstr "全部禁用(&A)"

#: debugger/breakpoint/breakpointwidget.cpp:144
msgid "&Enable all"
msgstr "全部启用(&E)"

#: debugger/breakpoint/breakpointwidget.cpp:145
msgid "&Remove all"
msgstr "全部删除(&R)"

#: debugger/breakpoint/breakpointwidget.cpp:176
msgid "Enable"
msgstr "启用"

#: debugger/framestack/framestackmodel.cpp:147
#, kde-format
msgctxt "#thread-id at function-name or address"
msgid "#%1 at %2"
msgstr "#%1 于 %2"

#: debugger/framestack/framestackmodel.cpp:225
msgid "Depth"
msgstr "深度"

#: debugger/framestack/framestackmodel.cpp:227
#: language/duchain/navigation/abstractnavigationcontext.cpp:405
msgid "Function"
msgstr "函数"

#. i18n: ectx: property (title), widget (QGroupBox, sourceBox)
#: debugger/framestack/framestackmodel.cpp:229 shell/projectsourcepage.ui:66
msgid "Source"
msgstr "源代码"

#: debugger/framestack/framestackwidget.cpp:59
msgid ""
"<b>Frame stack</b><p>Often referred to as the \"call stack\", this is a list "
"showing which function is currently active, and what called each function to "
"get to this point in your program. By clicking on an item you can see the "
"values in any of the previous calling functions.</p>"
msgstr ""

#: debugger/framestack/framestackwidget.cpp:94
msgid "Threads:"
msgstr "线程:"

#: debugger/interfaces/ibreakpointcontroller.cpp:180
#, kde-format
msgid "Breakpoint hit: %1"
msgstr "命中断点:%1"

#: debugger/interfaces/ibreakpointcontroller.cpp:186
#, kde-format
msgid "Watchpoint hit: %1"
msgstr "命中观察点:%1"

#: debugger/util/pathmappings.cpp:112
msgid "Remote Path"
msgstr "远程路径"

#: debugger/util/pathmappings.cpp:114
msgid "Local Path"
msgstr "本地路径"

#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: ectx: property (text), widget (KPushButton, btnDelStyle)
#: debugger/util/pathmappings.cpp:240 shell/sessiondialog.ui:72
#: shell/settings/sourceformattersettings.ui:195
#: shell/workingsets/workingsettooltipwidget.cpp:89
#: vcs/dvcs/ui/branchmanager.ui:32
msgid "Delete"
msgstr "删除"

#: debugger/variable/variablecollection.cpp:200
msgid "Error"
msgstr "错误"

#: debugger/variable/variablecollection.cpp:221
msgid "Auto"
msgstr "自动"

#. i18n: ectx: property (text), widget (QLabel, configName)
#: debugger/variable/variablecollection.cpp:394
#: debugger/variable/variabletooltip.cpp:98
#: shell/launchconfigurationdialog.ui:112
msgid "Name"
msgstr "名称"

#: debugger/variable/variablecollection.cpp:394
#: debugger/variable/variabletooltip.cpp:98
#: shell/settings/environmentgroupmodel.cpp:93
msgid "Value"
msgstr "值"

#: debugger/variable/variablecollection.h:208
msgid "Locals"
msgstr "局部变量"

#: debugger/variable/variabletooltip.cpp:133
msgid "<a href=\"add_watch\">Watch this</a>"
msgstr "<a href=\"add_watch\">监视变量</a>"

#: debugger/variable/variabletooltip.cpp:135
msgid "<a href=\"watchpoint\">Stop on change</a>"
msgstr "<a href=\"watchpoint\">更改时停止</a>"

#: debugger/variable/variablewidget.cpp:87
msgid "Debugger Variables"
msgstr "调试器变量"

#: debugger/variable/variablewidget.cpp:108
msgid ""
"<b>Variable tree</b><p>The variable tree allows you to see the values of "
"local variables and arbitrary expressions.</p><p>Local variables are "
"displayed automatically and are updated as you step through your program. "
"For each expression you enter, you can either evaluate it once, or \"watch\" "
"it (make it auto-updated). Expressions that are not auto-updated can be "
"updated manually from the context menu. Expressions can be renamed to more "
"descriptive names by clicking on the name column.</p><p>To change the value "
"of a variable or an expression, click on the value.</p>"
msgstr ""

#: debugger/variable/variablewidget.cpp:122
msgid "<b>Expression entry</b><p>Type in expression to watch.</p>"
msgstr ""

#: debugger/variable/variablewidget.cpp:202
msgid "&Format"
msgstr "格式(&F)"

#: debugger/variable/variablewidget.cpp:207
msgid "&Natural"
msgstr "自然(&N)"

#: debugger/variable/variablewidget.cpp:212
msgid "&Binary"
msgstr "二进制(&B)"

#: debugger/variable/variablewidget.cpp:217
msgid "&Octal"
msgstr "八进制(&O)"

#: debugger/variable/variablewidget.cpp:222
msgid "&Decimal"
msgstr "十进制(&D)"

#: debugger/variable/variablewidget.cpp:227
msgid "&Hexadecimal"
msgstr "十六进制(&H)"

#: debugger/variable/variablewidget.cpp:243
msgid "Remove Watch Variable"
msgstr "删除监视变量"

#: debugger/variable/variablewidget.cpp:250
msgid "&Copy Value"
msgstr "复制值(&C)"

#: debugger/variable/variablewidget.cpp:255
msgid "&Stop on change"
msgstr "更改时停止(&S)"

#: debugger/variable/variablewidget.cpp:335
msgid "Recent Expressions"
msgstr "最近表达式"

#: debugger/variable/variablewidget.cpp:336
msgid "Remove All"
msgstr "全部删除"

#: debugger/variable/variablewidget.cpp:337
msgid "Re-evaluate All"
msgstr "全部重算"

#: debugger/variable/variablewidget.cpp:383
msgid "Remember Value"
msgstr "记住值"

#: debugger/variable/variablewidget.cpp:388
msgid "Watch Variable"
msgstr "监视变量"

#: debugger/variable/variablewidget.cpp:393
msgid "Reevaluate Expression"
msgstr "重算表达式"

#: debugger/variable/variablewidget.cpp:395
msgid "Remove Expression"
msgstr "删除表达式"

#: debugger/variable/variablewidget.cpp:401
msgid "Data write breakpoint"
msgstr "数据写入断点"

#. i18n: ectx: property (text), widget (QToolButton, hideButton)
#: documentation/documentationfindwidget.ui:23
msgid "..."
msgstr "..."

#. i18n: ectx: property (text), widget (QLabel, label)
#: documentation/documentationfindwidget.ui:33
msgid "Find:"
msgstr "查找:"

#. i18n: ectx: property (text), widget (QPushButton, nextButton)
#: documentation/documentationfindwidget.ui:47
msgid "Next"
msgstr "下一个"

#. i18n: ectx: property (text), widget (QPushButton, previousButton)
#: documentation/documentationfindwidget.ui:54
msgid "Previous"
msgstr "上一个"

#. i18n: ectx: property (text), widget (QCheckBox, matchCase)
#: documentation/documentationfindwidget.ui:61
msgid "Match case"
msgstr "区分大小写"

#: documentation/documentationview.cpp:46 shell/documentationcontroller.cpp:86
#: shell/documentationcontroller.cpp:190
msgid "Documentation"
msgstr "文档"

#: documentation/documentationview.cpp:56
msgid "Documentation Tool Bar"
msgstr "文档工具栏"

#: documentation/documentationview.cpp:64
msgid "Back"
msgstr "后退"

#: documentation/documentationview.cpp:65
msgid "Forward"
msgstr "前进"

#: documentation/documentationview.cpp:66
msgid "Find"
msgstr "查找"

#: documentation/documentationview.cpp:68
msgid "Home"
msgstr "主页"

#: interfaces/contextmenuextension.cpp:153 shell/debugcontroller.cpp:394
#: shell/runcontroller.cpp:79 shell/uicontroller.cpp:90
msgid "Debug"
msgstr "调试"

#: interfaces/contextmenuextension.cpp:164
msgid "Refactor"
msgstr "重构"

#: interfaces/contextmenuextension.cpp:175
msgid "Version Control"
msgstr "版本控制"

#: interfaces/isourceformatter.cpp:66
#, kde-format
msgid ""
"The executable %1 cannot be found. Please make sure it is installed and can "
"be executed. <br />The plugin will not work until you fix this problem."
msgstr ""
"未找到可执行文件 %1。请确保它已被安装并可执行。<br />插件无法工作直到您修复此"
"问题为止。"

#: language/backgroundparser/backgroundparser.cpp:466
msgid "Background Parser"
msgstr "后台解析"

#: language/backgroundparser/parsejob.cpp:285
#, kde-format
msgctxt "%1: filename"
msgid "Skipped file that is too large: '%1'"
msgstr "已跳过过大的文件:“%1”"

#: language/backgroundparser/parsejob.cpp:287
#, kde-format
msgctxt "%1: file size, %2: limit file size"
msgid "The file is %1 and exceeds the limit of %2."
msgstr "文件为 %1 超出 %2 的限制。"

#: language/backgroundparser/parsejob.cpp:300
#, kde-format
msgid "Could not open file '%1'"
msgstr "无法打开文件“%1”"

#: language/backgroundparser/parsejob.cpp:303
msgid "File could not be read from disk."
msgstr "无法从磁盘读取文件。"

#: language/backgroundparser/parsejob.cpp:306
msgid "File could not be opened."
msgstr "无法打开文件。"

#: language/backgroundparser/parsejob.cpp:309
msgid "File could not be read from disk due to permissions."
msgstr "因权限问题无法从磁盘读取文件。"

#: language/backgroundparser/parseprojectjob.cpp:52
#, kde-format
msgid "Process 1 file in %2"
msgid_plural "Process %1 files in %2"
msgstr[0] "处理 %2 中 %1 个文件"

#: language/codegen/applychangeswidget.cpp:86
#: language/codegen/applychangeswidget.cpp:203
msgid "Edit Document"
msgstr "编辑文档"

#: language/codegen/applychangeswidget.cpp:205
msgid "View Differences"
msgstr "查看差异"

#: language/codegen/applychangeswidget.cpp:247
msgid "Text"
msgstr "文本"

#: language/codegen/applychangeswidget.cpp:247
msgid "Action"
msgstr "动作"

#: language/codegen/applychangeswidget.cpp:269
msgid "Change"
msgstr "更改"

#: language/codegen/applychangeswidget.cpp:274
msgid "Insert"
msgstr "插入"

#: language/codegen/applychangeswidget.cpp:279
msgid "Remove"
msgstr "删除"

#: language/codegen/codegenerator.cpp:134
msgid "Could not find an open document"
msgstr "找不到打开的文档"

#: language/codegen/codegenerator.cpp:173
msgid "Error finding context for selection range"
msgstr "查找选中范围的上下文出错"

#: language/codegen/codegenerator.cpp:179
#, kde-format
msgid "Error checking conditions to generate code: %1"
msgstr "检查条件以生成代码出错:%1"

#: language/codegen/codegenerator.cpp:188
#, kde-format
msgid "Error Gathering user information: %1"
msgstr "收集用户信息出错:%1"

#: language/codegen/codegenerator.cpp:196
#, kde-format
msgid "Error generating code: %1"
msgstr "生成代码出错:%1"

#: language/codegen/documentchangeset.cpp:263
#, fuzzy, kde-format
#| msgid "Could not open file '%1'"
msgid "Could not rename '%1' to '%2'"
msgstr "无法打开文件“%1”"

#: language/duchain/forwarddeclaration.cpp:61
#, kde-format
msgid "context-free forward-declaration %1"
msgstr "无上下文的前向声明 %1"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:71
msgid "<br /> lost declaration <br />"
msgstr "<br /> 缺失声明 <br />"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:77
#, fuzzy, kde-format
msgid "Back to %1<br />"
msgstr "后退"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:93
msgid "enumerator "
msgstr "枚举器"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:110
#, kde-format
msgid "namespace %1 <br />"
msgstr "命名空间 %1 <br/>"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:115
#, kde-format
msgid "enumeration %1 <br/>"
msgstr "枚举 %1 <br/>"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:122
msgid "( resolved forward-declaration: "
msgstr "( 已解析的前向声明:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:124
msgid ") "
msgstr ") "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:126
msgid "(unresolved forward-declaration) "
msgstr "(未解析的前向声明) "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:135
msgid "possible resolution from"
msgstr ""

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:150
msgid "Returns: "
msgstr "返回:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:152
msgid "Type: "
msgstr "类型:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:172
msgid "Enum: "
msgstr "枚举:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:174
msgid "Container: "
msgstr "容器:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:181
#, kde-format
msgid "Scope: %1 "
msgstr "作用域:%1"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:200
#, kde-format
msgid "Access: %1 "
msgstr "访问:%1"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:220
#, kde-format
msgid "Kind: %1 %2 "
msgstr "种类:%1 %2"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:222
#, kde-format
msgid "Kind: %1 "
msgstr "种类:%1"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:224
#, kde-format
msgid "Modifiers: %1 "
msgstr "修改器:%1"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:234
msgid "Def.: "
msgstr "定义:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:236
msgid "Decl.: "
msgstr "声明:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:243
msgid " Def.: "
msgstr "定义:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:250
msgid " Decl.: "
msgstr "声明:"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:256
msgid "Show uses"
msgstr "显示使用"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:278
msgid "Show documentation for "
msgstr "显示文档 "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:378
msgid "Overrides a "
msgstr "重载"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:379
#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:394
msgid "function"
msgstr "函数"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:380
#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:395
msgid " from "
msgstr " 从 "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:393
msgid "Hides a "
msgstr "隐藏 "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:411
msgid "Overridden in "
msgstr "重载自 "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:424
msgid "Overriders possible, show all"
msgstr "重载可能,显示全部"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:424
msgid "More overriders possible, show all"
msgstr "更多重载可能,显示全部"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:434
msgid "Inherited by "
msgstr "继承自 "

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:447
msgid "Inheriters possible, show all"
msgstr "继承可能,显示全部"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:447
msgid "More inheriters possible, show all"
msgstr "更多继承可能,显示全部"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:621
msgctxt "A declaration that is unknown"
msgid "Unknown"
msgstr "未知"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:647
msgctxt "tells if a declaration is defining the variable's value"
msgid "definition"
msgstr "定义"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:652
msgctxt "as in c++ forward declaration"
msgid "forward"
msgstr "前进"

#: language/duchain/navigation/abstractdeclarationnavigationcontext.cpp:657
msgctxt "a variable that won't change, const"
msgid "constant"
msgstr "常量"

#: language/duchain/navigation/abstractincludenavigationcontext.cpp:96
msgid "Declarations:"
msgstr "声明:"

#: language/duchain/navigation/abstractincludenavigationcontext.cpp:102
msgid "not parsed yet"
msgstr "尚未解析"

#: language/duchain/navigation/abstractincludenavigationcontext.cpp:113
msgctxt "Files included into this file"
msgid "Includes"
msgstr "包含"

#: language/duchain/navigation/abstractincludenavigationcontext.cpp:113
msgctxt "Count of files this file was included into"
msgid "Included by"
msgstr "包含于"

#: language/duchain/navigation/abstractnavigationcontext.cpp:387
msgid "Typedef"
msgstr "类型定义"

#: language/duchain/navigation/abstractnavigationcontext.cpp:390
msgid "Class"
msgstr "类"

#: language/duchain/navigation/abstractnavigationcontext.cpp:392
#: shell/settings/environmentgroupmodel.cpp:90
msgid "Variable"
msgstr "变量"

#: language/duchain/navigation/abstractnavigationcontext.cpp:394
msgid "Namespace"
msgstr "命名空间"

#: language/duchain/navigation/abstractnavigationcontext.cpp:399
msgid "Namespace import"
msgstr "命名空间导入"

#: language/duchain/navigation/abstractnavigationcontext.cpp:401
msgid "Namespace alias"
msgstr "命名空间别名"

#: language/duchain/navigation/abstractnavigationcontext.cpp:408
msgid "Forward Declaration"
msgstr "前向声明"

#: language/duchain/navigation/problemnavigationcontext.cpp:43
#, fuzzy, kde-format
#| msgid "Scope: %1 "
msgid "Solve: %1"
msgstr "作用域:%1"

#: language/duchain/navigation/problemnavigationcontext.cpp:45
msgid "Solve"
msgstr "解决"

#: language/duchain/navigation/problemnavigationcontext.cpp:78
msgid "Problem"
msgstr "问题"

#: language/duchain/navigation/problemnavigationcontext.cpp:88
#, kde-format
msgid "Problem in <b>%1</b>:<br/>"
msgstr ""

#: language/duchain/navigation/usescollector.cpp:379
#, kde-format
msgid "%1 still needs an update!"
msgstr ""

#: language/duchain/navigation/usesnavigationcontext.cpp:44
#, fuzzy
msgid "Uses of "
msgstr "%1 的使用"

#: language/duchain/navigation/usesnavigationcontext.cpp:49
#, kde-format
msgid "Uses of %1"
msgstr "%1 的使用"

#: language/duchain/navigation/useswidget.cpp:128
#, fuzzy, kde-format
#| msgid "<b>%1</b>"
msgctxt "refers to a line in source code"
msgid "Line <b>%1</b>:"
msgstr "<b>%1</b>"

#: language/duchain/navigation/useswidget.cpp:177
#: language/duchain/navigation/useswidget.cpp:182
#, fuzzy, kde-format
#| msgid "<b>%1</b>"
msgctxt "Refers to a line in source code"
msgid "Line <b>%1</b>"
msgstr "<b>%1</b>"

#: language/duchain/navigation/useswidget.cpp:339
msgid "Unknown context"
msgstr "未知上下文"

#: language/duchain/navigation/useswidget.cpp:346
#: shell/launchconfigurationdialog.cpp:481
msgid "Global"
msgstr "全局"

#: language/duchain/navigation/useswidget.cpp:369
#, kde-format
msgctxt "%1: source file"
msgid "In %1"
msgstr ""

#: language/duchain/navigation/useswidget.cpp:398
msgid "Definition"
msgstr "定义"

#: language/duchain/navigation/useswidget.cpp:398
msgid "Declaration"
msgstr "声明"

#: language/duchain/navigation/useswidget.cpp:433
#, kde-format
msgctxt "%1: number of uses, %2: filename with uses"
msgid "%2: 1 use"
msgid_plural "%2: %1 uses"
msgstr[0] ""

#: language/duchain/navigation/useswidget.cpp:437
#: language/duchain/navigation/useswidget.cpp:471
msgctxt "Refers to closing a UI element"
msgid "Collapse"
msgstr "折叠"

#: language/duchain/navigation/useswidget.cpp:468
msgctxt "Refers to opening a UI element"
msgid "Expand"
msgstr "展开"

#: language/duchain/navigation/useswidget.cpp:544
#, kde-format
msgid "1 use found"
msgid_plural "%1 uses found"
msgstr[0] ""

#: language/duchain/navigation/useswidget.cpp:545
msgid "Expand all"
msgstr "全部展开"

#: language/duchain/navigation/useswidget.cpp:546
msgid "Collapse all"
msgstr "全部折叠"

#: language/duchain/repositories/itemrepository.cpp:265
#, kde-format
msgid "Session crashed %1 time in a row"
msgid_plural "Session crashed %1 times in a row"
msgstr[0] ""

#: language/duchain/repositories/itemrepository.cpp:270
msgid "Clear cache: [Y/n] "
msgstr "清除缓存:[Y/n]"

#: language/duchain/repositories/itemrepository.cpp:282
#, fuzzy, kde-format
msgid "The Session crashed once."
msgid_plural "The Session crashed %1 times in a row."
msgstr[0] "修订版"

#: language/duchain/repositories/itemrepository.cpp:282
msgid ""
"The crash may be caused by a corruption of cached data.\n"
"\n"
"Press OK if you want KDevelop to clear the cache, otherwise press Cancel if "
"you are sure the crash has another origin."
msgstr ""

#: language/duchain/repositories/itemrepository.cpp:283
msgid "Session crashed"
msgstr "会话已崩溃"

#: language/duchain/repositories/itemrepository.h:424
#: language/duchain/repositories/itemrepository.h:2343
#, kde-format
msgid "Failed writing to %1, probably the disk is full"
msgstr ""

#: language/interfaces/iproblem.cpp:132
msgid "Disk"
msgstr "磁盘"

#: language/interfaces/iproblem.cpp:134
msgid "Preprocessor"
msgstr "预处理器"

#: language/interfaces/iproblem.cpp:136
msgid "Lexer"
msgstr "词法分析器"

#: language/interfaces/iproblem.cpp:138
msgid "Parser"
msgstr "解析器"

#: language/interfaces/iproblem.cpp:140
msgid "Definition-Use Chain"
msgstr "定义使用链"

#: language/interfaces/iproblem.cpp:142
msgid "Semantic Analysis"
msgstr "语义学分析"

#: language/interfaces/iproblem.cpp:144
msgid "TODO"
msgstr "待办"

#: language/interfaces/iproblem.cpp:147
msgid "Unknown"
msgstr "未知"

#: language/util/debuglanguageparserhelper.h:167
msgid "print generated AST tree"
msgstr "显示生成的 AST 树"

#: language/util/debuglanguageparserhelper.h:168
msgid "print generated token stream"
msgstr "显示生成的词令流"

#: language/util/debuglanguageparserhelper.h:169
msgid "code to parse"
msgstr "要解析的代码"

#: language/util/debuglanguageparserhelper.h:170
msgid ""
"files or - to read from STDIN, the latter is the default if nothing is "
"provided"
msgstr ""

#: outputview/outputexecutejob.cpp:183
msgid "No build directory specified for a builder job."
msgstr ""

#: outputview/outputexecutejob.cpp:185
msgid "No working directory specified for a process."
msgstr ""

#: outputview/outputexecutejob.cpp:196
#, kde-format
msgid "Invalid build directory '%1'"
msgstr ""

#: outputview/outputexecutejob.cpp:198
#, fuzzy, kde-format
#| msgid "Working Directory"
msgid "Invalid working directory '%1'"
msgstr "工作目录"

#: outputview/outputexecutejob.cpp:204
#, kde-format
msgid "Build directory '%1' is not a local path"
msgstr ""

#: outputview/outputexecutejob.cpp:206
#, fuzzy, kde-format
#| msgid "Working Directory is not absolute: %1"
msgid "Working directory '%1' is not a local path"
msgstr "工作目录不是绝对路径:%1"

#: outputview/outputexecutejob.cpp:224
#, kde-format
msgid "Build directory '%1' does not exist or is not a directory"
msgstr ""

#: outputview/outputexecutejob.cpp:226
#, fuzzy, kde-format
#| msgid "Working Directory does not exist: %1"
msgid "Working directory '%1' does not exist or is not a directory"
msgstr "工作目录不存在:%1"

#: outputview/outputexecutejob.cpp:291
msgid "*** Aborted ***"
msgstr "*** 已中止 ***"

#: outputview/outputexecutejob.cpp:294
msgid "*** Warning: could not kill the process ***"
msgstr ""

#: outputview/outputexecutejob.cpp:310
#, kde-format
msgid "%1 has failed to start"
msgstr ""

#: outputview/outputexecutejob.cpp:314
#, fuzzy, kde-format
msgid "%1 has crashed"
msgstr "修订版"

#: outputview/outputexecutejob.cpp:318
#, fuzzy
msgid "Read error"
msgstr "错误"

#: outputview/outputexecutejob.cpp:322
#, fuzzy
msgid "Write error"
msgstr "错误"

#: outputview/outputexecutejob.cpp:326
msgid "Waiting for the process has timed out"
msgstr ""

#: outputview/outputexecutejob.cpp:331
#, kde-format
msgid "Exit code %1"
msgstr "退出代码 %1"

#: outputview/outputexecutejob.cpp:344
#, kde-format
msgid "*** Failure: %1 ***"
msgstr "*** 失败:%1 ***"

#: outputview/outputexecutejob.cpp:360
msgid "*** Finished ***"
msgstr "*** 已完成 ***"

#: outputview/outputfilteringstrategies.cpp:117
#: outputview/outputfilteringstrategies.cpp:126
#: outputview/outputfilteringstrategies.cpp:134
#: outputview/outputfilteringstrategies.cpp:146
#: outputview/outputfilteringstrategies.cpp:241
msgid "compiling"
msgstr "正在编译"

#: outputview/outputfilteringstrategies.cpp:121
#: outputview/outputfilteringstrategies.cpp:127
#: outputview/outputfilteringstrategies.cpp:135
#: outputview/outputfilteringstrategies.cpp:145
#, fuzzy
msgid "generating"
msgstr "设置"

#: outputview/outputfilteringstrategies.cpp:123
#: outputview/outputfilteringstrategies.cpp:129
#: outputview/outputfilteringstrategies.cpp:131
#: outputview/outputfilteringstrategies.cpp:137
msgctxt "Linking object files into a library or executable"
msgid "linking"
msgstr "正在链接"

#: outputview/outputfilteringstrategies.cpp:133
#, fuzzy
msgid "built"
msgstr "构建"

#: outputview/outputfilteringstrategies.cpp:138
#, fuzzy
#| msgid "Launch Configurations"
msgid "configuring"
msgstr "启动配置"

#: outputview/outputfilteringstrategies.cpp:139
#: outputview/outputfilteringstrategies.cpp:142
#, fuzzy
msgid "installing"
msgstr "构建并安装"

#: outputview/outputfilteringstrategies.cpp:141
#, fuzzy
#| msgid "Settings"
msgid "creating"
msgstr "设置"

#: project/abstractfilemanagerplugin.cpp:312
#, kde-format
msgid ""
"The base folder of project <b>%1</b> got deleted or moved outside of "
"KDevelop.\n"
"The project has to be closed."
msgstr ""

#: project/abstractfilemanagerplugin.cpp:315
msgid "Project Folder Deleted"
msgstr "工程文件夹已删除"

#: project/abstractfilemanagerplugin.cpp:339
#, kde-format
msgid ""
"You tried to rename '%1' to '%2', but the latter is filtered and will be "
"hidden.\n"
"Do you want to continue?"
msgstr ""

#: project/builderjob.cpp:90
#, fuzzy
#| msgid "Build"
msgctxt "@info:status"
msgid "build"
msgstr "构建"

#: project/builderjob.cpp:92
#, fuzzy
msgctxt "@info:status"
msgid "clean"
msgstr "清除"

#: project/builderjob.cpp:94
#, fuzzy
msgctxt "@info:status"
msgid "configure"
msgstr "配置 %1"

#: project/builderjob.cpp:96
#, fuzzy
#| msgid "Build & Install"
msgctxt "@info:status"
msgid "install"
msgstr "构建并安装"

#: project/builderjob.cpp:98
msgctxt "@info:status"
msgid "prune"
msgstr ""

#: project/builderjob.cpp:243
msgctxt "Unspecified set of build items (e. g. projects, targets)"
msgid "Various items"
msgstr ""

#: project/helper.cpp:65
#, kde-format
msgid "Cannot remove folder <i>%1</i>."
msgstr "无法删除文件夹 <i>%1</i>。"

#: project/helper.cpp:66
#, kde-format
msgid "Cannot remove file <i>%1</i>."
msgstr "无法删除文件 <i>%1</i>。"

#: project/helper.cpp:76
#, kde-format
msgid "The file <i>%1</i> exists already."
msgstr "文件 <i>%1</i> 已存在。"

#: project/helper.cpp:84
#, kde-format
msgid "Cannot create temporary file to create <i>%1</i>."
msgstr "无法创建文件以创建 <i>%1</i>。"

#: project/helper.cpp:89
#, kde-format
msgid "Cannot create file <i>%1</i>."
msgstr "无法创建文件 <i>%1</i>。"

#: project/helper.cpp:99
#, kde-format
msgid "Cannot create folder <i>%1</i>."
msgstr "无法创建文件夹 <i>%1</i>。"

#: project/importprojectjob.cpp:70
#, kde-format
msgid "Project Import: %1"
msgstr "工程导入:%1"

#: project/importprojectjob.cpp:102
msgid "Project import canceled."
msgstr "工程导入已取消。"

#: project/projectbuildsetmodel.cpp:275
msgctxt "@title:column buildset item name"
msgid "Name"
msgstr "名称"

#: project/projectbuildsetmodel.cpp:278
msgctxt "@title:column buildset item path"
msgid "Path"
msgstr "路径"

#: project/projectitemlineedit.cpp:153
msgid "Enter the path to an item from the projects tree"
msgstr ""

#: project/projectitemlineedit.cpp:155
msgid "Select..."
msgstr "选择..."

#: project/projectitemlineedit.cpp:182
msgid "Select the item you want to get the path from."
msgstr ""

#: project/projectitemlineedit.cpp:187
msgid "Select an item..."
msgstr "选择一项..."

#: project/projectproxymodel.cpp:69
#, kde-format
msgid "%1 (%2 Filtered)"
msgstr ""

#: project/projectutils.cpp:77
#, kde-format
msgid "Folder %1"
msgstr "文件夹 %1"

#: project/projectutils.cpp:79
#, kde-format
msgid "Project %1"
msgstr "工程 %1"

#: shell/assistantpopup.cpp:132
msgid "Hide"
msgstr "隐藏"

#: shell/core.cpp:105
msgid "KDevelop Platform"
msgstr "KDevelop 平台"

#: shell/core.cpp:106
msgid "Development Platform for IDE-like Applications"
msgstr "类 IDE 应用程序的开发平台"

#: shell/core.cpp:107
#, fuzzy
#| msgid "Copyright 2004-2009, The KDevelop developers"
msgid "Copyright 2004-2012, The KDevelop developers"
msgstr "版权所有 2004-2009,KDevelop 开发者"

#: shell/core.cpp:109
msgid "Andreas Pakulat"
msgstr "Andreas Pakulat"

#: shell/core.cpp:109
msgid ""
"Architecture, VCS Support, Project Management Support, QMake Projectmanager"
msgstr "构架、版本控制系统支持、工程管理支持、QMake 工程管理器"

#: shell/core.cpp:110
msgid "Alexander Dymo"
msgstr "Alexander Dymo"

#: shell/core.cpp:110
msgid "Architecture, Sublime UI, Ruby support"
msgstr "构架、优化用户界面、Ruby 支持"

#: shell/core.cpp:111
msgid "David Nolden"
msgstr "David Nolden"

#: shell/core.cpp:111
msgid "Definition-Use Chain, C++ Support"
msgstr "定义使用链、C++ 支持"

#: shell/core.cpp:112
msgid "Aleix Pol Gonzalez"
msgstr "Aleix Pol Gonzalez"

#: shell/core.cpp:112
msgid "Co-Maintainer, CMake Support, Run Support, Kross Support"
msgstr "协助维护者、CMake 支持、运行支持、Kross 支持"

#: shell/core.cpp:113
msgid "Vladimir Prus"
msgstr "Vladimir Prus"

#: shell/core.cpp:113
msgid "GDB integration"
msgstr "GDB 整合"

#: shell/core.cpp:114
msgid "Hamish Rodda"
msgstr "Hamish Rodda"

#: shell/core.cpp:114
msgid "Text editor integration, definition-use chain"
msgstr "文本编辑器整合、定义使用链"

#: shell/core.cpp:116
msgid "Matt Rogers"
msgstr "Matt Rogers"

#: shell/core.cpp:117
msgid "Cédric Pasteur"
msgstr "Cédric Pasteur"

#: shell/core.cpp:117
msgid "astyle and indent support"
msgstr "astyle 和 indent 支持"

#: shell/core.cpp:118
msgid "Evgeniy Ivanov"
msgstr "Evgeniy Ivanov"

#: shell/core.cpp:118
msgid "Distributed VCS, Git, Mercurial"
msgstr "整合 VCS、Git、Mercurial"

#: shell/core.cpp:121
msgid "Robert Gruber"
msgstr "Robert Gruber"

#: shell/core.cpp:121
msgid "SnippetPart, debugger and usability patches"
msgstr "代码片断部件、调试器和易用性补丁"

#: shell/core.cpp:122
msgid "Dukju Ahn"
msgstr "Dukju Ahn"

#: shell/core.cpp:122
msgid "Subversion plugin, Custom Make Manager, Overall improvements"
msgstr "Subversion 插件、自定义 Make 管理器、全局改善"

#: shell/core.cpp:123
msgid "Niko Sams"
msgstr "Niko Sams"

#: shell/core.cpp:123
msgid "GDB integration, Webdevelopment Plugins"
msgstr "GDB 集成、网络开发插件"

#: shell/core.cpp:124
msgid "Milian Wolff"
msgstr "Milian Wolff"

#: shell/core.cpp:124
msgid ""
"Co-Maintainer, Generic manager, Webdevelopment Plugins, Snippets, Performance"
msgstr "协助维护者、常规管理器、网络开发插件、代码片断、性能"

#: shell/core.cpp:267
msgid ""
"The installed Kate version does not support the MovingInterface which is "
"crucial for KDevelop starting from version 4.2.\n"
"\n"
"To use KDevelop with KDE SC prior to 4.6, where the SmartInterface is used "
"instead of the MovingInterface, you need KDevelop 4.1 or lower."
msgstr ""

#: shell/debugcontroller.cpp:131
msgid "Frame Stack"
msgstr "框架堆栈"

#: shell/debugcontroller.cpp:137
msgid "Breakpoints"
msgstr "断点"

#: shell/debugcontroller.cpp:143
msgid "Variables"
msgstr "变量"

#: shell/debugcontroller.cpp:201
msgid "&Continue"
msgstr "继续(&C)"

#: shell/debugcontroller.cpp:202
msgid "Continues the application execution"
msgstr "继续应用程序执行"

#: shell/debugcontroller.cpp:203
msgid ""
"<b>Continue application execution</b><p>Continues the execution of your "
"application in the debugger. This only takes effect when the application has "
"been halted by the debugger (i.e. a breakpoint has been activated or the "
"interrupt was pressed).</p>"
msgstr ""

#: shell/debugcontroller.cpp:212
msgid "&Restart"
msgstr "重启(&R)"

#: shell/debugcontroller.cpp:213
msgid "Restart program"
msgstr "重新启动程序"

#: shell/debugcontroller.cpp:214
msgid ""
"<b>Restarts application</b><p>Restarts applications from the beginning.</p>"
msgstr ""

#: shell/debugcontroller.cpp:222
msgid "Interrupt"
msgstr "中断"

#: shell/debugcontroller.cpp:223
msgid "Interrupt application"
msgstr "中断应用程序"

#: shell/debugcontroller.cpp:224
msgid ""
"<b>Interrupt application</b><p>Interrupts the debugged process or current "
"debugger command.</p>"
msgstr ""

#: shell/debugcontroller.cpp:228
msgid "Run to &Cursor"
msgstr "运行到光标处(&C)"

#: shell/debugcontroller.cpp:229
msgid "Run to cursor"
msgstr "运行到光标处"

#: shell/debugcontroller.cpp:230
msgid ""
"<b>Run to cursor</b><p>Continues execution until the cursor position is "
"reached.</p>"
msgstr ""

#: shell/debugcontroller.cpp:235
msgid "Set E&xecution Position to Cursor"
msgstr "设定执行位置到光标处(&X)"

#: shell/debugcontroller.cpp:236
msgid "Jump to cursor"
msgstr "跳转到光标处"

#: shell/debugcontroller.cpp:237
msgid ""
"<b>Set Execution Position </b><p>Set the execution pointer to the current "
"cursor position.</p>"
msgstr ""

#: shell/debugcontroller.cpp:241
msgid "Step &Over"
msgstr "单步执行(&O)"

#: shell/debugcontroller.cpp:243
msgid "Step over the next line"
msgstr "单步执行下一行"

#: shell/debugcontroller.cpp:244
msgid ""
"<b>Step over</b><p>Executes one line of source in the current source file. "
"If the source line is a call to a function the whole function is executed "
"and the app will stop at the line following the function call.</p>"
msgstr ""

#: shell/debugcontroller.cpp:253
msgid "Step over Ins&truction"
msgstr "单步执行指令(&T)"

#: shell/debugcontroller.cpp:254
msgid "Step over instruction"
msgstr "单步执行指令"

#: shell/debugcontroller.cpp:255
#, fuzzy
msgid ""
"<b>Step over instruction</b><p>Steps over the next assembly instruction.</p>"
msgstr "<b>下个窗口</b><p>切换到下个窗口。</p>"

#: shell/debugcontroller.cpp:260
msgid "Step &Into"
msgstr "单步跟进(&I)"

#: shell/debugcontroller.cpp:262
msgid "Step into the next statement"
msgstr "单步跟进到下一条语句"

#: shell/debugcontroller.cpp:263
msgid ""
"<b>Step into</b><p>Executes exactly one line of source. If the source line "
"is a call to a function then execution will stop after the function has been "
"entered.</p>"
msgstr ""

#: shell/debugcontroller.cpp:271
msgid "Step into I&nstruction"
msgstr "单步跟进指令(&N)"

#: shell/debugcontroller.cpp:272
msgid "Step into instruction"
msgstr "单步跟进指令"

#: shell/debugcontroller.cpp:273
#, fuzzy
msgid ""
"<b>Step into instruction</b><p>Steps into the next assembly instruction.</p>"
msgstr "<b>下个窗口</b><p>切换到下个窗口。</p>"

#: shell/debugcontroller.cpp:277
msgid "Step O&ut"
msgstr "单步跳出(&U)"

#: shell/debugcontroller.cpp:279
msgid "Steps out of the current function"
msgstr "单步跳出当前函数"

#: shell/debugcontroller.cpp:280
msgid ""
"<b>Step out</b><p>Executes the application until the currently executing "
"function is completed. The debugger will then display the line after the "
"original call to that function. If program execution is in the outermost "
"frame (i.e. in main()) then this operation has no effect.</p>"
msgstr ""

#: shell/debugcontroller.cpp:289
msgid "Toggle Breakpoint"
msgstr "切换断点"

#: shell/debugcontroller.cpp:290
msgid "Ctrl+Alt+B"
msgstr "Ctrl+Alt+B"

#: shell/debugcontroller.cpp:291
msgid "Toggle breakpoint"
msgstr "切换断点"

#: shell/debugcontroller.cpp:292
msgid ""
"<b>Toggle breakpoint</b><p>Toggles the breakpoint at the current line in "
"editor.</p>"
msgstr ""

#. i18n: ectx: Menu (run)
#: shell/debugger/kdevdebuggershellui.rc:5
msgctxt "@title:menu"
msgid "Run"
msgstr "运行"

#. i18n: ectx: ToolBar (debugToolBar)
#: shell/debugger/kdevdebuggershellui.rc:27
msgid "Debugger Toolbar"
msgstr "调试器工具栏"

#: shell/documentationcontroller.cpp:77
msgid "Show Documentation"
msgstr "显示文档"

#: shell/documentcontroller.cpp:69
msgid "Untitled"
msgstr "无标题"

#: shell/documentcontroller.cpp:130 shell/documentcontroller.cpp:213
msgid "*|Text File\n"
msgstr "*|文本文件\n"

#: shell/documentcontroller.cpp:132 shell/documentcontroller.cpp:215
msgid "Open File"
msgstr "打开文件"

#: shell/documentcontroller.cpp:306
#, kde-format
msgid ""
"KDevelop could not find the editor for file '%1' of type %2.\n"
"Do you want to open it as plain text?"
msgstr ""
"KDevelop 无法找到文件“%1”所对应类型 %2 的编辑器。\n"
"您想要以纯文本打开它吗?"

#: shell/documentcontroller.cpp:306
msgctxt "@title:window"
msgid "Could Not Find Editor"
msgstr "无法找到编辑器"

#: shell/documentcontroller.cpp:603
msgid "&Open..."
msgstr "打开(&O)..."

#: shell/documentcontroller.cpp:605
msgid "Open file"
msgstr "打开文件"

#: shell/documentcontroller.cpp:606
msgid "<b>Open file</b><p>Opens a file for editing.</p>"
msgstr "<b>打开文件</b><p>打开文件以编辑。</p>"

#: shell/documentcontroller.cpp:610
msgid ""
"This lists files which you have opened recently, and allows you to easily "
"open them again."
msgstr "您最近打开过的文件列表,让您更方便地再次打开它们。"

#: shell/documentcontroller.cpp:615
msgid "Save Al&l"
msgstr "全部保存(&L)"

#: shell/documentcontroller.cpp:617
msgid "Save all open documents"
msgstr "保存全部打开的文档"

#: shell/documentcontroller.cpp:618
msgid ""
"<b>Save all documents</b><p>Save all open documents, prompting for "
"additional information when necessary.</p>"
msgstr "<b>保存全部文档</b><p>保存全部打开的文档,需要时会提示附加信息。</p>"

#: shell/documentcontroller.cpp:624 shell/mainwindow_p.cpp:410
msgid "Reload All"
msgstr "全部重新装入"

#: shell/documentcontroller.cpp:626
msgid "Revert all open documents"
msgstr "还原全部打开的文档"

#: shell/documentcontroller.cpp:627
msgid ""
"<b>Revert all documents</b><p>Revert all open documents, returning to the "
"previously saved state.</p>"
msgstr ""
"<b>还原全部文档</b><p>还原全部打开的文档,恢复到上次保存的状态。returning to "
"the previously saved state.</p>"

#: shell/documentcontroller.cpp:633
msgid "&Close"
msgstr "关闭(&C)"

#: shell/documentcontroller.cpp:635 sublime/container.cpp:514
msgid "Close File"
msgstr "关闭文件"

#: shell/documentcontroller.cpp:636
msgid "<b>Close File</b><p>Closes current file.</p>"
msgstr "<b>关闭文件</b><p>关闭当前文件。</p>"

#: shell/documentcontroller.cpp:641
msgid "Clos&e All"
msgstr "全部关闭(&E)"

#: shell/documentcontroller.cpp:643
msgid "Close all open documents"
msgstr "关闭全部打开的文档"

#: shell/documentcontroller.cpp:644
msgid ""
"<b>Close all documents</b><p>Close all open documents, prompting for "
"additional information when necessary.</p>"
msgstr "<b>关闭全部文档</b><p>关闭全部打开的文档,需要时会提示附加信息。</p>"

#: shell/documentcontroller.cpp:650
msgid "Close All Ot&hers"
msgstr "关闭全部其它工程(&H)"

#: shell/documentcontroller.cpp:652
msgid "Close all other documents"
msgstr "关闭全部其它文档"

#: shell/documentcontroller.cpp:653
msgid ""
"<b>Close all other documents</b><p>Close all open documents, with the "
"exception of the currently active document.</p>"
msgstr "<b>关闭全部其它文档</b><p>关闭全部文档,除了当前活动的文档。</p>"

#. i18n: ectx: Menu (session)
#: shell/kdevsessionui.rc:5
msgctxt "@title:menu"
msgid "Session"
msgstr "会话"

#. i18n: ectx: Menu (edit)
#: shell/kdevsourceformatter.rc:5
msgctxt "@title:menu"
msgid "Edit"
msgstr "编辑"

#. i18n: ectx: property (text), widget (QPushButton, close)
#: shell/kross/examples/guiexample/GUIExample/example.ui:25
#: shell/workingsets/workingsettooltipwidget.cpp:309
msgid "Close"
msgstr "关闭"

#: shell/kross/xmltokross/mainduchain.cpp:46 shell/uicontroller.cpp:79
msgid "Code"
msgstr "代码"

#: shell/kross/xmltokross/mainduchain.cpp:82
msgid "duchaintokross"
msgstr "duchaintokross"

#: shell/kross/xmltokross/mainduchain.cpp:83
msgid "Wrapper generator from C++ to Kross"
msgstr "从 C++ 到 Kross 封装生成器"

#: shell/kross/xmltokross/mainduchain.cpp:84
msgid "(c) 2008, The KDevelop developers"
msgstr "(c) 2008,KDevelop 开发者"

#: shell/kross/xmltokross/mainduchain.cpp:87
msgid "input .cpp file"
msgstr "输入 .cpp 文件"

#: shell/kross/xmltokross/mainduchain.cpp:88
msgid "include directories for the parser (colon separated)"
msgstr "包含用于分析器的目录(冒号分隔)"

#: shell/kross/xmltokross/mainduchain.cpp:89
msgid ""
"include directories that the generated implementation file will have (colon "
"separated)"
msgstr "包含已生成实现文件的目录(冒号分隔)"

#: shell/kross/xmltokross/mainduchain.cpp:90
msgid "build dir where the Makefile for the input is added"
msgstr ""

#: shell/kross/xmltokross/mainduchain.cpp:91
msgid "filename to be used for the .moc and the .h file"
msgstr "用于 .moc 和 .h 文件的文件名"

#: shell/kross/xmltokross/mainduchain.cpp:92
msgid "directory where to put the .h output"
msgstr "放置 .h 输出的目录"

#: shell/kross/xmltokross/mainduchain.cpp:93
msgid "directory where to put the code output"
msgstr "放置代码输出的目录"

#: shell/kross/xmltokross/mainduchain.cpp:94
msgid "create implementation"
msgstr "创建实现"

#: shell/kross/xmltokross/mainduchain.cpp:95
msgid "Verbose output"
msgstr "显式输出"

#: shell/launchconfigurationdialog.cpp:63
msgid "Launch Configurations"
msgstr "启动配置"

#: shell/launchconfigurationdialog.cpp:72
msgctxt "@info:tooltip"
msgid "Add a new launch configuration."
msgstr "添加新的启动配置。"

#: shell/launchconfigurationdialog.cpp:75
msgctxt "@info:tooltip"
msgid "Delete selected launch configuration."
msgstr "删除所选启动配置。"

#: shell/launchconfigurationdialog.cpp:200
#, fuzzy
#| msgid "Open Configuration..."
msgid "Rename configuration"
msgstr "打开配置..."

#: shell/launchconfigurationdialog.cpp:201
#, fuzzy
msgid "Delete configuration"
msgstr "删除所选启动配置。"

#: shell/launchconfigurationdialog.cpp:255
msgid ""
"Selected Launch Configuration has unsaved changes. Do you want to save it?"
msgstr "所选的启动配置有尚未保存的更改。您想要保存吗?"

#: shell/launchconfigurationdialog.cpp:255
msgid "Unsaved Changes"
msgstr "未保存的更改"

#: shell/launchconfigurationdialog.cpp:325
#, kde-format
msgctxt "%1 is a launcher name"
msgid "No configuration is needed for '%1'"
msgstr ""

#: shell/launchconfigurationdialog.cpp:369
msgid ""
"<i>Select a configuration to edit from the left,<br>or click the \"Add new\" "
"button to add a new one.</i>"
msgstr ""

#: shell/launchconfigurationdialog.cpp:437
#, fuzzy, kde-format
#| msgid "<b>%1</b>"
msgid "Editing %2: <b>%1</b>"
msgstr "<b>%1</b>"

#: shell/launchconfigurationdialog.cpp:709
msgctxt "Name of the Launch Configurations"
msgid "Name"
msgstr "名称"

#: shell/launchconfigurationdialog.cpp:712
msgctxt ""
"The type of the Launch Configurations (i.e. Python Application, C++ "
"Application)"
msgid "Type"
msgstr "类型"

#. i18n: ectx: property (text), widget (QToolButton, addConfig)
#: shell/launchconfigurationdialog.ui:40
#, fuzzy
#| msgid "&Add Tool View..."
msgid "Add new..."
msgstr "添加工具视图(&A)..."

#. i18n: ectx: property (text), widget (QToolButton, deleteConfig)
#: shell/launchconfigurationdialog.ui:53
#, fuzzy
#| msgid "Save &Selected"
msgid "Remove selected"
msgstr "保存所选(&S)"

#. i18n: ectx: property (text), widget (QLabel, debugLabel)
#: shell/launchconfigurationdialog.ui:86
#, fuzzy
#| msgid "Debug"
msgid "Debugger:"
msgstr "调试"

#: shell/loadedpluginsdialog.cpp:271 shell/mainwindow_p.cpp:258
msgid "Loaded Plugins"
msgstr "已装入的插件"

#: shell/loadedpluginsdialog.cpp:279
#, kde-format
msgid "<html><font size=\"4\">Plugins loaded for <b>%1</b></font></html>"
msgstr ""

#: shell/mainwindow_p.cpp:235
#, kde-format
msgctxt "%1 = application name"
msgid "Configure %1"
msgstr "配置 %1"

#: shell/mainwindow_p.cpp:240
#, kde-format
msgid "Lets you customize %1."
msgstr "让您自定义 %1。"

#: shell/mainwindow_p.cpp:244
msgid "Configure Editor..."
msgstr "配置编辑器..."

#: shell/mainwindow_p.cpp:245
msgctxt "@info:whatsthis"
msgid "Configure various aspects of this editor."
msgstr "配置此编辑器多方面的设置。"

#: shell/mainwindow_p.cpp:248
msgid "Configure Notifications..."
msgstr "配置通知..."

#: shell/mainwindow_p.cpp:249
#, fuzzy
msgctxt "@info:tooltip"
msgid "Configure Notifications"
msgstr "配置通知"

#: shell/mainwindow_p.cpp:250
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<b>Configure Notifications</b><p>Shows a dialog that lets you configure "
"notifications.</p>"
msgstr "<b>配置通知</b><p>显示一个让您配置通知的对话框。</p>"

#: shell/mainwindow_p.cpp:253
msgid "About KDevelop Platform"
msgstr "关于 KDevelop 平台"

#: shell/mainwindow_p.cpp:254
msgid "Show Information about KDevelop Platform"
msgstr "显示关于 KDevelop 平台的信息"

#: shell/mainwindow_p.cpp:255
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<b>About KDevelop Platform</b><p>Shows a dialog with information about "
"KDevelop Platform.</p>"
msgstr ""
"<b>关于 KDevelop 平台</b><p>显示带有关于 KDevelop 平台信息的对话框。</p>"

#: shell/mainwindow_p.cpp:259
msgid "Show a list of all loaded plugins"
msgstr "显示已装入的插件列表"

#: shell/mainwindow_p.cpp:260
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<b>Loaded Plugins</b><p>Shows a dialog with information about all loaded "
"plugins.</p>"
msgstr "<b>已装入插件</b><p>显示关于已装入插件信息的对话框。</p>"

#: shell/mainwindow_p.cpp:281
msgid "&Next Window"
msgstr "下个窗口(&N)"

#: shell/mainwindow_p.cpp:284
msgctxt "@info:tooltip"
msgid "Next window"
msgstr "下个窗口"

#: shell/mainwindow_p.cpp:285
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Next window</b><p>Switches to the next window.</p>"
msgstr "<b>下个窗口</b><p>切换到下个窗口。</p>"

#: shell/mainwindow_p.cpp:289
msgid "&Previous Window"
msgstr "上个窗口(&P)"

#: shell/mainwindow_p.cpp:292
msgctxt "@info:tooltip"
msgid "Previous window"
msgstr "上个窗口"

#: shell/mainwindow_p.cpp:293
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Previous window</b><p>Switches to the previous window.</p>"
msgstr "<b>上个窗口</b><p>切换到上个窗口。</p>"

#: shell/mainwindow_p.cpp:306
msgid "Split View &Top/Bottom"
msgstr "上下拆分视图(&T)"

#: shell/mainwindow_p.cpp:309
#, fuzzy
msgctxt "@info:tooltip"
msgid "Split Horizontal"
msgstr "水平拆分"

#: shell/mainwindow_p.cpp:310
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Split Horizontal</b><p>Splits the current view horizontally.</p>"
msgstr "<b>水平拆分</b><p>水平拆分当前视图。</p>"

#: shell/mainwindow_p.cpp:314
msgid "Split View &Left/Right"
msgstr "左右拆分视图(&L)"

#: shell/mainwindow_p.cpp:317
#, fuzzy
msgctxt "@info:tooltip"
msgid "Split Vertical"
msgstr "垂直拆分"

#: shell/mainwindow_p.cpp:318
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Split Vertical</b><p>Splits the current view vertically.</p>"
msgstr "<b>垂直拆分</b><p>垂直拆分当前视图。</p>"

#: shell/mainwindow_p.cpp:325
msgid "&New"
msgstr "新建(&N)"

#: shell/mainwindow_p.cpp:326
msgctxt "Shorter Text for 'New File' shown in the toolbar"
msgid "New"
msgstr "新建"

#: shell/mainwindow_p.cpp:328
#, fuzzy
msgctxt "@info:tooltip"
msgid "New File"
msgstr "新建文件"

#: shell/mainwindow_p.cpp:329
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>New File</b><p>Creates an empty file.</p>"
msgstr "<b>新建文件</b><p>创建一个空文件。</p>"

#: shell/mainwindow_p.cpp:334
msgid "&Add Tool View..."
msgstr "添加工具视图(&A)..."

#: shell/mainwindow_p.cpp:336
#, fuzzy
msgctxt "@info:tooltip"
msgid "Add Tool View"
msgstr "添加工具视图"

#: shell/mainwindow_p.cpp:337
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Add Tool View</b><p>Adds a new tool view to this window.</p>"
msgstr "<b>添加工具视图</b><p>向此窗口添加新工具视图。</p>"

#: shell/mainwindow_p.cpp:395
msgid "Split View Top/Bottom"
msgstr "上下拆分视图"

#: shell/mainwindow_p.cpp:398
msgid "Split View Left/Right"
msgstr "左右拆分视图"

#: shell/mainwindow_p.cpp:402
msgid "New File"
msgstr "新建文件"

#: shell/mainwindow_p.cpp:407
msgid "Reload"
msgstr "重新装入"

#: shell/mainwindow_p.cpp:450
msgid "Add Tool View"
msgstr "添加工具视图"

#: shell/openprojectdialog.cpp:52
msgid "Select the source"
msgstr "选择源码"

#: shell/openprojectdialog.cpp:59
msgid "Select the project"
msgstr "选择工程"

#: shell/openprojectdialog.cpp:68
msgid "Project information"
msgstr "工程信息"

#: shell/openprojectdialog.cpp:137
#, kde-format
msgid "open %1 as project"
msgstr "将 %1 作为工程打开"

#: shell/openprojectdialog.cpp:143
msgid "Selected URL is invalid."
msgstr "选中的 URL 无效。"

#: shell/partcontroller.cpp:120
msgid ""
"Could not find KTextEditor::Factory, check your installation:\n"
"Make sure that Kate is installed, KDEDIRS is set properly and that you ran "
"kbuildsycoca4."
msgstr ""

#: shell/partcontroller.cpp:122
msgid "System Configuration Error"
msgstr "系统配置错误"

#: shell/partdocument.cpp:102 shell/textdocument.cpp:472
#, kde-format
msgid "The document \"%1\" has unsaved changes. Would you like to save them?"
msgstr "文档“%1”有尚未保存的更改。您想要保存吗?"

#: shell/partdocument.cpp:103 shell/partdocument.cpp:119
msgid "Close Document"
msgstr "关闭文档"

#: shell/partdocument.cpp:117
#, kde-format
msgid ""
"The document \"%1\" has unsaved changes and was modified by an external "
"process.\n"
"Do you want to override the external changes?"
msgstr ""

#: shell/plugincontroller.cpp:443
#, kde-format
msgid ""
"Plugin '%1' could not be loaded correctly and was disabled.\n"
"Reason: %2."
msgstr ""
"无法正确装入插件“%1”并已禁用。\n"
"原因:%2。"

#: shell/progressdialog.cpp:186
msgid "Cancel this operation."
msgstr "取消此操作。"

#: shell/progressmanager.cpp:95
msgid "Aborting..."
msgstr "中断..."

#: shell/progresswidget.cpp:69
msgid "Open detailed progress dialog"
msgstr "打开详细进度对话框"

#: shell/progresswidget.cpp:265
msgid "Hide detailed progress window"
msgstr "隐藏详细进度窗口"

#: shell/progresswidget.cpp:269
msgid "Show detailed progress window"
msgstr "显示详细进度窗口"

#: shell/project.cpp:111
#, kde-format
msgid "Loading Project %1"
msgstr "正在装入工程 %1"

#: shell/project.cpp:119
#, kde-format
msgctxt "%1: Project name"
msgid "Loading %1"
msgstr "正在装入 %1"

#: shell/project.cpp:282
#, kde-format
msgid "Unable to load the project file %1"
msgstr "无法装入工程文件 %1"

#: shell/project.cpp:305
#, kde-format
msgid "Unable to create hidden dir (%1) for developer file"
msgstr "无法为开发者文件创建隐藏目录(%1)"

#: shell/project.cpp:317
#, kde-format
msgid "Unable to get project file: %1"
msgstr "无法获得工程文件:%1"

#: shell/project.cpp:351
#, kde-format
msgid "Could not load %1, a project with the same name '%2' is already open."
msgstr "无法装入 %1,同名工程“%2”已经打开。"

#: shell/project.cpp:382
#, kde-format
msgid "Could not load project management plugin %1."
msgstr "无法装入工程管理插件 %1。"

#: shell/project.cpp:389
#, kde-format
msgid ""
"project importing plugin (%1) does not support the IProjectFileManager "
"interface."
msgstr "工程导入插件(%1)不支持 IProjectFileManager 接口"

#: shell/project.cpp:433
msgid "Could not open project"
msgstr "无法打开工程"

#: shell/project.cpp:561
msgid ""
"Could not store developer specific project configuration.\n"
"Attention: The project settings you changed will be lost."
msgstr ""
"无法存储开发者相关的工程配置。\n"
"注意:您更改的工程设置将丢失。"

#: shell/projectcontroller.cpp:146
#, kde-format
msgid "Configure Project %1"
msgstr "配置工程 %1"

#: shell/projectcontroller.cpp:267
#, kde-format
msgid "Invalid Location: %1"
msgstr "无效的位置:%1"

#: shell/projectcontroller.cpp:274
msgid "Project already being opened"
msgstr "工程已经打开"

#: shell/projectcontroller.cpp:275
#, kde-format
msgid "Already opening %1, not opening again"
msgstr "已经打开 %1,不再次打开"

#: shell/projectcontroller.cpp:405
msgid "Override"
msgstr "覆盖"

#: shell/projectcontroller.cpp:406
msgctxt "@info:tooltip"
msgid ""
"Continue to open the project and use the just provided project configuration."
msgstr ""

#: shell/projectcontroller.cpp:409
msgid "Open Existing File"
msgstr "打开存在的文件"

#: shell/projectcontroller.cpp:410
#, fuzzy
msgctxt "@info:tooltip"
msgid ""
"Continue to open the project but use the existing project configuration."
msgstr "覆盖已有的工程配置"

#: shell/projectcontroller.cpp:413
msgctxt "@info:tooltip"
msgid "Cancel and do not open the project."
msgstr "取消并不打开工程。"

#: shell/projectcontroller.cpp:415
#, kde-format
msgid ""
"There already exists a project configuration file at %1.\n"
"Do you want to override it or open the existing file?"
msgstr ""

#: shell/projectcontroller.cpp:417
msgid "Override existing project configuration"
msgstr "覆盖已有的工程配置"

#: shell/projectcontroller.cpp:433
#, kde-format
msgid "Unable to create configuration file %1"
msgstr "无法创建配置文件 %1"

#: shell/projectcontroller.cpp:444
msgid "Reopen the current project?"
msgstr "重新打开当前工程?"

#: shell/projectcontroller.cpp:478
msgctxt "@action"
msgid "Open / Import Project..."
msgstr "打开/导入工程..."

#: shell/projectcontroller.cpp:479
#, fuzzy
msgctxt "@info:tooltip"
msgid "Open / Import Project"
msgstr "打开/导入工程"

#: shell/projectcontroller.cpp:480
msgctxt "@info:whatsthis"
msgid ""
"<b>Open / Import project</b><p>Open an existing KDevelop 4 project or import "
"an existing Project into KDevelop 4. This entry allows to select a KDevelop4 "
"project file or an existing directory to open it in KDevelop. When opening "
"an existing directory that does not yet have a KDevelop4 project file, the "
"file will be created.</p>"
msgstr ""

#: shell/projectcontroller.cpp:485
msgctxt "@action"
msgid "Fetch Project..."
msgstr "获取工程..."

#: shell/projectcontroller.cpp:486
#, fuzzy
msgctxt "@info:tooltip"
msgid "Fetch Project"
msgstr "获取工程"

#: shell/projectcontroller.cpp:487
msgctxt "@info:whatsthis"
msgid ""
"<b>Fetch project</b><p>Guides the user through the project fetch and then "
"imports it into KDevelop 4.</p>"
msgstr ""

#: shell/projectcontroller.cpp:500
msgctxt "@action"
msgid "Close Project(s)"
msgstr "关闭工程"

#: shell/projectcontroller.cpp:502
msgctxt "@info:tooltip"
msgid "Closes all currently selected projects"
msgstr "关闭全部当前选中的工程"

#: shell/projectcontroller.cpp:507
msgid "Open Configuration..."
msgstr "打开配置..."

#: shell/projectcontroller.cpp:513
msgid "Commit Current Project..."
msgstr "提交当前工程..."

#: shell/projectcontroller.cpp:514 vcs/vcspluginhelper.cpp:102
msgid "Commit..."
msgstr "提交..."

#: shell/projectcontroller.cpp:524
msgid "Open Recent"
msgstr "打开最近的工程"

#: shell/projectcontroller.cpp:525
msgctxt "@info:tooltip"
msgid "Open recent project"
msgstr "打开最近的工程"

#: shell/projectcontroller.cpp:527
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Open recent project</b><p>Opens recently opened project.</p>"
msgstr "<b>打开最近的工程</b><p>打开最近使用过的工程。</p>"

#: shell/projectcontroller.cpp:532
msgid "Open Project for Current File"
msgstr "关闭当前文件的工程"

#: shell/projectcontroller.cpp:648
#, kde-format
msgid "Project already open: %1"
msgstr "工程已经打开:%1"

#: shell/projectcontroller.cpp:651
msgid "No active document"
msgstr "无活动的文档"

#: shell/projectcontroller.cpp:697
#, kde-format
msgid ""
"The project you are opening is part of the session %1, do you want to open "
"the session instead?"
msgstr "您正打开的工程是会话 %1 的一部分,您想要转而打开会话吗?"

#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (QLineEdit, nameEdit)
#: shell/projectinfopage.ui:16 shell/projectinfopage.ui:26
msgid "Provide a name for the project"
msgstr "提供工程的名称"

#. i18n: ectx: property (text), widget (QLabel, label)
#: shell/projectinfopage.ui:19
msgid "Name:"
msgstr "名称:"

#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. i18n: ectx: property (toolTip), widget (QComboBox, managerCombo)
#: shell/projectinfopage.ui:33 shell/projectinfopage.ui:43
msgid "Select the Management Plugin to use for this project"
msgstr "选择用于此工程的管理器插件"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: shell/projectinfopage.ui:36
msgid "Build System:"
msgstr "构建系统:"

#: shell/projectsourcepage.cpp:40
msgid "Do not obtain"
msgstr "不获取"

#: shell/projectsourcepage.cpp:148
#, kde-format
msgid "Could not create the directory: %1"
msgstr "无法创建目录:%1"

#: shell/projectsourcepage.cpp:177
#, kde-format
msgctxt "Format of the progress bar text. progress and info"
msgid "%1 : %p%"
msgstr "%1:%p%"

#: shell/projectsourcepage.cpp:220
msgid ""
"You need to specify a valid or nonexistent directory to check out a project"
msgstr "您需要指定有效的或不存在的目录以检出工程"

#: shell/projectsourcepage.cpp:222
#, fuzzy
#| msgid "You need to specify a valid location for the project"
msgid "You need to specify a valid project location"
msgstr "您需要指定有效的工程位置"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: shell/projectsourcepage.ui:25
#, fuzzy
#| msgid "Source"
msgid "Source:"
msgstr "源代码"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: shell/projectsourcepage.ui:37
msgid "Destination"
msgstr "目标"

#. i18n: ectx: property (text), widget (QLabel, label)
#: shell/projectsourcepage.ui:43
msgid "Working Directory:"
msgstr "工作目录:"

#. i18n: ectx: property (clickMessage), widget (KUrlRequester, workingDir)
#: shell/projectsourcepage.ui:50
msgid "Select the directory to use..."
msgstr "设定要使用的目录..."

#. i18n: ectx: property (text), widget (QPushButton, get)
#: shell/projectsourcepage.ui:80
msgid "Get"
msgstr "获取"

#: shell/runcontroller.cpp:88
msgid "Profile"
msgstr "优化"

#: shell/runcontroller.cpp:97
msgid "Execute"
msgstr "可执行文件"

#: shell/runcontroller.cpp:399
#, kde-format
msgid "The current launch configuration does not support the '%1' mode."
msgstr "当前的启动配置不支持“%1”模式。"

#: shell/runcontroller.cpp:416
msgid "Configure Launches..."
msgstr "配置启动器..."

#: shell/runcontroller.cpp:418
msgid "Open Launch Configuration Dialog"
msgstr "打开启动器配置对话框..."

#: shell/runcontroller.cpp:419
msgctxt "@info:tooltip"
msgid "Open Launch Configuration Dialog"
msgstr "打开启动器配置对话框"

#: shell/runcontroller.cpp:420
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<p>Opens a dialog to setup new launch configurations, or to change the "
"existing ones.</p>"
msgstr "<b>当前目标</b><p>选择调用运行时要运行的目标。</p>"

#: shell/runcontroller.cpp:423
msgid "Execute Launch"
msgstr "执行启动"

#: shell/runcontroller.cpp:424
msgctxt "Short text for 'Execute Launch' used in the toolbar"
msgid "Execute"
msgstr "可执行文件"

#: shell/runcontroller.cpp:426
#, fuzzy
msgctxt "@info:tooltip"
msgid "Execute current Launch"
msgstr "执行当前启动"

#: shell/runcontroller.cpp:427
msgid "Execute current Launch"
msgstr "执行当前启动"

#: shell/runcontroller.cpp:428
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<b>Execute Launch</b><p>Executes the target or the program specified in "
"currently active launch configuration.</p>"
msgstr ""
"<b>执行程序</b><p>执行当前活动的目标或工程设置<b>运行选项</b>标签中所指定的主"
"程序。</p>"

#: shell/runcontroller.cpp:432
msgid "Debug Launch"
msgstr "调试启动"

#: shell/runcontroller.cpp:434
msgctxt "Short text for 'Debug Launch' used in the toolbar"
msgid "Debug"
msgstr "调试"

#: shell/runcontroller.cpp:435
#, fuzzy
msgctxt "@info:tooltip"
msgid "Debug current Launch"
msgstr "调试当前启动"

#: shell/runcontroller.cpp:436
msgid "Debug current Launch"
msgstr "调试当前启动"

#: shell/runcontroller.cpp:437
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<b>Debug Launch</b><p>Executes the target or the program specified in "
"currently active launch configuration inside a Debugger.</p>"
msgstr ""
"<b>执行程序</b><p>执行当前活动的目标或工程设置<b>运行选项</b>标签中所指定的主"
"程序。</p>"

#: shell/runcontroller.cpp:441
msgid "Profile Launch"
msgstr "优化启动"

#: shell/runcontroller.cpp:442
#, fuzzy
msgctxt "@info:tooltip"
msgid "Profile current Launch"
msgstr "优化当前启动"

#: shell/runcontroller.cpp:443
msgid "Profile current Launch"
msgstr "优化当前启动"

#: shell/runcontroller.cpp:444
#, fuzzy
msgctxt "@info:whatsthis"
msgid ""
"<b>Profile Launch</b><p>Executes the target or the program specified in "
"currently active launch configuration inside a Profiler.</p>"
msgstr ""
"<b>执行程序</b><p>执行当前活动的目标或工程设置<b>运行选项</b>标签中所指定的主"
"程序。</p>"

#: shell/runcontroller.cpp:448
#, fuzzy
#| msgid "Stop Jobs"
msgid "Stop All Jobs"
msgstr "停止作业"

#: shell/runcontroller.cpp:449
msgctxt "Short text for 'Stop All Jobs' used in the toolbar"
msgid "Stop All"
msgstr "全部停止"

#: shell/runcontroller.cpp:452
msgctxt "@info:tooltip"
msgid "Stop all currently running jobs"
msgstr "停止全部当前运行的作业"

#: shell/runcontroller.cpp:453
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Stop All Jobs</b><p>Requests that all running jobs are stopped.</p>"
msgstr "<b>停止作业</b><p>请求停止全部运行中的作业。</p>"

#: shell/runcontroller.cpp:458
msgid "Stop"
msgstr "停止"

#: shell/runcontroller.cpp:459
msgctxt "Short text for 'Stop' used in the toolbar"
msgid "Stop"
msgstr "停止"

#: shell/runcontroller.cpp:460
msgctxt "@info:tooltip"
msgid "Menu allowing to stop individual jobs"
msgstr ""

#: shell/runcontroller.cpp:461
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<b>Stop</b><p>List of Jobs that can be stopped individually.</p>"
msgstr "<b>停止作业</b><p>请求停止全部运行中的作业。</p>"

#: shell/runcontroller.cpp:465 shell/runcontroller.cpp:467
msgid "Current Launch Configuration"
msgstr "当前启动配置"

#: shell/runcontroller.cpp:466
#, fuzzy
msgctxt "@info:tooltip"
msgid "Current Launch Configuration"
msgstr "当前启动配置"

#: shell/runcontroller.cpp:468
#, fuzzy
msgctxt "@info:whatsthis"
msgid "<p>Select which launch configuration to run when run is invoked.</p>"
msgstr "<b>当前目标</b><p>选择调用运行时要运行的目标。</p>"

#: shell/runcontroller.cpp:557
#, kde-format
msgid "<%1> Unnamed job"
msgstr "<%1> 未命名作业"

#: shell/runcontroller.cpp:659
msgid "Process Error"
msgstr "进程错误"

#: shell/runcontroller.cpp:885
#, kde-format
msgid "New %1 Launcher"
msgstr "新建 %1 启动器"

#: shell/runcontroller.cpp:922
#, kde-format
msgid "%1 As..."
msgstr ""

#: shell/savedialog.cpp:55
msgid "Save Modified Files?"
msgstr "保存修改的文件?"

#: shell/savedialog.cpp:65
msgid "The following files have been modified. Save them?"
msgstr "下列文件已被修改。保存它们吗?"

#: shell/savedialog.cpp:73
msgid "Save &Selected"
msgstr "保存所选(&S)"

#: shell/savedialog.cpp:73
msgctxt "@info:tooltip"
msgid "Saves all selected files"
msgstr "保存全部选中文件"

#: shell/savedialog.cpp:74
msgid "Save &None"
msgstr "不保存(&N)"

#: shell/savedialog.cpp:75
msgid "Discard all modifications"
msgstr "丢弃全部修改"

#: shell/session.cpp:166
msgid "(no projects)"
msgstr "(无工程)"

#: shell/sessioncontroller.cpp:194
msgid ""
"The current session and all contained settings will be deleted. The projects "
"will stay unaffected. Do you really want to continue?"
msgstr ""

#: shell/sessioncontroller.cpp:206
msgid "Rename Session"
msgstr "重命名会话"

#: shell/sessioncontroller.cpp:210
msgid "New Session Name"
msgstr "新建会话名称"

#: shell/sessioncontroller.cpp:418
msgid "Recover"
msgstr "恢复"

#: shell/sessioncontroller.cpp:422
#, kde-format
msgctxt "%1: date of the last snapshot"
msgid ""
"The session crashed the last time it was used. The following modified files "
"can be recovered from a backup from %1."
msgstr ""

#: shell/sessioncontroller.cpp:424
msgid "Crash Recovery"
msgstr "崩溃恢复"

#: shell/sessioncontroller.cpp:454
#, kde-format
msgid "Could not recover %1, the recovery file is empty"
msgstr "无法恢复 %1,恢复文件为空"

#: shell/sessioncontroller.cpp:454
msgid "Recovery"
msgstr "恢复"

#: shell/sessioncontroller.cpp:563
#, kde-format
msgid ""
"Failed to write recovery copies to %1. Please make sure that your home "
"directory is writable and not full. This application requires available "
"space in the home directory to run stable. You may experience application "
"crashes until you free up some space."
msgstr ""

#: shell/sessioncontroller.cpp:564
msgid "Recovery Error"
msgstr "恢复错误"

#: shell/sessioncontroller.cpp:609
msgctxt "@action:inmenu"
msgid "Start New Session"
msgstr "启动新会话"

#: shell/sessioncontroller.cpp:610
msgctxt "@info:tooltip"
msgid "Start a new KDevelop instance with an empty session"
msgstr "以空会话启动新的 KDevelop 实例"

#: shell/sessioncontroller.cpp:614
msgid "Rename Current Session..."
msgstr "重命名当前会话..."

#: shell/sessioncontroller.cpp:618
msgid "Delete Current Session..."
msgstr "删除当前会话..."

#: shell/sessioncontroller.cpp:622
msgid "Quit"
msgstr "退出"

#: shell/sessioncontroller.cpp:628
msgid "Configure Sessions..."
msgstr "配置会话..."

#: shell/sessioncontroller.cpp:629
msgid "Create/Delete/Activate Sessions"
msgstr "创建/删除/激活会话"

#: shell/sessioncontroller.cpp:630
msgid ""
"<b>Configure Sessions</b><p>Shows a dialog to Create/Delete Sessions and set "
"a new active session.</p>"
msgstr "<b>配置会话</b><p>显示对话框以创建/删除会话并设定新的活动会话。</p>"

#: shell/sessioncontroller.cpp:799
#, kde-format
msgid "Copy of %1"
msgstr "%1 的副本"

#: shell/sessioncontroller.cpp:931
msgctxt "@info"
msgid "Delete session"
msgstr "删除会话"

#: shell/sessioncontroller.cpp:944
msgid "Pick a session"
msgstr "选择会话"

#: shell/sessioncontroller.cpp:946
msgid "Run"
msgstr "运行"

#: shell/sessioncontroller.cpp:978
#, kde-format
msgid ""
"Active session.\n"
"pid %1, app %2, host %3"
msgstr ""

#: shell/sessioncontroller.cpp:979
msgid "Running"
msgstr "正在运行"

#: shell/sessioncontroller.cpp:998
msgid "Search"
msgstr "搜索"

#: shell/sessioncontroller.cpp:1021
msgid "Identity"
msgstr "标识"

#: shell/sessioncontroller.cpp:1022
msgid "Contents"
msgstr "内容"

#: shell/sessioncontroller.cpp:1029
msgid "Filter:"
msgstr "过滤:"

#: shell/sessioncontroller.cpp:1069
msgid "Create New Session"
msgstr "创建新会话"

#: shell/sessioncontroller.cpp:1118
msgctxt "@info"
msgid "The session lock-file is stale."
msgstr ""

#: shell/sessioncontroller.cpp:1122
msgctxt "@info"
msgid "Error while taking the session lock-file."
msgstr ""

#: shell/sessioncontroller.cpp:1126
#, fuzzy
msgctxt "@info"
msgid "The session lock-file is owned."
msgstr "修订版"

#: shell/sessioncontroller.cpp:1148
#, kde-format
msgctxt "@info:shell"
msgid "made running %1 instance (PID: %2) visible"
msgstr ""

#: shell/sessioncontroller.cpp:1151
#, kde-format
msgctxt "@info:shell"
msgid "running %1 instance (PID: %2) is apparently hung"
msgstr ""

#: shell/sessioncontroller.cpp:1155
msgctxt "@info"
msgid ""
"The given application did not respond to a DBUS call, it may have crashed or "
"is hanging."
msgstr ""

#: shell/sessioncontroller.cpp:1161
#, kde-format
msgctxt "@info"
msgid ""
"Failed to lock the session <em>%1</em>, already locked by %2 on %3 (PID %4)."
msgstr ""

#: shell/sessioncontroller.cpp:1165
#, kde-format
msgctxt "@info"
msgid "Failed to lock the session <em>%1</em> (lock-file unavailable)."
msgstr ""

#: shell/sessioncontroller.cpp:1172
#, kde-format
msgctxt "@info %1 is program name"
msgid ""
"<p>Do you want to remove the lock file and force a new %1 instance?<br/"
"><strong>Beware:</strong> Only do this if you are sure there is no running "
"process using this session.</p><p>Otherwise, close the offending application "
"instance or choose another session to launch.</p>"
msgstr ""

#: shell/sessioncontroller.cpp:1180
msgctxt "@info"
msgid ""
"<p>Please, close the offending application instance or choose another "
"session to launch.</p>"
msgstr ""

#: shell/sessioncontroller.cpp:1193
msgctxt "@action:button"
msgid "Remove lock file"
msgstr "删除锁文件"

#: shell/sessioncontroller.cpp:1195
msgctxt "@action:button"
msgid "Retry startup"
msgstr "重新尝试启动"

#: shell/sessioncontroller.cpp:1198
msgctxt "@action:button"
msgid "Choose another session"
msgstr "选择其他会话"

#: shell/sessioncontroller.cpp:1200
#, kde-format
msgctxt "@title:window"
msgid "Failed to Lock Session %1"
msgstr ""

#: shell/sessioncontroller.cpp:1211
#, kde-format
msgctxt "@info"
msgid "The session %1 is already active in another running instance."
msgstr ""

#: shell/sessioncontroller.cpp:1298
msgctxt "@title"
msgid "Cannot Delete Session"
msgstr "无法删除会话"

#: shell/sessioncontroller.cpp:1299
msgctxt "@info"
msgid "<p>Cannot delete a locked session."
msgstr ""

#: shell/sessioncontroller.cpp:1302
#, kde-format
msgctxt "@info"
msgid "<p>The session is locked by %1 on %2 (PID %3)."
msgstr ""

#: shell/sessioncontroller.cpp:1311
msgctxt "@info"
msgid ""
"The session and all contained settings will be deleted. The projects will "
"stay unaffected. Do you really want to continue?"
msgstr ""

#: shell/sessioncontroller.cpp:1312
msgctxt "@title"
msgid "Delete Session"
msgstr "删除会话"

#: shell/sessiondialog.cpp:183
msgid "Configure Sessions"
msgstr "配置会话"

#. i18n: ectx: property (text), widget (QPushButton, newButton)
#. i18n: ectx: property (text), widget (KPushButton, btnNewStyle)
#: shell/sessiondialog.ui:34 shell/settings/sourceformattersettings.ui:181
#: vcs/dvcs/ui/branchmanager.ui:22
msgid "New"
msgstr "新建"

#. i18n: ectx: property (text), widget (QPushButton, cloneButton)
#: shell/sessiondialog.ui:44
msgid "Clone"
msgstr "复制"

#. i18n: ectx: property (text), widget (QPushButton, activateButton)
#: shell/sessiondialog.ui:59
msgid "Make Active"
msgstr "激活"

#: shell/settings/bgpreferences.cpp:40
msgid "Parser Background Settings"
msgstr "后台解析设置"

#. i18n: ectx: property (toolTip), widget (QGroupBox, kcfg_enable)
#: shell/settings/bgsettings.ui:29
msgid ""
"<p>Enables or disables the background parser.<br>If unsure, leave it "
"enabled. Disabling the background parser will disable large parts of "
"KDevelop's functionality.</p>"
msgstr ""

#. i18n: ectx: property (title), widget (QGroupBox, kcfg_enable)
#: shell/settings/bgsettings.ui:32
msgid "Enable Background Parser"
msgstr "启用后台解析"

#. i18n: ectx: property (toolTip), widget (QLabel, label)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_delay)
#: shell/settings/bgsettings.ui:47 shell/settings/bgsettings.ui:63
msgid "The time to wait before the document is re-analyzed when you edit it."
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label)
#: shell/settings/bgsettings.ui:50
msgid "Delay"
msgstr "延迟"

#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_delay)
#: shell/settings/bgsettings.ui:66
msgid " ms"
msgstr " 毫秒"

#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_threads)
#: shell/settings/bgsettings.ui:79 shell/settings/bgsettings.ui:95
msgid ""
"The maximum number of parallel instances the background parser uses. If "
"unsure, select 1 or 2."
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: shell/settings/bgsettings.ui:82
msgid "Maximum Number of Threads"
msgstr "最大线程数"

#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_threads)
#: shell/settings/bgsettings.ui:98
msgid " threads"
msgstr " 线程"

#: shell/settings/ccpreferences.cpp:53
msgid "Language Support Settings"
msgstr "语言支持设置"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: shell/settings/ccsettings.ui:17
msgid "Code Completion"
msgstr "代码补全"

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_automaticInvocation)
#. i18n: ectx: property (toolTip), widget (QLabel, label_6)
#: shell/settings/ccsettings.ui:23 shell/settings/ccsettings.ui:75
msgid "If disabled, the code completion widget will never show automatically."
msgstr ""

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_showMultiLineSelectionInformation)
#: shell/settings/ccsettings.ui:33
msgid ""
"Choose whether to display additional information for the currently selected "
"code completion item."
msgstr ""

#. i18n: ectx: property (toolTip), widget (QComboBox, completionDetail)
#. i18n: ectx: property (toolTip), widget (QLabel, label)
#: shell/settings/ccsettings.ui:43 shell/settings/ccsettings.ui:65
msgid ""
"<p>The code completion UI has a minimal mode and a detailed mode.<br>Choose "
"in what cases full code completion will be displayed.</p>"
msgstr ""

#. i18n: ectx: property (text), item, widget (QComboBox, completionDetail)
#: shell/settings/ccsettings.ui:47
msgid "Never"
msgstr "从不"

#. i18n: ectx: property (text), item, widget (QComboBox, completionDetail)
#: shell/settings/ccsettings.ui:52
msgid "When invoked manually"
msgstr ""

#. i18n: ectx: property (text), item, widget (QComboBox, completionDetail)
#: shell/settings/ccsettings.ui:57
msgid "Always"
msgstr "总是"

#. i18n: ectx: property (text), widget (QLabel, label)
#: shell/settings/ccsettings.ui:68
#, fuzzy
#| msgid "Code Completion"
msgid "Detailed Completion:"
msgstr "代码补全"

#. i18n: ectx: property (text), widget (QLabel, label_6)
#: shell/settings/ccsettings.ui:78
msgid "Enable Automatic Invocation"
msgstr "启用自动调用"

#. i18n: ectx: property (toolTip), widget (QLabel, label_7)
#: shell/settings/ccsettings.ui:85
msgid ""
"Choose whether to display additional information for the currently selected "
"codecompletion item."
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_7)
#: shell/settings/ccsettings.ui:88
msgid "Additional Information For Current Item"
msgstr "当前项目的其它信息"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: shell/settings/ccsettings.ui:98
msgid "Semantic Code Highlighting"
msgstr "语义学代码高亮显示"

#. i18n: ectx: property (toolTip), widget (QLabel, localColorizationLabel)
#. i18n: ectx: property (toolTip), widget (QSlider, kcfg_localColorization)
#: shell/settings/ccsettings.ui:107 shell/settings/ccsettings.ui:120
msgid ""
"<p>This setting decides about the intensity of colors for local variables, "
"for example function arguments, variables and the like.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, localColorizationLabel)
#: shell/settings/ccsettings.ui:110
msgid "Local Colorization Intensity"
msgstr "局部着色强度"

#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_highlightSemanticProblems)
#: shell/settings/ccsettings.ui:142 shell/settings/ccsettings.ui:152
#, fuzzy
#| msgid ""
#| "Highlight semantic problems, such as non-existent or inaccessible "
#| "declarations."
msgid ""
"<p>Highlight semantic problems, such as non-existent or inaccessible "
"declarations.</p>"
msgstr "高亮显示语义学问题,比如不存在或不可访问的声明。"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: shell/settings/ccsettings.ui:145
msgid "Highlight Semantic Problems"
msgstr "高亮显示语义学问题"

#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_highlightProblematicLines)
#: shell/settings/ccsettings.ui:162 shell/settings/ccsettings.ui:172
msgid ""
"<p>When enabled, lines with errors will get additionally highlighted and "
"their positions get marked in the scrollbar.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_5)
#: shell/settings/ccsettings.ui:165
msgid "Highlight Problematic Lines"
msgstr "高亮显示有问题的行"

#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#: shell/settings/ccsettings.ui:182
msgid "Space-separated list of words that make a comment represent a TODO item"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: shell/settings/ccsettings.ui:185
#, fuzzy
#| msgid "Todo marker words"
msgid "TODO Marker Words:"
msgstr "待办记号单词"

#. i18n: ectx: property (toolTip), widget (QLineEdit, todoMarkerWords)
#: shell/settings/ccsettings.ui:192
msgid ""
"Space-separated list of words that make a comment represent a TODO item."
msgstr ""

#. i18n: ectx: property (toolTip), widget (QSlider, kcfg_globalColorization)
#. i18n: ectx: property (toolTip), widget (QLabel, globalColorizationLabel)
#: shell/settings/ccsettings.ui:202 shell/settings/ccsettings.ui:224
msgid ""
"<p>This settings lets you change the intensity of globally accessible types, "
"for example classes, methods, functions etc.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, globalColorizationLabel)
#: shell/settings/ccsettings.ui:227
msgid "Global Colorization Intensity"
msgstr "全局着色强度"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: shell/settings/ccsettings.ui:250
msgid "Project Parsing"
msgstr "工程解析"

#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_minFilesForSimplifiedParsing)
#: shell/settings/ccsettings.ui:260 shell/settings/ccsettings.ui:283
msgid ""
"<p>When a project contains more files than this number, the project will be\n"
"parsed in simplified mode, increasing the efficiency by gathering less "
"information. Global code navigation and quickopen capabilities will be "
"reduced.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: shell/settings/ccsettings.ui:263
msgid "Minimum project size for simplified parsing"
msgstr ""

#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_minFilesForSimplifiedParsing)
#: shell/settings/ccsettings.ui:286
msgid " files"
msgstr " 个文件"

#: shell/settings/editstyledialog.cpp:69
#: shell/settings/sourceformattersettings.cpp:83
msgid ""
"A KDE text-editor component could not be found.\n"
"Please check your KDE installation."
msgstr ""
"无法找到 KDE 文本编辑器组件。\n"
"请检查您的 KDE 安装。"

#: shell/settings/editstyledialog.cpp:102
msgid "No Source Formatter available"
msgstr "没有可用的源代码格式化器"

#. i18n: ectx: property (text), widget (QLabel, lblPreview)
#: shell/settings/editstyledialog.ui:28
msgid "Preview"
msgstr "预览"

#: shell/settings/environmentpreferences.cpp:46
msgid "Environment Settings"
msgstr "环境设置"

#: shell/settings/environmentwidget.cpp:123
msgid "New Environment Variable"
msgstr "新建环境变量"

#: shell/settings/environmentwidget.cpp:130
msgctxt "Name of an environment variable"
msgid "Variable Name:"
msgstr "变量名称:"

#: shell/settings/environmentwidget.cpp:135
msgctxt "Value of an environment variable"
msgid "Variable Value:"
msgstr "变量值:"

#. i18n: ectx: property (text), widget (QLabel, label)
#: shell/settings/environmentwidget.ui:17
msgid "Environment Group"
msgstr "环境组"

#. i18n: ectx: property (text), widget (QPushButton, addgrpBtn)
#: shell/settings/environmentwidget.ui:37
msgid "Add group"
msgstr "添加组"

#. i18n: ectx: property (text), widget (QPushButton, removegrpBtn)
#: shell/settings/environmentwidget.ui:44
msgid "Remove group"
msgstr "删除组"

#. i18n: ectx: property (text), widget (KPushButton, setAsDefaultBtn)
#: shell/settings/environmentwidget.ui:51
msgid "Set As Default Group"
msgstr "设为默认组"

#: shell/settings/pluginpreferences.cpp:40
msgid "Plugin Selection"
msgstr "插件选择"

#: shell/settings/pluginpreferences.cpp:51
#, fuzzy
msgctxt "@title:group"
msgid "Core"
msgstr "代码"

#: shell/settings/pluginpreferences.cpp:52
msgctxt "@title:group"
msgid "Project Management"
msgstr "工程管理"

#: shell/settings/pluginpreferences.cpp:53
msgctxt "@title:group"
msgid "Version Control"
msgstr "版本控制"

#: shell/settings/pluginpreferences.cpp:54
msgctxt "@title:group"
msgid "Utilities"
msgstr "工具"

#: shell/settings/pluginpreferences.cpp:55
msgctxt "@title:group"
msgid "Documentation"
msgstr "文档"

#: shell/settings/pluginpreferences.cpp:56
msgctxt "@title:group"
msgid "Language Support"
msgstr "语言支持"

#: shell/settings/pluginpreferences.cpp:57
msgctxt "@title:group"
msgid "Debugging"
msgstr "调试"

#: shell/settings/pluginpreferences.cpp:58
msgctxt "@title:group"
msgid "Testing"
msgstr "测试"

#: shell/settings/pluginpreferences.cpp:59
msgctxt "@title:group"
msgid "Other"
msgstr "其它"

#. i18n: ectx: label, entry (parseAllProjectSources), group (Project Manager)
#: shell/settings/projectconfig.kcfg:11
msgid ""
"Schedule all project source code to be parsed by the language support in the "
"background"
msgstr ""

#. i18n: ectx: whatsthis, entry (parseAllProjectSources), group (Project Manager)
#: shell/settings/projectconfig.kcfg:15
msgid ""
"If this option is set, KDevelop will schedule all source code\n"
"        found by the current build system for parsing by the appropriate "
"language\n"
"        support part.  This will enable more complete language support, but "
"may\n"
"        be slower."
msgstr ""

#. i18n: ectx: whatsthis, entry (projectsBaseDirectory), group (Project Manager)
#: shell/settings/projectconfig.kcfg:19
msgid "Chooses the base directory where new projects are created."
msgstr "选择创建新工程时的基准目录。"

#. i18n: ectx: label, entry (saveDocuments), group (Project Manager)
#: shell/settings/projectconfig.kcfg:23
msgid "Save all open documents before building anything"
msgstr "在构建前保存全部打开的文档"

#. i18n: ectx: whatsthis, entry (saveDocuments), group (Project Manager)
#: shell/settings/projectconfig.kcfg:24
msgid ""
"If this option is set all open documents will be automatically saved before "
"any build is started."
msgstr ""

#: shell/settings/projectpreferences.cpp:37
msgid "Projects Settings"
msgstr "工程设置"

#. i18n: ectx: property (toolTip), widget (QLabel, label_3)
#. i18n: ectx: property (toolTip), widget (KUrlRequester, kcfg_projectsBaseDirectory)
#: shell/settings/projectsettings.ui:19 shell/settings/projectsettings.ui:32
msgid "Select the base directory where new projects are to be created."
msgstr "设定创建新工程时的基准目录。"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: shell/settings/projectsettings.ui:22
msgid "Projects Base Directory:"
msgstr "工程基准目录:"

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_parseAllProjectSources)
#: shell/settings/projectsettings.ui:44
msgid "Parse all files in a project after the project has been opened."
msgstr "在工程打开后解析工程中的全部文件。"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_parseAllProjectSources)
#: shell/settings/projectsettings.ui:47
#, fuzzy
msgid "Schedule all project files for parsing"
msgstr ""
"调度全部工程\n"
"要解析的文件:"

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_saveDocuments)
#: shell/settings/projectsettings.ui:54
#, fuzzy
#| msgid "Save all open documents before building anything"
msgid "Save all modified documents when the \"build\" action is triggered."
msgstr "在构建前保存全部打开的文档"

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_saveDocuments)
#: shell/settings/projectsettings.ui:57
msgid "Save all documents before building"
msgstr "在构建前保存全部文档"

#: shell/settings/sourceformattersettings.cpp:384
#, kde-format
msgid ""
"The style %1 is also used for the following languages:\n"
"%2.\n"
"Are you sure you want to delete it?"
msgstr ""

#: shell/settings/sourceformattersettings.cpp:385
msgid "Style being deleted"
msgstr ""

#: shell/settings/sourceformattersettings.cpp:437
#, kde-format
msgid "New %1"
msgstr "新建 %1"

#: shell/settings/sourceformattersettings.cpp:440
msgid "New Style"
msgstr "新建样式"

#: shell/settings/sourceformattersettings.cpp:519
msgid "No Language selected"
msgstr "未选择语言"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: shell/settings/sourceformattersettings.ui:17
msgid "General"
msgstr "常规"

#. i18n: ectx: property (toolTip), widget (QCheckBox, chkKateOverrideIndentation)
#: shell/settings/sourceformattersettings.ui:23
msgid ""
"Override the editor indentation mode according to the formatting style for "
"documents without Kate modeline."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, chkKateOverrideIndentation)
#: shell/settings/sourceformattersettings.ui:26
msgid "Override Kate Indentation Mode"
msgstr "覆盖 Kate 缩进模式"

#. i18n: ectx: property (toolTip), widget (QCheckBox, chkKateModelines)
#: shell/settings/sourceformattersettings.ui:33
msgid ""
"Add a Kate modeline according to the formatting style to formatted documents."
msgstr "向已格式化的文档依照格式化样式添加 Kate 模式行。"

#. i18n: ectx: property (text), widget (QCheckBox, chkKateModelines)
#: shell/settings/sourceformattersettings.ui:36
msgid "Add Kate Modeline"
msgstr "添加 Kate 模式行"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: shell/settings/sourceformattersettings.ui:58
msgid "Formatting Styles"
msgstr "格式化样式"

#. i18n: ectx: property (text), widget (QLabel, label)
#: shell/settings/sourceformattersettings.ui:64
msgid "Language:"
msgstr "语言:"

#. i18n: ectx: property (text), widget (QLabel, previewLabel)
#: shell/settings/sourceformattersettings.ui:118
msgid "Preview:"
msgstr "预览:"

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: shell/settings/sourceformattersettings.ui:143
msgid "Formatter:"
msgstr "格式化:"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: shell/settings/sourceformattersettings.ui:163
msgid "Style:"
msgstr "样式:"

#. i18n: ectx: property (text), widget (KPushButton, btnEditStyle)
#: shell/settings/sourceformattersettings.ui:188
msgid "Edit..."
msgstr "编辑..."

#. i18n: ectx: property (windowTitle), widget (QWidget, UiConfig)
#: shell/settings/uiconfig.ui:14
msgid "User Interface"
msgstr "用户界面"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: shell/settings/uiconfig.ui:20
msgid "Dock Window Behavior"
msgstr "停靠窗口行为"

#. i18n: ectx: property (toolTip), widget (QLabel, label_4)
#. i18n: ectx: property (toolTip), widget (QComboBox, kcfg_BottomLeftCornerOwner)
#: shell/settings/uiconfig.ui:26 shell/settings/uiconfig.ui:52
msgid ""
"<p>Controls whether the bottom left corner is occupied by the dock at the "
"left, or by the dock at the bottom.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_4)
#: shell/settings/uiconfig.ui:29
msgid "Bottom left corner occupied by:"
msgstr ""

#. i18n: ectx: property (toolTip), widget (QLabel, label_5)
#. i18n: ectx: property (toolTip), widget (QComboBox, kcfg_BottomRightCornerOwner)
#: shell/settings/uiconfig.ui:36 shell/settings/uiconfig.ui:75
msgid ""
"<p>Controls whether the bottom right corner is occupied by the dock at the "
"right, or by the dock at the bottom.</p>"
msgstr ""

#. i18n: ectx: property (text), widget (QLabel, label_5)
#: shell/settings/uiconfig.ui:39
msgid "Bottom right corner occupied by:"
msgstr ""

#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_BottomLeftCornerOwner)
#: shell/settings/uiconfig.ui:56
msgid "Left Dock"
msgstr "左侧停靠面板"

#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_BottomLeftCornerOwner)
#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_BottomRightCornerOwner)
#: shell/settings/uiconfig.ui:61 shell/settings/uiconfig.ui:84
msgid "Bottom Dock"
msgstr "底部停靠面板"

#. i18n: ectx: property (text), item, widget (QComboBox, kcfg_BottomRightCornerOwner)
#: shell/settings/uiconfig.ui:79
msgid "Right Dock"
msgstr "右侧停靠面板"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: shell/settings/uiconfig.ui:108
msgid "Tabbed Browsing"
msgstr "标签页浏览"

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_TabBarVisibility)
#: shell/settings/uiconfig.ui:114
msgid ""
"Enables or disables the display of the tab bar at the top of the editor "
"window."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarVisibility)
#: shell/settings/uiconfig.ui:117
msgid "Show tabs"
msgstr "显示标签页"

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_TabBarOpenAfterCurrent)
#: shell/settings/uiconfig.ui:127
msgid "Controls whether to open new tabs next to the active one."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarOpenAfterCurrent)
#: shell/settings/uiconfig.ui:130
msgid "Open new tab after current"
msgstr "在当前页之后新建标签页"

#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_TabBarArrangeBuddies)
#: shell/settings/uiconfig.ui:141
msgid ""
"When enabled, plugins can group related files side by side.\n"
"For example, a header file will be opened next to the implementation file."
msgstr ""

#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TabBarArrangeBuddies)
#: shell/settings/uiconfig.ui:144
msgid "Arrange related documents side by side"
msgstr ""

#: shell/settings/uipreferences.cpp:38
msgid "User Interface Settings"
msgstr "用户界面设置"

#: shell/sourceformattercontroller.cpp:73
msgid "&Reformat Source"
msgstr "重新格式化源代码(&R)"

#: shell/sourceformattercontroller.cpp:74
msgid "Reformat source using AStyle"
msgstr "使用 AStyle 重新格式化源代码"

#: shell/sourceformattercontroller.cpp:75
msgid ""
"<b>Reformat source</b><p>Source reformatting functionality using <b>astyle</"
"b> library.</p>"
msgstr ""
"<b>重新格式化源代码</b><p>使用 <b>astyle</b> 库的功能重新格式化源代码。</p>"

#: shell/sourceformattercontroller.cpp:80
msgid "Reformat Line"
msgstr "重新格式化行"

#: shell/sourceformattercontroller.cpp:81
msgid "Reformat current line using AStyle"
msgstr "使用 AStyle 重新格式化当前行"

#: shell/sourceformattercontroller.cpp:82
msgid ""
"<b>Reformat line</b><p>Source reformatting of line under cursor using "
"<b>astyle</b> library.</p>"
msgstr "<b>重新格式化行</b><p>使用 <b>astyle</b> 库重新格式化光标处的行。</p>"

#: shell/sourceformattercontroller.cpp:87
msgid "Format Files"
msgstr "格式化文件"

#: shell/sourceformattercontroller.cpp:88
msgid "Format file(s) using the current theme"
msgstr "使用当前主题格式化文件"

#: shell/sourceformattercontroller.cpp:89
#, fuzzy
msgid ""
"<b>Format Files</b><p>Formatting functionality using <b>astyle</b> library.</"
"p>"
msgstr "<b>格式化文件</b><p>使用 <b>astyle</b> 库的功能格式化。</p>"

#: shell/sourceformattercontroller.cpp:514
#, kde-format
msgid "Unable to read %1"
msgstr "无法读取 %1"

#: shell/sourceformattercontroller.cpp:522
#, kde-format
msgid "Unable to write to %1"
msgstr "无法写入 %1"

#: shell/textdocument.cpp:473
msgctxt "@title:window"
msgid "Close Document"
msgstr "关闭文档"

#: shell/textdocument.cpp:485
#, kde-format
msgid ""
"The file \"%1\" is modified on disk.\n"
"\n"
"Are you sure you want to overwrite it? (External changes will be lost.)"
msgstr ""
"文件“%1”在磁盘上被修改。\n"
"\n"
"您确定想要覆盖它吗?(外部修改会丢失。)"

#: shell/textdocument.cpp:488
msgctxt "@title:window"
msgid "Document Externally Modified"
msgstr "文档已在外部修改"

#: shell/textdocument.cpp:785
#, kde-format
msgid " Line: %1 Col: %2 "
msgstr " 行:%1 列:%2 "

#: shell/uicontroller.cpp:99
msgid "Review"
msgstr "审阅"

#: shell/uicontroller.cpp:234
msgid "Area Switcher"
msgstr ""

#: shell/uicontroller.cpp:411
msgid "Select Tool View to Add"
msgstr "选择要添加的工具视图"

#: shell/workingsets/workingsettoolbutton.cpp:101
msgid "Close Working Set (Left Click)"
msgstr "关闭工作集(左键点击)"

#: shell/workingsets/workingsettoolbutton.cpp:102
msgid "Duplicate Working Set"
msgstr "复制工作集"

#: shell/workingsets/workingsettoolbutton.cpp:104
msgid "Load Working Set (Left Click)"
msgstr "装入工作集(左键点击)"

#: shell/workingsets/workingsettoolbutton.cpp:114
msgid "Delete Working Set"
msgstr "删除工作集"

#: shell/workingsets/workingsettooltipwidget.cpp:74
msgid "<b>Working Set</b>"
msgstr "<b>装入工作集</b>"

#: shell/workingsets/workingsettooltipwidget.cpp:90
msgid "Remove this working set. The contained documents are not affected."
msgstr "删除此工作集。包含的文档不受影响。"

#: shell/workingsets/workingsettooltipwidget.cpp:116
msgid "Documents:"
msgstr "文档:"

#: shell/workingsets/workingsettooltipwidget.cpp:124
msgid "Add All"
msgstr "全部添加"

#: shell/workingsets/workingsettooltipwidget.cpp:125
msgid ""
"Add all documents that are part of this working set to the currently active "
"working set."
msgstr "将此属于工作集的全部文档添加到当前活动的工作集。"

#: shell/workingsets/workingsettooltipwidget.cpp:132
msgid "Subtract All"
msgstr "全部删除"

#: shell/workingsets/workingsettooltipwidget.cpp:133
msgid ""
"Remove all documents that are part of this working set from the currently "
"active working set."
msgstr "从当前活动的工作集中删除全部属于工作集的文档。"

#: shell/workingsets/workingsettooltipwidget.cpp:165
msgctxt "@info:tooltip"
msgid "Click to open and activate this document."
msgstr "点击以打开并激活此文档。 "

#: shell/workingsets/workingsettooltipwidget.cpp:276
msgid "Remove this file from the current working set"
msgstr "从当前工作集中删除此文件"

#: shell/workingsets/workingsettooltipwidget.cpp:281
msgid "Add this file to the current working set"
msgstr "将此文件添加到当前工作集"

#: shell/workingsets/workingsettooltipwidget.cpp:315
msgid "Load"
msgstr "装入"

#: sublime/container.cpp:190
msgid "Line: 00000 Col: 000"
msgstr "行:00000 列:000"

#: sublime/container.cpp:217
#, fuzzy
#| msgid "Close all open documents"
msgid "Show sorted list of opened documents"
msgstr "关闭全部打开的文档"

#: sublime/container.cpp:515
msgid "Close Other Files"
msgstr "关闭其它文件"

#: sublime/container.cpp:516
msgid "Close All Files"
msgstr "关闭全部文件"

#: sublime/examples/example1.cpp:29
msgid "Example 1"
msgstr "示例 1"

#: sublime/examples/example1.cpp:31 sublime/examples/example2.cpp:36
msgid "(c) 2007, Alexander Dymo"
msgstr "(c) 2007,Alexander Dymo"

#: sublime/examples/example2.cpp:34
msgid "Example 2"
msgstr "示例 2"

#: sublime/ideal.cpp:162
msgctxt "@info:tooltip"
msgid "Right click to add new tool views."
msgstr "右键点击以添加工具视图。"

#: sublime/ideal.cpp:301
#, kde-format
msgid "Toggle '%1' tool view."
msgstr "切换“%1”工具视图。"

#: sublime/ideal.cpp:444
msgid "Toolview Position"
msgstr "工具视图位置"

#: sublime/ideal.cpp:448
msgctxt "toolview position"
msgid "Left"
msgstr "左侧"

#: sublime/ideal.cpp:449
msgctxt "toolview position"
msgid "Bottom"
msgstr "底部"

#: sublime/ideal.cpp:450
msgctxt "toolview position"
msgid "Right"
msgstr "右侧"

#: sublime/ideal.cpp:451
msgctxt "toolview position"
msgid "Top"
msgstr "顶部"

#: sublime/ideal.cpp:474
msgid "Assign Shortcut..."
msgstr "指派快捷键..."

#: sublime/ideal.cpp:475
msgid "Use this shortcut to trigger visibility of the toolview."
msgstr "使用此快捷键切换工具视图的可见性。"

#: sublime/ideal.cpp:478
msgid "Remove Toolview"
msgstr "删除工具视图"

#: sublime/ideal.cpp:489
#, kde-format
msgid "Assign Shortcut For '%1' Tool View"
msgstr "为“%1”工具视图指派快捷键"

#: sublime/ideal.cpp:609
#, kde-format
msgid "%1 Tool Bar"
msgstr "%1工具栏"

#: sublime/mainwindow_p.cpp:98
msgid "Show Left Dock"
msgstr "显示左侧停靠面板"

#: sublime/mainwindow_p.cpp:104
msgid "Show Right Dock"
msgstr "显示右侧停靠面板"

#: sublime/mainwindow_p.cpp:110
msgid "Show Bottom Dock"
msgstr "显示底部停靠面板"

#: sublime/mainwindow_p.cpp:116
msgctxt "@action"
msgid "Focus Editor"
msgstr "聚焦编辑器"

#: sublime/mainwindow_p.cpp:121
msgid "Hide/Restore Docks"
msgstr "隐藏/还原停靠面板"

#: sublime/mainwindow_p.cpp:126
msgid "Next Tool View"
msgstr "下个工具视图"

#: sublime/mainwindow_p.cpp:131
msgid "Previous Tool View"
msgstr "上个工具视图"

#: sublime/mainwindow_p.cpp:136
msgid "Tool Views"
msgstr "工具视图"

#: sublime/mainwindow_p.cpp:141
msgid "Left Button Bar"
msgstr "左侧按钮栏"

#: sublime/mainwindow_p.cpp:145
msgid "Right Button Bar"
msgstr "右侧按钮栏"

#: sublime/mainwindow_p.cpp:149
msgid "Bottom Button Bar"
msgstr "底部按钮栏"

#: util/duchainify/main.cpp:220
msgid "duchainify"
msgstr ""

#: util/duchainify/main.cpp:221
#, fuzzy
msgid "Duchain builder application"
msgstr "中断应用程序"

#: util/duchainify/main.cpp:222
msgid "(c) 2009 David Nolden"
msgstr "(c) 2009 David Nolden"

#: util/duchainify/main.cpp:225
msgid "directory"
msgstr "目录"

#: util/duchainify/main.cpp:227
msgid "Show warnings"
msgstr "显示警告"

#: util/duchainify/main.cpp:228
msgid "Show warnings and debug output"
msgstr "显示警告和调试输出"

#: util/duchainify/main.cpp:229
msgid "Enforce an update of the top-contexts corresponding to the given files"
msgstr ""

#: util/duchainify/main.cpp:230
msgid ""
"Enforce an update of the top-contexts corresponding to the given files and "
"all included files"
msgstr ""

#: util/duchainify/main.cpp:231
msgid "Number of threads to use"
msgstr "要使用的线程数"

#: util/duchainify/main.cpp:232
msgid ""
"Features to build. Options: empty, simplified-visible-declarations, visible-"
"declarations (default), all-declarations, all-declarations-and-uses, all-"
"declarations-and-uses-and-AST"
msgstr ""

#: util/duchainify/main.cpp:233
msgid "Print problems encountered during parsing"
msgstr "显示解释过程中产生的问题"

#: util/environmentconfigurebutton.cpp:85
#, fuzzy
msgid "configure environment variables"
msgstr "新建环境变量"

#: util/projecttestjob.cpp:34
#, kde-format
msgid "Run all tests in %1"
msgstr ""

#: util/sequentiallyrunjobs.cpp:36
#, kde-format
msgid "'%1' + '%2'"
msgstr ""

#: util/ssh_client/main.cpp:74
msgid "Simple KDE ssh client provider"
msgstr "简单 KDE ssh 客户端提供器"

#: util/ssh_client/main.cpp:76
msgid ""
"Displays a KDE Password Dialog and establishes an ssh connection using "
"libssh. After connecting it executes 'svnserve -t' to provide tunneling."
msgstr ""

#: util/ssh_client/main.cpp:78
msgid "(c) 2009"
msgstr "(c) 2009"

#: util/ssh_client/main.cpp:79
msgid ""
"Use this client instead of standard ssh when using subversion to provide a "
"KDE Password Dialog instead of a command-line ssh password prompt."
msgstr ""

#: util/ssh_client/main.cpp:88
msgid "Hostname to connect"
msgstr "要连接的主机"

#: util/ssh_client/main.cpp:89
msgid "Subversion command to call"
msgstr "要调用的 Subversion 命令"

#: util/ssh_client/main.cpp:90
msgid "svnserve option"
msgstr "svnserve 选项"

#: util/ssh_client/main.cpp:117
msgid "Cannot create socket, operation aborted."
msgstr "无法创建套接字,操作中断。"

#: util/ssh_client/main.cpp:126
msgid "Get host by name failed, operation aborted."
msgstr "按名称获取主机失败,操作中断。"

#: util/ssh_client/main.cpp:134
msgid "Cannot connect to host, operation aborted."
msgstr "无法连接到主机,操作中断。"

#: util/ssh_client/main.cpp:142
msgid "Cannot start an ssh session, operation aborted."
msgstr "无法启动 ssh 会话,操作中断。"

#: util/ssh_client/main.cpp:147
msgid "SSH connection failed, operation aborted."
msgstr "SSH 连接失败,操作中断。"

#: util/ssh_client/main.cpp:154
msgid ""
"Server does not support any authentication methods for the user, operation "
"aborted."
msgstr "服务器不支持任何对用户的认证方式,操作中断。"

#: util/ssh_client/main.cpp:169
msgid "ssh auth"
msgstr "ssh 认证"

#: util/ssh_client/main.cpp:193
msgid ""
"Unsupported authentication type, could possibly be a bug. Operation aborted."
msgstr "不支持的认证类型,可能是个错误。操作中断。"

#: util/ssh_client/main.cpp:199
msgid "Authentication failed, operation aborted."
msgstr "认证失败,操作中断。"

#: util/ssh_client/main.cpp:206
msgid "Cannot open ssh channel, operation aborted."
msgstr "无法打开 ssh 隧道,操作中断。"

#: util/ssh_client/main.cpp:212
msgid "Failed to launch 'svnserve -t', operation aborted."
msgstr "启动“svnserve -t”失败,操作中断。"

#: util/ssh_client/main.cpp:224
msgid "Cannot set non-blocking mode for stdin, operation aborted."
msgstr "无法对标准输入设定非屏蔽模式,操作中断。"

#: util/ssh_client/main.h:47
msgid "&Username:"
msgstr "用户名(&U):"

#: util/ssh_client/main.h:52
msgid "&Password or passphrase:"
msgstr "密码或密码句(&P):"

#: util/ssh_client/main.h:56
msgid "Publi&c key:"
msgstr "公钥(&C):"

#: util/ssh_client/main.h:60
msgid "P&rivate key:"
msgstr "私钥(&R):"

#: util/ssh_client/main.h:65
msgid "Password auth"
msgstr "密码认证"

#: util/ssh_client/main.h:67
msgid "Public key auth"
msgstr "公钥认证"

#: util/ssh_client/main.h:69
msgid "No auth type supported by server"
msgstr "没有服务器支持的认证类型"

#: util/ssh_client/main.h:83
msgid "Select keys"
msgstr "选择密钥"

#: vcs/dvcs/dvcsjob.cpp:155
#, kde-format
msgid "Working Directory does not exist: %1"
msgstr "工作目录不存在:%1"

#: vcs/dvcs/dvcsjob.cpp:164
#, kde-format
msgid "Working Directory is not absolute: %1"
msgstr "工作目录不是绝对路径:%1"

#: vcs/dvcs/dvcsjob.cpp:205
#, kde-format
msgid "Process exited with status %1"
msgstr "进程以状态 %1 退出"

#: vcs/dvcs/dvcsjob.cpp:236
#, kde-format
msgid "Command finished with error %1."
msgstr "命令以错误 %1 退出。"

#: vcs/dvcs/dvcsjob.cpp:255
#, kde-format
msgid "Command exited with value %1."
msgstr "命令以值 %1 退出。"

#: vcs/dvcs/dvcsplugin.cpp:125
msgid "Push"
msgstr "推送"

#: vcs/dvcs/dvcsplugin.cpp:126
msgid "Pull"
msgstr "拉"

#: vcs/dvcs/dvcsplugin.cpp:127
msgid "Branches..."
msgstr "分支..."

#: vcs/dvcs/dvcsplugin.cpp:128
#, fuzzy
msgid "Revision Graph..."
msgstr "修订版历史"

#: vcs/dvcs/dvcsplugin.cpp:190
msgid "Could not show the Branch Manager, current branch is unavailable."
msgstr "无法显示分支管理器,当前分支不可用。"

#: vcs/dvcs/ui/branchmanager.cpp:79
msgid ""
"You must select a base branch from the list before creating a new branch."
msgstr "您必须在创建新分支前从列表中选择基准分支。"

#: vcs/dvcs/ui/branchmanager.cpp:84
msgid "New branch"
msgstr "新建分支"

#: vcs/dvcs/ui/branchmanager.cpp:84
msgid "Name of the new branch:"
msgstr "新分支名称:"

#: vcs/dvcs/ui/branchmanager.cpp:92
#, kde-format
msgid ""
"Branch \"%1\" already exists.\n"
"Please, choose another name."
msgstr ""
"分支“%1”已存在。\n"
"请使用其它名称。"

#: vcs/dvcs/ui/branchmanager.cpp:107
#, kde-format
msgid ""
"Currently at the branch \"%1\".\n"
"To remove it, please change to another branch."
msgstr ""
"目前处在分支“%1”上。\n"
"要删除它的话,请更改到另一个分支上。"

#: vcs/dvcs/ui/branchmanager.cpp:114
#, fuzzy, kde-format
msgid "Are you sure you want to irreversibly remove the branch '%1'?"
msgstr "您确认要删除此样式吗?"

#: vcs/dvcs/ui/branchmanager.cpp:125
#, kde-format
msgid "Already on branch \"%1\"\n"
msgstr "已经在分支“%1”上\n"

#. i18n: ectx: property (toolTip), widget (QPushButton, newButton)
#: vcs/dvcs/ui/branchmanager.ui:19
msgid "Creates new branch based on the selected branch"
msgstr "基于所需分支创建新分支"

#. i18n: ectx: property (toolTip), widget (QPushButton, deleteButton)
#: vcs/dvcs/ui/branchmanager.ui:29
msgid "The same as git branch -D"
msgstr "和 git branch -D 相同"

#. i18n: ectx: property (toolTip), widget (QPushButton, checkoutButton)
#: vcs/dvcs/ui/branchmanager.ui:39
msgid "Checkout to the selected branch"
msgstr "检出到所选分支"

#. i18n: ectx: property (text), widget (QPushButton, checkoutButton)
#: vcs/dvcs/ui/branchmanager.ui:42
msgid "Checkout"
msgstr "检出"

#: vcs/dvcs/ui/dvcsgenericoutputview.cpp:56
msgid "Job exited normally"
msgstr "作业正常退出"

#: vcs/dvcs/ui/dvcsmainview.cpp:38
msgid "Git"
msgstr "Git"

#: vcs/dvcs/ui/dvcsmainview.cpp:48
msgid "DVCS"
msgstr "DVCS"

#. i18n: ectx: property (windowTitle), widget (QWidget, ImportMetadataWidget)
#: vcs/dvcs/ui/importmetadatawidget.ui:13
msgid "Import"
msgstr "导入"

#. i18n: ectx: property (text), widget (QLabel, labelUrl)
#: vcs/dvcs/ui/importmetadatawidget.ui:19
msgid "Source Directory:"
msgstr "来源目录:"

#: vcs/dvcs/ui/logview.cpp:45
msgid "Listing the log of the files failed"
msgstr "列出文件日志失败"

#: vcs/dvcs/ui/logview.cpp:58
msgid "No log information found"
msgstr "未找到日志信息"

#: vcs/dvcs/ui/logview.cpp:63
msgctxt "The term for commit (not action)"
msgid "Commit"
msgstr "提交"

#: vcs/dvcs/ui/logview.cpp:64 vcs/models/vcseventmodel.cpp:101
msgid "Author"
msgstr "作者"

#: vcs/dvcs/ui/logview.cpp:65 vcs/models/vcseventmodel.cpp:104
msgid "Date"
msgstr "日期"

#. i18n: ectx: property (windowTitle), widget (QWidget, LogViewBase)
#: vcs/dvcs/ui/logview.ui:13
msgid "Log"
msgstr "日志"

#: vcs/models/brancheslistmodel.cpp:62
#, kde-format
msgid "Branch \"%1\" already exists."
msgstr "分支“%1”已存在。"

#: vcs/models/brancheslistmodel.cpp:67
#, kde-format
msgid "Are you sure you want to rename \"%1\" to \"%2\"?"
msgstr "您确定您想要将“%1”重命名为“%2”吗?"

#: vcs/models/projectchangesmodel.cpp:76
msgid "No Version Control support for this project."
msgstr "此工程没有版本控制支持。"

#: vcs/models/vcsannotationmodel.cpp:106
#, kde-format
msgid ""
"Author: %1\n"
"Date: %2\n"
"Commit Message: %3"
msgstr ""
"作者:%1\n"
"日期:%2\n"
"提交消息:%3"

#: vcs/models/vcseventmodel.cpp:98
msgid "Revision"
msgstr "修订版"

#: vcs/models/vcseventmodel.cpp:107
msgid "Message"
msgstr "消息"

#: vcs/models/vcsfilechangesmodel.cpp:43
msgctxt "file was added to versioncontrolsystem"
msgid "Added"
msgstr "已添加"

#: vcs/models/vcsfilechangesmodel.cpp:45
msgctxt "file was deleted from versioncontrolsystem"
msgid "Deleted"
msgstr "已删除"

#: vcs/models/vcsfilechangesmodel.cpp:47
msgctxt "file is confilicting (versioncontrolsystem)"
msgid "Has Conflicts"
msgstr "有冲突"

#: vcs/models/vcsfilechangesmodel.cpp:49
msgctxt "version controlled file was modified"
msgid "Modified"
msgstr "已修改"

#: vcs/models/vcsfilechangesmodel.cpp:51
msgctxt "file is up to date in versioncontrolsystem"
msgid "Up To Date"
msgstr "最新"

#: vcs/models/vcsfilechangesmodel.cpp:54
msgctxt "file is not known to versioncontrolsystem"
msgid "Unknown"
msgstr "未知"

#: vcs/models/vcsfilechangesmodel.cpp:56
msgctxt "Unknown VCS file status, probably a backend error"
msgid "?"
msgstr "?"

#: vcs/models/vcsfilechangesmodel.cpp:90
msgid "Filename"
msgstr "文件名"

#: vcs/models/vcsfilechangesmodel.cpp:91
msgid "Status"
msgstr "状态"

#: vcs/models/vcsitemeventmodel.cpp:43
msgid "Actions"
msgstr "动作"

#: vcs/models/vcsitemeventmodel.cpp:44
msgid "Source Location"
msgstr "来源位置"

#: vcs/models/vcsitemeventmodel.cpp:45
msgid "Source Revision"
msgstr "来源修改版"

#: vcs/models/vcsitemeventmodel.cpp:59
msgid "Added"
msgstr "已添加"

#: vcs/models/vcsitemeventmodel.cpp:61
msgid "Deleted"
msgstr "已删除"

#: vcs/models/vcsitemeventmodel.cpp:63
msgid "Modified"
msgstr "已修改"

#: vcs/models/vcsitemeventmodel.cpp:65
msgid "Copied"
msgstr "已复制"

#: vcs/models/vcsitemeventmodel.cpp:69
msgctxt "separes an action list"
msgid ", "
msgstr ", "

#: vcs/vcspluginhelper.cpp:103
msgid "Update"
msgstr "更新"

#: vcs/vcspluginhelper.cpp:104
msgid "Add"
msgstr "添加"

#: vcs/vcspluginhelper.cpp:105
msgid "Show Differences..."
msgstr "显示差异..."

#: vcs/vcspluginhelper.cpp:106
msgid "Revert"
msgstr "还原"

#: vcs/vcspluginhelper.cpp:107 vcs/vcspluginhelper.cpp:450
msgid "History..."
msgstr "历史..."

#: vcs/vcspluginhelper.cpp:108
msgid "Annotation..."
msgstr "注释..."

#: vcs/vcspluginhelper.cpp:109
msgid "Show Diff..."
msgstr "显示差异..."

#: vcs/vcspluginhelper.cpp:110
msgid "Show Diff (all files)..."
msgstr "显示差异 (全部文件)..."

#: vcs/vcspluginhelper.cpp:300
msgid "There are no differences."
msgstr "没有差异。"

#: vcs/vcspluginhelper.cpp:301
msgid "VCS support"
msgstr "VCS 支持"

#: vcs/vcspluginhelper.cpp:307
msgid "Unable to get difference."
msgstr "无法获得差异。"

#: vcs/vcspluginhelper.cpp:359
#, kde-format
msgctxt "%1: path or URL, %2: name of a version control system"
msgid "%2 History (%1)"
msgstr "%2 历史 (%1)"

#: vcs/vcspluginhelper.cpp:396
msgid ""
"Cannot display annotations, missing interface KTextEditor::"
"AnnotationInterface for the editor."
msgstr "无法显示注释,缺失编辑器接口 KTextEditor::AnnotationInterface。"

#: vcs/vcspluginhelper.cpp:400
#, kde-format
msgid ""
"Cannot execute annotate action because the document was not found, or was "
"not a text document:\n"
"%1"
msgstr ""
"无法执行注释操作,因为没有找到文档或它不是文本文档:\n"
"%1"

#: vcs/vcspluginhelper.cpp:449
msgid "Copy Revision"
msgstr "复制修订版"

#: vcs/widgets/standardvcslocationwidget.cpp:35
msgid "Introduce the repository URL..."
msgstr "引入仓库 URL..."

#. i18n: ectx: property (windowTitle), widget (QWidget, VcsCommitDialog)
#: vcs/widgets/vcscommitdialog.ui:17
msgid "Select Files to commit"
msgstr "选择要提交的文件"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: vcs/widgets/vcscommitdialog.ui:23
msgid "Commit Files:"
msgstr "提交文件:"

#. i18n: ectx: property (text), widget (QCheckBox, recursiveChk)
#: vcs/widgets/vcscommitdialog.ui:33
msgid "Recursive"
msgstr "递归"

#: vcs/widgets/vcsdiffpatchsources.cpp:51
msgid "Commit Message:"
msgstr "提交消息:"

#: vcs/widgets/vcsdiffpatchsources.cpp:55
msgid "Old Messages"
msgstr "旧消息"

#: vcs/widgets/vcsdiffpatchsources.cpp:205
msgctxt "@action:button To make a commit"
msgid "Commit"
msgstr "提交"

#: vcs/widgets/vcsdiffpatchsources.cpp:236
#, kde-format
msgid ""
"<qt>Files will be committed:\n"
"<ul>%1</ul>\n"
"With message:\n"
" <pre>%2</pre></qt>"
msgstr ""

#: vcs/widgets/vcsdiffpatchsources.cpp:238
msgid "About to commit to repository"
msgstr "即将提交到仓库"

#: vcs/widgets/vcsdiffpatchsources.cpp:286
msgid "Could not create a patch for the current version."
msgstr "无法为当前版本创建补丁。"

#: vcs/widgets/vcsdiffwidget.cpp:103
#, kde-format
msgid "Difference between revision %1 and %2:"
msgstr "修订版 %1 与 %2 之间的差异:"

#. i18n: ectx: property (text), widget (QLabel, revLabel)
#: vcs/widgets/vcsdiffwidget.ui:16
msgid "Difference between revisions"
msgstr "修订版之间的差异"

#: vcs/widgets/vcseventwidget.cpp:84
msgid "Diff to previous revision"
msgstr "与上个修订版比较"

#: vcs/widgets/vcseventwidget.cpp:87
msgid "Diff between revisions"
msgstr "修订版之间比较"

#: vcs/widgets/vcseventwidget.cpp:146
msgid "Difference To Previous"
msgstr "与上个修订版的差异"

#: vcs/widgets/vcseventwidget.cpp:162
msgid "Difference between Revisions"
msgstr "修订版之间的差异"

#. i18n: ectx: property (windowTitle), widget (QWidget, VcsEventWidget)
#: vcs/widgets/vcseventwidget.ui:14
msgid "Logview"
msgstr "日志视图"

#. i18n: ectx: property (text), widget (QLabel, label)
#: vcs/widgets/vcseventwidget.ui:20
msgid "Events:"
msgstr "事件:"

#. i18n: ectx: property (text), widget (QLabel, label_2)
#: vcs/widgets/vcseventwidget.ui:61
msgid "Event Details:"
msgstr "事件详情:"

#. i18n: ectx: property (text), widget (QLabel, label_3)
#: vcs/widgets/vcseventwidget.ui:99
msgid "Message:"
msgstr "消息:"

#, fuzzy



#, fuzzy


















































































































































#, fuzzy













#, fuzzy




#, fuzzy














































#, fuzzy



#, fuzzy

























































































#, fuzzy





















#, fuzzy
























#, fuzzy



#, fuzzy






#, fuzzy