~ubuntu-branches/ubuntu/vivid/language-pack-kde-zh-hans-base/vivid

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
# translation of kmplot.po to
# Copyright (C) 2002, 2007 Free Software Foundation, Inc.
#
# Sarah Smith <sarahs@redhat.com>, 2002.
# Xiong Jiang <jxiong@offtopic.org>, 2002.
# Funda Wang <fundawang@linux.net.cn>, 2004.
# yuanjiayj <yuanjiayj@gmail.com>, 2007.
# Lie Ex <lilith.ex@gmail.com>, 2008-2010.
# Feng Chao <rainofchaos@gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: kmplot\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-09-10 03:49+0000\n"
"PO-Revision-Date: 2012-03-14 07:12+0000\n"
"Last-Translator: 冯超 <rainofchaos@gmail.com>\n"
"Language-Team: Chinese Simplified <kde-china@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-03-23 01:04+0000\n"
"X-Generator: Launchpad (build 14981)\n"
"Language: zh_CN\n"

#: parameteranimator.cpp:62
msgid "Parameter Animator"
msgstr "参数动态化器"

#: coordsconfigdialog.cpp:50
msgid "Coordinates"
msgstr "坐标系"

#: coordsconfigdialog.cpp:50 coordsconfigdialog.cpp:51
msgid "Coordinate System"
msgstr "坐标系"

#: coordsconfigdialog.cpp:80 coordsconfigdialog.cpp:106
msgid "The minimum range value must be lower than the maximum range value"
msgstr "最小范围值必须低于最大范围值"

#: functioneditor.cpp:60
msgid "Functions"
msgstr "函数"

#: kmplot.cpp:82
msgid "Could not find KmPlot's part."
msgstr "找不到 KmPlot 部件。"

#: kmplot.cpp:209 maindlg.cpp:522
msgid ""
"*.fkt|KmPlot Files (*.fkt)\n"
"*|All Files"
msgstr ""
"*.fkt|KmPlot 文件 (*.fkt)\n"
"*|所有文件"

#: kmplot.cpp:209
msgid "Open"
msgstr "打开"

#: view.cpp:2423 view.cpp:2424
msgid "  to  "
msgstr "  到  "

#. i18n: file: functioneditorwidget.ui:184
#. i18n: ectx: property (title), widget (ParametersWidget, cartesianParameters)
#. i18n: file: functioneditorwidget.ui:535
#. i18n: ectx: property (title), widget (ParametersWidget, parametricParameters)
#. i18n: file: functioneditorwidget.ui:640
#. i18n: ectx: property (title), widget (ParametersWidget, polarParameters)
#. i18n: file: functioneditorwidget.ui:715
#. i18n: ectx: property (title), widget (ParametersWidget, implicitParameters)
#. i18n: file: functioneditorwidget.ui:798
#. i18n: ectx: property (title), widget (ParametersWidget, differentialParameters)
#. i18n: file: parameterswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, ParametersWidget)
#. i18n: file: functioneditorwidget.ui:184
#. i18n: ectx: property (title), widget (ParametersWidget, cartesianParameters)
#. i18n: file: functioneditorwidget.ui:535
#. i18n: ectx: property (title), widget (ParametersWidget, parametricParameters)
#. i18n: file: functioneditorwidget.ui:640
#. i18n: ectx: property (title), widget (ParametersWidget, polarParameters)
#. i18n: file: functioneditorwidget.ui:715
#. i18n: ectx: property (title), widget (ParametersWidget, implicitParameters)
#. i18n: file: functioneditorwidget.ui:798
#. i18n: ectx: property (title), widget (ParametersWidget, differentialParameters)
#. i18n: file: parameterswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, ParametersWidget)
#. i18n: file: functioneditorwidget.ui:184
#. i18n: ectx: property (title), widget (ParametersWidget, cartesianParameters)
#. i18n: file: functioneditorwidget.ui:535
#. i18n: ectx: property (title), widget (ParametersWidget, parametricParameters)
#. i18n: file: functioneditorwidget.ui:640
#. i18n: ectx: property (title), widget (ParametersWidget, polarParameters)
#. i18n: file: functioneditorwidget.ui:715
#. i18n: ectx: property (title), widget (ParametersWidget, implicitParameters)
#. i18n: file: functioneditorwidget.ui:798
#. i18n: ectx: property (title), widget (ParametersWidget, differentialParameters)
#. i18n: file: parameterswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, ParametersWidget)
#. i18n: file: functioneditorwidget.ui:184
#. i18n: ectx: property (title), widget (ParametersWidget, cartesianParameters)
#. i18n: file: functioneditorwidget.ui:535
#. i18n: ectx: property (title), widget (ParametersWidget, parametricParameters)
#. i18n: file: functioneditorwidget.ui:640
#. i18n: ectx: property (title), widget (ParametersWidget, polarParameters)
#. i18n: file: functioneditorwidget.ui:715
#. i18n: ectx: property (title), widget (ParametersWidget, implicitParameters)
#. i18n: file: functioneditorwidget.ui:798
#. i18n: ectx: property (title), widget (ParametersWidget, differentialParameters)
#. i18n: file: parameterswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, ParametersWidget)
#: rc.cpp:261 rc.cpp:388 rc.cpp:425 rc.cpp:455 rc.cpp:484 rc.cpp:856
#: rc.cpp:1511 rc.cpp:1638 rc.cpp:1675 rc.cpp:1705 rc.cpp:1734 rc.cpp:1836
#: view.cpp:2430 rc.cpp:261 rc.cpp:388 rc.cpp:425 rc.cpp:455 rc.cpp:484
#: rc.cpp:856 rc.cpp:1511 rc.cpp:1638 rc.cpp:1675 rc.cpp:1705 rc.cpp:1734
#: rc.cpp:1836
msgid "Parameters"
msgstr "参数"

#: view.cpp:2430
msgid "Plotting Range"
msgstr "绘图范围"

#: view.cpp:2430
msgid "Axes Division"
msgstr "数轴分割"

#: view.cpp:2431
msgid "x-Axis:"
msgstr "X 轴:"

#: view.cpp:2432
msgid "y-Axis:"
msgstr "Y 轴:"

#: view.cpp:2435
msgid "Functions:"
msgstr "函数:"

#: view.cpp:3512
msgid "root"
msgstr "根"

#: kconstanteditor.cpp:67
msgid "Constants Editor"
msgstr "常量编辑器"

#: kconstanteditor.cpp:135
msgid "Check this to have the constant exported when saving."
msgstr "勾选此项后,保存时常数将被导出。"

#: kconstanteditor.cpp:138
msgid ""
"Check this to have the constant permanently available between instances of "
"KmPlot."
msgstr "勾选此项后,在KmPlot中此常数将永久有效。"

#: parser.cpp:676
msgid "Remove all"
msgstr "全部移除"

#: parser.cpp:678
#, kde-format
msgid ""
"The function %1 is depended upon by the following functions: %2. These must "
"be removed in addition."
msgstr "函数 %1 依赖于以下函数:%2。这些函数也必须一起移除。"

#: parser.cpp:1198
msgid "Syntax error"
msgstr "语法错误"

#: parser.cpp:1201
msgid "Missing parenthesis"
msgstr "缺少括号"

#: parser.cpp:1204
msgid "Stack overflow"
msgstr "堆栈溢出"

#: parser.cpp:1207
msgid "Name of function is not free"
msgstr "函数名不能随便"

#: parser.cpp:1210
msgid "recursive function not allowed"
msgstr "不允许递归函数"

#: parser.cpp:1213
msgid "Empty function"
msgstr "空函数"

#: parser.cpp:1216
msgid "Function could not be found"
msgstr "找不到函数"

#: parser.cpp:1219
msgid "The differential equation must be at least first-order"
msgstr "微分方程必须是一阶以上"

#: parser.cpp:1222
msgid "Too many plus-minus symbols"
msgstr "太多的正负符号"

#: parser.cpp:1225
msgid "Invalid plus-minus symbol (expression must be constant)"
msgstr "不合理的正负符号(表达式必须是常数)"

#: parser.cpp:1228
msgid "The function has too many arguments"
msgstr "此函数中参数太多"

#: parser.cpp:1231
msgid "The function does not have the correct number of arguments"
msgstr "此函数中的参数数量不正确"

#: main.cpp:42
msgid "Mathematical function plotter for KDE"
msgstr "KDE 桌面的数学函数绘图器"

#: main.cpp:49
msgid "KmPlot"
msgstr "KmPlot"

#: main.cpp:51
msgid "(c) 2000-2002, Klaus-Dieter Möller"
msgstr "(c) 2000-2002, Klaus-Dieter Möller"

#: main.cpp:56
msgid "Klaus-Dieter Möller"
msgstr "Klaus-Dieter Möller"

#: main.cpp:56
msgid "Original Author"
msgstr "原作者"

#: main.cpp:59
msgid "Matthias Meßmer"
msgstr "Matthias Meßmer"

#: main.cpp:59
msgid "GUI"
msgstr "用户图形界面"

#: main.cpp:61
msgid "Fredrik Edemar"
msgstr "Fredrik Edema"

#: main.cpp:61
msgid "Various improvements"
msgstr "各种改进"

#: main.cpp:62
msgid "David Saxton"
msgstr "David Saxton"

#: main.cpp:62
msgid "Porting to Qt 4, UI improvements, features"
msgstr "移植到 Qt 4,用户界面的改进以及特性"

#: main.cpp:64
msgid "David Vignoni"
msgstr "David Vignoni"

#: main.cpp:64
msgid "svg icon"
msgstr "SVG 图标"

#: main.cpp:65
msgid "Albert Astals Cid"
msgstr "Albert Astals Cid"

#: main.cpp:65
msgid "command line options, MIME type"
msgstr "命令行选项,MIME 类型"

#: main.cpp:71
msgid "Initial functions to plot"
msgstr "要绘图的初始函数"

#: main.cpp:72
msgid "File to open"
msgstr "要打开的文件"

#. i18n: file: settingspagegeneral.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, SettingsPageGeneral)
#: rc.cpp:1189 rc.cpp:2169 maindlg.cpp:210 rc.cpp:1189 rc.cpp:2169
msgid "General"
msgstr "常规"

#: maindlg.cpp:210
msgid "General Settings"
msgstr "常规设置"

#. i18n: file: settingspagediagram.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, SettingsPageDiagram)
#: rc.cpp:1078 rc.cpp:2058 maindlg.cpp:211 rc.cpp:1078 rc.cpp:2058
msgid "Diagram"
msgstr "图表"

#: maindlg.cpp:211
msgid "Diagram Appearance"
msgstr "图表外观"

#: maindlg.cpp:212
msgid "Colors"
msgstr "颜色"

#: maindlg.cpp:213
msgid "Fonts"
msgstr "字体"

#: maindlg.cpp:242
msgid "Configure KmPlot..."
msgstr "配置 KmPlot..."

#: maindlg.cpp:251
msgid "E&xport..."
msgstr "导出(&X)..."

#: maindlg.cpp:265
msgid "&Coordinate System..."
msgstr "坐标系(&C)..."

#: maindlg.cpp:270
msgid "&Constants..."
msgstr "常量(&C)..."

#: maindlg.cpp:280
msgid "Zoom &In"
msgstr "放大(&I)"

#: maindlg.cpp:286
msgid "Zoom &Out"
msgstr "缩小(&O)"

#: maindlg.cpp:292
msgid "&Fit Widget to Trigonometric Functions"
msgstr "调整部件以适合三角函数(&F)"

#: maindlg.cpp:296
msgid "Reset View"
msgstr "重置视图"

#: calculator.cpp:43 maindlg.cpp:304
msgid "Calculator"
msgstr "计算器"

#: maindlg.cpp:309
msgid "Plot &Area..."
msgstr "绘图区(&A)..."

#: maindlg.cpp:313
msgid "Find Ma&ximum..."
msgstr "查找最大值点(&X)..."

#: maindlg.cpp:318
msgid "Find Mi&nimum..."
msgstr "查找最小值点(&N)..."

#: maindlg.cpp:326
msgid "Predefined &Math Functions"
msgstr "预定义的数学函数(&M)"

#: maindlg.cpp:334
msgid "Cartesian Plot"
msgstr "笛卡尔绘图"

#: maindlg.cpp:340
msgid "Parametric Plot"
msgstr "参数绘图"

#: maindlg.cpp:346
msgid "Polar Plot"
msgstr "极坐标绘图"

#: maindlg.cpp:352
msgid "Implicit Plot"
msgstr "隐藏绘图"

#: maindlg.cpp:358
msgid "Differential Plot"
msgstr "微分绘图"

#: maindlg.cpp:368
msgid "Show Sliders"
msgstr "显示滑块"

#. i18n: file: kmplot_part.rc:13
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part_readonly.rc:9
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part.rc:13
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part_readonly.rc:9
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part.rc:13
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part_readonly.rc:9
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part.rc:13
#. i18n: ectx: Menu (edit)
#. i18n: file: kmplot_part_readonly.rc:9
#. i18n: ectx: Menu (edit)
#: rc.cpp:757 rc.cpp:772 rc.cpp:2459 rc.cpp:2474 maindlg.cpp:374 rc.cpp:757
#: rc.cpp:772 rc.cpp:2459 rc.cpp:2474
msgid "&Edit"
msgstr "编辑(&E)"

#: maindlg.cpp:381
msgid "&Hide"
msgstr "隐藏(&H)"

#: maindlg.cpp:386
msgid "&Remove"
msgstr "删除(&R)"

#: maindlg.cpp:394
msgid "Animate Plot..."
msgstr "动态绘图..."

#: maindlg.cpp:478
msgid ""
"The plot has been modified.\n"
"Do you want to save it?"
msgstr ""
"绘图已经修改。\n"
"您想要保存吗?"

#: maindlg.cpp:508
msgid ""
"This file is saved with an old file format; if you save it, you cannot open "
"the file with older versions of KmPlot. Are you sure you want to continue?"
msgstr "此文件是以旧文件格式保存的;如果您保存的话,您将无法使用旧版本的 KmPlot 打开该文件。您确定想要继续吗?"

#: maindlg.cpp:508
msgid "Save New Format"
msgstr "保存新格式"

#: maindlg.cpp:522
msgid "Save As"
msgstr "另存为"

#: kparametereditor.cpp:287 maindlg.cpp:532 maindlg.cpp:563
#, kde-format
msgid ""
"A file named \"%1\" already exists. Are you sure you want to continue and "
"overwrite this file?"
msgstr "已经存在名为“%1”的文件。您确定想要继续并覆盖此文件吗?"

#: kparametereditor.cpp:287 maindlg.cpp:532 maindlg.cpp:563
msgid "Overwrite File?"
msgstr "覆盖文件吗?"

#: kparametereditor.cpp:287 maindlg.cpp:532 maindlg.cpp:563
msgid "&Overwrite"
msgstr "覆盖(&O)"

#: maindlg.cpp:539
msgid "The file could not be saved"
msgstr "无法保存文件"

#: maindlg.cpp:552
msgid ""
"\n"
"*.svg|Scalable Vector Graphics"
msgstr ""
"\n"
"*.svg|可缩放矢量图形"

#: maindlg.cpp:554
msgid "Export as Image"
msgstr "导出为图像"

#: maindlg.cpp:576
msgid "Sorry, this file format is not supported."
msgstr "对不起,这种文件格式不被支持。"

#: maindlg.cpp:627
#, kde-format
msgid "Sorry, something went wrong while saving to image \"%1\""
msgstr "对不起,当保存为图像时出错  \"%1\""

#: maindlg.cpp:684
msgid "Print Plot"
msgstr "打印图像"

#: maindlg.cpp:844
msgid "KmPlotPart"
msgstr "KmPlotPart"

#: kprinterdlg.cpp:44
msgid "KmPlot Options"
msgstr "KmPlot 选项"

#: kprinterdlg.cpp:50
msgid "Print header table"
msgstr "打印头表格"

#: kprinterdlg.cpp:51
msgid "Transparent background"
msgstr "透明背景"

#: kprinterdlg.cpp:60
msgid "Pixels (1/72nd in)"
msgstr "像数(1/72 英寸)"

#: kprinterdlg.cpp:61
msgid "Inches (in)"
msgstr "英寸(in)"

#: kprinterdlg.cpp:62
msgid "Centimeters (cm)"
msgstr "厘米(cm)"

#: kprinterdlg.cpp:63
msgid "Millimeters (mm)"
msgstr "毫米(mm)"

#: kprinterdlg.cpp:67
msgid "Width:"
msgstr "宽度:"

#: kprinterdlg.cpp:68
msgid "Height:"
msgstr "高度:"

#: kprinterdlg.cpp:138
msgid "Width is invalid"
msgstr "宽度值无效"

#: kprinterdlg.cpp:145
msgid "Height is invalid"
msgstr "高度值无效"

#: xparser.cpp:143
msgid "Error in extension."
msgstr "扩展中出错。"

#: parameterswidget.cpp:39
#, kde-format
msgid "Slider No. %1"
msgstr "第 %1 个滑块"

#: kgradientdialog.cpp:383
msgid "(Double-click on the gradient to add a stop)"
msgstr "(在双击斜率以加入停止点)"

#: kgradientdialog.cpp:384
msgid "Remove stop"
msgstr "移除停止点"

#: kgradientdialog.cpp:405
msgid "Choose a Gradient"
msgstr "选择斜率"

#: equationeditor.cpp:40
msgid "Equation Editor"
msgstr "公式编辑器:"

#. i18n: file: qparametereditor.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, QParameterEditor)
#: rc.cpp:904 rc.cpp:1884 kparametereditor.cpp:51 rc.cpp:904 rc.cpp:1884
msgid "Parameter Editor"
msgstr "参数编辑器"

