~ubuntu-branches/ubuntu/oneiric/kde-l10n-ar/oneiric-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
# translation of kmplot.po to
# Copyright (C) 2002, 2007 Free Software Foundation, Inc.
# Isam Bayazidi <bayazidi@arabeyes.org>, 2002.
# Youssef Chahibi <chahibi@gmail.com>, 2007.
# محمد الحرقان <malham1@gmail.com>, 2010.
msgid ""
msgstr ""
"Project-Id-Version: kmplot\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-07-05 04:28+0200\n"
"PO-Revision-Date: 2010-07-16 11:32+0300\n"
"Last-Translator: محمد الحرقان <malham1@gmail.com>\n"
"Language-Team:  <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Virtaal 0.6.1\n"
"X-Poedit-Language: Arabic\n"
"X-Poedit-Country: SAUDI ARABIA\n"

#: calculator.cpp:43 maindlg.cpp:304
msgid "Calculator"
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 "قيمة الحد الأدنى يجب أن تكون أقل من قيمة الحد الأعلى"

#: equationeditor.cpp:40
msgid "Equation Editor"
msgstr "محرر المعادلات"

#: functioneditor.cpp:60
msgid "Functions"
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"

#: kconstanteditor.cpp:67
msgid "Constants Editor"
msgstr "محرر الثوابت"

#: kconstanteditor.cpp:135
#, fuzzy
msgid "Check this to have the constant exported when saving."
msgstr "كِش إلى ثابت."

#: kconstanteditor.cpp:138
#, fuzzy
msgid ""
"Check this to have the constant permanently available between instances of "
"KmPlot."
msgstr "كِش إلى ثابت متوفّر بين من المخطط."

#: kgradientdialog.cpp:383
#, fuzzy
msgid "(Double-click on the gradient to add a stop)"
msgstr "مزدوج انقر يعمل تدرّج إلى اضف a قف"

#: kgradientdialog.cpp:384
#, fuzzy
msgid "Remove stop"
msgstr "احذف قف"

#: kgradientdialog.cpp:405
msgid "Choose a Gradient"
msgstr "حدد نسبة الانحراف"

#: kmplot.cpp:82
msgid "Could not find KmPlot's part."
msgstr "لم يتم ايجاد  find KmPlot's part."

#: kmplot.cpp:209 maindlg.cpp:522
#, fuzzy
msgid ""
"*.fkt|KmPlot Files (*.fkt)\n"
"*|All Files"
msgstr "المخطط ملفات n الكل ملفات"

#: kmplot.cpp:209
msgid "Open"
msgstr "افتح"

#: kmplotio.cpp:322
msgid "The file had an unknown version number"
msgstr "ملفّ مجهول رقم النسخة"

#: kmplotio.cpp:342 kparametereditor.cpp:219
msgid "The file does not exist."
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 لا يمكن تحميله (%2 لكل خط %3, عمود %4)"

#: kmplotio.cpp:435
msgid "automatic"
msgstr "تلقائي"

#: kmplotio.cpp:790
#, kde-format
msgid "The function %1 could not be loaded"
msgstr "لا يمكن تحميل %1 الدالة"

#. i18n: file: qparametereditor.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, QParameterEditor)
#: kparametereditor.cpp:51 rc.cpp:636
msgid "Parameter Editor"
msgstr "محرر العلامات"

#: kparametereditor.cpp:213 kparametereditor.cpp:283
msgid "*.txt|Plain Text File "
msgstr "*.txt|نص بسيط"

#: 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: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 "&أكتب عليه"

#: kparametereditor.cpp:306 kparametereditor.cpp:310 kparametereditor.cpp:332
msgid "An error appeared when saving this file"
msgstr "خطأ أثناء حفظ الملف."

#: 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 "إنشات (انش)"

#: kprinterdlg.cpp:62
msgid "Centimeters (cm)"
msgstr "سنتيمترات (سم)"

#: kprinterdlg.cpp:63
msgid "Millimeters (mm)"
msgstr "مليميترات (مم)"

#: 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 "ارتفاع غير صالح"

#: ksliderwindow.cpp:37
#, kde-format
msgid "Slider %1"
msgstr "منزلق %1"

#: ksliderwindow.cpp:43
#, fuzzy
msgid ""
"Move slider to change the parameter of the function plot connected to this "
"slider."
msgstr "نقل مزلق إلى تغيير معلمة من الدالة إلى مزلق."

#: ksliderwindow.cpp:94
msgid "Sliders"
msgstr "منزلق"

#: main.cpp:42
msgid "Mathematical function plotter for KDE"
msgstr "رسام الدوال الرياضية لكدي"

#: 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 Edemar"

#: main.cpp:61
msgid "Various improvements"
msgstr "تحسينات متعددة"

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

#: main.cpp:62
#, fuzzy
msgid "Porting to Qt 4, UI improvements, features"
msgstr "تحويل للأنظمة إلى Qt UI"

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

#: main.cpp:64
msgid "svg icon"
msgstr "أيقونات"

#: 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)
#: maindlg.cpp:210 rc.cpp:921
msgid "General"
msgstr "عام"

#: maindlg.cpp:210
msgid "General Settings"
msgstr "إعدادات عامة"

#. i18n: file: settingspagediagram.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, SettingsPageDiagram)
#: maindlg.cpp:211 rc.cpp:810
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 "ص&در..."

#: maindlg.cpp:265
msgid "&Coordinate System..."
msgstr "& إحداثية النظام."

#: maindlg.cpp:270
msgid "&Constants..."
msgstr "&ثوابت."

#: maindlg.cpp:280
msgid "Zoom &In"
msgstr "ت&كبير"

#: maindlg.cpp:286
msgid "Zoom &Out"
msgstr "ت&صغير"

#: maindlg.cpp:292
#, fuzzy
msgid "&Fit Widget to Trigonometric Functions"
msgstr "ملائمة كائن إلى Trigonometric دالات"

#: maindlg.cpp:296
msgid "Reset View"
msgstr "إعادة تعيين عرض"

#: maindlg.cpp:309
msgid "Plot &Area..."
msgstr "منطقة الرسم"

#: maindlg.cpp:313
msgid "Find Ma&ximum..."
msgstr "أوجد الأقصى"

#: maindlg.cpp:318
msgid "Find Mi&nimum..."
msgstr "اوجد الأدنى."

#: maindlg.cpp:326
msgid "Predefined &Math Functions"
msgstr "دوال معرفة & رياضية"

#: 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)
#: maindlg.cpp:374 rc.cpp:1214 rc.cpp:1229
msgid "&Edit"
msgstr "&حرّر"

#: maindlg.cpp:381
msgid "&Hide"
msgstr "إ&خفاء"

#: maindlg.cpp:386
msgid "&Remove"
msgstr "أ&زل"

#: 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 "احفظ كـ"

#: 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"

#: parameteranimator.cpp:62
msgid "Parameter Animator"
msgstr "متغير نشط"

#: parameterswidget.cpp:39
#, kde-format
msgid "Slider No. %1"
msgstr "المتغير رقم. %1"

#: parser.cpp:676
msgid "Remove all"
msgstr "إزالة االكل"

#: parser.cpp:678
#, fuzzy, kde-format
msgid ""
"The function %1 is depended upon by the following functions: %2. These must "
"be removed in addition."
msgstr "الـ الدالة هو أداء متابعة هذه بوصة."

#: 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
#, fuzzy
msgid "Invalid plus-minus symbol (expression must be constant)"
msgstr "غير صحيح زائد ناقص رمز تعبير ثابت"