#: kparametereditor.cpp:213 kparametereditor.cpp:283
msgid "*.txt|Plain Text File "
msgstr "*.txt|纯文本文件 "

#: kparametereditor.cpp:219 kmplotio.cpp:342
msgid "The file does not exist."
msgstr "文件不存在。"

#: kparametereditor.cpp:230 kparametereditor.cpp:272
msgid "An error appeared when opening this file"
msgstr "打开此文件时出错"

#: kparametereditor.cpp:259
#, kde-format
msgid ""
"Line %1 is not a valid parameter value and will therefore not be included. "
"Do you want to continue?"
msgstr "第 %1 行不是有效的参数值,所以也不会包含。您想要继续吗?"

#: kparametereditor.cpp:265
msgid "Would you like to be informed about other lines that cannot be read?"
msgstr "其它行不可读时是否要通知您?"

#: kparametereditor.cpp:265
msgid "Get Informed"
msgstr "要通知"

#: kparametereditor.cpp:265
msgid "Ignore Information"
msgstr "忽略通知"

#: kparametereditor.cpp:306 kparametereditor.cpp:310 kparametereditor.cpp:332
msgid "An error appeared when saving this file"
msgstr "保存此文件时出错"

#: plotstylewidget.cpp:44
msgid "Solid"
msgstr "立体"

#: plotstylewidget.cpp:45
msgid "Dash"
msgstr "线"

#: plotstylewidget.cpp:46
msgid "Dot"
msgstr "点"

#: plotstylewidget.cpp:47
msgid "Dash Dot"
msgstr "线点相间"

#: plotstylewidget.cpp:48
msgid "Dash Dot Dot"
msgstr "线-点-点相间"

#: plotstylewidget.cpp:59
msgid "Advanced..."
msgstr "高级..."

#: plotstylewidget.cpp:63
msgid "Color:"
msgstr "颜色:"

#: plotstylewidget.cpp:73
msgid "Plot Appearance"
msgstr "绘图外观"

#: kmplotio.cpp:322
msgid "The file had an unknown version number"
msgstr "文件的版本号未知"

#: kmplotio.cpp:348
#, kde-format
msgid "An error appeared when opening this file (%1)"
msgstr "打开此文件(%1)时出错"

#: kmplotio.cpp:358
#, kde-format
msgid "%1 could not be opened"
msgstr "%1 无法被打开"

#: kmplotio.cpp:365
#, kde-format
msgid "%1 could not be loaded (%2 at line %3, column %4)"
msgstr "%1 无法被装入(第 %3 行,第 %4 列的 %2 )"

#: kmplotio.cpp:435
msgid "automatic"
msgstr "自动"

#: kmplotio.cpp:790
#, kde-format
msgid "The function %1 could not be loaded"
msgstr "无法装入函数 %1"

#: ksliderwindow.cpp:37
#, kde-format
msgid "Slider %1"
msgstr "滑块 %1"

#: ksliderwindow.cpp:43
msgid ""
"Move slider to change the parameter of the function plot connected to this "
"slider."
msgstr "移动滑块可以更改与此滑块相关的函数图的参数。"

#: ksliderwindow.cpp:94
msgid "Sliders"
msgstr "滑块"

#: functiontools.cpp:71 functiontools.cpp:78
msgid "Search between:"
msgstr "查找范围:"

#: functiontools.cpp:72
msgid "Find Minimum Point"
msgstr "查找最小值点"

#: functiontools.cpp:79
msgid "Find Maximum Point"
msgstr "查找最大值点"

#: functiontools.cpp:85
msgid "Calculate the area between:"
msgstr "计算面积范围:"

#: functiontools.cpp:86
msgid "Area Under Graph"
msgstr "图形面积"

#: functiontools.cpp:201
#, kde-format
msgid "Minimum is at x = %1, %2(x) = %3"
msgstr "当 x = %1, %2(x) = %3 时,可取得最小值"

#: functiontools.cpp:215
#, kde-format
msgid "Maximum is at x = %1, %2(x) = %3"
msgstr "当 x = %1, %2(x) = %3 时,可取得最大值"

#: functiontools.cpp:234
#, kde-format
msgid "Area is %1"
msgstr "面积为 %1"

#: rc.cpp:1249 rc.cpp:1249
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "KDE 中国, ,Launchpad Contributions:,Funda Wang,yuanjiayj"

#: rc.cpp:1250 rc.cpp:1250
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "kde-china@kde.org,,,,yuanjiayj@gmail.com"

#. i18n: file: constantseditor.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, ConstantsEditor)
#: rc.cpp:3 rc.cpp:1253 rc.cpp:3 rc.cpp:1253
msgid "Constant Editor"
msgstr "常量编辑器"

#. i18n: file: constantseditor.ui:26
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:22
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: constantseditor.ui:26
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:22
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: constantseditor.ui:26
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:22
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: constantseditor.ui:26
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:22
#. i18n: ectx: property (toolTip), widget (QLabel, valueInvalidLabel)
#: rc.cpp:6 rc.cpp:907 rc.cpp:1256 rc.cpp:1887 rc.cpp:6 rc.cpp:907 rc.cpp:1256
#: rc.cpp:1887
msgid "The value must be a number (e.g. \"pi^2\")"
msgstr "此值必须是个数字(如“pi^2”)"

#. i18n: file: constantseditor.ui:29
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:25
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: constantseditor.ui:29
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:25
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: constantseditor.ui:29
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:25
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: constantseditor.ui:29
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#. i18n: file: qparametereditor.ui:25
#. i18n: ectx: property (text), widget (QLabel, valueInvalidLabel)
#: rc.cpp:9 rc.cpp:910 rc.cpp:1259 rc.cpp:1890 rc.cpp:9 rc.cpp:910 rc.cpp:1259
#: rc.cpp:1890
msgid "(invalid)"
msgstr "(不合理)"

#. i18n: file: constantseditor.ui:54
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:12 rc.cpp:1262 rc.cpp:12 rc.cpp:1262
msgid "Value:"
msgstr "值:"

#. i18n: file: constantseditor.ui:64
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:15 rc.cpp:1265 rc.cpp:15 rc.cpp:1265
msgid "Constant:"
msgstr "常量:"

#. i18n: file: constantseditor.ui:74
#. i18n: ectx: property (toolTip), widget (EquationEdit, valueEdit)
#: rc.cpp:18 rc.cpp:1268 rc.cpp:18 rc.cpp:1268
msgid "Enter an expression that evaluates to a number"
msgstr "输入用于估算一个数值的表达式"

#. i18n: file: constantseditor.ui:83
#. i18n: ectx: property (toolTip), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:39
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:83
#. i18n: ectx: property (toolTip), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:39
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:83
#. i18n: ectx: property (toolTip), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:39
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:83
#. i18n: ectx: property (toolTip), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:39
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdNew)
#: rc.cpp:21 rc.cpp:913 rc.cpp:1271 rc.cpp:1893 rc.cpp:21 rc.cpp:913
#: rc.cpp:1271 rc.cpp:1893
msgid "Add a new constant"
msgstr "添加新常量"

#. i18n: file: constantseditor.ui:86
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:42
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:86
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:42
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:86
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:42
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:86
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:42
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdNew)
#: rc.cpp:24 rc.cpp:916 rc.cpp:1274 rc.cpp:1896 rc.cpp:24 rc.cpp:916
#: rc.cpp:1274 rc.cpp:1896
msgid "Click this button to add a new constant."
msgstr "单击此按钮可添加一个新常量。"

#. i18n: file: constantseditor.ui:89
#. i18n: ectx: property (text), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:45
#. i18n: ectx: property (text), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:89
#. i18n: ectx: property (text), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:45
#. i18n: ectx: property (text), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:89
#. i18n: ectx: property (text), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:45
#. i18n: ectx: property (text), widget (KPushButton, cmdNew)
#. i18n: file: constantseditor.ui:89
#. i18n: ectx: property (text), widget (QPushButton, cmdNew)
#. i18n: file: qparametereditor.ui:45
#. i18n: ectx: property (text), widget (KPushButton, cmdNew)
#: rc.cpp:27 rc.cpp:919 rc.cpp:1277 rc.cpp:1899 rc.cpp:27 rc.cpp:919
#: rc.cpp:1277 rc.cpp:1899
msgid "&New"
msgstr "新建(&N)"

#. i18n: file: constantseditor.ui:103
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:30 rc.cpp:1280 rc.cpp:30 rc.cpp:1280
msgid "Constant"
msgstr "常量"

#. i18n: file: constantseditor.ui:108
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:33 rc.cpp:1283 rc.cpp:33 rc.cpp:1283
msgid "Value"
msgstr "值"

#. i18n: file: constantseditor.ui:113
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:36 rc.cpp:1286 rc.cpp:36 rc.cpp:1286
msgid "Document"
msgstr "文档"

#. i18n: file: constantseditor.ui:118
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:39 rc.cpp:1289 rc.cpp:39 rc.cpp:1289
msgid "Global"
msgstr "全局"

#. i18n: file: constantseditor.ui:142
#. i18n: ectx: property (toolTip), widget (QPushButton, cmdDelete)
#: rc.cpp:42 rc.cpp:1292 rc.cpp:42 rc.cpp:1292
msgid "Delete the selected constant"
msgstr "删除选中的常量"

#. i18n: file: constantseditor.ui:145
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdDelete)
#. i18n: file: qparametereditor.ui:58
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdDelete)
#. i18n: file: constantseditor.ui:145
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdDelete)
#. i18n: file: qparametereditor.ui:58
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdDelete)
#. i18n: file: constantseditor.ui:145
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdDelete)
#. i18n: file: qparametereditor.ui:58
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdDelete)
#. i18n: file: constantseditor.ui:145
#. i18n: ectx: property (whatsThis), widget (QPushButton, cmdDelete)
#. i18n: file: qparametereditor.ui:58
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdDelete)
#: rc.cpp:45 rc.cpp:925 rc.cpp:1295 rc.cpp:1905 rc.cpp:45 rc.cpp:925
#: rc.cpp:1295 rc.cpp:1905
msgid ""
"Click here to delete the selected constant; it can only be removed if it is "
"not currently used by a plot."
msgstr "单击此处删除选中的常量;仅当该常量不被任何图像使用时,才可删除该常量。"

#. i18n: file: constantseditor.ui:148
#. i18n: ectx: property (text), widget (QPushButton, cmdDelete)
#. i18n: file: functioneditorwidget.ui:56
#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: file: qparametereditor.ui:61
#. i18n: ectx: property (text), widget (KPushButton, cmdDelete)
#. i18n: file: constantseditor.ui:148
#. i18n: ectx: property (text), widget (QPushButton, cmdDelete)
#. i18n: file: functioneditorwidget.ui:56
#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: file: qparametereditor.ui:61
#. i18n: ectx: property (text), widget (KPushButton, cmdDelete)
#. i18n: file: constantseditor.ui:148
#. i18n: ectx: property (text), widget (QPushButton, cmdDelete)
#. i18n: file: functioneditorwidget.ui:56
#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: file: qparametereditor.ui:61
#. i18n: ectx: property (text), widget (KPushButton, cmdDelete)
#. i18n: file: constantseditor.ui:148
#. i18n: ectx: property (text), widget (QPushButton, cmdDelete)
#. i18n: file: functioneditorwidget.ui:56
#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: file: qparametereditor.ui:61
#. i18n: ectx: property (text), widget (KPushButton, cmdDelete)
#: rc.cpp:48 rc.cpp:219 rc.cpp:928 rc.cpp:1298 rc.cpp:1469 rc.cpp:1908
#: rc.cpp:48 rc.cpp:219 rc.cpp:928 rc.cpp:1298 rc.cpp:1469 rc.cpp:1908
msgid "&Delete"
msgstr "删除(&D)"

#. i18n: file: editcoords.ui:20
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:51 rc.cpp:1301 rc.cpp:51 rc.cpp:1301
msgid "Horizontal axis Range"
msgstr "水平轴范围"

#. i18n: file: editcoords.ui:32
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#. i18n: file: editcoords.ui:116
#. i18n: ectx: property (text), widget (QLabel, textLabel4_3)
#. i18n: file: functioneditorwidget.ui:135
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:496
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: functioneditorwidget.ui:627
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: functiontools.ui:49
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: file: sliderwidget.ui:80
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: editcoords.ui:32
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#. i18n: file: editcoords.ui:116
#. i18n: ectx: property (text), widget (QLabel, textLabel4_3)
#. i18n: file: functioneditorwidget.ui:135
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:496
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: functioneditorwidget.ui:627
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: functiontools.ui:49
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: file: sliderwidget.ui:80
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: editcoords.ui:32
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#. i18n: file: editcoords.ui:116
#. i18n: ectx: property (text), widget (QLabel, textLabel4_3)
#. i18n: file: functioneditorwidget.ui:135
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:496
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: functioneditorwidget.ui:627
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: functiontools.ui:49
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: file: sliderwidget.ui:80
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: editcoords.ui:32
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#. i18n: file: editcoords.ui:116
#. i18n: ectx: property (text), widget (QLabel, textLabel4_3)
#. i18n: file: functioneditorwidget.ui:135
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:496
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: functioneditorwidget.ui:627
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: functiontools.ui:49
#. i18n: ectx: property (text), widget (QLabel, label_5)
#. i18n: file: sliderwidget.ui:80
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:54 rc.cpp:84 rc.cpp:237 rc.cpp:373 rc.cpp:422 rc.cpp:508 rc.cpp:1248
#: rc.cpp:1304 rc.cpp:1334 rc.cpp:1487 rc.cpp:1623 rc.cpp:1672 rc.cpp:1758
#: rc.cpp:2228 rc.cpp:54 rc.cpp:84 rc.cpp:237 rc.cpp:373 rc.cpp:422 rc.cpp:508
#: rc.cpp:1248 rc.cpp:1304 rc.cpp:1334 rc.cpp:1487 rc.cpp:1623 rc.cpp:1672
#: rc.cpp:1758 rc.cpp:2228
msgid "Max:"
msgstr "最大:"

#. i18n: file: editcoords.ui:45
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:55
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:93
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:129
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMin)
#. i18n: file: editcoords.ui:45
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:55
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:93
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:129
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMin)
#. i18n: file: editcoords.ui:45
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:55
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:93
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:129
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMin)
#. i18n: file: editcoords.ui:45
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:55
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:93
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:129
#. i18n: ectx: property (toolTip), widget (EquationEdit, kcfg_YMin)
#: rc.cpp:57 rc.cpp:63 rc.cpp:75 rc.cpp:87 rc.cpp:1307 rc.cpp:1313 rc.cpp:1325
#: rc.cpp:1337 rc.cpp:57 rc.cpp:63 rc.cpp:75 rc.cpp:87 rc.cpp:1307 rc.cpp:1313
#: rc.cpp:1325 rc.cpp:1337
msgid "Custom boundary of the plot range"
msgstr "自定义绘图范围边界"

#. i18n: file: editcoords.ui:48
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:58
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:96
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:132
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMin)
#. i18n: file: editcoords.ui:48
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:58
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:96
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:132
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMin)
#. i18n: file: editcoords.ui:48
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:58
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:96
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:132
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMin)
#. i18n: file: editcoords.ui:48
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMax)
#. i18n: file: editcoords.ui:58
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_XMin)
#. i18n: file: editcoords.ui:96
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMax)
#. i18n: file: editcoords.ui:132
#. i18n: ectx: property (whatsThis), widget (EquationEdit, kcfg_YMin)
#: rc.cpp:60 rc.cpp:66 rc.cpp:78 rc.cpp:90 rc.cpp:1310 rc.cpp:1316 rc.cpp:1328
#: rc.cpp:1340 rc.cpp:60 rc.cpp:66 rc.cpp:78 rc.cpp:90 rc.cpp:1310 rc.cpp:1316
#: rc.cpp:1328 rc.cpp:1340
msgid "Enter a valid expression, for instance 2*pi or e/2."
msgstr "输入有效的表达式,例如 2*pi 或 e/2。"

#. i18n: file: editcoords.ui:65
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. i18n: file: editcoords.ui:103
#. i18n: ectx: property (text), widget (QLabel, textLabel4_4)
#. i18n: file: functioneditorwidget.ui:148
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:486
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: functioneditorwidget.ui:617
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functiontools.ui:29
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: sliderwidget.ui:57
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: editcoords.ui:65
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. i18n: file: editcoords.ui:103
#. i18n: ectx: property (text), widget (QLabel, textLabel4_4)
#. i18n: file: functioneditorwidget.ui:148
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:486
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: functioneditorwidget.ui:617
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functiontools.ui:29
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: sliderwidget.ui:57
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: editcoords.ui:65
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. i18n: file: editcoords.ui:103
#. i18n: ectx: property (text), widget (QLabel, textLabel4_4)
#. i18n: file: functioneditorwidget.ui:148
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:486
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: functioneditorwidget.ui:617
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functiontools.ui:29
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: sliderwidget.ui:57
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: editcoords.ui:65
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#. i18n: file: editcoords.ui:103
#. i18n: ectx: property (text), widget (QLabel, textLabel4_4)
#. i18n: file: functioneditorwidget.ui:148
#. i18n: ectx: property (text), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:486
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: functioneditorwidget.ui:617
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functiontools.ui:29
#. i18n: ectx: property (text), widget (QLabel, label_4)
#. i18n: file: sliderwidget.ui:57
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:69 rc.cpp:81 rc.cpp:246 rc.cpp:370 rc.cpp:419 rc.cpp:499 rc.cpp:1245
#: rc.cpp:1319 rc.cpp:1331 rc.cpp:1496 rc.cpp:1620 rc.cpp:1669 rc.cpp:1749
#: rc.cpp:2225 rc.cpp:69 rc.cpp:81 rc.cpp:246 rc.cpp:370 rc.cpp:419 rc.cpp:499
#: rc.cpp:1245 rc.cpp:1319 rc.cpp:1331 rc.cpp:1496 rc.cpp:1620 rc.cpp:1669
#: rc.cpp:1749 rc.cpp:2225
msgid "Min:"
msgstr "最小:"