#: parser.cpp:1228
#, fuzzy
msgid "The function has too many arguments"
msgstr "الـ الدالة المعاملات"

#: parser.cpp:1231
#, fuzzy
msgid "The function does not have the correct number of arguments"
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 "مظهر الرسم"

#: xparser.cpp:143
msgid "Error in extension."
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)
#: view.cpp:2430 rc.cpp:263 rc.cpp:390 rc.cpp:427 rc.cpp:457 rc.cpp:486
#: rc.cpp:588
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 "جذر"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "الاسم"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "البريد الاكتروني"

#. i18n: file: constantseditor.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, ConstantsEditor)
#: rc.cpp:5
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)
#: rc.cpp:8 rc.cpp:639
msgid "The value must be a number (e.g. \"pi^2\")"
msgstr "القيمة يجب أن تكون رقماً (e.g. \"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)
#: rc.cpp:11 rc.cpp:642
msgid "(invalid)"
msgstr "(غير صالح)"

#. i18n: file: constantseditor.ui:54
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:14
msgid "Value:"
msgstr "القيمة:"

#. i18n: file: constantseditor.ui:64
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:17
msgid "Constant:"
msgstr "ثابت:"

#. i18n: file: constantseditor.ui:74
#. i18n: ectx: property (toolTip), widget (EquationEdit, valueEdit)
#: rc.cpp:20
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)
#: rc.cpp:23 rc.cpp:645
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)
#: rc.cpp:26 rc.cpp:648
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)
#: rc.cpp:29 rc.cpp:651
msgid "&New"
msgstr "&جديد"

#. i18n: file: constantseditor.ui:103
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:32
msgid "Constant"
msgstr "ثابت"

#. i18n: file: constantseditor.ui:108
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:35
msgid "Value"
msgstr "القيمة"

#. i18n: file: constantseditor.ui:113
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:38
msgid "Document"
msgstr "مستند"

#. i18n: file: constantseditor.ui:118
#. i18n: ectx: property (text), widget (QTreeWidget, constantList)
#: rc.cpp:41
msgid "Global"
msgstr "عالمي"

#. i18n: file: constantseditor.ui:142
#. i18n: ectx: property (toolTip), widget (QPushButton, cmdDelete)
#: rc.cpp:44
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)
#: rc.cpp:47 rc.cpp:657
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)
#: rc.cpp:50 rc.cpp:221 rc.cpp:660
msgid "&Delete"
msgstr "ا&حذف"

#. i18n: file: editcoords.ui:20
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:53
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)
#: rc.cpp:56 rc.cpp:86 rc.cpp:239 rc.cpp:375 rc.cpp:424 rc.cpp:510 rc.cpp:980
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)
#: rc.cpp:59 rc.cpp:65 rc.cpp:77 rc.cpp:89
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)
#: rc.cpp:62 rc.cpp:68 rc.cpp:80 rc.cpp:92
msgid "Enter a valid expression, for instance 2*pi or e/2."
msgstr "ادخل تعبير صحيح للنموذج 2*pi or 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)
#: rc.cpp:71 rc.cpp:83 rc.cpp:248 rc.cpp:372 rc.cpp:421 rc.cpp:501 rc.cpp:977
msgid "Min:"
msgstr "الحد الأدنى:"

#. i18n: file: editcoords.ui:81
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:74
msgid "Vertical axis Range"
msgstr "حدود المحور الرأسي"

#. i18n: file: editcoords.ui:142
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_XScalingMode)
#: rc.cpp:95
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)
#: rc.cpp:98 rc.cpp:110
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)
#: rc.cpp:101 rc.cpp:113
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)
#: rc.cpp:104 rc.cpp:116
msgid "Custom:"
msgstr "مخصص:"

#. i18n: file: editcoords.ui:178
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_YScalingMode)
#: rc.cpp:107
msgid "Vertical axis Grid Spacing"
msgstr "تباعد خطوطالشبكة رأسياً"

#. i18n: file: equationeditorwidget.ui:31
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:119
msgid "Expression:"
msgstr "المصطلحات"

#. i18n: file: equationeditorwidget.ui:54
#. i18n: ectx: property (text), widget (QPushButton, constantsButton)
#: rc.cpp:122
msgid "Edit Constants..."
msgstr "تحرير الثوابت ..."

#. i18n: file: equationeditorwidget.ui:75
#. i18n: ectx: property (text), item, widget (KComboBox, constantList)
#: rc.cpp:125
msgid "Insert constant..."
msgstr "إدراج ثابت ..."

#. i18n: file: equationeditorwidget.ui:84
#. i18n: ectx: property (text), item, widget (KComboBox, functionList)
#: rc.cpp:128
msgid "Insert function..."
msgstr "إدراج الدالة ..."

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#. i18n: file: functioneditorwidget.ui:50
#. i18n: ectx: property (toolTip), widget (QPushButton, deleteButton)
#: rc.cpp:215
msgid "delete the selected function"
msgstr "حذف الدوال المحددة"

#. i18n: file: functioneditorwidget.ui:53
#. i18n: ectx: property (whatsThis), widget (QPushButton, deleteButton)
#: rc.cpp:218
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:224
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)
#: rc.cpp:227 rc.cpp:463
msgid "Function"
msgstr "الدالة"

#. i18n: file: functioneditorwidget.ui:117
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:230
msgid "Custom plot range"
msgstr "خصص نطاق الرسم"

#. i18n: file: functioneditorwidget.ui:129
#. i18n: ectx: property (toolTip), widget (QCheckBox, cartesianCustomMax)
#: rc.cpp:233
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)
#: rc.cpp:236 rc.cpp:245
#, fuzzy
#| msgid "Check this button and enter the plot range boundarys below."
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:242
msgid "Customize the minimum plot range"
msgstr "خصص نطاق الرسم  الاصغر"

#. i18n: file: functioneditorwidget.ui:158
#. i18n: ectx: property (toolTip), widget (EquationEdit, cartesianMin)
#: rc.cpp:251
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)
#: rc.cpp:254 rc.cpp:381 rc.cpp:412 rc.cpp:507
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:257
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)
#: rc.cpp:260 rc.cpp:387 rc.cpp:418 rc.cpp:516
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)
#: rc.cpp:266 rc.cpp:341 rc.cpp:393 rc.cpp:430 rc.cpp:460 rc.cpp:489
msgid "Appearance"
msgstr "المظهر"

#. i18n: file: functioneditorwidget.ui:199
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#: rc.cpp:269
msgid "Derivatives"
msgstr "المشتقات"

#. i18n: file: functioneditorwidget.ui:211
#. i18n: ectx: property (toolTip), widget (QCheckBox, showDerivative1)
#: rc.cpp:272
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)
#: rc.cpp:275 rc.cpp:287
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:278
msgid "Show &1st derivative"
msgstr "عرض & المشتقة الأولى"

#. i18n: file: functioneditorwidget.ui:227
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f1)
#: rc.cpp:281
msgid "1st derivative"
msgstr "المشتقة الاولى"

#. i18n: file: functioneditorwidget.ui:234
#. i18n: ectx: property (toolTip), widget (QCheckBox, showDerivative2)
#: rc.cpp:284
msgid "Show second derivative"
msgstr "عرض المشتقة الثانية"

#. i18n: file: functioneditorwidget.ui:240
#. i18n: ectx: property (text), widget (QCheckBox, showDerivative2)
#: rc.cpp:290
msgid "Show &2nd derivative"
msgstr "عرض & المشتقة الثانية"