#. i18n: file: editcoords.ui:81
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:72 rc.cpp:1322 rc.cpp:72 rc.cpp:1322
msgid "Vertical axis Range"
msgstr "垂直轴范围"

#. i18n: file: editcoords.ui:142
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_XScalingMode)
#: rc.cpp:93 rc.cpp:1343 rc.cpp:93 rc.cpp:1343
msgid "Horizontal axis Grid Spacing"
msgstr "水平轴网格线间隔"

#. i18n: file: editcoords.ui:148
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:184
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton_3)
#. i18n: file: editcoords.ui:148
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:184
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton_3)
#. i18n: file: editcoords.ui:148
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:184
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton_3)
#. i18n: file: editcoords.ui:148
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:184
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton_3)
#: rc.cpp:96 rc.cpp:108 rc.cpp:1346 rc.cpp:1358 rc.cpp:96 rc.cpp:108
#: rc.cpp:1346 rc.cpp:1358
msgid ""
"Automatic grid spacing is independent of zoom; there will be a fixed number "
"of tics."
msgstr "自动网格功能与缩放功能无关;它会有一个固定的刻度。"

#. i18n: file: editcoords.ui:151
#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:187
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_3)
#. i18n: file: editcoords.ui:151
#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:187
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_3)
#. i18n: file: editcoords.ui:151
#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:187
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_3)
#. i18n: file: editcoords.ui:151
#. i18n: ectx: property (text), widget (QRadioButton, radioButton)
#. i18n: file: editcoords.ui:187
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_3)
#: rc.cpp:99 rc.cpp:111 rc.cpp:1349 rc.cpp:1361 rc.cpp:99 rc.cpp:111
#: rc.cpp:1349 rc.cpp:1361
msgid "Automatic"
msgstr "自动"

#. i18n: file: editcoords.ui:161
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#. i18n: file: editcoords.ui:197
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_4)
#. i18n: file: editcoords.ui:161
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#. i18n: file: editcoords.ui:197
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_4)
#. i18n: file: editcoords.ui:161
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#. i18n: file: editcoords.ui:197
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_4)
#. i18n: file: editcoords.ui:161
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_2)
#. i18n: file: editcoords.ui:197
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_4)
#: rc.cpp:102 rc.cpp:114 rc.cpp:1352 rc.cpp:1364 rc.cpp:102 rc.cpp:114
#: rc.cpp:1352 rc.cpp:1364
msgid "Custom:"
msgstr "自定义:"

#. i18n: file: editcoords.ui:178
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_YScalingMode)
#: rc.cpp:105 rc.cpp:1355 rc.cpp:105 rc.cpp:1355
msgid "Vertical axis Grid Spacing"
msgstr "垂直轴网格线间隔"

#. i18n: file: equationeditorwidget.ui:31
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:117 rc.cpp:1367 rc.cpp:117 rc.cpp:1367
msgid "Expression:"
msgstr "扩展:"

#. i18n: file: equationeditorwidget.ui:54
#. i18n: ectx: property (text), widget (QPushButton, constantsButton)
#: rc.cpp:120 rc.cpp:1370 rc.cpp:120 rc.cpp:1370
msgid "Edit Constants..."
msgstr "编辑常量..."

#. i18n: file: equationeditorwidget.ui:75
#. i18n: ectx: property (text), item, widget (KComboBox, constantList)
#: rc.cpp:123 rc.cpp:1373 rc.cpp:123 rc.cpp:1373
msgid "Insert constant..."
msgstr "插入常量..."

#. i18n: file: equationeditorwidget.ui:84
#. i18n: ectx: property (text), item, widget (KComboBox, functionList)
#: rc.cpp:126 rc.cpp:1376 rc.cpp:126 rc.cpp:1376
msgid "Insert function..."
msgstr "插入函数..."

#. i18n: file: equationeditorwidget.ui:129
#. i18n: ectx: property (text), widget (QToolButton, toolButton_3)
#: rc.cpp:129 rc.cpp:1379 rc.cpp:129 rc.cpp:1379
msgid "²"
msgstr "²"

#. i18n: file: equationeditorwidget.ui:136
#. i18n: ectx: property (text), widget (QToolButton, toolButton_26)
#: rc.cpp:132 rc.cpp:1382 rc.cpp:132 rc.cpp:1382
msgid "±"
msgstr "±"

#. i18n: file: equationeditorwidget.ui:149
#. i18n: ectx: property (text), widget (QToolButton, toolButton_28)
#: rc.cpp:135 rc.cpp:1385 rc.cpp:135 rc.cpp:1385
msgid "⁶"
msgstr "⁶"

#. i18n: file: equationeditorwidget.ui:156
#. i18n: ectx: property (text), widget (QToolButton, toolButton_20)
#: rc.cpp:138 rc.cpp:1388 rc.cpp:138 rc.cpp:1388
msgid "√"
msgstr "√"

#. i18n: file: equationeditorwidget.ui:169
#. i18n: ectx: property (text), widget (QToolButton, toolButton_4)
#: rc.cpp:141 rc.cpp:1391 rc.cpp:141 rc.cpp:1391
msgid "³"
msgstr "³"

#. i18n: file: equationeditorwidget.ui:182
#. i18n: ectx: property (text), widget (QToolButton, toolButton_18)
#: rc.cpp:144 rc.cpp:1394 rc.cpp:144 rc.cpp:1394
msgid "∣"
msgstr "∣"

#. i18n: file: equationeditorwidget.ui:189
#. i18n: ectx: property (text), widget (QToolButton, toolButton_19)
#: rc.cpp:147 rc.cpp:1397 rc.cpp:147 rc.cpp:1397
msgid "≥"
msgstr "≥"

#. i18n: file: equationeditorwidget.ui:196
#. i18n: ectx: property (text), widget (QToolButton, toolButton_27)
#: rc.cpp:150 rc.cpp:1400 rc.cpp:150 rc.cpp:1400
msgid "≤"
msgstr "≤"

#. i18n: file: equationeditorwidget.ui:209
#. i18n: ectx: property (text), widget (QToolButton, toolButton_25)
#: rc.cpp:153 rc.cpp:1403 rc.cpp:153 rc.cpp:1403
msgid "⁵"
msgstr "⁵"

#. i18n: file: equationeditorwidget.ui:222
#. i18n: ectx: property (text), widget (QToolButton, toolButton_5)
#: rc.cpp:156 rc.cpp:1406 rc.cpp:156 rc.cpp:1406
msgid "⁴"
msgstr "⁴"

#. i18n: file: equationeditorwidget.ui:261
#. i18n: ectx: property (text), widget (QToolButton, toolButton_2)
#: rc.cpp:159 rc.cpp:1409 rc.cpp:159 rc.cpp:1409
msgid "π"
msgstr "π"

#. i18n: file: equationeditorwidget.ui:268
#. i18n: ectx: property (text), widget (QToolButton, toolButton_16)
#: rc.cpp:162 rc.cpp:1412 rc.cpp:162 rc.cpp:1412
msgid "ω"
msgstr "ω"

#. i18n: file: equationeditorwidget.ui:275
#. i18n: ectx: property (text), widget (QToolButton, toolButton_12)
#: rc.cpp:165 rc.cpp:1415 rc.cpp:165 rc.cpp:1415
msgid "β"
msgstr "β"

#. i18n: file: equationeditorwidget.ui:282
#. i18n: ectx: property (text), widget (QToolButton, toolButton_14)
#: rc.cpp:168 rc.cpp:1418 rc.cpp:168 rc.cpp:1418
msgid "α"
msgstr "α"

#. i18n: file: equationeditorwidget.ui:295
#. i18n: ectx: property (text), widget (QToolButton, toolButton)
#: rc.cpp:171 rc.cpp:1421 rc.cpp:171 rc.cpp:1421
msgid "λ"
msgstr "λ"

#. i18n: file: equationeditorwidget.ui:308
#. i18n: ectx: property (text), widget (QToolButton, toolButton_13)
#: rc.cpp:174 rc.cpp:1424 rc.cpp:174 rc.cpp:1424
msgid "μ"
msgstr "μ"

#. i18n: file: equationeditorwidget.ui:315
#. i18n: ectx: property (text), widget (QToolButton, toolButton_15)
#: rc.cpp:177 rc.cpp:1427 rc.cpp:177 rc.cpp:1427
msgid "φ"
msgstr "φ"

#. i18n: file: equationeditorwidget.ui:328
#. i18n: ectx: property (text), widget (QToolButton, toolButton_11)
#: rc.cpp:180 rc.cpp:1430 rc.cpp:180 rc.cpp:1430
msgid "θ"
msgstr "θ"

#. i18n: file: equationeditorwidget.ui:361
#. i18n: ectx: property (text), widget (QToolButton, toolButton_24)
#: rc.cpp:183 rc.cpp:1433 rc.cpp:183 rc.cpp:1433
msgid "⅘"
msgstr "⅘"

#. i18n: file: equationeditorwidget.ui:368
#. i18n: ectx: property (text), widget (QToolButton, toolButton_21)
#: rc.cpp:186 rc.cpp:1436 rc.cpp:186 rc.cpp:1436
msgid "⅕"
msgstr "⅕"

#. i18n: file: equationeditorwidget.ui:375
#. i18n: ectx: property (text), widget (QToolButton, toolButton_8)
#: rc.cpp:189 rc.cpp:1439 rc.cpp:189 rc.cpp:1439
msgid "¼"
msgstr "¼"

#. i18n: file: equationeditorwidget.ui:382
#. i18n: ectx: property (text), widget (QToolButton, toolButton_9)
#: rc.cpp:192 rc.cpp:1442 rc.cpp:192 rc.cpp:1442
msgid "⅔"
msgstr "⅔"

#. i18n: file: equationeditorwidget.ui:389
#. i18n: ectx: property (text), widget (QToolButton, toolButton_22)
#: rc.cpp:195 rc.cpp:1445 rc.cpp:195 rc.cpp:1445
msgid "⅖"
msgstr "⅖"

#. i18n: file: equationeditorwidget.ui:396
#. i18n: ectx: property (text), widget (QToolButton, toolButton_23)
#: rc.cpp:198 rc.cpp:1448 rc.cpp:198 rc.cpp:1448
msgid "⅗"
msgstr "⅗"

#. i18n: file: equationeditorwidget.ui:403
#. i18n: ectx: property (text), widget (QToolButton, toolButton_10)
#: rc.cpp:201 rc.cpp:1451 rc.cpp:201 rc.cpp:1451
msgid "¾"
msgstr "¾"

#. i18n: file: equationeditorwidget.ui:410
#. i18n: ectx: property (text), widget (QToolButton, toolButton_7)
#: rc.cpp:204 rc.cpp:1454 rc.cpp:204 rc.cpp:1454
msgid "½"
msgstr "½"

#. i18n: file: equationeditorwidget.ui:417
#. i18n: ectx: property (text), widget (QToolButton, toolButton_6)
#: rc.cpp:207 rc.cpp:1457 rc.cpp:207 rc.cpp:1457
msgid "⅓"
msgstr "⅓"

#. i18n: file: equationeditorwidget.ui:424
#. i18n: ectx: property (text), widget (QToolButton, toolButton_17)
#: rc.cpp:210 rc.cpp:1460 rc.cpp:210 rc.cpp:1460
msgid "⅙"
msgstr "⅙"

#. i18n: file: functioneditorwidget.ui:50
#. i18n: ectx: property (toolTip), widget (QPushButton, deleteButton)
#: rc.cpp:213 rc.cpp:1463 rc.cpp:213 rc.cpp:1463
msgid "delete the selected function"
msgstr "删除选中的函数"

#. i18n: file: functioneditorwidget.ui:53
#. i18n: ectx: property (whatsThis), widget (QPushButton, deleteButton)
#: rc.cpp:216 rc.cpp:1466 rc.cpp:216 rc.cpp:1466
msgid "Click here to delete the selected function from the list."
msgstr "单击此处从列表中删除选中的函数。"

#. i18n: file: functioneditorwidget.ui:76
#. i18n: ectx: property (text), widget (QPushButton, createNewPlot)
#: rc.cpp:222 rc.cpp:1472 rc.cpp:222 rc.cpp:1472
msgid "Create"
msgstr "创建"

#. i18n: file: functioneditorwidget.ui:102
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: file: functioneditorwidget.ui:743
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. i18n: file: functioneditorwidget.ui:102
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: file: functioneditorwidget.ui:743
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. i18n: file: functioneditorwidget.ui:102
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: file: functioneditorwidget.ui:743
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#. i18n: file: functioneditorwidget.ui:102
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#. i18n: file: functioneditorwidget.ui:743
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#: rc.cpp:225 rc.cpp:461 rc.cpp:1475 rc.cpp:1711 rc.cpp:225 rc.cpp:461
#: rc.cpp:1475 rc.cpp:1711
msgid "Function"
msgstr "函数"

#. i18n: file: functioneditorwidget.ui:117
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:228 rc.cpp:1478 rc.cpp:228 rc.cpp:1478
msgid "Custom plot range"
msgstr "自定义绘图范围"

#. i18n: file: functioneditorwidget.ui:129
#. i18n: ectx: property (toolTip), widget (QCheckBox, cartesianCustomMax)
#: rc.cpp:231 rc.cpp:1481 rc.cpp:231 rc.cpp:1481
msgid "Customize the maximum plot range"
msgstr "自定义最大绘图范围"

#. i18n: file: functioneditorwidget.ui:132
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:145
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:132
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:145
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:132
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:145
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMin)
#. i18n: file: functioneditorwidget.ui:132
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMax)
#. i18n: file: functioneditorwidget.ui:145
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cartesianCustomMin)
#: rc.cpp:234 rc.cpp:243 rc.cpp:1484 rc.cpp:1493 rc.cpp:234 rc.cpp:243
#: rc.cpp:1484 rc.cpp:1493
msgid "Check this button and enter the plot range boundaries below."
msgstr ""

#. i18n: file: functioneditorwidget.ui:142
#. i18n: ectx: property (toolTip), widget (QCheckBox, cartesianCustomMin)
#: rc.cpp:240 rc.cpp:1490 rc.cpp:240 rc.cpp:1490
msgid "Customize the minimum plot range"
msgstr "自定义最小绘图范围"

#. i18n: file: functioneditorwidget.ui:158
#. i18n: ectx: property (toolTip), widget (EquationEdit, cartesianMin)
#: rc.cpp:249 rc.cpp:1499 rc.cpp:249 rc.cpp:1499
msgid "lower boundary of the plot range"
msgstr "绘图范围的下边界"

#. i18n: file: functioneditorwidget.ui:161
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMin)
#. i18n: file: functioneditorwidget.ui:512
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:600
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:42
#. i18n: ectx: property (whatsThis), widget (EquationEdit, min)
#. i18n: file: functioneditorwidget.ui:161
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMin)
#. i18n: file: functioneditorwidget.ui:512
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:600
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:42
#. i18n: ectx: property (whatsThis), widget (EquationEdit, min)
#. i18n: file: functioneditorwidget.ui:161
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMin)
#. i18n: file: functioneditorwidget.ui:512
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:600
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:42
#. i18n: ectx: property (whatsThis), widget (EquationEdit, min)
#. i18n: file: functioneditorwidget.ui:161
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMin)
#. i18n: file: functioneditorwidget.ui:512
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:600
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:42
#. i18n: ectx: property (whatsThis), widget (EquationEdit, min)
#: rc.cpp:252 rc.cpp:379 rc.cpp:410 rc.cpp:505 rc.cpp:1502 rc.cpp:1629
#: rc.cpp:1660 rc.cpp:1755 rc.cpp:252 rc.cpp:379 rc.cpp:410 rc.cpp:505
#: rc.cpp:1502 rc.cpp:1629 rc.cpp:1660 rc.cpp:1755
msgid ""
"Enter the lower boundary of the plot range. Expressions like 2*pi are "
"allowed, too."
msgstr "输入绘图范围的下边界。也允许像 2*pi 这样的表达式。"

#. i18n: file: functioneditorwidget.ui:171
#. i18n: ectx: property (toolTip), widget (EquationEdit, cartesianMax)
#: rc.cpp:255 rc.cpp:1505 rc.cpp:255 rc.cpp:1505
msgid "upper boundary of the plot range"
msgstr "绘图范围的上边界"

#. i18n: file: functioneditorwidget.ui:174
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMax)
#. i18n: file: functioneditorwidget.ui:525
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:610
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:62
#. i18n: ectx: property (whatsThis), widget (EquationEdit, max)
#. i18n: file: functioneditorwidget.ui:174
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMax)
#. i18n: file: functioneditorwidget.ui:525
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:610
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:62
#. i18n: ectx: property (whatsThis), widget (EquationEdit, max)
#. i18n: file: functioneditorwidget.ui:174
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMax)
#. i18n: file: functioneditorwidget.ui:525
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:610
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:62
#. i18n: ectx: property (whatsThis), widget (EquationEdit, max)
#. i18n: file: functioneditorwidget.ui:174
#. i18n: ectx: property (whatsThis), widget (EquationEdit, cartesianMax)
#. i18n: file: functioneditorwidget.ui:525
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:610
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:62
#. i18n: ectx: property (whatsThis), widget (EquationEdit, max)
#: rc.cpp:258 rc.cpp:385 rc.cpp:416 rc.cpp:514 rc.cpp:1508 rc.cpp:1635
#: rc.cpp:1666 rc.cpp:1764 rc.cpp:258 rc.cpp:385 rc.cpp:416 rc.cpp:514
#: rc.cpp:1508 rc.cpp:1635 rc.cpp:1666 rc.cpp:1764
msgid ""
"Enter the upper boundary of the plot range. Expressions like 2*pi are "
"allowed, too."
msgstr "输入绘图范围的上边界。也允许像 2*pi 这样的表达式。"

#. i18n: file: functioneditorwidget.ui:191
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f0)
#. i18n: file: functioneditorwidget.ui:378
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_integral)
#. i18n: file: functioneditorwidget.ui:542
#. i18n: ectx: property (title), widget (PlotStyleWidget, parametric_f0)
#. i18n: file: functioneditorwidget.ui:647
#. i18n: ectx: property (title), widget (PlotStyleWidget, polar_f0)
#. i18n: file: functioneditorwidget.ui:722
#. i18n: ectx: property (title), widget (PlotStyleWidget, implicit_f0)
#. i18n: file: functioneditorwidget.ui:805
#. i18n: ectx: property (title), widget (PlotStyleWidget, differential_f0)
#. i18n: file: functioneditorwidget.ui:191
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f0)
#. i18n: file: functioneditorwidget.ui:378
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_integral)
#. i18n: file: functioneditorwidget.ui:542
#. i18n: ectx: property (title), widget (PlotStyleWidget, parametric_f0)
#. i18n: file: functioneditorwidget.ui:647
#. i18n: ectx: property (title), widget (PlotStyleWidget, polar_f0)
#. i18n: file: functioneditorwidget.ui:722
#. i18n: ectx: property (title), widget (PlotStyleWidget, implicit_f0)
#. i18n: file: functioneditorwidget.ui:805
#. i18n: ectx: property (title), widget (PlotStyleWidget, differential_f0)
#. i18n: file: functioneditorwidget.ui:191
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f0)
#. i18n: file: functioneditorwidget.ui:378
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_integral)
#. i18n: file: functioneditorwidget.ui:542
#. i18n: ectx: property (title), widget (PlotStyleWidget, parametric_f0)
#. i18n: file: functioneditorwidget.ui:647
#. i18n: ectx: property (title), widget (PlotStyleWidget, polar_f0)
#. i18n: file: functioneditorwidget.ui:722
#. i18n: ectx: property (title), widget (PlotStyleWidget, implicit_f0)
#. i18n: file: functioneditorwidget.ui:805
#. i18n: ectx: property (title), widget (PlotStyleWidget, differential_f0)
#. i18n: file: functioneditorwidget.ui:191
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f0)
#. i18n: file: functioneditorwidget.ui:378
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_integral)
#. i18n: file: functioneditorwidget.ui:542
#. i18n: ectx: property (title), widget (PlotStyleWidget, parametric_f0)
#. i18n: file: functioneditorwidget.ui:647
#. i18n: ectx: property (title), widget (PlotStyleWidget, polar_f0)
#. i18n: file: functioneditorwidget.ui:722
#. i18n: ectx: property (title), widget (PlotStyleWidget, implicit_f0)
#. i18n: file: functioneditorwidget.ui:805
#. i18n: ectx: property (title), widget (PlotStyleWidget, differential_f0)
#: rc.cpp:264 rc.cpp:339 rc.cpp:391 rc.cpp:428 rc.cpp:458 rc.cpp:487
#: rc.cpp:1514 rc.cpp:1589 rc.cpp:1641 rc.cpp:1678 rc.cpp:1708 rc.cpp:1737
#: rc.cpp:264 rc.cpp:339 rc.cpp:391 rc.cpp:428 rc.cpp:458 rc.cpp:487
#: rc.cpp:1514 rc.cpp:1589 rc.cpp:1641 rc.cpp:1678 rc.cpp:1708 rc.cpp:1737
msgid "Appearance"
msgstr "外观"

#. i18n: file: functioneditorwidget.ui:199
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#: rc.cpp:267 rc.cpp:1517 rc.cpp:267 rc.cpp:1517
msgid "Derivatives"
msgstr "导函数"

#. i18n: file: functioneditorwidget.ui:211
#. i18n: ectx: property (toolTip), widget (QCheckBox, showDerivative1)
#: rc.cpp:270 rc.cpp:1520 rc.cpp:270 rc.cpp:1520
msgid "Show first derivative"
msgstr "显示一阶导函数"

#. i18n: file: functioneditorwidget.ui:214
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative1)
#. i18n: file: functioneditorwidget.ui:237
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative2)
#. i18n: file: functioneditorwidget.ui:214
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative1)
#. i18n: file: functioneditorwidget.ui:237
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative2)
#. i18n: file: functioneditorwidget.ui:214
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative1)
#. i18n: file: functioneditorwidget.ui:237
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative2)
#. i18n: file: functioneditorwidget.ui:214
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative1)
#. i18n: file: functioneditorwidget.ui:237
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showDerivative2)
#: rc.cpp:273 rc.cpp:285 rc.cpp:1523 rc.cpp:1535 rc.cpp:273 rc.cpp:285
#: rc.cpp:1523 rc.cpp:1535
msgid "If this box is checked, the first derivative will be plotted, too."
msgstr "如果选中此框,也将绘制一阶导函数。"

#. i18n: file: functioneditorwidget.ui:217
#. i18n: ectx: property (text), widget (QCheckBox, showDerivative1)
#: rc.cpp:276 rc.cpp:1526 rc.cpp:276 rc.cpp:1526
msgid "Show &1st derivative"
msgstr "显示一阶导函数(&1)"

#. i18n: file: functioneditorwidget.ui:227
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f1)
#: rc.cpp:279 rc.cpp:1529 rc.cpp:279 rc.cpp:1529
msgid "1st derivative"
msgstr "一阶导函数"

#. i18n: file: functioneditorwidget.ui:234
#. i18n: ectx: property (toolTip), widget (QCheckBox, showDerivative2)
#: rc.cpp:282 rc.cpp:1532 rc.cpp:282 rc.cpp:1532
msgid "Show second derivative"
msgstr "显示二阶导函数"

#. i18n: file: functioneditorwidget.ui:240
#. i18n: ectx: property (text), widget (QCheckBox, showDerivative2)
#: rc.cpp:288 rc.cpp:1538 rc.cpp:288 rc.cpp:1538
msgid "Show &2nd derivative"
msgstr "显示二阶导函数(&2)"

#. i18n: file: functioneditorwidget.ui:250
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f2)
#: rc.cpp:291 rc.cpp:1541 rc.cpp:291 rc.cpp:1541
msgid "2nd derivative"
msgstr "二阶导函数"

#. i18n: file: functioneditorwidget.ui:258
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#: rc.cpp:294 rc.cpp:1544 rc.cpp:294 rc.cpp:1544
msgid "Integral"
msgstr "积分"

#. i18n: file: functioneditorwidget.ui:267
#. i18n: ectx: property (toolTip), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:273
#. i18n: ectx: property (text), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:267
#. i18n: ectx: property (toolTip), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:273
#. i18n: ectx: property (text), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:267
#. i18n: ectx: property (toolTip), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:273
#. i18n: ectx: property (text), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:267
#. i18n: ectx: property (toolTip), widget (QCheckBox, showIntegral)
#. i18n: file: functioneditorwidget.ui:273
#. i18n: ectx: property (text), widget (QCheckBox, showIntegral)
#: rc.cpp:297 rc.cpp:303 rc.cpp:1547 rc.cpp:1553 rc.cpp:297 rc.cpp:303
#: rc.cpp:1547 rc.cpp:1553
msgid "Show integral"
msgstr "显示积分"

#. i18n: file: functioneditorwidget.ui:270
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showIntegral)
#: rc.cpp:300 rc.cpp:1550 rc.cpp:300 rc.cpp:1550
msgid "If this box is checked, the integral will be plotted, too."
msgstr ""

#. i18n: file: functioneditorwidget.ui:283
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_6)
#: rc.cpp:306 rc.cpp:1556 rc.cpp:306 rc.cpp:1556
msgid "A point on the solution curve"
msgstr "曲线上的点"

#. i18n: file: functioneditorwidget.ui:286
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_6)
#: rc.cpp:309 rc.cpp:1559 rc.cpp:309 rc.cpp:1559
msgid "Initial Point"
msgstr "起始点"

#. i18n: file: functioneditorwidget.ui:298
#. i18n: ectx: property (text), widget (QLabel, textLabel1_5)
#: rc.cpp:312 rc.cpp:1562 rc.cpp:312 rc.cpp:1562
msgid "&x:"
msgstr "&x:"

#. i18n: file: functioneditorwidget.ui:308
#. i18n: ectx: property (text), widget (QLabel, textLabel1_5_2)
#: rc.cpp:315 rc.cpp:1565 rc.cpp:315 rc.cpp:1565
msgid "&y:"
msgstr "&y:"

#. i18n: file: functioneditorwidget.ui:318
#. i18n: ectx: property (toolTip), widget (EquationEdit, txtInitX)
#: rc.cpp:318 rc.cpp:1568 rc.cpp:318 rc.cpp:1568
msgid "Enter the initial x-point,for instance 2 or pi"
msgstr "输入起始点的 x 值,如 2 或 pi"

#. i18n: file: functioneditorwidget.ui:321
#. i18n: ectx: property (whatsThis), widget (EquationEdit, txtInitX)
#: rc.cpp:321 rc.cpp:1571 rc.cpp:321 rc.cpp:1571
msgid ""
"Enter the initial x-value or expression for the integral, for example 2 or "
"pi/2"
msgstr "输入积分起始点的 x 值或表达式,如 2 或 pi/2"

#. i18n: file: functioneditorwidget.ui:328
#. i18n: ectx: property (toolTip), widget (EquationEdit, txtInitY)
#: rc.cpp:324 rc.cpp:1574 rc.cpp:324 rc.cpp:1574
msgid "enter the initial y-point, eg 2 or pi"
msgstr "输入起始点的 y 值,如 2 或 pi"

#. i18n: file: functioneditorwidget.ui:331
#. i18n: ectx: property (whatsThis), widget (EquationEdit, txtInitY)
#: rc.cpp:327 rc.cpp:1577 rc.cpp:327 rc.cpp:1577
msgid ""
"Enter the initial y-value or expression for the integral, for example 2 or "
"pi/2"
msgstr "输入积分起始点的 y 值或表达式,如 2 或 pi/2"

#. i18n: file: functioneditorwidget.ui:344
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:767
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_10)
#. i18n: file: functioneditorwidget.ui:344
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:767
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_10)
#. i18n: file: functioneditorwidget.ui:344
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:767
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_10)
#. i18n: file: functioneditorwidget.ui:344
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:767
#. i18n: ectx: property (toolTip), widget (QGroupBox, groupBox_10)
#: rc.cpp:330 rc.cpp:475 rc.cpp:1580 rc.cpp:1725 rc.cpp:330 rc.cpp:475
#: rc.cpp:1580 rc.cpp:1725
msgid "The maximum step size used in numerically calculating the solution"
msgstr "数值计算时需要的最大间距值"

#. i18n: file: functioneditorwidget.ui:347
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:770
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_10)
#. i18n: file: functioneditorwidget.ui:347
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:770
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_10)
#. i18n: file: functioneditorwidget.ui:347
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:770
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_10)
#. i18n: file: functioneditorwidget.ui:347
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_8)
#. i18n: file: functioneditorwidget.ui:770
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_10)
#: rc.cpp:333 rc.cpp:478 rc.cpp:1583 rc.cpp:1728 rc.cpp:333 rc.cpp:478
#: rc.cpp:1583 rc.cpp:1728
msgid "Precision"
msgstr "精度"

#. i18n: file: functioneditorwidget.ui:359
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: file: functioneditorwidget.ui:782
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: file: parameteranimator.ui:71
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functioneditorwidget.ui:359
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: file: functioneditorwidget.ui:782
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: file: parameteranimator.ui:71
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functioneditorwidget.ui:359
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: file: functioneditorwidget.ui:782
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: file: parameteranimator.ui:71
#. i18n: ectx: property (text), widget (QLabel, label_3)
#. i18n: file: functioneditorwidget.ui:359
#. i18n: ectx: property (text), widget (QLabel, label_6)
#. i18n: file: functioneditorwidget.ui:782
#. i18n: ectx: property (text), widget (QLabel, label_7)
#. i18n: file: parameteranimator.ui:71
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:336 rc.cpp:481 rc.cpp:817 rc.cpp:1586 rc.cpp:1731 rc.cpp:1797
#: rc.cpp:336 rc.cpp:481 rc.cpp:817 rc.cpp:1586 rc.cpp:1731 rc.cpp:1797
msgid "Step:"
msgstr "间距:"

#. i18n: file: functioneditorwidget.ui:412
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_11)
#. i18n: file: functioneditorwidget.ui:559
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: file: functioneditorwidget.ui:664
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_12)
#. i18n: file: functioneditorwidget.ui:412
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_11)
#. i18n: file: functioneditorwidget.ui:559
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: file: functioneditorwidget.ui:664
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_12)
#. i18n: file: functioneditorwidget.ui:412
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_11)
#. i18n: file: functioneditorwidget.ui:559
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: file: functioneditorwidget.ui:664
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_12)
#. i18n: file: functioneditorwidget.ui:412
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_11)
#. i18n: file: functioneditorwidget.ui:559
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#. i18n: file: functioneditorwidget.ui:664
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_12)
#: rc.cpp:342 rc.cpp:394 rc.cpp:431 rc.cpp:1592 rc.cpp:1644 rc.cpp:1681
#: rc.cpp:342 rc.cpp:394 rc.cpp:431 rc.cpp:1592 rc.cpp:1644 rc.cpp:1681
msgid "Definition"
msgstr "定义"

#. i18n: file: functioneditorwidget.ui:424
#. i18n: ectx: property (text), widget (QLabel, textLabelX)
#: rc.cpp:345 rc.cpp:1595 rc.cpp:345 rc.cpp:1595
msgid "x:"
msgstr "x:"

#. i18n: file: functioneditorwidget.ui:434
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricX)
#. i18n: file: functioneditorwidget.ui:459
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricY)
#. i18n: file: functioneditorwidget.ui:700
#. i18n: ectx: property (toolTip), widget (EquationEdit, implicitEquation)
#. i18n: file: functioneditorwidget.ui:752
#. i18n: ectx: property (toolTip), widget (EquationEdit, differentialEquation)
#. i18n: file: functioneditorwidget.ui:434
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricX)
#. i18n: file: functioneditorwidget.ui:459
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricY)
#. i18n: file: functioneditorwidget.ui:700
#. i18n: ectx: property (toolTip), widget (EquationEdit, implicitEquation)
#. i18n: file: functioneditorwidget.ui:752
#. i18n: ectx: property (toolTip), widget (EquationEdit, differentialEquation)
#. i18n: file: functioneditorwidget.ui:434
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricX)
#. i18n: file: functioneditorwidget.ui:459
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricY)
#. i18n: file: functioneditorwidget.ui:700
#. i18n: ectx: property (toolTip), widget (EquationEdit, implicitEquation)
#. i18n: file: functioneditorwidget.ui:752
#. i18n: ectx: property (toolTip), widget (EquationEdit, differentialEquation)
#. i18n: file: functioneditorwidget.ui:434
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricX)
#. i18n: file: functioneditorwidget.ui:459
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricY)
#. i18n: file: functioneditorwidget.ui:700
#. i18n: ectx: property (toolTip), widget (EquationEdit, implicitEquation)
#. i18n: file: functioneditorwidget.ui:752
#. i18n: ectx: property (toolTip), widget (EquationEdit, differentialEquation)
#: rc.cpp:348 rc.cpp:359 rc.cpp:447 rc.cpp:464 rc.cpp:1598 rc.cpp:1609
#: rc.cpp:1697 rc.cpp:1714 rc.cpp:348 rc.cpp:359 rc.cpp:447 rc.cpp:464
#: rc.cpp:1598 rc.cpp:1609 rc.cpp:1697 rc.cpp:1714
msgid "Enter an expression"
msgstr "输入表达式"

#. i18n: file: functioneditorwidget.ui:439
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricX)
#: rc.cpp:351 rc.cpp:1601 rc.cpp:351 rc.cpp:1601
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: cos(t)"
msgstr ""
"输入函数表达式。\n"
"中间变量为 t。\n"
"如:cos(t)"

#. i18n: file: functioneditorwidget.ui:449
#. i18n: ectx: property (text), widget (QLabel, textLabelY)
#: rc.cpp:356 rc.cpp:1606 rc.cpp:356 rc.cpp:1606
msgid "y:"
msgstr "y:"

#. i18n: file: functioneditorwidget.ui:464
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricY)
#: rc.cpp:362 rc.cpp:1612 rc.cpp:362 rc.cpp:1612
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: sin(t)"
msgstr ""
"输入函数表达式。\n"
"中间变量为 t。\n"
"例如:sin(t)"

#. i18n: file: functioneditorwidget.ui:474
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_9)
#: rc.cpp:367 rc.cpp:1617 rc.cpp:367 rc.cpp:1617
msgid "Plot range"
msgstr "绘图范围"

#. i18n: file: functioneditorwidget.ui:509
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:597
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:39
#. i18n: ectx: property (toolTip), widget (EquationEdit, min)
#. i18n: file: functioneditorwidget.ui:509
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:597
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:39
#. i18n: ectx: property (toolTip), widget (EquationEdit, min)
#. i18n: file: functioneditorwidget.ui:509
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:597
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:39
#. i18n: ectx: property (toolTip), widget (EquationEdit, min)
#. i18n: file: functioneditorwidget.ui:509
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMin)
#. i18n: file: functioneditorwidget.ui:597
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMin)
#. i18n: file: functiontools.ui:39
#. i18n: ectx: property (toolTip), widget (EquationEdit, min)
#: rc.cpp:376 rc.cpp:407 rc.cpp:502 rc.cpp:1626 rc.cpp:1657 rc.cpp:1752
#: rc.cpp:376 rc.cpp:407 rc.cpp:502 rc.cpp:1626 rc.cpp:1657 rc.cpp:1752
msgid "Lower boundary of the plot range"
msgstr "绘图范围的下边界"