#. i18n: file: functioneditorwidget.ui:250
#. i18n: ectx: property (title), widget (PlotStyleWidget, cartesian_f2)
#: rc.cpp:293
msgid "2nd derivative"
msgstr "المشتقة الثانية"

#. i18n: file: functioneditorwidget.ui:258
#. i18n: ectx: attribute (title), widget (QWidget, tab_2)
#: rc.cpp:296
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)
#: rc.cpp:299 rc.cpp:305
msgid "Show integral"
msgstr "عرض التكامل"

#. i18n: file: functioneditorwidget.ui:270
#. i18n: ectx: property (whatsThis), widget (QCheckBox, showIntegral)
#: rc.cpp:302
#, fuzzy
#| msgid "If this box is checked, the first derivative will be plotted, too."
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:308
msgid "A point on the solution curve"
msgstr "نقطة على لمنحنى الحل"

#. i18n: file: functioneditorwidget.ui:286
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_6)
#: rc.cpp:311
msgid "Initial Point"
msgstr "النقطة الإبتدائية"

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

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

#. i18n: file: functioneditorwidget.ui:318
#. i18n: ectx: property (toolTip), widget (EquationEdit, txtInitX)
#: rc.cpp:320
#, fuzzy
msgid "Enter the initial x-point,for instance 2 or pi"
msgstr ""
"إدخال إبتدائي\n"
"بدائي x نقطة لـ مرة أو pi"

#. i18n: file: functioneditorwidget.ui:321
#. i18n: ectx: property (whatsThis), widget (EquationEdit, txtInitX)
#: rc.cpp:323
#, fuzzy
msgid ""
"Enter the initial x-value or expression for the integral, for example 2 or "
"pi/2"
msgstr ""
"إدخال إبتدائي\n"
"بدائي x قيمة أو تعبير لـ مدمج لـ أو pi 2"

#. i18n: file: functioneditorwidget.ui:328
#. i18n: ectx: property (toolTip), widget (EquationEdit, txtInitY)
#: rc.cpp:326
#, fuzzy
msgid "enter the initial y-point, eg 2 or pi"
msgstr ""
"أدخل إبتدائي\n"
"بدائي ن نقطة أو pi"

#. i18n: file: functioneditorwidget.ui:331
#. i18n: ectx: property (whatsThis), widget (EquationEdit, txtInitY)
#: rc.cpp:329
#, fuzzy
msgid ""
"Enter the initial y-value or expression for the integral, for example 2 or "
"pi/2"
msgstr ""
"إدخال إبتدائي\n"
"بدائي ن قيمة أو تعبير لـ مدمج لـ أو 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)
#: rc.cpp:332 rc.cpp:477
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)
#: rc.cpp:335 rc.cpp:480
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)
#: rc.cpp:338 rc.cpp:483 rc.cpp:549
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)
#: rc.cpp:344 rc.cpp:396 rc.cpp:433
msgid "Definition"
msgstr "تعريف"

#. i18n: file: functioneditorwidget.ui:424
#. i18n: ectx: property (text), widget (QLabel, textLabelX)
#: rc.cpp:347
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)
#: rc.cpp:350 rc.cpp:361 rc.cpp:449 rc.cpp:466
msgid "Enter an expression"
msgstr "إدخال وصف"

#. i18n: file: functioneditorwidget.ui:439
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricX)
#: rc.cpp:353
#, fuzzy
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: cos(t)"
msgstr "إدخال تعبير لـ الدالة زائف متغير هو t COS t"

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

#. i18n: file: functioneditorwidget.ui:464
#. i18n: ectx: property (whatsThis), widget (EquationEdit, parametricY)
#: rc.cpp:364
#, fuzzy
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: sin(t)"
msgstr "إدخال تعبير لـ الدالة زائف متغير هو t SIN t"

#. i18n: file: functioneditorwidget.ui:474
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_9)
#: rc.cpp:369
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)
#: rc.cpp:378 rc.cpp:409 rc.cpp:504
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)
#: rc.cpp:384 rc.cpp:415 rc.cpp:513
msgid "Upper boundary of the plot range"
msgstr "النطاق الأعلى للرسم"

#. i18n: file: functioneditorwidget.ui:571
#. i18n: ectx: property (toolTip), widget (EquationEdit, polarEquation)
#: rc.cpp:399
msgid "Enter an equation"
msgstr "ادخل معادلة"

#. i18n: file: functioneditorwidget.ui:575
#. i18n: ectx: property (whatsThis), widget (EquationEdit, polarEquation)
#: rc.cpp:402
#, fuzzy
msgid ""
"Enter an expression for the function. The prefix \"r\" will be added "
"automatically.\n"
"Example: loop(angle)=ln(angle)"
msgstr ""
"إدخال تعبير لـ الدالة الـ r ينفذ بتكرار\n"
"حلقة\n"
"يكرر زاوية زاوية"

#. i18n: file: functioneditorwidget.ui:585
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_13)
#: rc.cpp:406
msgid "Plot Range"
msgstr "نطاق الرسم"

#. i18n: file: functioneditorwidget.ui:676
#. i18n: ectx: property (toolTip), widget (KLineEdit, implicitName)
#: rc.cpp:436
msgid "Name of the function"
msgstr "اسم الدالة"

#. i18n: file: functioneditorwidget.ui:680
#. i18n: ectx: property (whatsThis), widget (KLineEdit, implicitName)
#: rc.cpp:439
#, fuzzy
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 ""
"إدخال الاسم من الدالة الاسم من a الدالة فريد إذا سطر فارغ المخطط set a "
"افتراضي الاسم أنت تغيير الإيطالية."

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

#. i18n: file: functioneditorwidget.ui:690
#. i18n: ectx: property (text), widget (QLabel, textLabel4_2)
#: rc.cpp:446
msgid "Name:"
msgstr "الاسم:"

#. i18n: file: functioneditorwidget.ui:705
#. i18n: ectx: property (whatsThis), widget (EquationEdit, implicitEquation)
#: rc.cpp:452
#, fuzzy
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: x^2 + y^2 = 25."
msgstr "إدخال تعبير لـ الدالة زائف متغير هو t x ن."

#. i18n: file: functioneditorwidget.ui:757
#. i18n: ectx: property (whatsThis), widget (EquationEdit, differentialEquation)
#: rc.cpp:469
#, fuzzy
msgid ""
"Enter an expression for the function.\n"
"The dummy variable is t.\n"
"Example: f''(x) = -f"
msgstr "إدخال تعبير لـ الدالة زائف متغير هو t f x f"

#. i18n: file: functioneditorwidget.ui:760
#. i18n: ectx: property (text), widget (EquationEdit, differentialEquation)
#: rc.cpp:474
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)
#: rc.cpp:492 rc.cpp:522
msgid "Initial Conditions"
msgstr "الشرطالابتدائي"

#. i18n: file: functiontools.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, FunctionTools)
#: rc.cpp:495
msgid "Function Tools"
msgstr "أدوات الدوال"

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

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

#. i18n: file: initialconditionswidget.ui:49
#. i18n: ectx: property (text), widget (QPushButton, removeButton)
#: rc.cpp:525
msgid "Remove"
msgstr "احذف"

#. i18n: file: initialconditionswidget.ui:56
#. i18n: ectx: property (text), widget (QPushButton, addButton)
#: rc.cpp:528
msgid "Add..."
msgstr "أضف..."

#. i18n: file: parameteranimator.ui:23
#. i18n: ectx: property (toolTip), widget (QLabel, warningLabel)
#: rc.cpp:531
#, fuzzy
msgid ""
"The function must have an additional variable as a parameter, e.g. f(x,k) "
"would have k as its parameter"
msgstr "الـ الدالة متغير a معلمة e g f x k k معلمة"

#. i18n: file: parameteranimator.ui:29
#. i18n: ectx: property (text), widget (QLabel, warningLabel)
#: rc.cpp:534
#, fuzzy
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"
"</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> الـ الحالي الدالة ليس a معلمة و "
"متحركة</p></body></html>"

#. i18n: file: parameteranimator.ui:47
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:540
msgid "Final value:"
msgstr "القيمة النهائية:"

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

#. i18n: file: parameteranimator.ui:64
#. i18n: ectx: property (text), widget (EquationEdit, final)
#: rc.cpp:546
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)
#: rc.cpp:552 rc.cpp:561
msgid "0"
msgstr "0"

#. i18n: file: parameteranimator.ui:88
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:555
msgid "Initial value:"
msgstr "القيمة الأولية:"

#. i18n: file: parameteranimator.ui:124
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:558
msgid "Current Value:"
msgstr "القيمة الحالية:"

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

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

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

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

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

#. i18n: file: parameteranimator.ui:257
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:579
msgid "Speed:"
msgstr "السرعة:"

#. i18n: file: parameteranimator.ui:304
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: rc.cpp:582
msgid "Fast"
msgstr "سريع"

#. i18n: file: parameteranimator.ui:311
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: rc.cpp:585
msgid "Slow"
msgstr "بطيء"

#. i18n: file: parameterswidget.ui:37
#. i18n: ectx: property (text), widget (QCheckBox, useSlider)
#: rc.cpp:591
msgid "Slider:"
msgstr "مزلق:"

#. i18n: file: parameterswidget.ui:44
#. i18n: ectx: property (text), widget (QCheckBox, useList)
#: rc.cpp:594
msgid "List:"
msgstr "القائمة:"

#. i18n: file: parameterswidget.ui:54
#. i18n: ectx: property (toolTip), widget (KPushButton, editParameterListButton)
#: rc.cpp:597
msgid "Edit the list of parameters"
msgstr "تحرير قائمة من البارامترات"

#. i18n: file: parameterswidget.ui:57
#. i18n: ectx: property (whatsThis), widget (KPushButton, editParameterListButton)
#: rc.cpp:600
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:603
msgid "Edit List..."
msgstr "تحرير القائمة."

#. i18n: file: parameterswidget.ui:70
#. i18n: ectx: property (toolTip), widget (KComboBox, listOfSliders)
#: rc.cpp:606
msgid "Select a slider"
msgstr "اختر منزلق"

#. i18n: file: parameterswidget.ui:73
#. i18n: ectx: property (whatsThis), widget (KComboBox, listOfSliders)
#: rc.cpp:609
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:612
msgid "Plot Style"
msgstr "نمط الرسم"

#. i18n: file: plotstylewidget.ui:26
#. i18n: ectx: property (text), widget (QCheckBox, showPlotName)
#: rc.cpp:615
msgid "Show the plot name"
msgstr "عرض اسم الرسم"

#. i18n: file: plotstylewidget.ui:33
#. i18n: ectx: property (text), widget (QCheckBox, showExtrema)
#: rc.cpp:618
msgid "Show extrema (minimum/maximum points)"
msgstr "عرض القيم القصوى ( النقط العليا \\ الصغرى )"

#. i18n: file: plotstylewidget.ui:53
#. i18n: ectx: property (text), widget (QCheckBox, showTangentField)
#: rc.cpp:621
msgid "Show the tangent field:"
msgstr "عرض مجال المماس"

#. i18n: file: plotstylewidget.ui:67
#. i18n: ectx: property (text), widget (QCheckBox, useGradient)
#: rc.cpp:624
msgid "Use a gradient for parameters:"
msgstr "استخدم نسبة ميل الباراميتر:"

#. i18n: file: plotstylewidget.ui:74
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:627
msgid "Line style:"
msgstr "نمط الخط:"

#. i18n: file: plotstylewidget.ui:87
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:630
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)
#: rc.cpp:633 rc.cpp:864 rc.cpp:870 rc.cpp:876 rc.cpp:882
msgid " mm"
msgstr " مم"

#. i18n: file: qparametereditor.ui:55
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdDelete)
#: rc.cpp:654
msgid "delete selected constant"
msgstr "حذف الثابت المحدد"

#. i18n: file: qparametereditor.ui:84
#. i18n: ectx: property (text), widget (QPushButton, moveUp)
#: rc.cpp:663
msgid "Move Up"
msgstr "تحريك للأعلى"

#. i18n: file: qparametereditor.ui:91
#. i18n: ectx: property (text), widget (QPushButton, moveDown)
#: rc.cpp:666
msgid "Move Down"
msgstr "تحريك للأسفل"

#. i18n: file: qparametereditor.ui:117
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdImport)
#: rc.cpp:669
msgid "Import values from a textfile"
msgstr "استرد قيمة من ملف نصي"

#. i18n: file: qparametereditor.ui:120
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdImport)
#: rc.cpp:672
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:675
msgid "&Import..."
msgstr "ا&ستورد..."

#. i18n: file: qparametereditor.ui:133
#. i18n: ectx: property (toolTip), widget (KPushButton, cmdExport)
#: rc.cpp:678
msgid "Export values to a textfile"
msgstr "صدر القيمة إلى ملف نصي"

#. i18n: file: qparametereditor.ui:136
#. i18n: ectx: property (whatsThis), widget (KPushButton, cmdExport)
#: rc.cpp:681
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:684
msgid "&Export..."
msgstr "ت&صدير..."

#. i18n: file: settingspagecolor.ui:23
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:687
msgid "&Coords"
msgstr "إ&حداثي"

#. i18n: file: settingspagecolor.ui:35
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:690
msgid "Background Color:"
msgstr "لون الخلفية:"

#. i18n: file: settingspagecolor.ui:45
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_backgroundcolor)
#: rc.cpp:693
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:696
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:699
msgid "&Axes:"
msgstr "&محاور:"

#. i18n: file: settingspagecolor.ui:71
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:702
msgid "&Grid:"
msgstr "&شبكة:"

#. i18n: file: settingspagecolor.ui:84
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_AxesColor)
#: rc.cpp:705
msgid "select color for the axes"
msgstr "حدد لّون االمحاور"

#. i18n: file: settingspagecolor.ui:87
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_AxesColor)
#: rc.cpp:708
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:711
msgid "select color for the grid"
msgstr "تحديد لّون الشبكة"

#. i18n: file: settingspagecolor.ui:100
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_GridColor)
#: rc.cpp:714
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:717
msgid "&Default Function Colors"
msgstr "لون الدالة الافتراضي"

#. i18n: file: settingspagecolor.ui:133
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color1)
#: rc.cpp:720
msgid "the default color for function number 2"
msgstr "اللون الافتراضي للدالة 2"

#. i18n: file: settingspagecolor.ui:136
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color1)
#: rc.cpp:723
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 ""
"اللون الافتراضي للدالة 2.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:146
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color4)
#: rc.cpp:726
msgid "the default color for function number 5"
msgstr "defined"

#. i18n: file: settingspagecolor.ui:149
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color4)
#: rc.cpp:729
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 ""
"اللون الافتراضي للدالة 5.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:159
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color0)
#: rc.cpp:732
msgid "the default color for function number 1"
msgstr "اللون الافتراضي للدالة 1"