#. i18n: file: functioneditorwidget.ui:522
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:607
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:59
#. i18n: ectx: property (toolTip), widget (EquationEdit, max)
#. i18n: file: functioneditorwidget.ui:522
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:607
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:59
#. i18n: ectx: property (toolTip), widget (EquationEdit, max)
#. i18n: file: functioneditorwidget.ui:522
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:607
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:59
#. i18n: ectx: property (toolTip), widget (EquationEdit, max)
#. i18n: file: functioneditorwidget.ui:522
#. i18n: ectx: property (toolTip), widget (EquationEdit, parametricMax)
#. i18n: file: functioneditorwidget.ui:607
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarMax)
#. i18n: file: functiontools.ui:59
#. i18n: ectx: property (toolTip), widget (EquationEdit, max)
#: rc.cpp:382 rc.cpp:413 rc.cpp:511 rc.cpp:1632 rc.cpp:1663 rc.cpp:1761
#: rc.cpp:382 rc.cpp:413 rc.cpp:511 rc.cpp:1632 rc.cpp:1663 rc.cpp:1761
msgid "Upper boundary of the plot range"
msgstr "绘图范围的上边界"

#. i18n: file: functioneditorwidget.ui:571
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarEquation)
#: rc.cpp:397 rc.cpp:1647 rc.cpp:397 rc.cpp:1647
msgid "Enter an equation"
msgstr "输入方程式"

#. i18n: file: functioneditorwidget.ui:575
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarEquation)
#: rc.cpp:400 rc.cpp:1650 rc.cpp:400 rc.cpp:1650
msgid ""
"Enter an expression for the function. The prefix \"r\" will be added "
"automatically.\n"
"Example: loop(angle)=ln(angle)"
msgstr ""
"输入函数的表达式。程序会自动添加前缀“r”。\n"
"如:loop(angle)=ln(angle)"

#. i18n: file: functioneditorwidget.ui:585
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_13)
#: rc.cpp:404 rc.cpp:1654 rc.cpp:404 rc.cpp:1654
msgid "Plot Range"
msgstr "绘图范围"

#. i18n: file: functioneditorwidget.ui:676
#. i18n: ectx: property (toolTip), widget (KLineEdit, implicitName)
#: rc.cpp:434 rc.cpp:1684 rc.cpp:434 rc.cpp:1684
msgid "Name of the function"
msgstr "函数名"

#. i18n: file: functioneditorwidget.ui:680
#. i18n: ectx: property (whatsThis), widget (KLineEdit, implicitName)
#: rc.cpp:437 rc.cpp:1687 rc.cpp:437 rc.cpp:1687
msgid ""
"Enter the name of the function.\n"
"The name of a function must be unique. If you leave this line empty KmPlot "
"will set a default name. You can change it later."
msgstr ""
"输入函数名称。\n"
"函数名称必须唯一。如果您将此行留空,KmPlot 将会设置一个默认名称。您稍后可进行更改。"

#. i18n: file: functioneditorwidget.ui:683
#. i18n: ectx: property (text), widget (KLineEdit, implicitName)
#: rc.cpp:441 rc.cpp:1691 rc.cpp:441 rc.cpp:1691
msgid "f(x,y)"
msgstr "f(x,y)"

#. i18n: file: functioneditorwidget.ui:690
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#: rc.cpp:444 rc.cpp:1694 rc.cpp:444 rc.cpp:1694
msgid "Name:"
msgstr "名称:"

#. i18n: file: functioneditorwidget.ui:705
#. i18n: ectx: property (whatsThis), widget (EquationEdit, implicitEquation)
#: rc.cpp:450 rc.cpp:1700 rc.cpp:450 rc.cpp:1700
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: x^2 + y^2 = 25."
msgstr ""
"输入函数表达式。\n"
"中间变量为 t。\n"
"例如: x^2 + y^2 = 25"

#. i18n: file: functioneditorwidget.ui:757
#. i18n: ectx: property (whatsThis), widget (EquationEdit, differentialEquation)
#: rc.cpp:467 rc.cpp:1717 rc.cpp:467 rc.cpp:1717
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: f''(x) = -f"
msgstr ""
"输入函数表达式。\n"
"中间变量为 t。\n"
"例如:f''(x) = -f"

#. i18n: file: functioneditorwidget.ui:760
#. i18n: ectx: property (text), widget (EquationEdit, differentialEquation)
#: rc.cpp:472 rc.cpp:1722 rc.cpp:472 rc.cpp:1722
msgid "f''(x) = -f"
msgstr "f''(x) = -f"

#. i18n: file: functioneditorwidget.ui:813
#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#. i18n: file: initialconditionswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, InitialConditionsWidget)
#. i18n: file: functioneditorwidget.ui:813
#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#. i18n: file: initialconditionswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, InitialConditionsWidget)
#. i18n: file: functioneditorwidget.ui:813
#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#. i18n: file: initialconditionswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, InitialConditionsWidget)
#. i18n: file: functioneditorwidget.ui:813
#. i18n: ectx: attribute (title), widget (QWidget, tab_5)
#. i18n: file: initialconditionswidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, InitialConditionsWidget)
#: rc.cpp:490 rc.cpp:520 rc.cpp:1740 rc.cpp:1770 rc.cpp:490 rc.cpp:520
#: rc.cpp:1740 rc.cpp:1770
msgid "Initial Conditions"
msgstr "初始条件"

#. i18n: file: functiontools.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, FunctionTools)
#: rc.cpp:493 rc.cpp:1743 rc.cpp:493 rc.cpp:1743
msgid "Function Tools"
msgstr "函数工具"

#. i18n: file: functiontools.ui:22
#. i18n: ectx: property (text), widget (QLabel, rangeTitle)
#: rc.cpp:496 rc.cpp:1746 rc.cpp:496 rc.cpp:1746
msgid "<>:"
msgstr "<>:"

#. i18n: file: functiontools.ui:69
#. i18n: ectx: property (text), widget (QLabel, rangeResult)
#: rc.cpp:517 rc.cpp:1767 rc.cpp:517 rc.cpp:1767
msgid "<>"
msgstr "<>"

#. i18n: file: initialconditionswidget.ui:49
#. i18n: ectx: property (text), widget (QPushButton, removeButton)
#: rc.cpp:523 rc.cpp:1773 rc.cpp:523 rc.cpp:1773
msgid "Remove"
msgstr "删除"

#. i18n: file: initialconditionswidget.ui:56
#. i18n: ectx: property (text), widget (QPushButton, addButton)
#: rc.cpp:526 rc.cpp:1776 rc.cpp:526 rc.cpp:1776
msgid "Add..."
msgstr "添加..."

#. i18n: file: parameteranimator.ui:23
#. i18n: ectx: property (toolTip), widget (QLabel, warningLabel)
#: rc.cpp:799 rc.cpp:1779 rc.cpp:799 rc.cpp:1779
msgid ""
"The function must have an additional variable as a parameter, e.g. f(x,k) "
"would have k as its parameter"
msgstr "此函数必须包含一个附加变量作为参数,如 f(x,k) 中的 k 即是它的参数"

#. i18n: file: parameteranimator.ui:29
#. i18n: ectx: property (text), widget (QLabel, warningLabel)
#: rc.cpp:802 rc.cpp:1782 rc.cpp:802 rc.cpp:1782
msgid ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style "
"type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:Sans Serif; font-size:9pt; font-"
"weight:400; font-style:normal; text-decoration:none;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px; font-family:Sans;\"><span "
"style=\" font-weight:600;\">Warning:</span> The current function does not "
"have a parameter, and so cannot be animated.</p></body></html>"
msgstr ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style "
"type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:Sans Serif; font-size:9pt; font-"
"weight:400; font-style:normal; text-decoration:none;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px; font-family:Sans;\"><span "
"style=\" font-"
"weight:600;\">警告:</span>当前函数没有参数,所以无法让它产生动画效果。</p></body></html>"

#. i18n: file: parameteranimator.ui:47
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:808 rc.cpp:1788 rc.cpp:808 rc.cpp:1788
msgid "Final value:"
msgstr "最终值:"

#. i18n: file: parameteranimator.ui:57
#. i18n: ectx: property (text), widget (EquationEdit, step)
#: rc.cpp:811 rc.cpp:1791 rc.cpp:811 rc.cpp:1791
msgid "1"
msgstr "1"

#. i18n: file: parameteranimator.ui:64
#. i18n: ectx: property (text), widget (EquationEdit, final)
#: rc.cpp:814 rc.cpp:1794 rc.cpp:814 rc.cpp:1794
msgid "10"
msgstr "10"

#. i18n: file: parameteranimator.ui:81
#. i18n: ectx: property (text), widget (EquationEdit, initial)
#. i18n: file: parameteranimator.ui:131
#. i18n: ectx: property (text), widget (QLabel, currentValue)
#. i18n: file: parameteranimator.ui:81
#. i18n: ectx: property (text), widget (EquationEdit, initial)
#. i18n: file: parameteranimator.ui:131
#. i18n: ectx: property (text), widget (QLabel, currentValue)
#. i18n: file: parameteranimator.ui:81
#. i18n: ectx: property (text), widget (EquationEdit, initial)
#. i18n: file: parameteranimator.ui:131
#. i18n: ectx: property (text), widget (QLabel, currentValue)
#. i18n: file: parameteranimator.ui:81
#. i18n: ectx: property (text), widget (EquationEdit, initial)
#. i18n: file: parameteranimator.ui:131
#. i18n: ectx: property (text), widget (QLabel, currentValue)
#: rc.cpp:820 rc.cpp:829 rc.cpp:1800 rc.cpp:1809 rc.cpp:820 rc.cpp:829
#: rc.cpp:1800 rc.cpp:1809
msgid "0"
msgstr "0"

#. i18n: file: parameteranimator.ui:88
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:823 rc.cpp:1803 rc.cpp:823 rc.cpp:1803
msgid "Initial value:"
msgstr "初始值:"

#. i18n: file: parameteranimator.ui:124
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:826 rc.cpp:1806 rc.cpp:826 rc.cpp:1806
msgid "Current Value:"
msgstr "当前值:"

#. i18n: file: parameteranimator.ui:177
#. i18n: ectx: property (text), widget (QToolButton, gotoInitial)
#: rc.cpp:832 rc.cpp:1812 rc.cpp:832 rc.cpp:1812
msgid "<<"
msgstr "<<"

#. i18n: file: parameteranimator.ui:184
#. i18n: ectx: property (text), widget (QToolButton, stepBackwards)
#: rc.cpp:835 rc.cpp:1815 rc.cpp:835 rc.cpp:1815
msgid "<"
msgstr "<"

#. i18n: file: parameteranimator.ui:194
#. i18n: ectx: property (text), widget (QToolButton, pause)
#: rc.cpp:838 rc.cpp:1818 rc.cpp:838 rc.cpp:1818
msgid "||"
msgstr "||"

#. i18n: file: parameteranimator.ui:201
#. i18n: ectx: property (text), widget (QToolButton, stepForwards)
#: rc.cpp:841 rc.cpp:1821 rc.cpp:841 rc.cpp:1821
msgid ">"
msgstr ">"

#. i18n: file: parameteranimator.ui:211
#. i18n: ectx: property (text), widget (QToolButton, gotoFinal)
#: rc.cpp:844 rc.cpp:1824 rc.cpp:844 rc.cpp:1824
msgid ">>"
msgstr ">>"

#. i18n: file: parameteranimator.ui:257
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:847 rc.cpp:1827 rc.cpp:847 rc.cpp:1827
msgid "Speed:"
msgstr "速度:"

#. i18n: file: parameteranimator.ui:304
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: rc.cpp:850 rc.cpp:1830 rc.cpp:850 rc.cpp:1830
msgid "Fast"
msgstr "快"

#. i18n: file: parameteranimator.ui:311
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: rc.cpp:853 rc.cpp:1833 rc.cpp:853 rc.cpp:1833
msgid "Slow"
msgstr "慢"

#. i18n: file: parameterswidget.ui:37
#. i18n: ectx: property (text), widget (QCheckBox, useSlider)
#: rc.cpp:859 rc.cpp:1839 rc.cpp:859 rc.cpp:1839
msgid "Slider:"
msgstr "滑块:"

#. i18n: file: parameterswidget.ui:44
#. i18n: ectx: property (text), widget (QCheckBox, useList)
#: rc.cpp:862 rc.cpp:1842 rc.cpp:862 rc.cpp:1842
msgid "List:"
msgstr "列表:"

#. i18n: file: parameterswidget.ui:54
#. i18n: ectx: property (toolTip), widget (KPushButton, editParameterListButton)
#: rc.cpp:865 rc.cpp:1845 rc.cpp:865 rc.cpp:1845
msgid "Edit the list of parameters"
msgstr "编辑参数列表"

#. i18n: file: parameterswidget.ui:57
#. i18n: ectx: property (whatsThis), widget (KPushButton, editParameterListButton)
#: rc.cpp:868 rc.cpp:1848 rc.cpp:868 rc.cpp:1848
msgid ""
"Click here to open a list of parameter values. Here you can add, remove, and "
"change them."
msgstr "单击此处可打开参数值列表。您可在此添加、删除或进行更改。"

#. i18n: file: parameterswidget.ui:60
#. i18n: ectx: property (text), widget (KPushButton, editParameterListButton)
#: rc.cpp:871 rc.cpp:1851 rc.cpp:871 rc.cpp:1851
msgid "Edit List..."
msgstr "编辑列表..."

#. i18n: file: parameterswidget.ui:70
#. i18n: ectx: property (toolTip), widget (KComboBox, listOfSliders)
#: rc.cpp:874 rc.cpp:1854 rc.cpp:874 rc.cpp:1854
msgid "Select a slider"
msgstr "选择滑块"

#. i18n: file: parameterswidget.ui:73
#. i18n: ectx: property (whatsThis), widget (KComboBox, listOfSliders)
#: rc.cpp:877 rc.cpp:1857 rc.cpp:877 rc.cpp:1857
msgid ""
"Select one of the sliders to change the parameter value dynamically. The "
"values vary from 0 (left) to 100 (right)."
msgstr "选择一个滑块,以便动态更改参数值。值的变化范围是 0(最左侧) 到 100(最右侧)。"

#. i18n: file: plotstylewidget.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, PlotStyleWidget)
#: rc.cpp:880 rc.cpp:1860 rc.cpp:880 rc.cpp:1860
msgid "Plot Style"
msgstr "绘制样式"

#. i18n: file: plotstylewidget.ui:26
#. i18n: ectx: property (text), widget (QCheckBox, showPlotName)
#: rc.cpp:883 rc.cpp:1863 rc.cpp:883 rc.cpp:1863
msgid "Show the plot name"
msgstr "显示绘图名称"

#. i18n: file: plotstylewidget.ui:33
#. i18n: ectx: property (text), widget (QCheckBox, showExtrema)
#: rc.cpp:886 rc.cpp:1866 rc.cpp:886 rc.cpp:1866
msgid "Show extrema (minimum/maximum points)"
msgstr "显示极值(最大点/最小点)"

#. i18n: file: plotstylewidget.ui:53
#. i18n: ectx: property (text), widget (QCheckBox, showTangentField)
#: rc.cpp:889 rc.cpp:1869 rc.cpp:889 rc.cpp:1869
msgid "Show the tangent field:"
msgstr "显示相切处:"

#. i18n: file: plotstylewidget.ui:67
#. i18n: ectx: property (text), widget (QCheckBox, useGradient)
#: rc.cpp:892 rc.cpp:1872 rc.cpp:892 rc.cpp:1872
msgid "Use a gradient for parameters:"
msgstr "使用斜率作为参数:"

#. i18n: file: plotstylewidget.ui:74
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:895 rc.cpp:1875 rc.cpp:895 rc.cpp:1875
msgid "Line style:"
msgstr "线条样式:"

#. i18n: file: plotstylewidget.ui:87
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:898 rc.cpp:1878 rc.cpp:898 rc.cpp:1878
msgid "Line width:"
msgstr "线宽:"

#. i18n: file: plotstylewidget.ui:103
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, lineWidth)
#. i18n: file: settingspagediagram.ui:140
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_AxesLineWidth)
#. i18n: file: settingspagediagram.ui:172
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_GridLineWidth)
#. i18n: file: settingspagediagram.ui:204
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicWidth)
#. i18n: file: settingspagediagram.ui:236
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicLength)
#. i18n: file: plotstylewidget.ui:103
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, lineWidth)
#. i18n: file: settingspagediagram.ui:140
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_AxesLineWidth)
#. i18n: file: settingspagediagram.ui:172
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_GridLineWidth)
#. i18n: file: settingspagediagram.ui:204
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicWidth)
#. i18n: file: settingspagediagram.ui:236
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicLength)
#. i18n: file: plotstylewidget.ui:103
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, lineWidth)
#. i18n: file: settingspagediagram.ui:140
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_AxesLineWidth)
#. i18n: file: settingspagediagram.ui:172
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_GridLineWidth)
#. i18n: file: settingspagediagram.ui:204
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicWidth)
#. i18n: file: settingspagediagram.ui:236
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicLength)
#. i18n: file: plotstylewidget.ui:103
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, lineWidth)
#. i18n: file: settingspagediagram.ui:140
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_AxesLineWidth)
#. i18n: file: settingspagediagram.ui:172
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_GridLineWidth)
#. i18n: file: settingspagediagram.ui:204
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicWidth)
#. i18n: file: settingspagediagram.ui:236
#. i18n: ectx: property (suffix), widget (QDoubleSpinBox, kcfg_TicLength)
#: rc.cpp:901 rc.cpp:1132 rc.cpp:1138 rc.cpp:1144 rc.cpp:1150 rc.cpp:1881
#: rc.cpp:2112 rc.cpp:2118 rc.cpp:2124 rc.cpp:2130 rc.cpp:901 rc.cpp:1132
#: rc.cpp:1138 rc.cpp:1144 rc.cpp:1150 rc.cpp:1881 rc.cpp:2112 rc.cpp:2118
#: rc.cpp:2124 rc.cpp:2130
msgid " mm"
msgstr " mm"