#. i18n: file: settingspagecolor.ui:162
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color0)
#: rc.cpp:735
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 ""
"اللون الافتراضي للدالة 1.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:172
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:738
msgid "Function &1:"
msgstr "دالة &1:"

#. i18n: file: settingspagecolor.ui:185
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color2)
#: rc.cpp:741
msgid "the default color for function number 3"
msgstr "اللون الافتراضي للدالة رقم 3"

#. i18n: file: settingspagecolor.ui:188
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color2)
#: rc.cpp:744
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 ""
"اللون الافتراضي للدالة 3.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:198
#. i18n: ectx: property (text), widget (QLabel, textLabel3_13)
#: rc.cpp:747
msgid "Function &3:"
msgstr "دالة &3:"

#. i18n: file: settingspagecolor.ui:211
#. i18n: ectx: property (text), widget (QLabel, textLabel3_2)
#: rc.cpp:750
msgid "Function &2:"
msgstr "دالة &2:"

#. i18n: file: settingspagecolor.ui:224
#. i18n: ectx: property (text), widget (QLabel, textLabel3_12)
#: rc.cpp:753
msgid "Function &4:"
msgstr "دالة &4:"

#. i18n: file: settingspagecolor.ui:237
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color3)
#: rc.cpp:756
msgid "the default color for function number 4"
msgstr "اللون الافتراضي للدالة رقم 4"

#. i18n: file: settingspagecolor.ui:240
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color3)
#: rc.cpp:759
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 ""
"اللون الافتراضي للدالة 4.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:250
#. i18n: ectx: property (text), widget (QLabel, textLabel3_11)
#: rc.cpp:762
msgid "Function &5:"
msgstr "دالة &5:"

#. i18n: file: settingspagecolor.ui:289
#. i18n: ectx: property (text), widget (QLabel, textLabel3_9)
#: rc.cpp:765
msgid "Function &7:"
msgstr "دالة &7:"

#. i18n: file: settingspagecolor.ui:302
#. i18n: ectx: property (text), widget (QLabel, textLabel3_8)
#: rc.cpp:768
msgid "Function &8:"
msgstr "دالة &8:"

#. i18n: file: settingspagecolor.ui:315
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color8)
#: rc.cpp:771
msgid "the default color for function number 9"
msgstr "اللون الافتراضي للدالة رقم 9"

#. i18n: file: settingspagecolor.ui:318
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color8)
#: rc.cpp:774
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 ""
"اللون الافتراضي للدالة 9.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:328
#. i18n: ectx: property (text), widget (QLabel, textLabel3_10)
#: rc.cpp:777
msgid "Function &6:"
msgstr "دالة &6:"

#. i18n: file: settingspagecolor.ui:341
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color6)
#: rc.cpp:780
msgid "the default color for function number 7"
msgstr "اللون الافتراضي للدالة رقم 7"

#. i18n: file: settingspagecolor.ui:344
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color6)
#: rc.cpp:783
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 ""
"اللون الافتراضي للدالة 7.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:354
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color7)
#: rc.cpp:786
msgid "the default color for function number 8"
msgstr "اللون الافتراضي للدالة رقم 8"

#. i18n: file: settingspagecolor.ui:357
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color7)
#: rc.cpp:789
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 ""
"اللون الافتراضي للدالة 8.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:367
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color5)
#: rc.cpp:792
msgid "the default color for function number 6"
msgstr "اللون الافتراضي للدالة رقم 6"

#. i18n: file: settingspagecolor.ui:370
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color5)
#: rc.cpp:795
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 ""
"اللون الافتراضي للدالة 6.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:380
#. i18n: ectx: property (text), widget (QLabel, textLabel3_7)
#: rc.cpp:798
msgid "Function &9:"
msgstr "دالة &9:"

#. i18n: file: settingspagecolor.ui:393
#. i18n: ectx: property (toolTip), widget (KColorButton, kcfg_Color9)
#: rc.cpp:801
msgid "the default color for function number 10"
msgstr "اللون الافتراضي للدالة رقم 10"

#. i18n: file: settingspagecolor.ui:396
#. i18n: ectx: property (whatsThis), widget (KColorButton, kcfg_Color9)
#: rc.cpp:804
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 ""
"اللون الافتراضي للدالة 10.الرجاء ملاحظة أن إعداد اللون فقط على الدوال "
"الخالية. لذلك إذا عرفت الدالة 1 ثم غيرت اللون لهذا الرقم هنا ، فإن الإعداد "
"سيظهر مرة أخرى إذا أنشأت دالة برقم 1"

#. i18n: file: settingspagecolor.ui:406
#. i18n: ectx: property (text), widget (QLabel, textLabel3_6)
#: rc.cpp:807
msgid "Function 1&0:"
msgstr "دالة &10:"

#. 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:813 rc.cpp:1013
msgid "Grid Style"
msgstr "نمط الشبكة"

#. i18n: file: settingspagediagram.ui:32
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton11)
#: rc.cpp:816
msgid "No Grid will be plotted."
msgstr "لن ترسم خطوط الشبكة"

#. i18n: file: settingspagediagram.ui:35
#. i18n: ectx: property (text), widget (QRadioButton, radioButton11)
#: rc.cpp:819
msgid "None"
msgstr "لا شيء"

#. i18n: file: settingspagediagram.ui:42
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton12)
#: rc.cpp:822
#, fuzzy
msgid "A line for every tic."
msgstr "A سطر لـ كل."

#. i18n: file: settingspagediagram.ui:45
#. i18n: ectx: property (text), widget (QRadioButton, radioButton12)
#: rc.cpp:825
msgid "Lines"
msgstr "خطوط"

#. i18n: file: settingspagediagram.ui:52
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton13)
#: rc.cpp:828
#, fuzzy
msgid "Only little crosses in the plot area."
msgstr "فقط بوصة منطقة."

#. i18n: file: settingspagediagram.ui:55
#. i18n: ectx: property (text), widget (QRadioButton, radioButton13)
#: rc.cpp:831
#, fuzzy
msgid "Crosses"
msgstr "الصلبان"

#. i18n: file: settingspagediagram.ui:62
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton14)
#: rc.cpp:834
#, fuzzy
msgid "Circles around the Origin."
msgstr "دوائر الأصل."

#. i18n: file: settingspagediagram.ui:65
#. i18n: ectx: property (text), widget (QRadioButton, radioButton14)
#: rc.cpp:837
msgid "Polar"
msgstr "قطبي"

#. i18n: file: settingspagediagram.ui:75
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:840
#, fuzzy
#| msgid "Axes Labels"
msgid "Axis Labels"
msgstr "اسماء المحاور:"

#. i18n: file: settingspagediagram.ui:81
#. i18n: ectx: property (whatsThis), widget (QLabel, label)
#: rc.cpp:843
#, fuzzy
#| msgid "Label to Horizontal Axis."
msgid "Label on horizontal axis."
msgstr "تسمية على المحور الأفقي."

#. i18n: file: settingspagediagram.ui:84
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:846
msgid "Horizontal Axis Label: "
msgstr "اسم المحور الأفقي:"

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

#. i18n: file: settingspagediagram.ui:101
#. i18n: ectx: property (whatsThis), widget (QLabel, label_2)
#: rc.cpp:852
#, fuzzy
#| msgid "Label to Vertical Axis."
msgid "Label on vertical axis."
msgstr "تسمية على المحور الرأسي"

#. i18n: file: settingspagediagram.ui:104
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:855
msgid "Vertical Axis Label:"
msgstr "اسم المحور الرأسي:"

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

#. i18n: file: settingspagediagram.ui:124
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:861
#, fuzzy
#| msgid "Axes width:"
msgid "Axis widths:"
msgstr "عرض المحاور :"

#. i18n: file: settingspagediagram.ui:156
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:867
#, fuzzy
msgid "Line &width:"
msgstr "خط العرض:"

#. i18n: file: settingspagediagram.ui:188
#. i18n: ectx: property (text), widget (QLabel, textLabel9)
#: rc.cpp:873
#, fuzzy
msgid "Tic width:"
msgstr "التشنج اللاإرادي العرض:"

#. i18n: file: settingspagediagram.ui:220
#. i18n: ectx: property (text), widget (QLabel, textLabel8_4)
#: rc.cpp:879
#, fuzzy
msgid "Tic length:"
msgstr "التشنج اللاإرادي الطول:"

#. i18n: file: settingspagediagram.ui:252
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowLabel)
#: rc.cpp:885
#, fuzzy
msgid "visible tic labels"
msgstr "مرئي"

#. i18n: file: settingspagediagram.ui:255
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_ShowLabel)
#: rc.cpp:888
#, fuzzy
msgid "Check this if the axes' tics should be labeled."
msgstr "كِش IF."

#. i18n: file: settingspagediagram.ui:258
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowLabel)
#: rc.cpp:891
msgid "Show labels"
msgstr "عرض المسميات"

#. i18n: file: settingspagediagram.ui:268
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowAxes)
#: rc.cpp:894
msgid "visible axes"
msgstr "إخفاء المحاور"

#. i18n: file: settingspagediagram.ui:271
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_ShowAxes)
#: rc.cpp:897
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:900
msgid "Show axes"
msgstr "إظهار المحاور"

#. i18n: file: settingspagediagram.ui:284
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_ShowArrows)
#: rc.cpp:903
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:906
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:909
msgid "Show arrows"
msgstr "عرض الأسهم"

#. i18n: file: settingspagefonts.ui:23
#. i18n: ectx: property (text), widget (QLabel, textLabel10)
#: rc.cpp:912
msgid "Axes labels:"
msgstr "اسماء المحاور:"

#. i18n: file: settingspagefonts.ui:45
#. i18n: ectx: property (text), widget (QLabel, textLabel10_3)
#: rc.cpp:915
msgid "Diagram labels:"
msgstr "اسم الرسم البياني:"

#. i18n: file: settingspagefonts.ui:67
#. i18n: ectx: property (text), widget (QLabel, textLabel10_4)
#: rc.cpp:918
msgid "Header table:"
msgstr "رأس الجدول"

#. i18n: file: settingspagegeneral.ui:20
#. i18n: ectx: property (title), widget (KButtonGroup, kcfg_anglemode)
#: rc.cpp:924
msgid "Angle Mode"
msgstr "وضع الزوايا"

#. i18n: file: settingspagegeneral.ui:32
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton1)
#: rc.cpp:927
#, fuzzy
msgid "Trigonometric functions use radian mode for angles."
msgstr "Trigonometric استخدام نمط لـ."

#. i18n: file: settingspagegeneral.ui:35
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton1)
#: rc.cpp:930
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:933
msgid "&Radian"
msgstr "& راديان"

#. i18n: file: settingspagegeneral.ui:45
#. i18n: ectx: property (toolTip), widget (QRadioButton, radioButton2)
#: rc.cpp:936
#, fuzzy
msgid "Trigonometric functions use degree mode for angles."
msgstr "Trigonometric استخدام درجة نمط لـ."

#. i18n: file: settingspagegeneral.ui:48
#. i18n: ectx: property (whatsThis), widget (QRadioButton, radioButton2)
#: rc.cpp:939
#, fuzzy
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:942
msgid "&Degree"
msgstr "& الدرجة"

#. i18n: file: settingspagegeneral.ui:61
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_4)
#: rc.cpp:945
msgid "Zoom"
msgstr "تكبير"

#. i18n: file: settingspagegeneral.ui:73
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2)
#: rc.cpp:948
#, fuzzy
msgid "Zoom In by:"
msgstr "تكبير بوصة أداء:"

#. i18n: file: settingspagegeneral.ui:86
#. i18n: ectx: property (text), widget (QLabel, textLabel1_2_2)
#: rc.cpp:951
#, fuzzy
msgid "Zoom Out by:"
msgstr "تكبير خارج أداء:"

#. i18n: file: settingspagegeneral.ui:99
#. i18n: ectx: property (whatsThis), widget (KIntNumInput, kcfg_zoomOutStep)
#: rc.cpp:954
#, fuzzy
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)
#: rc.cpp:958 rc.cpp:965
#, no-c-format
msgid "%"
msgstr "%"

#. i18n: file: settingspagegeneral.ui:121
#. i18n: ectx: property (whatsThis), widget (KIntNumInput, kcfg_zoomInStep)
#: rc.cpp:961
#, fuzzy
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:968
#, fuzzy
msgid "Draw tangent and normal when tracing"
msgstr "رسم و عادي"

#. i18n: file: sliderwidget.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, SliderWidget)
#: rc.cpp:971
msgid "Slider"
msgstr "مزلق"

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

#. i18n: file: kmplot.kcfg:12
#. i18n: ectx: label, entry (AxesLineWidth), group (Coordinate System)
#: rc.cpp:983
msgid "Axis-line width"
msgstr "عرض خطوط المحاور"

#. i18n: file: kmplot.kcfg:13
#. i18n: ectx: whatsthis, entry (AxesLineWidth), group (Coordinate System)
#: rc.cpp:986
msgid "Enter the width of the axis lines."
msgstr "إدخال عرض خطوط المحاور."

#. i18n: file: kmplot.kcfg:17
#. i18n: ectx: label, entry (ShowLabel), group (Coordinate System)
#: rc.cpp:989
msgid "Checked if labels are visible"
msgstr "تأكد من إخفاء التسمية"

#. i18n: file: kmplot.kcfg:18
#. i18n: ectx: whatsthis, entry (ShowLabel), group (Coordinate System)
#: rc.cpp:992
#, fuzzy
msgid "Check this box if the labels at the tics should be shown."
msgstr "كِش مربّع IF عند."

#. i18n: file: kmplot.kcfg:22
#. i18n: ectx: label, entry (ShowAxes), group (Coordinate System)
#: rc.cpp:995
msgid "Checked if axes are visible"
msgstr "تأكد من إخفاء المحاور"

#. i18n: file: kmplot.kcfg:23
#. i18n: ectx: whatsthis, entry (ShowAxes), group (Coordinate System)
#: rc.cpp:998
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:1001
msgid "Checked if arrows are visible"
msgstr "تأكد أن ظهور الأسهم "

#. i18n: file: kmplot.kcfg:28
#. i18n: ectx: whatsthis, entry (ShowArrows), group (Coordinate System)
#: rc.cpp:1004
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:1007
msgid "Grid Line Width"
msgstr "عرض خطوط الشبكة"

#. i18n: file: kmplot.kcfg:33
#. i18n: ectx: whatsthis, entry (GridLineWidth), group (Coordinate System)
#: rc.cpp:1010
msgid "Enter the width of the grid lines."
msgstr "ادخل عرض خطوط الشبكة ."