#. i18n: file: qparametereditor.ui:55
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdDelete)
#: rc.cpp:922 rc.cpp:1902 rc.cpp:922 rc.cpp:1902
msgid "delete selected constant"
msgstr "删除选中的常量"

#. i18n: file: qparametereditor.ui:84
#. i18n: ectx: property (text), widget (QPushButton, moveUp)
#: rc.cpp:931 rc.cpp:1911 rc.cpp:931 rc.cpp:1911
msgid "Move Up"
msgstr "上移"

#. i18n: file: qparametereditor.ui:91
#. i18n: ectx: property (text), widget (QPushButton, moveDown)
#: rc.cpp:934 rc.cpp:1914 rc.cpp:934 rc.cpp:1914
msgid "Move Down"
msgstr "下移"

#. i18n: file: qparametereditor.ui:117
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdImport)
#: rc.cpp:937 rc.cpp:1917 rc.cpp:937 rc.cpp:1917
msgid "Import values from a textfile"
msgstr "从文本文件导入值"

#. i18n: file: qparametereditor.ui:120
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdImport)
#: rc.cpp:940 rc.cpp:1920 rc.cpp:940 rc.cpp:1920
msgid ""
"Import values from a textfile. Every line in the file is parsed as a value "
"or expression."
msgstr "从文本文件导入值。文件的每一行都会被分析为值或表达式。"

#. i18n: file: qparametereditor.ui:123
#. i18n: ectx: property (text), widget (KPushButton, cmdImport)
#: rc.cpp:943 rc.cpp:1923 rc.cpp:943 rc.cpp:1923
msgid "&Import..."
msgstr "导入(&I)..."

#. i18n: file: qparametereditor.ui:133
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdExport)
#: rc.cpp:946 rc.cpp:1926 rc.cpp:946 rc.cpp:1926
msgid "Export values to a textfile"
msgstr "将值导出为文本文件"

#. i18n: file: qparametereditor.ui:136
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdExport)
#: rc.cpp:949 rc.cpp:1929 rc.cpp:949 rc.cpp:1929
msgid ""
"Export values to a textfile. Every value in the parameter list will be "
"written to one line in the file."
msgstr "将值导出为文本文件。参数列表中的每个值都会写入为文件中的一行。"

#. i18n: file: qparametereditor.ui:139
#. i18n: ectx: property (text), widget (KPushButton, cmdExport)
#: rc.cpp:952 rc.cpp:1932 rc.cpp:952 rc.cpp:1932
msgid "&Export..."
msgstr "导出(&E)..."

#. i18n: file: settingspagecolor.ui:23
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:955 rc.cpp:1935 rc.cpp:955 rc.cpp:1935
msgid "&Coords"
msgstr "坐标(&C)"

#. i18n: file: settingspagecolor.ui:35
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:958 rc.cpp:1938 rc.cpp:958 rc.cpp:1938
msgid "Background Color:"
msgstr "背景颜色:"

#. i18n: file: settingspagecolor.ui:45
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_backgroundcolor)
#: rc.cpp:961 rc.cpp:1941 rc.cpp:961 rc.cpp:1941
msgid "Color for the plot area behind the grid."
msgstr "网格后绘图区域的颜色。"

#. i18n: file: settingspagecolor.ui:48
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_backgroundcolor)
#: rc.cpp:964 rc.cpp:1944 rc.cpp:964 rc.cpp:1944
msgid ""
"Click on the button the choose the color of the background. This option has "
"no effect on printing nor export."
msgstr "单击此按钮可选择背景颜色。此选项与打印或导出无关。"

#. i18n: file: settingspagecolor.ui:58
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:967 rc.cpp:1947 rc.cpp:967 rc.cpp:1947
msgid "&Axes:"
msgstr "数轴(&A):"

#. i18n: file: settingspagecolor.ui:71
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:970 rc.cpp:1950 rc.cpp:970 rc.cpp:1950
msgid "&Grid:"
msgstr "网格(&G):"

#. i18n: file: settingspagecolor.ui:84
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_AxesColor)
#: rc.cpp:973 rc.cpp:1953 rc.cpp:973 rc.cpp:1953
msgid "select color for the axes"
msgstr "选择数轴的颜色"

#. i18n: file: settingspagecolor.ui:87
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_AxesColor)
#: rc.cpp:976 rc.cpp:1956 rc.cpp:976 rc.cpp:1956
msgid ""
"Specify the color of the axes. The change will appear as soon as you press "
"the OK button."
msgstr "指定数轴的颜色。当您单击确定按钮时,更改将会立即生效。"

#. i18n: file: settingspagecolor.ui:97
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_GridColor)
#: rc.cpp:979 rc.cpp:1959 rc.cpp:979 rc.cpp:1959
msgid "select color for the grid"
msgstr "选择网格的颜色"

#. i18n: file: settingspagecolor.ui:100
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_GridColor)
#: rc.cpp:982 rc.cpp:1962 rc.cpp:982 rc.cpp:1962
msgid ""
"Specify the color of the grid. The change will appear as soon as you press "
"the OK button."
msgstr "指定网格的颜色。当您单击确定按钮时,更改将会立即生效。"

#. i18n: file: settingspagecolor.ui:113
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: rc.cpp:985 rc.cpp:1965 rc.cpp:985 rc.cpp:1965
msgid "&Default Function Colors"
msgstr "默认函数颜色(&D)"

#. i18n: file: settingspagecolor.ui:133
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color1)
#: rc.cpp:988 rc.cpp:1968 rc.cpp:988 rc.cpp:1968
msgid "the default color for function number 2"
msgstr "第二个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:136
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color1)
#: rc.cpp:991 rc.cpp:1971 rc.cpp:991 rc.cpp:1971
msgid ""
"The default color for function number 2. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第二个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:146
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color4)
#: rc.cpp:994 rc.cpp:1974 rc.cpp:994 rc.cpp:1974
msgid "the default color for function number 5"
msgstr "第五个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:149
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color4)
#: rc.cpp:997 rc.cpp:1977 rc.cpp:997 rc.cpp:1977
msgid ""
"The default color for function number 5. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第五个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:159
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color0)
#: rc.cpp:1000 rc.cpp:1980 rc.cpp:1000 rc.cpp:1980
msgid "the default color for function number 1"
msgstr "第一个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:162
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color0)
#: rc.cpp:1003 rc.cpp:1983 rc.cpp:1003 rc.cpp:1983
msgid ""
"The default color for function number 1. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第一个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:172
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:1006 rc.cpp:1986 rc.cpp:1006 rc.cpp:1986
msgid "Function &1:"
msgstr "函数 &1:"

#. i18n: file: settingspagecolor.ui:185
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color2)
#: rc.cpp:1009 rc.cpp:1989 rc.cpp:1009 rc.cpp:1989
msgid "the default color for function number 3"
msgstr "第三个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:188
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color2)
#: rc.cpp:1012 rc.cpp:1992 rc.cpp:1012 rc.cpp:1992
msgid ""
"The default color for function number 3. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第三个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:198
#. i18n: ectx: property (text), widget (QLabel, textLabel3_13)
#: rc.cpp:1015 rc.cpp:1995 rc.cpp:1015 rc.cpp:1995
msgid "Function &3:"
msgstr "函数 &3:"

#. i18n: file: settingspagecolor.ui:211
#. i18n: ectx: property (text), widget (QLabel, textLabel3_2)
#: rc.cpp:1018 rc.cpp:1998 rc.cpp:1018 rc.cpp:1998
msgid "Function &2:"
msgstr "函数 &2:"

#. i18n: file: settingspagecolor.ui:224
#. i18n: ectx: property (text), widget (QLabel, textLabel3_12)
#: rc.cpp:1021 rc.cpp:2001 rc.cpp:1021 rc.cpp:2001
msgid "Function &4:"
msgstr "函数 &4:"

#. i18n: file: settingspagecolor.ui:237
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color3)
#: rc.cpp:1024 rc.cpp:2004 rc.cpp:1024 rc.cpp:2004
msgid "the default color for function number 4"
msgstr "第四个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:240
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color3)
#: rc.cpp:1027 rc.cpp:2007 rc.cpp:1027 rc.cpp:2007
msgid ""
"The default color for function number 4. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第四个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:250
#. i18n: ectx: property (text), widget (QLabel, textLabel3_11)
#: rc.cpp:1030 rc.cpp:2010 rc.cpp:1030 rc.cpp:2010
msgid "Function &5:"
msgstr "函数 &5:"

#. i18n: file: settingspagecolor.ui:289
#. i18n: ectx: property (text), widget (QLabel, textLabel3_9)
#: rc.cpp:1033 rc.cpp:2013 rc.cpp:1033 rc.cpp:2013
msgid "Function &7:"
msgstr "函数 &7:"

#. i18n: file: settingspagecolor.ui:302
#. i18n: ectx: property (text), widget (QLabel, textLabel3_8)
#: rc.cpp:1036 rc.cpp:2016 rc.cpp:1036 rc.cpp:2016
msgid "Function &8:"
msgstr "函数 &8:"

#. i18n: file: settingspagecolor.ui:315
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color8)
#: rc.cpp:1039 rc.cpp:2019 rc.cpp:1039 rc.cpp:2019
msgid "the default color for function number 9"
msgstr "第九个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:318
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color8)
#: rc.cpp:1042 rc.cpp:2022 rc.cpp:1042 rc.cpp:2022
msgid ""
"The default color for function number 9. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第九个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:328
#. i18n: ectx: property (text), widget (QLabel, textLabel3_10)
#: rc.cpp:1045 rc.cpp:2025 rc.cpp:1045 rc.cpp:2025
msgid "Function &6:"
msgstr "函数 &6:"

#. i18n: file: settingspagecolor.ui:341
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color6)
#: rc.cpp:1048 rc.cpp:2028 rc.cpp:1048 rc.cpp:2028
msgid "the default color for function number 7"
msgstr "第七个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:344
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color6)
#: rc.cpp:1051 rc.cpp:2031 rc.cpp:1051 rc.cpp:2031
msgid ""
"The default color for function number 7. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第七个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:354
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color7)
#: rc.cpp:1054 rc.cpp:2034 rc.cpp:1054 rc.cpp:2034
msgid "the default color for function number 8"
msgstr "第八个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:357
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color7)
#: rc.cpp:1057 rc.cpp:2037 rc.cpp:1057 rc.cpp:2037
msgid ""
"The default color for function number 8. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第八个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:367
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color5)
#: rc.cpp:1060 rc.cpp:2040 rc.cpp:1060 rc.cpp:2040
msgid "the default color for function number 6"
msgstr "第六个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:370
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color5)
#: rc.cpp:1063 rc.cpp:2043 rc.cpp:1063 rc.cpp:2043
msgid ""
"The default color for function number 6. Please note that this color setting "
"only affects empty functions, so if you have defined a function at number 1 "
"and you change color for that number here, the setting will be shown next "
"time you define a new function at number 1."
msgstr ""
"第六个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:380
#. i18n: ectx: property (text), widget (QLabel, textLabel3_7)
#: rc.cpp:1066 rc.cpp:2046 rc.cpp:1066 rc.cpp:2046
msgid "Function &9:"
msgstr "函数 &9:"

#. i18n: file: settingspagecolor.ui:393
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color9)
#: rc.cpp:1069 rc.cpp:2049 rc.cpp:1069 rc.cpp:2049
msgid "the default color for function number 10"
msgstr "第十个函数的默认颜色"

#. i18n: file: settingspagecolor.ui:396
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color9)
#: rc.cpp:1072 rc.cpp:2052 rc.cpp:1072 rc.cpp:2052
msgid ""
"The default color for function number 10. Please note that this color "
"setting only affects empty functions, so if you have defined a function at "
"number 1 and you change color for that number here, the setting will be "
"shown next time you define a new function at number 1."
msgstr ""
"第十个函数的默认颜色。请注意,此颜色设置只影响空函数,所以如果您定义了第一个函数,而您稍后又在此更改了第一个函数的颜色,设置将会在您下次定义第一个函数时生"
"效。"

#. i18n: file: settingspagecolor.ui:406
#. i18n: ectx: property (text), widget (QLabel, textLabel3_6)
#: rc.cpp:1075 rc.cpp:2055 rc.cpp:1075 rc.cpp:2055
msgid "Function 1&0:"
msgstr "函数 1&0:"

#. i18n: file: kmplot.kcfg:37
#. i18n: ectx: label, entry (GridStyle), group (Coordinate System)
#. i18n: file: settingspagediagram.ui:20
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_GridStyle)
#. i18n: file: kmplot.kcfg:37
#. i18n: ectx: label, entry (GridStyle), group (Coordinate System)
#. i18n: file: settingspagediagram.ui:20
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_GridStyle)
#. i18n: file: kmplot.kcfg:37
#. i18n: ectx: label, entry (GridStyle), group (Coordinate System)
#: rc.cpp:559 rc.cpp:1081 rc.cpp:2061 rc.cpp:2261 rc.cpp:559 rc.cpp:1081
#: rc.cpp:2061 rc.cpp:2261
msgid "Grid Style"
msgstr "网格样式"

#. i18n: file: settingspagediagram.ui:32
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton11)
#: rc.cpp:1084 rc.cpp:2064 rc.cpp:1084 rc.cpp:2064
msgid "No Grid will be plotted."
msgstr "不绘制网格。"

#. i18n: file: settingspagediagram.ui:35
#. i18n: ectx: property (text), widget (QRadioButton, radioButton11)
#: rc.cpp:1087 rc.cpp:2067 rc.cpp:1087 rc.cpp:2067
msgid "None"
msgstr "无"

#. i18n: file: settingspagediagram.ui:42
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton12)
#: rc.cpp:1090 rc.cpp:2070 rc.cpp:1090 rc.cpp:2070
msgid "A line for every tic."
msgstr "每个刻度绘制直线。"

#. i18n: file: settingspagediagram.ui:45
#. i18n: ectx: property (text), widget (QRadioButton, radioButton12)
#: rc.cpp:1093 rc.cpp:2073 rc.cpp:1093 rc.cpp:2073
msgid "Lines"
msgstr "直线"

#. i18n: file: settingspagediagram.ui:52
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton13)
#: rc.cpp:1096 rc.cpp:2076 rc.cpp:1096 rc.cpp:2076
msgid "Only little crosses in the plot area."
msgstr "仅在绘图区绘制小交叉点。"

#. i18n: file: settingspagediagram.ui:55
#. i18n: ectx: property (text), widget (QRadioButton, radioButton13)
#: rc.cpp:1099 rc.cpp:2079 rc.cpp:1099 rc.cpp:2079
msgid "Crosses"
msgstr "格点"

#. i18n: file: settingspagediagram.ui:62
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton14)
#: rc.cpp:1102 rc.cpp:2082 rc.cpp:1102 rc.cpp:2082
msgid "Circles around the Origin."
msgstr "原点周围的圆。"

#. i18n: file: settingspagediagram.ui:65
#. i18n: ectx: property (text), widget (QRadioButton, radioButton14)
#: rc.cpp:1105 rc.cpp:2085 rc.cpp:1105 rc.cpp:2085
msgid "Polar"
msgstr "极坐标"

#. i18n: file: settingspagediagram.ui:75
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:1108 rc.cpp:2088 rc.cpp:1108 rc.cpp:2088
msgid "Axis Labels"
msgstr "数轴标签"

#. i18n: file: settingspagediagram.ui:81
#. i18n: ectx: property (whatsThis), widget (QLabel, label)
#: rc.cpp:1111 rc.cpp:2091 rc.cpp:1111 rc.cpp:2091
msgid "Label on horizontal axis."
msgstr "水平轴线的标签。"

#. i18n: file: settingspagediagram.ui:84
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:1114 rc.cpp:2094 rc.cpp:1114 rc.cpp:2094
msgid "Horizontal Axis Label: "
msgstr "水平轴标签: "

#. i18n: file: settingspagediagram.ui:94
#. i18n: ectx: property (text), widget (QLineEdit, kcfg_LabelHorizontalAxis)
#: rc.cpp:1117 rc.cpp:2097 rc.cpp:1117 rc.cpp:2097
msgid "X"
msgstr "X"

#. i18n: file: settingspagediagram.ui:101
#. i18n: ectx: property (whatsThis), widget (QLabel, label_2)
#: rc.cpp:1120 rc.cpp:2100 rc.cpp:1120 rc.cpp:2100
msgid "Label on vertical axis."
msgstr "垂直轴线的标签。"

#. i18n: file: settingspagediagram.ui:104
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:1123 rc.cpp:2103 rc.cpp:1123 rc.cpp:2103
msgid "Vertical Axis Label:"
msgstr "垂直轴标签:"

#. i18n: file: settingspagediagram.ui:114
#. i18n: ectx: property (text), widget (QLineEdit, kcfg_LabelVerticalAxis)
#: rc.cpp:1126 rc.cpp:2106 rc.cpp:1126 rc.cpp:2106
msgid "Y"
msgstr "Y"