#. i18n: file: kmplot.kcfg:38
#. i18n: ectx: whatsthis, entry (GridStyle), group (Coordinate System)
#: rc.cpp:1016
msgid "Choose a suitable grid style."
msgstr "اختر نمط شبكة مناسب"

#. i18n: file: kmplot.kcfg:42
#. i18n: ectx: label, entry (TicLength), group (Coordinate System)
#: rc.cpp:1019
#, fuzzy
msgid "Tic length"
msgstr "التشنج اللاإرادي الطول"

#. i18n: file: kmplot.kcfg:43
#. i18n: ectx: whatsthis, entry (TicLength), group (Coordinate System)
#: rc.cpp:1022
#, fuzzy
msgid "Enter the length of the tic lines"
msgstr "إدخال الطول من سطور"

#. i18n: file: kmplot.kcfg:47
#. i18n: ectx: label, entry (TicWidth), group (Coordinate System)
#: rc.cpp:1025
#, fuzzy
msgid "Tic width"
msgstr "التشنج اللاإرادي العرض"

#. i18n: file: kmplot.kcfg:48
#. i18n: ectx: whatsthis, entry (TicWidth), group (Coordinate System)
#: rc.cpp:1028
#, fuzzy
msgid "Enter the width of the tic lines."
msgstr "إدخال العرض من سطور."

#. i18n: file: kmplot.kcfg:52
#. i18n: ectx: label, entry (XMin), group (Coordinate System)
#: rc.cpp:1031
msgid "Left boundary"
msgstr "الحد الأيسر"

#. i18n: file: kmplot.kcfg:53
#. i18n: ectx: whatsthis, entry (XMin), group (Coordinate System)
#: rc.cpp:1034
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:1037
msgid "Right boundary"
msgstr "الحد الأيمن"

#. i18n: file: kmplot.kcfg:58
#. i18n: ectx: whatsthis, entry (XMax), group (Coordinate System)
#: rc.cpp:1040
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:1043
msgid "Lower boundary"
msgstr "الحد الأدنى"

#. i18n: file: kmplot.kcfg:63
#. i18n: ectx: whatsthis, entry (YMin), group (Coordinate System)
#: rc.cpp:1046
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:1049
msgid "Upper boundary"
msgstr "الحد الأعلى"

#. i18n: file: kmplot.kcfg:68
#. i18n: ectx: whatsthis, entry (YMax), group (Coordinate System)
#: rc.cpp:1052
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:1055
msgid "Label to Horizontal Axis"
msgstr "تسمية على المحور الأفقي"

#. i18n: file: kmplot.kcfg:73
#. i18n: ectx: whatsthis, entry (LabelHorizontalAxis), group (Coordinate System)
#: rc.cpp:1058
msgid "Label to Horizontal Axis."
msgstr "تسمية على المحور الأفقي."

#. i18n: file: kmplot.kcfg:77
#. i18n: ectx: label, entry (LabelVerticalAxis), group (Coordinate System)
#: rc.cpp:1061
msgid "Label to Vertical Axis"
msgstr "تسمية على المحور الرأسي"

#. i18n: file: kmplot.kcfg:78
#. i18n: ectx: whatsthis, entry (LabelVerticalAxis), group (Coordinate System)
#: rc.cpp:1064
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)
#: rc.cpp:1067 rc.cpp:1073
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)
#: rc.cpp:1070 rc.cpp:1076
msgid "Select whether to use automatic or custom scaling."
msgstr "اختر  هل تريد استخدام مقاس افتراضي أم مخصص"

#. i18n: file: kmplot.kcfg:95
#. i18n: ectx: label, entry (XScaling), group (Scaling)
#: rc.cpp:1079
#, fuzzy
msgid "Width of a unit from tic to tic"
msgstr "العرض من a وحدة من إلى"

#. i18n: file: kmplot.kcfg:96
#. i18n: ectx: whatsthis, entry (XScaling), group (Scaling)
#: rc.cpp:1082
#, fuzzy
msgid "Enter the width of a unit from tic to tic."
msgstr "إدخال العرض من a وحدة من إلى."

#. i18n: file: kmplot.kcfg:100
#. i18n: ectx: label, entry (YScaling), group (Scaling)
#: rc.cpp:1085
#, fuzzy
msgid "Height of a unit from tic to tic"
msgstr "الارتفاع من a وحدة من إلى"

#. i18n: file: kmplot.kcfg:101
#. i18n: ectx: whatsthis, entry (YScaling), group (Scaling)
#: rc.cpp:1088
#, fuzzy
msgid "Enter the height of a unit from tic to tic."
msgstr "إدخال الارتفاع من a وحدة من إلى."

#. i18n: file: kmplot.kcfg:108
#. i18n: ectx: label, entry (AxesFont), group (Fonts)
#: rc.cpp:1091
msgid "Font of the axis labels"
msgstr "خط عنوان المحاورالخط من محور"

#. i18n: file: kmplot.kcfg:109
#. i18n: ectx: whatsthis, entry (AxesFont), group (Fonts)
#: rc.cpp:1094
msgid "Choose a font for the axis labels."
msgstr "اختر خط عنوان المحاور"

#. i18n: file: kmplot.kcfg:113
#. i18n: ectx: label, entry (HeaderTableFont), group (Fonts)
#: rc.cpp:1097
msgid "Font of the printed header table"
msgstr "خط عنوان رأس الجدول"

#. i18n: file: kmplot.kcfg:114
#. i18n: ectx: whatsthis, entry (HeaderTableFont), group (Fonts)
#: rc.cpp:1100
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:1103
msgid "Font of diagram labels"
msgstr "خط عنوان الرسم البياني"

#. i18n: file: kmplot.kcfg:119
#. i18n: ectx: whatsthis, entry (LabelFont), group (Fonts)
#: rc.cpp:1106
msgid "Choose a font for diagram labels."
msgstr "اختر خط عنوان الرسم البياني"

#. i18n: file: kmplot.kcfg:126
#. i18n: ectx: label, entry (AxesColor), group (Colors)
#: rc.cpp:1109
msgid "Axis-line color"
msgstr "لون خط المحاور"

#. i18n: file: kmplot.kcfg:127
#. i18n: ectx: whatsthis, entry (AxesColor), group (Colors)
#: rc.cpp:1112
msgid "Enter the color of the axis lines."
msgstr "اختر لّون خطوط المحور"

#. i18n: file: kmplot.kcfg:131
#. i18n: ectx: label, entry (GridColor), group (Colors)
#: rc.cpp:1115
msgid "Grid Color"
msgstr "لون الشبكة"

#. i18n: file: kmplot.kcfg:132
#. i18n: ectx: whatsthis, entry (GridColor), group (Colors)
#: rc.cpp:1118
msgid "Choose a color for the grid lines."
msgstr "اختر لون خطوط الشبكة"

#. i18n: file: kmplot.kcfg:136
#. i18n: ectx: label, entry (Color0), group (Colors)
#: rc.cpp:1121
msgid "Color of function 1"
msgstr "لون الدالة 1"

#. i18n: file: kmplot.kcfg:137
#. i18n: ectx: whatsthis, entry (Color0), group (Colors)
#: rc.cpp:1124
msgid "Choose a color for function 1."
msgstr "اختر لون خطوط الشبكة 1."

#. i18n: file: kmplot.kcfg:141
#. i18n: ectx: label, entry (Color1), group (Colors)
#: rc.cpp:1127
msgid "Color of function 2"
msgstr "لون الدالة 2"

#. i18n: file: kmplot.kcfg:142
#. i18n: ectx: whatsthis, entry (Color1), group (Colors)
#: rc.cpp:1130
msgid "Choose a color for function 2."
msgstr "اختر لون خطوط الشبكة 2."

#. i18n: file: kmplot.kcfg:146
#. i18n: ectx: label, entry (Color2), group (Colors)
#: rc.cpp:1133
msgid "Color of function 3"
msgstr "لون الدالة 3"

#. i18n: file: kmplot.kcfg:147
#. i18n: ectx: whatsthis, entry (Color2), group (Colors)
#: rc.cpp:1136
msgid "Choose a color for function 3."
msgstr "اختر لون خطوط الشبكة 3."

#. i18n: file: kmplot.kcfg:151
#. i18n: ectx: label, entry (Color3), group (Colors)
#: rc.cpp:1139
msgid "Color of function 4"
msgstr "لون الدالة 4"

#. i18n: file: kmplot.kcfg:152
#. i18n: ectx: whatsthis, entry (Color3), group (Colors)
#: rc.cpp:1142
msgid "Choose a color for function 4."
msgstr "اختر لون خطوط الشبكة 4."

#. i18n: file: kmplot.kcfg:156
#. i18n: ectx: label, entry (Color4), group (Colors)
#: rc.cpp:1145
msgid "Color of function 5"
msgstr "لون الدالة 5"

#. i18n: file: kmplot.kcfg:157
#. i18n: ectx: whatsthis, entry (Color4), group (Colors)
#: rc.cpp:1148
msgid "Choose a color for function 5."
msgstr "اختر لون خطوط الشبكة 5."

#. i18n: file: kmplot.kcfg:161
#. i18n: ectx: label, entry (Color5), group (Colors)
#: rc.cpp:1151
msgid "Color of function 6"
msgstr "لون الدالة 6"

#. i18n: file: kmplot.kcfg:162
#. i18n: ectx: whatsthis, entry (Color5), group (Colors)
#: rc.cpp:1154
msgid "Choose a color for function 6."
msgstr "اختر لون خطوط الشبكة 6."

#. i18n: file: kmplot.kcfg:166
#. i18n: ectx: label, entry (Color6), group (Colors)
#: rc.cpp:1157
msgid "Color of function 7"
msgstr "لون الدالة 7"

#. i18n: file: kmplot.kcfg:167
#. i18n: ectx: whatsthis, entry (Color6), group (Colors)
#: rc.cpp:1160
msgid "Choose a color for function 7."
msgstr "اختر لون خطوط الشبكة 7."

#. i18n: file: kmplot.kcfg:171
#. i18n: ectx: label, entry (Color7), group (Colors)
#: rc.cpp:1163
msgid "Color of function 8"
msgstr "لون الدالة 8"

#. i18n: file: kmplot.kcfg:172
#. i18n: ectx: whatsthis, entry (Color7), group (Colors)
#: rc.cpp:1166
msgid "Choose a color for function 8."
msgstr "اختر لون خطوط الشبكة  8."

#. i18n: file: kmplot.kcfg:176
#. i18n: ectx: label, entry (Color8), group (Colors)
#: rc.cpp:1169
msgid "Color of function 9"
msgstr "لون الدالة 9"

#. i18n: file: kmplot.kcfg:177
#. i18n: ectx: whatsthis, entry (Color8), group (Colors)
#: rc.cpp:1172
msgid "Choose a color for function 9."
msgstr "اختر لون خطوط الشبكة 9."

#. i18n: file: kmplot.kcfg:181
#. i18n: ectx: label, entry (Color9), group (Colors)
#: rc.cpp:1175
msgid "Color of function 10"
msgstr "لون الدالة 10"

#. i18n: file: kmplot.kcfg:182
#. i18n: ectx: whatsthis, entry (Color9), group (Colors)
#: rc.cpp:1178
msgid "Choose a color for function 10."
msgstr "اختر لون خطوط الشبكة 10."

#. i18n: file: kmplot.kcfg:189
#. i18n: ectx: label, entry (anglemode), group (General)
#: rc.cpp:1181
msgid "Radians instead of degrees"
msgstr "استبدل الدرجات بالراديان"

#. i18n: file: kmplot.kcfg:190
#. i18n: ectx: whatsthis, entry (anglemode), group (General)
#: rc.cpp:1184
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:1187
msgid "Background color"
msgstr "لون الخلفية"

#. i18n: file: kmplot.kcfg:195
#. i18n: ectx: whatsthis, entry (backgroundcolor), group (General)
#: rc.cpp:1190
msgid "The background color for the graph"
msgstr "لون االخلفية للرسم"

#. i18n: file: kmplot.kcfg:199
#. i18n: ectx: label, entry (zoomInStep), group (General)
#: rc.cpp:1193
#, fuzzy
msgid "Zoom-in step"
msgstr "تكبير بوصة خطوة"

#. i18n: file: kmplot.kcfg:200
#. i18n: ectx: whatsthis, entry (zoomInStep), group (General)
#: rc.cpp:1196
#, fuzzy
msgid "The value the zoom-in tool should use"
msgstr "الـ قيمة كبِّر :: تكبير بوصة أداة استخدام"

#. i18n: file: kmplot.kcfg:204
#. i18n: ectx: label, entry (zoomOutStep), group (General)
#: rc.cpp:1199
#, fuzzy
msgid "Zoom-out step"
msgstr "تكبير خارج خطوة"

#. i18n: file: kmplot.kcfg:205
#. i18n: ectx: whatsthis, entry (zoomOutStep), group (General)
#: rc.cpp:1202
#, fuzzy
msgid "The value the zoom-out tool should use"
msgstr "الـ قيمة كبِّر :: تكبير خارج أداة استخدام"

#. i18n: file: kmplot.kcfg:209
#. i18n: ectx: label, entry (DetailedTracing), group (General)
#: rc.cpp:1205
msgid "Extra detail when tracing"
msgstr "معلومات كاملة عند الطلب"

#. i18n: file: kmplot.kcfg:210
#. i18n: ectx: whatsthis, entry (DetailedTracing), group (General)
#: rc.cpp:1208
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)
#: rc.cpp:1217 rc.cpp:1232
msgid "&View"
msgstr "اع&رض"

#. 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:1220 rc.cpp:1235
msgid "&Tools"
msgstr "أد&وات"

#. 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:1223 rc.cpp:1238 rc.cpp:1247
msgid "&Settings"
msgstr "إع&دادات"

#. 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:1226 rc.cpp:1241 rc.cpp:1250
msgid "&Help"
msgstr "&مساعدة"

#. i18n: file: kmplot_shell.rc:4
#. i18n: ectx: Menu (file)
#: rc.cpp:1244
msgid "&File"
msgstr "&ملف"

#. i18n: file: kmplot_shell.rc:30
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:1253
msgid "Main Toolbar"
msgstr "شريط الأدوات الرئيسي"

#~ msgid "hide the plot"
#~ msgstr "إخفاء الرسم"

#~ msgid "Check this box if you want to hide the plot of the function."
#~ msgstr "علم هذا المربع إذا اردت عدم طباعة الدالة"

#, fuzzy
#~ msgid "Y-axis Range"
#~ msgstr "ص محور مدى"

#, fuzzy
#~ msgid "Y-axis Grid Spacing"
#~ msgstr "ص محور الشبكة التباعد"

#, fuzzy
#~ msgid ""
#~ "*.fkt|KmPlot Files (*.fkt)\n"
#~ "*.*|All Files"
#~ msgstr "المخطط ملفات n الكل ملفات"