#. i18n: file: settingspagediagram.ui:124
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:1129 rc.cpp:2109 rc.cpp:1129 rc.cpp:2109
msgid "Axis widths:"
msgstr "轴线宽度:"

#. i18n: file: settingspagediagram.ui:156
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:1135 rc.cpp:2115 rc.cpp:1135 rc.cpp:2115
msgid "Line &width:"
msgstr "线宽(&W):"

#. i18n: file: settingspagediagram.ui:188
#. i18n: ectx: property (text), widget (QLabel, textLabel9)
#: rc.cpp:1141 rc.cpp:2121 rc.cpp:1141 rc.cpp:2121
msgid "Tic width:"
msgstr "刻度线宽度:"

#. i18n: file: settingspagediagram.ui:220
#. i18n: ectx: property (text), widget (QLabel, textLabel8_4)
#: rc.cpp:1147 rc.cpp:2127 rc.cpp:1147 rc.cpp:2127
msgid "Tic length:"
msgstr "刻度线长度:"

#. i18n: file: settingspagediagram.ui:252
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowLabel)
#: rc.cpp:1153 rc.cpp:2133 rc.cpp:1153 rc.cpp:2133
msgid "visible tic labels"
msgstr "可见的刻度线标签"

#. i18n: file: settingspagediagram.ui:255
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_ShowLabel)
#: rc.cpp:1156 rc.cpp:2136 rc.cpp:1156 rc.cpp:2136
msgid "Check this if the axes' tics should be labeled."
msgstr "选中此处代表要为数轴刻度显示标签。"

#. i18n: file: settingspagediagram.ui:258
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowLabel)
#: rc.cpp:1159 rc.cpp:2139 rc.cpp:1159 rc.cpp:2139
msgid "Show labels"
msgstr "显示标签"

#. i18n: file: settingspagediagram.ui:268
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowAxes)
#: rc.cpp:1162 rc.cpp:2142 rc.cpp:1162 rc.cpp:2142
msgid "visible axes"
msgstr "可见数轴"

#. i18n: file: settingspagediagram.ui:271
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_ShowAxes)
#: rc.cpp:1165 rc.cpp:2145 rc.cpp:1165 rc.cpp:2145
msgid "Check this if the axes should be visible."
msgstr "选中此处代表数轴可见。"

#. i18n: file: settingspagediagram.ui:274
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowAxes)
#: rc.cpp:1168 rc.cpp:2148 rc.cpp:1168 rc.cpp:2148
msgid "Show axes"
msgstr "显示数轴"

#. i18n: file: settingspagediagram.ui:284
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowArrows)
#: rc.cpp:1171 rc.cpp:2151 rc.cpp:1171 rc.cpp:2151
msgid "visible arrows at the end of the axes"
msgstr "在数轴尾部显示箭头"

#. i18n: file: settingspagediagram.ui:287
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_ShowArrows)
#: rc.cpp:1174 rc.cpp:2154 rc.cpp:1174 rc.cpp:2154
msgid "Check this if the axes should have arrows at their ends."
msgstr "选中此处代表在数轴尾部显示箭头。"

#. i18n: file: settingspagediagram.ui:290
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowArrows)
#: rc.cpp:1177 rc.cpp:2157 rc.cpp:1177 rc.cpp:2157
msgid "Show arrows"
msgstr "显示箭头"

#. i18n: file: settingspagefonts.ui:23
#. i18n: ectx: property (text), widget (QLabel, textLabel10)
#: rc.cpp:1180 rc.cpp:2160 rc.cpp:1180 rc.cpp:2160
msgid "Axes labels:"
msgstr "数轴标签:"

#. i18n: file: settingspagefonts.ui:45
#. i18n: ectx: property (text), widget (QLabel, textLabel10_3)
#: rc.cpp:1183 rc.cpp:2163 rc.cpp:1183 rc.cpp:2163
msgid "Diagram labels:"
msgstr "图表标签:"

#. i18n: file: settingspagefonts.ui:67
#. i18n: ectx: property (text), widget (QLabel, textLabel10_4)
#: rc.cpp:1186 rc.cpp:2166 rc.cpp:1186 rc.cpp:2166
msgid "Header table:"
msgstr "头表格:"

#. i18n: file: settingspagegeneral.ui:20
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_anglemode)
#: rc.cpp:1192 rc.cpp:2172 rc.cpp:1192 rc.cpp:2172
msgid "Angle Mode"
msgstr "角度模式"

#. i18n: file: settingspagegeneral.ui:32
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton1)
#: rc.cpp:1195 rc.cpp:2175 rc.cpp:1195 rc.cpp:2175
msgid "Trigonometric functions use radian mode for angles."
msgstr "三角函数的角度使用弧度模式。"

#. i18n: file: settingspagegeneral.ui:35
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton1)
#: rc.cpp:1198 rc.cpp:2178 rc.cpp:1198 rc.cpp:2178
msgid ""
"Check this button to use radian mode to measure angles. This is important "
"for trigonometric functions only."
msgstr "选中此按钮可使用弧度模式度量角度。这只对三角函数非常重要。"

#. i18n: file: settingspagegeneral.ui:38
#. i18n: ectx: property (text), widget (QRadioButton, radioButton1)
#: rc.cpp:1201 rc.cpp:2181 rc.cpp:1201 rc.cpp:2181
msgid "&Radian"
msgstr "弧度(&R)"

#. i18n: file: settingspagegeneral.ui:45
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton2)
#: rc.cpp:1204 rc.cpp:2184 rc.cpp:1204 rc.cpp:2184
msgid "Trigonometric functions use degree mode for angles."
msgstr "三角函数的角度使用度数模式。"

#. i18n: file: settingspagegeneral.ui:48
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton2)
#: rc.cpp:1207 rc.cpp:2187 rc.cpp:1207 rc.cpp:2187
msgid ""
"Check this button to use degree mode to measure angles. This is important "
"for trigonometric functions only."
msgstr "选中此按钮可使用度数模式以度量角度。这只对三角函数非常重要。"

#. i18n: file: settingspagegeneral.ui:51
#. i18n: ectx: property (text), widget (QRadioButton, radioButton2)
#: rc.cpp:1210 rc.cpp:2190 rc.cpp:1210 rc.cpp:2190
msgid "&Degree"
msgstr "度数(&D)"

#. i18n: file: settingspagegeneral.ui:61
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#: rc.cpp:1213 rc.cpp:2193 rc.cpp:1213 rc.cpp:2193
msgid "Zoom"
msgstr "缩放"

#. i18n: file: settingspagegeneral.ui:73
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#: rc.cpp:1216 rc.cpp:2196 rc.cpp:1216 rc.cpp:2196
msgid "Zoom In by:"
msgstr "放大比例:"

#. i18n: file: settingspagegeneral.ui:86
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_2)
#: rc.cpp:1219 rc.cpp:2199 rc.cpp:1219 rc.cpp:2199
msgid "Zoom Out by:"
msgstr "缩小比例:"

#. i18n: file: settingspagegeneral.ui:99
#. i18n: ectx: property (whatsThis), widget (KIntNumInput, kcfg_zoomOutStep)
#: rc.cpp:1222 rc.cpp:2202 rc.cpp:1222 rc.cpp:2202
msgid "The value the Zoom Out tool should use."
msgstr "缩小工具应使用的值。"

#. i18n: file: settingspagegeneral.ui:114
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomOutStep)
#. i18n: file: settingspagegeneral.ui:136
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomInStep)
#. i18n: file: settingspagegeneral.ui:114
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomOutStep)
#. i18n: file: settingspagegeneral.ui:136
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomInStep)
#. i18n: file: settingspagegeneral.ui:114
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomOutStep)
#. i18n: file: settingspagegeneral.ui:136
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomInStep)
#. i18n: file: settingspagegeneral.ui:114
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomOutStep)
#. i18n: file: settingspagegeneral.ui:136
#. i18n: ectx: property (suffix), widget (KIntNumInput, kcfg_zoomInStep)
#: rc.cpp:1226 rc.cpp:1233 rc.cpp:2206 rc.cpp:2213 rc.cpp:1226 rc.cpp:1233
#: rc.cpp:2206 rc.cpp:2213
#, no-c-format
msgid "%"
msgstr "%"

#. i18n: file: settingspagegeneral.ui:121
#. i18n: ectx: property (whatsThis), widget (KIntNumInput, kcfg_zoomInStep)
#: rc.cpp:1229 rc.cpp:2209 rc.cpp:1229 rc.cpp:2209
msgid "The value the Zoom In tool should use."
msgstr "放大工具应使用的值。"

#. i18n: file: settingspagegeneral.ui:150
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DetailedTracing)
#: rc.cpp:1236 rc.cpp:2216 rc.cpp:1236 rc.cpp:2216
msgid "Draw tangent and normal when tracing"
msgstr "跟踪绘图时绘制切线和法线"

#. i18n: file: sliderwidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, SliderWidget)
#: rc.cpp:1239 rc.cpp:2219 rc.cpp:1239 rc.cpp:2219
msgid "Slider"
msgstr "滑块"

#. i18n: file: sliderwidget.ui:43
#. i18n: ectx: property (text), widget (QLabel, valueLabel)
#: rc.cpp:1242 rc.cpp:2222 rc.cpp:1242 rc.cpp:2222
msgid "<0>"
msgstr "<0>"

#. i18n: file: kmplot.kcfg:12
#. i18n: ectx: label, entry (AxesLineWidth), group (Coordinate System)
#: rc.cpp:529 rc.cpp:2231 rc.cpp:529 rc.cpp:2231
msgid "Axis-line width"
msgstr "轴线宽度"

#. i18n: file: kmplot.kcfg:13
#. i18n: ectx: whatsthis, entry (AxesLineWidth), group (Coordinate System)
#: rc.cpp:532 rc.cpp:2234 rc.cpp:532 rc.cpp:2234
msgid "Enter the width of the axis lines."
msgstr "输入轴线的宽度。"

#. i18n: file: kmplot.kcfg:17
#. i18n: ectx: label, entry (ShowLabel), group (Coordinate System)
#: rc.cpp:535 rc.cpp:2237 rc.cpp:535 rc.cpp:2237
msgid "Checked if labels are visible"
msgstr "标签是否可见"

#. i18n: file: kmplot.kcfg:18
#. i18n: ectx: whatsthis, entry (ShowLabel), group (Coordinate System)
#: rc.cpp:538 rc.cpp:2240 rc.cpp:538 rc.cpp:2240
msgid "Check this box if the labels at the tics should be shown."
msgstr "是否在刻度中显示标签。"

#. i18n: file: kmplot.kcfg:22
#. i18n: ectx: label, entry (ShowAxes), group (Coordinate System)
#: rc.cpp:541 rc.cpp:2243 rc.cpp:541 rc.cpp:2243
msgid "Checked if axes are visible"
msgstr "数轴是否可见"

#. i18n: file: kmplot.kcfg:23
#. i18n: ectx: whatsthis, entry (ShowAxes), group (Coordinate System)
#: rc.cpp:544 rc.cpp:2246 rc.cpp:544 rc.cpp:2246
msgid "Check this box if axes should be shown."
msgstr "是否显示数轴。"

#. i18n: file: kmplot.kcfg:27
#. i18n: ectx: label, entry (ShowArrows), group (Coordinate System)
#: rc.cpp:547 rc.cpp:2249 rc.cpp:547 rc.cpp:2249
msgid "Checked if arrows are visible"
msgstr "是否显示箭头"

#. i18n: file: kmplot.kcfg:28
#. i18n: ectx: whatsthis, entry (ShowArrows), group (Coordinate System)
#: rc.cpp:550 rc.cpp:2252 rc.cpp:550 rc.cpp:2252
msgid "Check this box if axes should have arrows."
msgstr "数轴是否显示箭头。"

#. i18n: file: kmplot.kcfg:32
#. i18n: ectx: label, entry (GridLineWidth), group (Coordinate System)
#: rc.cpp:553 rc.cpp:2255 rc.cpp:553 rc.cpp:2255
msgid "Grid Line Width"
msgstr "网格线宽度"

#. i18n: file: kmplot.kcfg:33
#. i18n: ectx: whatsthis, entry (GridLineWidth), group (Coordinate System)
#: rc.cpp:556 rc.cpp:2258 rc.cpp:556 rc.cpp:2258
msgid "Enter the width of the grid lines."
msgstr "输入网格线的宽度。"

#. i18n: file: kmplot.kcfg:38
#. i18n: ectx: whatsthis, entry (GridStyle), group (Coordinate System)
#: rc.cpp:562 rc.cpp:2264 rc.cpp:562 rc.cpp:2264
msgid "Choose a suitable grid style."
msgstr "选择适合的网格样式。"

#. i18n: file: kmplot.kcfg:42
#. i18n: ectx: label, entry (TicLength), group (Coordinate System)
#: rc.cpp:565 rc.cpp:2267 rc.cpp:565 rc.cpp:2267
msgid "Tic length"
msgstr "刻度线长度"

#. i18n: file: kmplot.kcfg:43
#. i18n: ectx: whatsthis, entry (TicLength), group (Coordinate System)
#: rc.cpp:568 rc.cpp:2270 rc.cpp:568 rc.cpp:2270
msgid "Enter the length of the tic lines"
msgstr "输入刻度线长度"

#. i18n: file: kmplot.kcfg:47
#. i18n: ectx: label, entry (TicWidth), group (Coordinate System)
#: rc.cpp:571 rc.cpp:2273 rc.cpp:571 rc.cpp:2273
msgid "Tic width"
msgstr "刻度线宽度"

#. i18n: file: kmplot.kcfg:48
#. i18n: ectx: whatsthis, entry (TicWidth), group (Coordinate System)
#: rc.cpp:574 rc.cpp:2276 rc.cpp:574 rc.cpp:2276
msgid "Enter the width of the tic lines."
msgstr "输入刻度线宽度。"

#. i18n: file: kmplot.kcfg:52
#. i18n: ectx: label, entry (XMin), group (Coordinate System)
#: rc.cpp:577 rc.cpp:2279 rc.cpp:577 rc.cpp:2279
msgid "Left boundary"
msgstr "左边界"

#. i18n: file: kmplot.kcfg:53
#. i18n: ectx: whatsthis, entry (XMin), group (Coordinate System)
#: rc.cpp:580 rc.cpp:2282 rc.cpp:580 rc.cpp:2282
msgid "Enter the left boundary of the plotting area."
msgstr "输入绘图区域的左边界。"

#. i18n: file: kmplot.kcfg:57
#. i18n: ectx: label, entry (XMax), group (Coordinate System)
#: rc.cpp:583 rc.cpp:2285 rc.cpp:583 rc.cpp:2285
msgid "Right boundary"
msgstr "右边界"

#. i18n: file: kmplot.kcfg:58
#. i18n: ectx: whatsthis, entry (XMax), group (Coordinate System)
#: rc.cpp:586 rc.cpp:2288 rc.cpp:586 rc.cpp:2288
msgid "Enter the right boundary of the plotting area."
msgstr "输入绘图区域的右边界。"

#. i18n: file: kmplot.kcfg:62
#. i18n: ectx: label, entry (YMin), group (Coordinate System)
#: rc.cpp:589 rc.cpp:2291 rc.cpp:589 rc.cpp:2291
msgid "Lower boundary"
msgstr "下边界"

#. i18n: file: kmplot.kcfg:63
#. i18n: ectx: whatsthis, entry (YMin), group (Coordinate System)
#: rc.cpp:592 rc.cpp:2294 rc.cpp:592 rc.cpp:2294
msgid "Enter the lower boundary of the plotting area."
msgstr "输入绘图区域的下边界。"

#. i18n: file: kmplot.kcfg:67
#. i18n: ectx: label, entry (YMax), group (Coordinate System)
#: rc.cpp:595 rc.cpp:2297 rc.cpp:595 rc.cpp:2297
msgid "Upper boundary"
msgstr "上边界"

#. i18n: file: kmplot.kcfg:68
#. i18n: ectx: whatsthis, entry (YMax), group (Coordinate System)
#: rc.cpp:598 rc.cpp:2300 rc.cpp:598 rc.cpp:2300
msgid "Enter the upper boundary of the plotting area."
msgstr "输入绘图区域的上边界。"

#. i18n: file: kmplot.kcfg:72
#. i18n: ectx: label, entry (LabelHorizontalAxis), group (Coordinate System)
#: rc.cpp:601 rc.cpp:2303 rc.cpp:601 rc.cpp:2303
msgid "Label to Horizontal Axis"
msgstr "水平轴的标签"

#. i18n: file: kmplot.kcfg:73
#. i18n: ectx: whatsthis, entry (LabelHorizontalAxis), group (Coordinate System)
#: rc.cpp:604 rc.cpp:2306 rc.cpp:604 rc.cpp:2306
msgid "Label to Horizontal Axis."
msgstr "水平轴线的标签。"

#. i18n: file: kmplot.kcfg:77
#. i18n: ectx: label, entry (LabelVerticalAxis), group (Coordinate System)
#: rc.cpp:607 rc.cpp:2309 rc.cpp:607 rc.cpp:2309
msgid "Label to Vertical Axis"
msgstr "垂直轴的标签"

#. i18n: file: kmplot.kcfg:78
#. i18n: ectx: whatsthis, entry (LabelVerticalAxis), group (Coordinate System)
#: rc.cpp:610 rc.cpp:2312 rc.cpp:610 rc.cpp:2312
msgid "Label to Vertical Axis."
msgstr "垂直轴线的标签。"

#. i18n: file: kmplot.kcfg:85
#. i18n: ectx: label, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:90
#. i18n: ectx: label, entry (YScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:85
#. i18n: ectx: label, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:90
#. i18n: ectx: label, entry (YScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:85
#. i18n: ectx: label, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:90
#. i18n: ectx: label, entry (YScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:85
#. i18n: ectx: label, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:90
#. i18n: ectx: label, entry (YScalingMode), group (Scaling)
#: rc.cpp:613 rc.cpp:619 rc.cpp:2315 rc.cpp:2321 rc.cpp:613 rc.cpp:619
#: rc.cpp:2315 rc.cpp:2321
msgid "Whether to use automatic or custom scaling."
msgstr "是否自动或自定义缩放比例"

#. i18n: file: kmplot.kcfg:86
#. i18n: ectx: whatsthis, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:91
#. i18n: ectx: whatsthis, entry (YScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:86
#. i18n: ectx: whatsthis, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:91
#. i18n: ectx: whatsthis, entry (YScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:86
#. i18n: ectx: whatsthis, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:91
#. i18n: ectx: whatsthis, entry (YScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:86
#. i18n: ectx: whatsthis, entry (XScalingMode), group (Scaling)
#. i18n: file: kmplot.kcfg:91
#. i18n: ectx: whatsthis, entry (YScalingMode), group (Scaling)
#: rc.cpp:616 rc.cpp:622 rc.cpp:2318 rc.cpp:2324 rc.cpp:616 rc.cpp:622
#: rc.cpp:2318 rc.cpp:2324
msgid "Select whether to use automatic or custom scaling."
msgstr "选择是否自动或自定义缩放比例"

#. i18n: file: kmplot.kcfg:95
#. i18n: ectx: label, entry (XScaling), group (Scaling)
#: rc.cpp:625 rc.cpp:2327 rc.cpp:625 rc.cpp:2327
msgid "Width of a unit from tic to tic"
msgstr "刻度之间的宽度单位"

#. i18n: file: kmplot.kcfg:96
#. i18n: ectx: whatsthis, entry (XScaling), group (Scaling)
#: rc.cpp:628 rc.cpp:2330 rc.cpp:628 rc.cpp:2330
msgid "Enter the width of a unit from tic to tic."
msgstr "输入刻度之间的宽度单位。"

#. i18n: file: kmplot.kcfg:100
#. i18n: ectx: label, entry (YScaling), group (Scaling)
#: rc.cpp:631 rc.cpp:2333 rc.cpp:631 rc.cpp:2333
msgid "Height of a unit from tic to tic"
msgstr "刻度之间的高度单位"

#. i18n: file: kmplot.kcfg:101
#. i18n: ectx: whatsthis, entry (YScaling), group (Scaling)
#: rc.cpp:634 rc.cpp:2336 rc.cpp:634 rc.cpp:2336
msgid "Enter the height of a unit from tic to tic."
msgstr "刻度之间的高度单位。"

#. i18n: file: kmplot.kcfg:108
#. i18n: ectx: label, entry (AxesFont), group (Fonts)
#: rc.cpp:637 rc.cpp:2339 rc.cpp:637 rc.cpp:2339
msgid "Font of the axis labels"
msgstr "数轴标签的字体"

#. i18n: file: kmplot.kcfg:109
#. i18n: ectx: whatsthis, entry (AxesFont), group (Fonts)
#: rc.cpp:640 rc.cpp:2342 rc.cpp:640 rc.cpp:2342
msgid "Choose a font for the axis labels."
msgstr "为数轴标签选择字体。"

#. i18n: file: kmplot.kcfg:113
#. i18n: ectx: label, entry (HeaderTableFont), group (Fonts)
#: rc.cpp:643 rc.cpp:2345 rc.cpp:643 rc.cpp:2345
msgid "Font of the printed header table"
msgstr "打印头表格的字体"

#. i18n: file: kmplot.kcfg:114
#. i18n: ectx: whatsthis, entry (HeaderTableFont), group (Fonts)
#: rc.cpp:646 rc.cpp:2348 rc.cpp:646 rc.cpp:2348
msgid "Choose a font for the table printed at the top of the page."
msgstr "为页面上方打印的表格选择字体。"

#. i18n: file: kmplot.kcfg:118
#. i18n: ectx: label, entry (LabelFont), group (Fonts)
#: rc.cpp:649 rc.cpp:2351 rc.cpp:649 rc.cpp:2351
msgid "Font of diagram labels"
msgstr "数轴标签的字体"

#. i18n: file: kmplot.kcfg:119
#. i18n: ectx: whatsthis, entry (LabelFont), group (Fonts)
#: rc.cpp:652 rc.cpp:2354 rc.cpp:652 rc.cpp:2354
msgid "Choose a font for diagram labels."
msgstr "为数轴标签选择字体。"

#. i18n: file: kmplot.kcfg:126
#. i18n: ectx: label, entry (AxesColor), group (Colors)
#: rc.cpp:655 rc.cpp:2357 rc.cpp:655 rc.cpp:2357
msgid "Axis-line color"
msgstr "轴线颜色"

#. i18n: file: kmplot.kcfg:127
#. i18n: ectx: whatsthis, entry (AxesColor), group (Colors)
#: rc.cpp:658 rc.cpp:2360 rc.cpp:658 rc.cpp:2360
msgid "Enter the color of the axis lines."
msgstr "输入轴线的颜色。"

#. i18n: file: kmplot.kcfg:131
#. i18n: ectx: label, entry (GridColor), group (Colors)
#: rc.cpp:661 rc.cpp:2363 rc.cpp:661 rc.cpp:2363
msgid "Grid Color"
msgstr "网格颜色"

#. i18n: file: kmplot.kcfg:132
#. i18n: ectx: whatsthis, entry (GridColor), group (Colors)
#: rc.cpp:664 rc.cpp:2366 rc.cpp:664 rc.cpp:2366
msgid "Choose a color for the grid lines."
msgstr "选择网格线的颜色。"

#. i18n: file: kmplot.kcfg:136
#. i18n: ectx: label, entry (Color0), group (Colors)
#: rc.cpp:667 rc.cpp:2369 rc.cpp:667 rc.cpp:2369
msgid "Color of function 1"
msgstr "函数 1 的颜色"

#. i18n: file: kmplot.kcfg:137
#. i18n: ectx: whatsthis, entry (Color0), group (Colors)
#: rc.cpp:670 rc.cpp:2372 rc.cpp:670 rc.cpp:2372
msgid "Choose a color for function 1."
msgstr "选择函数 1 的颜色。"

#. i18n: file: kmplot.kcfg:141
#. i18n: ectx: label, entry (Color1), group (Colors)
#: rc.cpp:673 rc.cpp:2375 rc.cpp:673 rc.cpp:2375
msgid "Color of function 2"
msgstr "函数 2 的颜色"

#. i18n: file: kmplot.kcfg:142
#. i18n: ectx: whatsthis, entry (Color1), group (Colors)
#: rc.cpp:676 rc.cpp:2378 rc.cpp:676 rc.cpp:2378
msgid "Choose a color for function 2."
msgstr "选择函数 2 的颜色。"

#. i18n: file: kmplot.kcfg:146
#. i18n: ectx: label, entry (Color2), group (Colors)
#: rc.cpp:679 rc.cpp:2381 rc.cpp:679 rc.cpp:2381
msgid "Color of function 3"
msgstr "函数 3 的颜色"

#. i18n: file: kmplot.kcfg:147
#. i18n: ectx: whatsthis, entry (Color2), group (Colors)
#: rc.cpp:682 rc.cpp:2384 rc.cpp:682 rc.cpp:2384
msgid "Choose a color for function 3."
msgstr "选择函数 3 的颜色。"

#. i18n: file: kmplot.kcfg:151
#. i18n: ectx: label, entry (Color3), group (Colors)
#: rc.cpp:685 rc.cpp:2387 rc.cpp:685 rc.cpp:2387
msgid "Color of function 4"
msgstr "函数 4 的颜色"

#. i18n: file: kmplot.kcfg:152
#. i18n: ectx: whatsthis, entry (Color3), group (Colors)
#: rc.cpp:688 rc.cpp:2390 rc.cpp:688 rc.cpp:2390
msgid "Choose a color for function 4."
msgstr "选择函数 4 的颜色。"

#. i18n: file: kmplot.kcfg:156
#. i18n: ectx: label, entry (Color4), group (Colors)
#: rc.cpp:691 rc.cpp:2393 rc.cpp:691 rc.cpp:2393
msgid "Color of function 5"
msgstr "函数 5 的颜色"

#. i18n: file: kmplot.kcfg:157
#. i18n: ectx: whatsthis, entry (Color4), group (Colors)
#: rc.cpp:694 rc.cpp:2396 rc.cpp:694 rc.cpp:2396
msgid "Choose a color for function 5."
msgstr "选择函数 5 的颜色。"

#. i18n: file: kmplot.kcfg:161
#. i18n: ectx: label, entry (Color5), group (Colors)
#: rc.cpp:697 rc.cpp:2399 rc.cpp:697 rc.cpp:2399
msgid "Color of function 6"
msgstr "函数 6 的颜色"

#. i18n: file: kmplot.kcfg:162
#. i18n: ectx: whatsthis, entry (Color5), group (Colors)
#: rc.cpp:700 rc.cpp:2402 rc.cpp:700 rc.cpp:2402
msgid "Choose a color for function 6."
msgstr "选择函数 6 的颜色。"

#. i18n: file: kmplot.kcfg:166
#. i18n: ectx: label, entry (Color6), group (Colors)
#: rc.cpp:703 rc.cpp:2405 rc.cpp:703 rc.cpp:2405
msgid "Color of function 7"
msgstr "函数 7 的颜色"

#. i18n: file: kmplot.kcfg:167
#. i18n: ectx: whatsthis, entry (Color6), group (Colors)
#: rc.cpp:706 rc.cpp:2408 rc.cpp:706 rc.cpp:2408
msgid "Choose a color for function 7."
msgstr "选择函数 7 的颜色。"

#. i18n: file: kmplot.kcfg:171
#. i18n: ectx: label, entry (Color7), group (Colors)
#: rc.cpp:709 rc.cpp:2411 rc.cpp:709 rc.cpp:2411
msgid "Color of function 8"
msgstr "函数 8 的颜色"

#. i18n: file: kmplot.kcfg:172
#. i18n: ectx: whatsthis, entry (Color7), group (Colors)
#: rc.cpp:712 rc.cpp:2414 rc.cpp:712 rc.cpp:2414
msgid "Choose a color for function 8."
msgstr "选择函数 8 的颜色。"

#. i18n: file: kmplot.kcfg:176
#. i18n: ectx: label, entry (Color8), group (Colors)
#: rc.cpp:715 rc.cpp:2417 rc.cpp:715 rc.cpp:2417
msgid "Color of function 9"
msgstr "函数 9 的颜色"

#. i18n: file: kmplot.kcfg:177
#. i18n: ectx: whatsthis, entry (Color8), group (Colors)
#: rc.cpp:718 rc.cpp:2420 rc.cpp:718 rc.cpp:2420
msgid "Choose a color for function 9."
msgstr "选择函数 9 的颜色。"

#. i18n: file: kmplot.kcfg:181
#. i18n: ectx: label, entry (Color9), group (Colors)
#: rc.cpp:721 rc.cpp:2423 rc.cpp:721 rc.cpp:2423
msgid "Color of function 10"
msgstr "函数 10 的颜色"

#. i18n: file: kmplot.kcfg:182
#. i18n: ectx: whatsthis, entry (Color9), group (Colors)
#: rc.cpp:724 rc.cpp:2426 rc.cpp:724 rc.cpp:2426
msgid "Choose a color for function 10."
msgstr "选择函数 10 的颜色。"

#. i18n: file: kmplot.kcfg:189
#. i18n: ectx: label, entry (anglemode), group (General)
#: rc.cpp:727 rc.cpp:2429 rc.cpp:727 rc.cpp:2429
msgid "Radians instead of degrees"
msgstr "使用弧度而非角度"

#. i18n: file: kmplot.kcfg:190
#. i18n: ectx: whatsthis, entry (anglemode), group (General)
#: rc.cpp:730 rc.cpp:2432 rc.cpp:730 rc.cpp:2432
msgid "Check the box if you want to use radians"
msgstr "如果您想要使用弧度,请选中此框"

#. i18n: file: kmplot.kcfg:194
#. i18n: ectx: label, entry (backgroundcolor), group (General)
#: rc.cpp:733 rc.cpp:2435 rc.cpp:733 rc.cpp:2435
msgid "Background color"
msgstr "背景颜色"

#. i18n: file: kmplot.kcfg:195
#. i18n: ectx: whatsthis, entry (backgroundcolor), group (General)
#: rc.cpp:736 rc.cpp:2438 rc.cpp:736 rc.cpp:2438
msgid "The background color for the graph"
msgstr "图形的背景颜色"

#. i18n: file: kmplot.kcfg:199
#. i18n: ectx: label, entry (zoomInStep), group (General)
#: rc.cpp:739 rc.cpp:2441 rc.cpp:739 rc.cpp:2441
msgid "Zoom-in step"
msgstr "放大幅度"

#. i18n: file: kmplot.kcfg:200
#. i18n: ectx: whatsthis, entry (zoomInStep), group (General)
#: rc.cpp:742 rc.cpp:2444 rc.cpp:742 rc.cpp:2444
msgid "The value the zoom-in tool should use"
msgstr "放大工具应该使用的值"

#. i18n: file: kmplot.kcfg:204
#. i18n: ectx: label, entry (zoomOutStep), group (General)
#: rc.cpp:745 rc.cpp:2447 rc.cpp:745 rc.cpp:2447
msgid "Zoom-out step"
msgstr "缩小幅度"

#. i18n: file: kmplot.kcfg:205
#. i18n: ectx: whatsthis, entry (zoomOutStep), group (General)
#: rc.cpp:748 rc.cpp:2450 rc.cpp:748 rc.cpp:2450
msgid "The value the zoom-out tool should use"
msgstr "缩小工具应该使用的值"

#. i18n: file: kmplot.kcfg:209
#. i18n: ectx: label, entry (DetailedTracing), group (General)
#: rc.cpp:751 rc.cpp:2453 rc.cpp:751 rc.cpp:2453
msgid "Extra detail when tracing"
msgstr "跟踪时额外的细节"

#. i18n: file: kmplot.kcfg:210
#. i18n: ectx: whatsthis, entry (DetailedTracing), group (General)
#: rc.cpp:754 rc.cpp:2456 rc.cpp:754 rc.cpp:2456
msgid ""
"Whether to show extra detail such as the tangent and normal when tracing a "
"plot."
msgstr "跟踪绘图时是否显示额外的细节,例如切线等。"

#. i18n: file: kmplot_part.rc:19
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part_readonly.rc:15
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part.rc:19
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part_readonly.rc:15
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part.rc:19
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part_readonly.rc:15
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part.rc:19
#. i18n: ectx: Menu (view)
#. i18n: file: kmplot_part_readonly.rc:15
#. i18n: ectx: Menu (view)
#: rc.cpp:760 rc.cpp:775 rc.cpp:2462 rc.cpp:2477 rc.cpp:760 rc.cpp:775
#: rc.cpp:2462 rc.cpp:2477
msgid "&View"
msgstr "查看(&V)"

#. i18n: file: kmplot_part.rc:29
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part_readonly.rc:26
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part.rc:29
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part_readonly.rc:26
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part.rc:29
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part_readonly.rc:26
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part.rc:29
#. i18n: ectx: Menu (tools)
#. i18n: file: kmplot_part_readonly.rc:26
#. i18n: ectx: Menu (tools)
#: rc.cpp:763 rc.cpp:778 rc.cpp:2465 rc.cpp:2480 rc.cpp:763 rc.cpp:778
#: rc.cpp:2465 rc.cpp:2480
msgid "&Tools"
msgstr "工具(&T)"

#. i18n: file: kmplot_part.rc:35
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part_readonly.rc:32
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_shell.rc:13
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part.rc:35
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part_readonly.rc:32
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_shell.rc:13
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part.rc:35
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part_readonly.rc:32
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_shell.rc:13
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part.rc:35
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_part_readonly.rc:32
#. i18n: ectx: Menu (settings)
#. i18n: file: kmplot_shell.rc:13
#. i18n: ectx: Menu (settings)
#: rc.cpp:766 rc.cpp:781 rc.cpp:790 rc.cpp:2468 rc.cpp:2483 rc.cpp:2492
#: rc.cpp:766 rc.cpp:781 rc.cpp:790 rc.cpp:2468 rc.cpp:2483 rc.cpp:2492
msgid "&Settings"
msgstr "设置(&S)"

#. i18n: file: kmplot_part.rc:41
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part_readonly.rc:35
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_shell.rc:26
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part.rc:41
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part_readonly.rc:35
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_shell.rc:26
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part.rc:41
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part_readonly.rc:35
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_shell.rc:26
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part.rc:41
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_part_readonly.rc:35
#. i18n: ectx: Menu (help)
#. i18n: file: kmplot_shell.rc:26
#. i18n: ectx: Menu (help)
#: rc.cpp:769 rc.cpp:784 rc.cpp:793 rc.cpp:2471 rc.cpp:2486 rc.cpp:2495
#: rc.cpp:769 rc.cpp:784 rc.cpp:793 rc.cpp:2471 rc.cpp:2486 rc.cpp:2495
msgid "&Help"
msgstr "帮助(&H)"

#. i18n: file: kmplot_shell.rc:4
#. i18n: ectx: Menu (file)
#: rc.cpp:787 rc.cpp:2489 rc.cpp:787 rc.cpp:2489
msgid "&File"
msgstr "文件(&F)"

#. i18n: file: kmplot_shell.rc:30
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:796 rc.cpp:2498 rc.cpp:796 rc.cpp:2498
msgid "Main Toolbar"
msgstr "主工具栏"