1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
|
# translation of kig.po to Khmer
# translation of kig.po to
#
# Auk Piseth <piseth_dv@khmeros.info>, 2006, 2007.
# Eng Vannak <evannak@khmeros.info>, 2006.
# Poch Sokun <sokunpoch@khmeros.info>, 2006.
# Khoem Sokhem <khoemsokhem@khmeros.info>, 2006, 2007, 2008.
msgid ""
msgstr ""
"Project-Id-Version: kig\n"
"POT-Creation-Date: 2018-12-26 20:05+0100\n"
"PO-Revision-Date: 2008-07-15 14:43+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <en@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
#: _translatorinfo:1
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "แแนแ แแปแแแ, แแธ แแฝแแแแธ, แขแแ แแแแแ, แขแแ แแทแแทแแแ"
#: _translatorinfo:2
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr ""
"khoemsokhem@khmeros.info,soursdey@khmeros.info, evannak@khmeros.info,"
"piseth_dv@khmeros.info"
#: filters/cabri-filter.cc:309
msgid "This is an XFig file, not a Cabri figure."
msgstr "แแแโแแบโแแถโแฏแแแถแ XFig แแแโแแทแแแแโแแถโแแผแโแแแแแแ Cabriย แ"
#: filters/cabri-filter.cc:551
msgid ""
"This Cabri file contains a \"%1\" object, which Kig does not currently "
"support."
msgstr "แฏแแแถแ Cabri แแแโแแถแโแแแแแป \"%1\", แแแ Kig แแ
แแ
แปแแแแแแโแแทแโแแถแแแแย แ"
#: filters/drgeo-filter-chooser.cc:46
msgid "Please select a figure."
msgstr "แแผแโแแแแพแโแแผแโแแแแแแ"
#: filters/drgeo-filter.cc:108
msgid "The Dr. Geo file \"%1\" is a macro file so it contains no figures."
msgstr "แฏแแแถแ Dr. Geo \"%1\" แแบโแแถโแฏแแแถแโแแแถแแแแผ แแผแ
แแแแโแแถโแแทแโแแถแโแแผแโแแแแแแโแแย แ"
#: filters/drgeo-filter.cc:111
msgid "There are no figures in Dr. Geo file \"%1\"."
msgstr "แแแแถแโแแผแโแแแแแแโแแ
โแแแแปแโแฏแแแถแ Dr. Geo \"%1\" แแย แ"
#: filters/drgeo-filter.cc:335 filters/drgeo-filter.cc:389
#: filters/drgeo-filter.cc:421 filters/drgeo-filter.cc:434
#: filters/drgeo-filter.cc:455 filters/drgeo-filter.cc:471
#: filters/drgeo-filter.cc:492 filters/drgeo-filter.cc:620
#: filters/drgeo-filter.cc:638 filters/drgeo-filter.cc:679
#: filters/drgeo-filter.cc:691 filters/drgeo-filter.cc:711
msgid ""
"This Dr. Geo file contains a \"%1 %2\" object, which Kig does not currently "
"support."
msgstr "แฏแแแถแ Dr. Geo แแแโแแถแโแแแแแป \"%1 %2\", แแแ Kig แแ
แแ
แปแแแแแแโแแทแโแแถแแแแย แ"
#: filters/drgeo-filter.cc:372
msgid ""
"This Dr. Geo file contains an intersection type, which Kig does not "
"currently support."
msgstr "แฏแแแถแ Dr. Geo แแแโแแถแโแแแแแแโแ
แแแปแ
โแแแแแแแ, แแแ Kig แแ
แแ
แปแแแแแแโแแทแโแแถแแแแย แ"
#: filters/exporter.cc:101
msgid "&Export to image"
msgstr "แแถแโแ
แแโแแถโแแผแแแถแ"
#: filters/exporter.cc:106
msgid "&Image..."
msgstr "แแผแแแถแ..."
#: filters/exporter.cc:125
msgid "Export as Image"
msgstr "แแถแโแ
แแโแแถโแแผแแแถแ"
#: filters/exporter.cc:126
msgid "Image Options"
msgstr "แแแแแพแโแแผแแแถแ"
#: filters/exporter.cc:148
msgid "Sorry, this file format is not supported."
msgstr "แแผแโแแแ, แแทแโแแถแโแแถแแแแโแแแแแแแแแถแโแฏแแแถแโแแแโแแย แ"
#: filters/exporter.cc:158 filters/exporter.cc:594 filters/latexexporter.cc:508
#: filters/svgexporter.cc:82
msgid ""
"The file \"%1\" could not be opened. Please check if the file permissions "
"are set correctly."
msgstr "แฏแแแถแ \"%1\" แแทแโแขแถแ
โแแแแผแโแแถแโแแพแย แ แแผแโแแทแแทแแแโแแถโแแพโแแทแแแแทโแฏแแแถแโแแแแผแโแแถแโแแแแแโแแแถแโแแแแนแแแแแผแย แ"
#: filters/exporter.cc:172
msgid "Sorry, something went wrong while saving to image \"%1\""
msgstr "แแผแโแแแ, แแถแโแแแ แปแโแแแโแแแโแแแแแถโแแปแโแแผแแแถแ \"%1\""
#: filters/exporter.cc:196
msgid "&Export To"
msgstr "แแถแโแ
แแโแแถ"
#: filters/exporter.cc:213
msgid "Export to &XFig file"
msgstr "แแถแโแ
แแโแแถโแฏแแแถแ XFig"
#: filters/exporter.cc:219
msgid "&XFig File..."
msgstr "แฏแแแถแ XFig..."
#: filters/exporter.cc:582
msgid "*.fig|XFig Documents (*.fig)"
msgstr "แฏแแแถแ *.fig|XFig (*.fig)"
#: filters/exporter.cc:583
msgid "Export as XFig File"
msgstr "แแถแโแ
แแโแแถโแฏแแแถแ XFig"
#: filters/filter.cc:73
msgid ""
"The file \"%1\" could not be opened. This probably means that it does not "
"exist, or that it cannot be opened due to its permissions"
msgstr ""
"แฏแแแถแ \"%1\" แแทแโแขแถแ
โแแแแผแโแแถแโแแพแโแแย แ แแแโแแแแ แแโแแถโแแถแโแแแโแแถ แแถโแแทแโแแถแ, แฌ แแถโแแทแโแขแถแ
โแแพแโแแถโแแแโ"
"แแถโแแทแแแแทโแแแแโแแถ"
#: filters/filter.cc:82
msgid ""
"An error was encountered while parsing the file \"%1\". It cannot be opened."
msgstr "แแถแโแแฝแโแแแ แปแโแแแโแแแโแแแโแฏแแแถแ \"%1\"ย แ แแทแโแขแถแ
โแแพแโแแถโแแถแโแแย แ"
#: filters/filter.cc:84
msgid "Parse Error"
msgstr "แแแโแแแ แปแ"
#: filters/filter.cc:95
msgid "Kig cannot open the file \"%1\"."
msgstr "Kig แแทแโแขแถแ
โแแพแโแฏแแแถแ \"%1\" แแถแโแแย แ"
#: filters/filter.cc:96 misc/lists.cc:326
msgid "Not Supported"
msgstr "แแทแโแแถแโแแถแแแแ"
#: filters/kseg-filter.cc:180
msgid ""
"This KSeg document uses a scaling transformation, which Kig currently cannot "
"import."
msgstr "แฏแแแถแโ KSeg แแแโแแแแพโแแถแแแแแแแโแแถแแแแแแแถแโ แแแโKig แแ
แแ
แปแแแแแแโแแทแโแขแถแ
โแแถแแ
แผแโแแถแโย แ"
#: filters/kseg-filter.cc:559
msgid ""
"This KSeg file contains a filled circle, which Kig does not currently "
"support."
msgstr "โแฏแแแถแโ KSeg แแแโแแถแโแแแแแโแแแโแแแแแแโ แแแโ Kig แแ
แแ
แปแแแแแแโแแทแโแแถแโแแถแแแแโย แ"
#: filters/kseg-filter.cc:565
msgid ""
"This KSeg file contains an arc sector, which Kig does not currently support."
msgstr "แฏแแแถแโ KSeg แแแโแแถแโแ
แแแแแโแแแแผ แแแโKig แแ
แแ
แปแแแแแแโแแทแโแแถแโแแถแแแแ"
#: filters/kseg-filter.cc:571
msgid ""
"This KSeg file contains an arc segment, which Kig does not currently support."
msgstr "แฏแแแถแโ KSeg แแแโแแถแแแแแผโแ
แแแแโ แแแโKig แแ
แแ
แปแแแแแแโแแทแโแแถแโแแถแแแแโย แ"
#: filters/latexexporter.cc:72
msgid "Export to &Latex..."
msgstr "แแถแโแ
แแโแแถ Latex..."
#: filters/latexexporter.cc:77
msgid "&Latex..."
msgstr "&Latex..."
#: filters/latexexporter.cc:486
msgid "*.tex|Latex Documents (*.tex)"
msgstr "แฏแแแถแ *.tex|Latex (*.tex)"
#: filters/latexexporter.cc:487
msgid "Export as Latex"
msgstr "แแถแโแ
แแโแแถ Latex"
#: filters/latexexporter.cc:488
msgid "Latex Options"
msgstr "แแแแแพแ Latex"
#: filters/native-filter.cc:195
msgid ""
"This file was created by Kig version \"%1\", which this version cannot open."
msgstr "แฏแแแถแโแแแโแแแแผแโแแถแโแแแแแพแโแแแโแแแแ Kig \"%1\", แแแโแแแแโแแแโแแทแโแขแถแ
โแแแแผแโแแถแโแแพแโแแย แ"
#: filters/native-filter.cc:201
msgid ""
"This file was created by Kig version \"%1\".\n"
"Support for older Kig formats (pre-0.4) has been removed from Kig.\n"
"You can try to open this file with an older Kig version (0.4 to 0.6),\n"
"and then save it again, which will save it in the new format."
msgstr ""
"แฏแแแถแโแแแโแแแแผแโแแถแโแแแแแพแโแแแโแแแแ Kig \"%1\"ย แ\n"
"แแถแแแแโแแแแแแแแแถแโแ
แถแแโแแแแ Kig (แแปแ 0.4) แแแแผแโแแถแโแแโแ
แแโแแธ Kigย แ\n"
"แขแแแโแขแถแ
โแแถแแแแแโแแพแโแฏแแแถแโแแแโแแถแแฝแโแแนแโแแแแโแ
แถแแโแแแแ Kig (0.4 to 0.6),\n"
"แ แพแโแแแแแถโแแปแโแแถโแแแแโแแแ, แแแโแแนแโแแแแแถโแแปแโแแถโแแแแปแโแแแแแแแแแถแโแแแแธย แ"
#: filters/native-filter.cc:232 filters/native-filter.cc:421
msgid ""
"This Kig file has a coordinate system that this Kig version does not "
"support.\n"
"A standard coordinate system will be used instead."
msgstr ""
"แฏแแแถแ Kig แแแโแแถแโแแแแแแแแโแแผแขแแแแแโแแแโแแแแ Kig แแแโแแทแโแแถแแแแย แ\n"
"แแแแถแโแแแแผโแแแแแแแโแแผแขแแแแแโแแนแโแแแแผแโแแถแโแแแแพโแแแแฝแย แ"
#: filters/native-filter.cc:337 filters/native-filter.cc:484
#: misc/object_hierarchy.cc:543 objects/object_imp_factory.cc:503
msgid ""
"This Kig file uses an object of type \"%1\", which this Kig version does not "
"support.Perhaps you have compiled Kig without support for this object type,"
"or perhaps you are using an older Kig version."
msgstr ""
"แฏแแแถแ Kig แแแโแแแแพโแแแแแปโแแโแแแแแแ \"%1\", แแแโแแแแ Kig แแแโแแทแโแแถแแแแย แ แแแแ แแโแแถโแขแแแโแแถแโแ
แแแแแ "
"Kig แแแโแแทแโแแถแแแแโแ
แแแแโแแแแแแโแแแแแปโแแแ, แฌ แแแแ แแโแแถโแขแแแโแแแแปแโแแแแพโแแแแโแ
แถแแโแแถแโแแแแ Kigย แ"
#: filters/svgexporter.cc:45
msgid "&Export to SVG..."
msgstr "แแถแโแ
แแโแแถ SVG..."
#: filters/svgexporter.cc:50
msgid "&SVG..."
msgstr "&SVG..."
#: filters/svgexporter.cc:62
msgid "*.svg|Scalable Vector Graphics (*.svg)"
msgstr "*.svg| แแแแถแ แทแโแแแทแ
แแแโแแแโแขแถแ
โแแแแพโแแถแแแแแแแถแ (*.svg)"
#: filters/svgexporter.cc:63
msgid "Export as SVG"
msgstr "แแถแโแ
แแโแแถ SVG"
#: filters/svgexporter.cc:64
msgid "SVG Options"
msgstr "แแแแแพแ SVG"
#: filters/svgexporter.cc:108
msgid "Sorry, something went wrong while saving to SVG file \"%1\""
msgstr "แแผแโแแแ, แแถแโแแแ แปแโแแแแโแแแโแแแโแแแแแถโแแปแโแแ
โแฏแแแถแ SVG \"%1\""
#: kig/aboutdata.h:26
msgid "TDE Interactive Geometry"
msgstr "แแแแธแแถแแแโแขแแแแแแแแโแแแแ TDE"
#: kig/aboutdata.h:30
msgid "(C) 2002-2005, The Kig developers"
msgstr "แแแแแถแแทแแแแทโแแแแถแ แขแ แ แข-แขแ แ แฅ แแแแขแแแโแขแแทแแแแแแ Kig"
#: kig/aboutdata.h:33
msgid "Original author, long time maintainer, design and lots of code."
msgstr "แขแแแแแทแแแแแแพแ แขแแแแแแแถแแแแแแแแแผแ แแ
แแถ แแทแโแแแแแแแผแแแถแ
แแแพแย แ"
#: kig/aboutdata.h:37
msgid ""
"Did a lot of important work all around Kig, including, but not limited to "
"conics, cubics, transformations and property tests support."
msgstr ""
"แแแแพแแถแแแถแโแแแแถแแแโแแถแ
แแแพแโแแแแแถแแแแโแแนแ Kig แแแโแแฝแโแแแแ
แผแโแแถ แแแปแแแแโแแทแโแแแแแโแแถโแแถแแธ แแผแ แแถแแแแแแแ แแทแโ"
"แแถแแแถแแแแโแแถแแแทแแแโแแแแแแแแแแแแแแทโแกแพแย แ"
#: kig/aboutdata.h:43
msgid ""
"Actual maintainer, Dr. Geo import filter, point and line styles, Italian "
"translation, miscellaneous stuff here and there."
msgstr ""
"แขแแแแแแแถแแแทแแแแแถแแ, แแแแแแแถแแ
แผแ Dr. Geo, แแ
แแถแแแแแโแ
แแแปแ
แแทแโแแแแแถแแ, แแถแแแแแแแแแถแแถแแถแขแแธแแถแแธ, "
"แแถแแแแแแแปแแแแแแโแแ
แแธแแแ แแทแโแแธแแแย แ"
#: kig/aboutdata.h:49
msgid ""
"Helped a lot with the implementation of the Locus object, there's quite some "
"math involved in doing it right, and Franco wrote the most difficult parts."
msgstr ""
"แแถแโแแฝแโแแแถแโแ
แแแพแโแแถแแฝแโแแทแโแแถแโแแแแแทแแแแแทโแแโแแแแแปโแแแแถแแแแแถแแทแ แแถแแแถแโแแแแถโแแแโแแถแแโแแถแแแแโแแแแปแโแแถแโแแแแพโแฒแแโแแถโ"
"แแแแนแแแแแผแ แ แพแ Franco แแแแแโแแแแแโแแแโแแทแแถแโแแแแปแย แ"
#: kig/aboutdata.h:55
msgid ""
"The French translator, who also sent me some useful feedback, like feature "
"requests and bug reports."
msgstr ""
"แขแแแโแแแแแแโแแถแแถโแแถแแถแแ, แขแแแโแแแโแแแแพโแแแทโแแแแแแถแโแแถแโแแแแแแแแโแแแแโแแแโแแแแปแโแแโแแแ, แ
แผแโแ
แทแแแโแแแแพแโแแแแแแโแแทแแแ "
"แแทแโแแแถแแแถแแแโแแแ แปแย แ"
#: kig/aboutdata.h:60
msgid ""
"Author of KGeo, where I got inspiration, some source, and most of the "
"artwork from."
msgstr "แขแแแโแแทแแแแโแแแแ KGeo, แแแโแแแแปแโแแแฝแโแแถแโแแถแโแแผแแแแถแ, แแแแแโแแแแ, แแทแโแแถแแแถแโแแทแแแแโแแถแโแ
แแแพแย แ"
#: kig/aboutdata.h:65
msgid ""
"Domi's brother, who he got to write the algorithm for calculating the center "
"of the circle with three points given."
msgstr "แแโแแแแปแโแแแแ แแผแแธ แแแโแแถแแโแแถแโแแแแแโแแแแฝแโแแแแแแแถแโโแแถแแแแแถโแ
แแแปแ
โแแแแแถแโแแโแแแแแแโแแแโแแถแโแแแแปแโแแธโย แโ"
#: kig/aboutdata.h:71
msgid "Sent me a patch for some bugs."
msgstr "แแแแพโแแแแโแแแแแถแแโแแแ แปแโแแแแโแฒแแโแแแแปแย แ"
#: kig/aboutdata.h:75
msgid ""
"Gave me some good feedback on Kig, some feature requests, cleanups and style "
"fixes, and someone to chat with on irc :)"
msgstr ""
"แแผแโแแแแแโแฒแแโแแแแปแโแแผแโแแแแแทโแขแแแแแแแพโแแแขแโแ
แแแแ Kigโ แแแแพแโแแแแแแแแทแแแ แแถแแแแขแถแโ แแทแโแแถแโแแฝแแแปแโแแ
แแถแแแแแโแแฝแโแ
แแแฝแโ "
"แ แพแโแแทแโแแแปแแแโแแแแถแแโแแพแแแแธโแแแแโแแถโแแฝแโแแแแปแโแแถแโแแแโirc :)"
#: kig/aboutdata.h:81
msgid "Responsible for the nice application SVG Icon."
msgstr "แแแโแแแฝแโแแปแโแแแแผแโแ
แแแแโแแผแโแแแแถแโแแแแแแทแแธ SVG แแโแแแแแโแแแขแถแย แ"
#: kig/aboutdata.h:85
msgid "Responsible for the new object action icons."
msgstr "แแแโแแแฝแโแแปแโแแแแผแโแ
แแแแโแแผแโแแแแถแโแแแแแแแถแโแแแแแปโแแแแธย แ"
#: kig/kig.cpp:88
msgid "Could not find the necessary Kig library, check your installation."
msgstr "แแทแโแขแถแ
โแแโแแแแแถแแแโแ
แถแแแถแ
แโแแแแโ Kig แแถแแกแพแโ แแทแแทแแแโแแถแโแแแกแพแโแแแแโแขแแแย แ"
#: kig/kig.cpp:222
msgid "Save changes to document %1?"
msgstr "แแแแแถโแแปแโแแถแโแแแแถแแแแแแผแโแ
แแแแโแฏแแแถแ %1ย ?"
#: kig/kig.cpp:223
msgid "Save Changes?"
msgstr "แแแแแถโแแปแโแแถแโแแแแถแแแแแแผแย ?"
#: kig/kig.cpp:261
msgid ""
"*.kig *.kigz *.kgeo *.seg|All Supported Files (*.kig *.kigz *.kgeo *.seg)\n"
"*.kig|Kig Documents (*.kig)\n"
"*.kigz|Compressed Kig Documents (*.kigz)\n"
"*.kgeo|KGeo Documents (*.kgeo)\n"
"*.seg|KSeg Documents (*.seg)\n"
"*.fgeo|Dr. Geo Documents (*.fgeo)\n"
"*.fig *.FIG|Cabri Documents (*.fig *.FIG)"
msgstr ""
"*.kig *.kigz *.kgeo *.seg|All แฏแแแถแโแแแโแแถแแแแ (*.kig *.kigz *.kgeo *.seg)\n"
"แฏแแแถแ *.kig|Kig (*.kig)\n"
"โแฏแแแถแโแแแแ Kigโ *.kigz|Compressed (*.kigz)\n"
"แฏแแแถแโ *.kgeo|KGeo (*.kgeo)\n"
"แฏแแแถแโ *.seg|KSeg (*.seg)\n"
"แฏแแแถแ *.fgeo|Dr. Geo (*.fgeo)\n"
"แฏแแแถแโ *.fig *.FIG|Cabri แ (*.fig *.FIG)"
#: kig/kig_commands.cpp:100
msgid "Remove %1 Objects"
msgstr "แแโแแแแแปโ%1 แ
แแโ"
#: kig/kig_commands.cpp:112
msgid "Add %1 Objects"
msgstr "แแแแแแโแแแแแปโ%1"
#: kig/kig_part.cpp:82
msgid "KigPart"
msgstr "KigPart"
#: kig/kig_part.cpp:96
msgid "&Set Coordinate System"
msgstr "แแแแแโแแแแแแแแโแแผแขแแแแแ"
#: kig/kig_part.cpp:130
msgid "Kig Options"
msgstr "แแแแแพแ Kig"
#: filters/imageexporteroptionsbase.ui:132 filters/latexexporteroptions.ui:41
#: filters/svgexporteroptions.ui:41 kig/kig_part.cpp:134
#, no-c-format
msgid "Show grid"
msgstr "แแแแ แถแโแแแแกแถโโโโแ
แแแแแแ"
#: filters/imageexporteroptionsbase.ui:140 filters/latexexporteroptions.ui:49
#: filters/svgexporteroptions.ui:49 kig/kig_part.cpp:137
#, no-c-format
msgid "Show axes"
msgstr "แแแแ แถแแถโแขแแแแ"
#: kig/kig_part.cpp:222
msgid "Invert Selection"
msgstr "แแแแ
แแแถแโแแถแโแแแแพแ"
#: kig/kig_part.cpp:231
msgid "&Delete Objects"
msgstr "แแปแโแแแแแปโ"
#: kig/kig_part.cpp:233
msgid "Delete the selected objects"
msgstr "แแปแโแแแแแปโแแแโแแถแโแแแแพแโ"
#: kig/kig_part.cpp:236
msgid "Cancel Construction"
msgstr "แแแแแแโแแถแโแแถแแแแโ"
#: kig/kig_part.cpp:239
msgid "Cancel the construction of the object being constructed"
msgstr "แแแแแแโแแถแแแถแแแแโแแโแแแแแปโแแแโแแแแปแโแ
แถแแโแแแแพแโแแถแแแแโ"
#: kig/kig_part.cpp:243 modes/popup.cc:980
msgid "U&nhide All"
msgstr "แแทแโแแถแแแแถแแแขแแโ"
#: kig/kig_part.cpp:245
msgid "Show all hidden objects"
msgstr "แแแแ แถแโแแแแแปโแแถแแแขแแโแแแโแแถแโแแถแแโ"
#: kig/kig_part.cpp:249
msgid "&New Macro..."
msgstr "แแแถแแแแผโแแแแธโ..."
#: kig/kig_part.cpp:251
msgid "Define a new macro"
msgstr "แแแแแโแแแถแแแแผโแแแแธโ"
#: kig/kig_part.cpp:254
msgid "Manage &Types..."
msgstr "แแแแแแแแแโแแแแแแ..."
#: kig/kig_part.cpp:256
msgid "Manage macro types."
msgstr "แแแแแแแแแโแแแแแแโแแแถแแแแผโย แ"
#: kig/kig_part.cpp:263 kig/kig_part.cpp:264
msgid "Zoom in on the document"
msgstr "แแแแแธแโแฏแแแถแโ"
#: kig/kig_part.cpp:268 kig/kig_part.cpp:269
msgid "Zoom out of the document"
msgstr "แแแแแฝแโแฏแแแถแโ"
#: kig/kig_part.cpp:275 kig/kig_part.cpp:276
msgid "Recenter the screen on the document"
msgstr "แแถแแโแ
แแแปแ
โแแแแแถแโแกแพแโแแทแโแแ
โแแพโแฏแแแถแ"
#: kig/kig_part.cpp:288
msgid "Full Screen"
msgstr "แแแโแขแแแแแแ"
#: kig/kig_part.cpp:292 kig/kig_part.cpp:293
msgid "View this document full-screen."
msgstr "แแพแโแฏแแแถแโแแแโแแแโแขแแแแแแโย แ"
#: kig/kig_part.cpp:297
msgid "&Select Shown Area"
msgstr "แแแแพแโแแแแโแแแโแแแแ แถแ"
#: kig/kig_part.cpp:299 kig/kig_part.cpp:300
msgid "Select the area that you want to be shown in the window."
msgstr "แแแแพแโแแแแโแแแโแขแแแโแ
แแโแฒแแโแแแแ แถแโแแแแปแโแแแแขแฝแ
ย แ"
#: kig/kig_part.cpp:303
msgid "S&elect Zoom Area"
msgstr "แแแแพแโแแแแโแแแแแธแ"
#: kig/kig_part.cpp:309
msgid "Show &Grid"
msgstr "แแแแ แถแโแแแแกแถแ
แแแแแแ"
#: kig/kig_part.cpp:311
msgid "Show or hide the grid."
msgstr "แแแแ แถแ แฌ แแถแแโแแแแกแถแ
แแแแแแโย แ"
#: kig/kig_part.cpp:315
msgid "Show &Axes"
msgstr "แแแแ แถแโแขแแแแโ"
#: kig/kig_part.cpp:317
msgid "Show or hide the axes."
msgstr "แแแแ แถแ แฌ แแถแแโแขแแแแโย แ"
#: kig/kig_part.cpp:321
msgid "Wear Infrared Glasses"
msgstr "แแถแแโแแแแ
แแโแขแแธแแ แแแแแถแแแแ"
#: kig/kig_part.cpp:323
msgid "Enable/Disable hidden objects visibility."
msgstr "แแพแโ แฌ แแทแโแแถแโแแพแโแแพแโแแแแแปโแแแโแแถแแ"
#: kig/kig_part.cpp:371
msgid ""
"The file \"%1\" you tried to open does not exist. Please verify that you "
"entered the correct path."
msgstr ""
"แฏแแแถแโ \"%1\" แแแโแขแแแโแแแแถแแถแโแแพแโแแทแโแแถแแโแแถแโแแผแโแกแพแโแแโย แ แแผแโแแแแแแแแแถแแโแแถโแขแแแโแแถแโแแแแ
แผแโแแแแผแโแแแแนแแแแแผแโ"
"ย ย แโ"
#: kig/kig_part.cpp:373
msgid "File Not Found"
msgstr "แแโแแทแโแแพแโแฏแแแถแโ"
#: kig/kig_part.cpp:388
msgid ""
"You tried to open a document of type \"%1\"; unfortunately, Kig does not "
"support this format. If you think the format in question would be worth "
"implementing support for, you can always ask us nicely on mailto:toscano."
"pino@tiscali.it or do the work yourself and send me a patch."
msgstr ""
"แขแแแโแแแแถแแถแโแแพแโแฏแแแถแโแแแแแแโ \"%1\" แแถโแขแแปแแโ Kig แแทแโแแถแโแแถแแแแโแแแแแแแแแถแโแแแโแกแพแโย แ แแพโแขแแแโแแทแโแแถโ"
"แแแแแแแแแถแโโแแแแปแโแแแแฝแโแแแโโแแถแโแแแแแโแแฝแโแฒแแโแแถแแแแโ แขแแแโแขแถแ
โแแฝแโแแพแแแถแแแแโ mailto:toscano."
"pino@tiscali.it แฌโ แแแแพแแถแโแแแโแแแแฝแโแขแแแโ แ แพแโแแแแพแโแแแแโแแโแแถแแโแแแแปแโย แโ"
#: kig/kig_part.cpp:394 kig/kig_part.cpp:437
msgid "Format Not Supported"
msgstr "แแทแโแแถแโแแถแแแแโแแแแแแแแแถแโ"
#: kig/kig_part.cpp:435
msgid ""
"Kig does not support saving to any other file format than its own. Save to "
"Kig's format instead?"
msgstr ""
"Kig แแทแโแแถแแแแโแแถแแแแแแถแแปแโแแถโแแแแแแแแแถแโแฏแแแถแโแแแแแโแแแโแแถแโแแแแแแแแแถแโแแแแถแแโแแแแโแแถโแกแพแโย แ แแแแแถโแแปแโแแ
โ"
"แแแแแแแแแถแโแแแแ Kig แแแแฝแโแแทแโแฌ?"
#: kig/kig_part.cpp:437
msgid "Save Kig Format"
msgstr "แแแแแถโแแแแแแแแแถแโแแแแโโ Kig"
#: kig/kig_part.cpp:610
msgid ""
"*.kig|Kig Documents (*.kig)\n"
"*.kigz|Compressed Kig Documents (*.kigz)"
msgstr ""
"แฏแแแถแ *.kig|Kig (*.kig)\n"
"แฏแแแถแ *.kigz|Compressed Kig (*.kigz)"
#: kig/kig_part.cpp:621 misc/kigfiledialog.cc:55 modes/typesdialog.cpp:175
msgid "The file \"%1\" already exists. Do you wish to overwrite it?"
msgstr "แฏแแแถแโ \"%1\" แแถแแแฝแ
แ แพแโย แ แแพโแขแแแโแแทแแแถแ
แแโแแแแแแแธแแพโแฌโ?"
#: kig/kig_part.cpp:622 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:177
msgid "Overwrite File?"
msgstr "แแแแแโแแถแแโแแพโแฏแแแถแแฌย ?"
#: kig/kig_part.cpp:622 misc/kigfiledialog.cc:56 modes/typesdialog.cpp:177
msgid "Overwrite"
msgstr "แแแแแโแแถแแโแแพ"
#: kig/kig_part.cpp:780
msgid "Print Geometry"
msgstr "แแแแแปแแแโแแแแธแแถแแแ"
#: kig/kig_part.cpp:853
#, c-format
msgid ""
"_n: Hide %n Object\n"
"Hide %n Objects"
msgstr "แแถแแแแแแแปโ %n"
#: kig/kig_part.cpp:872
#, c-format
msgid ""
"_n: Show %n Object\n"
"Show %n Objects"
msgstr "แแแแ แถแโแแแแแปโ %n "
#: kig/kig_view.cpp:207
msgid "Zoom In"
msgstr "แแแแแธแ"
#: kig/kig_view.cpp:227
msgid "Zoom Out"
msgstr "แแแแแฝแ"
#: kig/kig_view.cpp:501
msgid "Recenter View"
msgstr "แแถแแโแ
แแแปแ
โแแแแแถแโแแถแโแแพแโแกแพแโแแทแ"
#: kig/kig_view.cpp:523
msgid "Select the rectangle that should be shown."
msgstr "แแแแพแโแ
แแปแแแแแแโแแแโแแแแผแโแแแแ แถแโย แ"
#: kig/kig_view.cpp:531 kig/kig_view.cpp:579
msgid "Change Shown Part of Screen"
msgstr "แแแแถแแแแแแผแโแแแแแโแแแโแแแแ แถแโแแโแขแแแแแแ"
#: kig/kig_view.cpp:568
msgid "Select Zoom Area"
msgstr "แแแแพแโแแแแโแแแแแธแโ"
#: kig/kig_view.cpp:569
msgid ""
"Select the zoom area by entering the coordinates of the upper left corner "
"and the lower right corner."
msgstr "แแแแพแโแแแแโแแแแแธแโแแแโแแแแ
แผแโแแผแขแแแแแโแแโแแแแปแโแแพโแแถแแแแแแ แแทแโแแแแปแโแแแแแโแแถแโแแแแถแย แ"
#: kig/main.cpp:35
msgid ""
"Do not show a GUI. Convert the specified file to the native Kig format. "
"Output goes to stdout unless --outfile is specified."
msgstr ""
"แแปแโแแแแ แถแโ GUIย แโ แแแแแแโแฏแแแถแโแแแโแแถแโแแแแแถแแโแแ
โแแถโแแแแแแแแแถแโแแพแโแแแแโKig ย แ แแถแโแแแแ
แแโแแนแโแแ
โแแถแแ "
"stdout แแพ --outfile แแทแโแแถแโแแแแแถแแย แ"
#: kig/main.cpp:37
msgid ""
"File to output the created native file to. '-' means output to stdout. "
"Default is stdout as well."
msgstr ""
"แฏแแแถแโแแแโแแแแผแโแแแแ
แแโแฏแแแถแโแแพแโแแแโแแถแโแแแแแพแโแแ
ย แ '-' แแถแโแแแโแแถโแแแแ
แแโแแ
โ stdoutย แ แแแแถแโแแพแโแแบ "
"stdout แแโแแแย แ"
#: kig/main.cpp:38
msgid "Document to open"
msgstr "แฏแแแถแโแแแแผแโแแพแ"
#: kig/main.cpp:106
msgid "Kig"
msgstr "Kig"
#: misc/builtin_stuff.cc:58
msgid "Segment"
msgstr "แ
แแแแแโ"
#: misc/builtin_stuff.cc:59
msgid "A segment constructed from its start and end point"
msgstr "แ
แแแแแโแแแแผแโแแถแโแแแแแพแแกแพแโแแธโแแถแแแแแถแโ แแทแโแ
แปแแ
แแแปแ
โแแแแโแแถโ"
#: misc/builtin_stuff.cc:66
msgid "Line by Two Points"
msgstr "แแแแแถแแโแแถแโแแธโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:67
msgid "A line constructed through two points"
msgstr "แแแแแพแโแแแแแถแแโแแถแโแแธแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:73
msgid "Half-Line"
msgstr "แแแแแถแแโแแถแแแแแแแถแโ"
#: misc/builtin_stuff.cc:74
msgid "A half-line by its start point, and another point somewhere on it."
msgstr "แแถแแแแแแแถแโแแแแแถแแโแแถแโแ
แแแปแ
โแ
แถแแโแแแแพแโแแแแโแแถโ แแทแโแ
แแแปแ
โแแแแแโแแแโแแ
โแแแแแแโแแถแแฝแโแแพโแแถโย แ"
#: misc/builtin_stuff.cc:81
msgid "Perpendicular"
msgstr "แแแแแถแแโแแถแแแแแโ"
#: misc/builtin_stuff.cc:82
msgid ""
"A line constructed through a point, perpendicular to another line or segment."
msgstr "แแแแแถแแโแแแแผแโแแถแโแแแแแพแโแแถแแแแถแโแ
แแแปแ
โ แแแแแถแแโแแถแแแแแโแแถแแฝแโแแแแแถแแโแฌ แ
แแแแแโแแแแแโแแแโย แ"
#: misc/builtin_stuff.cc:89
msgid "Parallel"
msgstr "แแแถแแแถแกแแ"
#: misc/builtin_stuff.cc:90
msgid ""
"A line constructed through a point, and parallel to another line or segment"
msgstr "แแแแแถแแโแแแแผแโแแถแโแแแโแแถแแแแถแโแ
แแแปแ
แ แพแโ แแแถแแแถแกแแแแแโแแถแโแแแแแถแแโแฌ แ
แแแแแโแแแแแแแแโ"
#: misc/builtin_stuff.cc:97
msgid "Circle by Center && Point"
msgstr "แแผแโแแแแแแโแแถแโแ
แแแปแ
โแแแแแถแ"
#: misc/builtin_stuff.cc:98
msgid "A circle constructed by its center and a point that pertains to it"
msgstr "แแแแแแโแแแแผแโแแถแโแแแแแพแโแแถแโแ
แแแปแ
โแแแแแถแโแแแแโแแถโโแแทแโแ
แแแปแ
โแแแโแแถแแโแแถแแแแโแแถแแฝแโแแถโ"
#: misc/builtin_stuff.cc:104
msgid "Circle by Three Points"
msgstr "แแผแโแแแแแแโแแถแโแแธโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:105
msgid "A circle constructed through three points"
msgstr "แแแแแพแโแแแแแแโแแถแโแแธโแ
แแแปแ
"
#: misc/builtin_stuff.cc:120
msgid "Construct Bisector of This Angle"
msgstr "แแแโแแปแโแแแแพโแแแแถ"
#: misc/builtin_stuff.cc:121
msgid "Select the angle you want to construct the bisector of..."
msgstr "แแแแพแโแแโแแปแโแแแแพแแแแถโโแแแโแขแแแโแ
แแโแแแแแพแโแแถ..."
#: misc/builtin_stuff.cc:122 objects/other_imp.cc:104
msgid "Angle Bisector"
msgstr "แแปแโแแแแพโแแแแถโ"
#: misc/builtin_stuff.cc:123
msgid "The bisector of an angle"
msgstr "แแปแโแแแแพโแแแแถ"
#: misc/builtin_stuff.cc:130
msgid "Conic by Five Points"
msgstr "แแผแโแแถแแธโแแถแโแแแแถแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:131
msgid "A conic constructed through five points"
msgstr "แแแแแพแโแแถแแธโแแถแโแแแแถแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:138
msgid "Hyperbola by Asymptotes && Point"
msgstr "แแผแโแขแแธแแแแผแโแแถแโแขแถแแแธแแแผแ โแแทแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:139
msgid "A hyperbola with given asymptotes through a point"
msgstr "แขแแธแแแแผแโแแถแโแขแถแแแธแแแผแโแแถแแแแถแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:146
msgid "Ellipse by Focuses && Point"
msgstr "แแผแโแแถแโแแแแแแแพโแแถแโแ
แแแปแ
โแแฝแโ แแทแโแ
แแแปแ
"
#: misc/builtin_stuff.cc:147
msgid "An ellipse constructed by its focuses and a point that pertains to it"
msgstr "แแถแแแแแแแแพโแแแแผแโแแถแแแแแแพแโแแถแโแ
แแแปแ
โแแฝแโแแท แ
แแแปแ
โแแแโแแถแแแแถแแแแโแแแแโแแถโ"
#: misc/builtin_stuff.cc:154
msgid "Hyperbola by Focuses && Point"
msgstr "แแผแโแขแแธแแแแผแโแแถแโแ
แแแปแ
โแแฝแ แแทแโแ
แแแปแ
"
#: misc/builtin_stuff.cc:155
msgid "A hyperbola constructed by its focuses and a point that pertains to it"
msgstr "แขแแธแแแแผแโแแแแผแโแแถแโแแแแแพแโแแแโแ
แแแปแ
โแแฝแโ แแทแโแ
แแแปแ
โแแแโแแถแแโแแถแแแแแโแแแแโแแถโ"
#: misc/builtin_stuff.cc:162
msgid "Conic by Directrix, Focus && Point"
msgstr "แแผแโแแถแแธโแแถแโแแถแแแทแ
แแแแธแ
โ แ
แแแปแ
โแแฝแ โแแทแโโแแแแปแโ"
#: misc/builtin_stuff.cc:163
msgid "A conic with given directrix and focus, through a point"
msgstr "แแถแแธโโแแถแโแแถแแแทแ
แแแแธแ
โ แแทแโแ
แแแปแ
โแแฝแโแแถแแแแถแโแแแแปแโ"
#: misc/builtin_stuff.cc:170
msgid "Vertical Parabola by Three Points"
msgstr "แแผแโแแแถแแแถแแผแโแแแแแโแแถแโแแธโแ
แแแปแ
"
#: misc/builtin_stuff.cc:171
msgid "A vertical parabola constructed through three points"
msgstr "แแแโแแแถแแแถแแผแโแแแแแโแแถแโแแธโแ
แแแปแ
"
#: misc/builtin_stuff.cc:178
msgid "Cubic Curve by Nine Points"
msgstr "แแผแโแแแแแแแโแแธแโแแถแโแแแแถแแแฝแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:179
msgid "A cubic curve constructed through nine points"
msgstr "แแแแแแแโแแผแโแแแแผแโแแถแโแแแแแพแโแแถแโแแแแถแแแฝแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:186
msgid "Polar Point of a Line"
msgstr "แแแแแถแแโแ
แแแปแ
โแแถแโแแแผแโ"
#: misc/builtin_stuff.cc:187
msgid "The polar point of a line with respect to a conic."
msgstr "แแแแแถแแโแแถแโแแแผแโแแโแ
แแแปแ
โแแแแผแโแแถแโแแถแโแแถโแแถแแธ"
#: misc/builtin_stuff.cc:194
msgid "Polar Line of a Point"
msgstr "แแแแแถแแโแแถแโแแแผแโแแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:195
msgid "The polar line of a point with respect to a conic."
msgstr "แแแแแถแแโแแถแโแแแผแโแแโแ
แแแปแ
โแแแแผแโแแถแโแแถแโแแถโแแถแแธโย แ"
#: misc/builtin_stuff.cc:202
msgid "Cubic Curve with Node by Six Points"
msgstr "แแผแโแแแแถแแโโแแแแแแแแโแแธแโแแถแโแฆโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:203
msgid "A cubic curve with a nodal point at the origin through six points"
msgstr "แแแแแแแโแแผแโแแถแโแ
แแแปแ
โแแแแถแแโแแ
โแแถแโแแพแโแแถแแแแถแโแฆ แ
แแแปแ
โ"
#: misc/builtin_stuff.cc:210
msgid "Cubic Curve with Cusp by Four Points"
msgstr "แแแแแแแโแแผแโแแแโแแถแโแ
แปแโแแแแฝแ
โแแถแแแแถแโโแแฝแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:211
msgid "A cubic curve with a horizontal cusp at the origin through four points"
msgstr "แแแแแแแโแแผแโแแถแโแ
แปแแแแแฝแ
โแแแแแโ แแ
โแแถแแแพแโแแถแแโแแถแโแแฝแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:218
msgid "Directrix of a Conic"
msgstr "แแถแแแทแ
แแแแธแ
โแแโแแถแแธโ"
#: misc/builtin_stuff.cc:219
msgid "The directrix line of a conic."
msgstr "แแแแแถแแโแแถแแแทแ
แแแแธแ
โแแโแแถแแธโย แโ"
#: misc/builtin_stuff.cc:226
msgid "Angle by Three Points"
msgstr "แแผแโแแปแโแแถแโแแธโแ
แแแปแ
"
#: misc/builtin_stuff.cc:227
msgid "An angle defined by three points"
msgstr "แแปแโแแแโแแถแโแแแแแโแแแโแแธโแ
แแแปแ
"
#: misc/builtin_stuff.cc:234
msgid "Equilateral Hyperbola by Four Points"
msgstr "แแผแโแขแแธแแแแผแแแแแถแโแแถแแแแถแโแ
แแแปแ
โแแฝแ"
#: misc/builtin_stuff.cc:235
msgid "An equilateral hyperbola constructed through four points"
msgstr "แขแแธแแแแผแโแแแแถแโแแแแผแโแแถแโแแแโแกแพแโแแแโแแถแแแแถแโแ
แแแปแ
โแแฝแ"
#: misc/builtin_stuff.cc:252
msgid "Construct the midpoint of this segment"
msgstr "แแแแแพแโแ
แแแปแ
โแแแแแถแโแแโแ
แแแแแโแแแโ"
#: misc/builtin_stuff.cc:258 objects/line_imp.cc:122
msgid "Mid Point"
msgstr "แ
แแแปแ
โแแแแแถแโ"
#: misc/builtin_stuff.cc:259
msgid "The midpoint of a segment or two other points"
msgstr "แ
แแแปแ
โแแแแแถแโแแโแ
แแแแแโแฌ แ
แแแปแ
โแแธแโแแแแแแแแโ"
#: misc/builtin_stuff.cc:268
msgid "Vector"
msgstr "แแแทแ
แแแโ"
#: misc/builtin_stuff.cc:269
msgid "Construct a vector from two given points."
msgstr "แแแแแพแโแแแทแ
แแแโโแแถแโแแธแโแ
แแแปแ
โแแแโแแถแโแแแแแโแฒแแโย แ"
#: misc/builtin_stuff.cc:276
msgid "Vector Sum"
msgstr "แแโแแผแโแแแทแ
แแแโ"
#: misc/builtin_stuff.cc:277
msgid "Construct the vector sum of two vectors."
msgstr "แแแโแแแแผแโแแโแแแทแ
แแแโแแธแโ"
#: misc/builtin_stuff.cc:284
msgid "Line by Vector"
msgstr "แแผแโแแแแแถแแโแแถแโแแแทแ
แแแโ"
#: misc/builtin_stuff.cc:285
msgid "Construct the line by a given vector though a given point."
msgstr "แแแโแแแแแถแแโแแแโแแแทแ
แแแโแแแโแแแแแโแฒแแโแแถแโแ
แแแปแ
โแแแโแแแแแโแฒแแย แ"
#: misc/builtin_stuff.cc:292
msgid "Half-Line by Vector"
msgstr "แแผแโแแแแแถแแโแแถแแแแแแแถแแแถแโแแแทแ
แแแโ"
#: misc/builtin_stuff.cc:293
msgid "Construct the half-line by a given vector starting at given point."
msgstr "แแแโแแแแแถแแโแแถแแโแแแแแถแโแแแโแแแทแ
แแแโแแแโแแแแแโแฒแแโแแแโแ
แถแแแแแแพแโแแธโแ
แแแปแ
โแแแโแแแแแโแฒแแย แ"
#: misc/builtin_stuff.cc:300
msgid "Arc by Three Points"
msgstr "แแผแโแแแแผโแแถแโแแธแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:301
msgid "Construct an arc through three points."
msgstr "แแแโแแแแผโแแถแโแแธโแ
แแแปแ
ย แ"
#: misc/builtin_stuff.cc:308
msgid "Arc by Center, Angle && Point"
msgstr "แแผแโแแแแผโแแถแโแ
แแแปแ
โแแแแแถแ แแปแ แแทแโแ
แแแปแ
"
#: misc/builtin_stuff.cc:309
msgid ""
"Construct an arc by its center and a given angle, starting at a given point"
msgstr "แแแโแแแแผแโแแถแโแ
แแแปแ
โแแแแแถแโแแแแโแแถโ แแทแโแแปแโแแแโแแถแโแแแแแโแฒแแโ แแแโโแ
แถแแแแแแพแโแแ
โแ
แแแปแ
โแแแโแแแแแโแฒแแ"
#: misc/builtin_stuff.cc:317
msgid "Parabola by Directrix && Focus"
msgstr "แแผแโแแแถแแแถแแผแโแแถแโแแถแแแทแ
แแแแธแ
โ แแทแโแ
แแแปแ
โแแฝแ"
#: misc/builtin_stuff.cc:318
msgid "A parabola defined by its directrix and focus"
msgstr "แแแถแแแถแแผแโแแถแโแแแแแโแแถแโแแถแแแทแ
แแแแธแ
โ แแทแโแ
แแแปแ
โแแฝแโแแแแโแแถโ"
#: misc/builtin_stuff.cc:330
msgid "Translate"
msgstr "แแแแแแโ"
#: misc/builtin_stuff.cc:331
msgid "The translation of an object by a vector"
msgstr "แแถแแแแแแแโแแแแแปโแแถแโแแแทแ
แแแโ"
#: misc/builtin_stuff.cc:338
msgid "Reflect in Point"
msgstr "แแแแปแโแแทแโแ
แแแปแ
"
#: misc/builtin_stuff.cc:339
msgid "An object reflected in a point"
msgstr "แแแแแปโแแแแผแโแแถแโแแแแปแโแแทแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:346
msgid "Reflect in Line"
msgstr "แแแแปแโแแทแโแแแแแถแแ"
#: misc/builtin_stuff.cc:347
msgid "An object reflected in a line"
msgstr "แแแแแปโแแแแผแโแแถแโแแแแแแกแแโแแถโแแแแแถแแโ"
#: misc/builtin_stuff.cc:354
msgid "Rotate"
msgstr "แแแแแทแ"
#: misc/builtin_stuff.cc:355
msgid "An object rotated by an angle around a point"
msgstr "แแแแแปโแแแแผแโแแถแโแแแแแทแโแแถแโแแปแโแแปแแแทแโแ
แแแปแ
โ"
#: misc/builtin_stuff.cc:362
msgid "Scale"
msgstr "แแถแแแแแแแถแ"
#: misc/builtin_stuff.cc:363
msgid ""
"Scale an object over a point, by the ratio given by the length of a segment"
msgstr "แแแแพ แแถแแแแแแแถแโแแแแแปโแแพโแแแแปแโ แแถแโแแแถแแถแแแโแแแโแแถแโแแแแแโแฒแแโแแถแโแแแแแแโแแโแ
แแแแแโ"
#: misc/builtin_stuff.cc:370
msgid "Scale over Line"
msgstr "แแแแพโแแถแแแแแแแถแโแแพโแแแแแถแแโ"
#: misc/builtin_stuff.cc:371
msgid ""
"An object scaled over a line, by the ratio given by the length of a segment"
msgstr "แแแแแปโแแแโแแถแโแแแแพโแแถแแแแแแแถแโแแพโแแแแแถแแโ แแถแโแแแถแแถแแแโแแแโแแถแโแแแแแโแฒแแโแแแโแแแแแแโแ
แแแแแโ"
#: misc/builtin_stuff.cc:378
msgid "Scale (ratio given by two segments)"
msgstr "แแถแแแแแแแถแโ (แแแถแแถแแแโแแแโแแถแโแแแแแโแฒแแโแแถแโแแธแโแ
แแแแแโ)"
#: misc/builtin_stuff.cc:379
msgid ""
"Scale an object over a point, by the ratio given by the length of two "
"segments"
msgstr "แแถแแแแแแแถแโแแแแแปโแแพโแแแแปแโ แแถแโแแแถแแถแแแโแแแโแแถแโแแแแแโแฒแแโแแถแโแแแแแแโแแโแ
แแแแแโแแธแโ"
#: misc/builtin_stuff.cc:386
msgid "Scale over Line (ratio given by two segments)"
msgstr "แแแแพโแแถแแแแแแแถแโแแพโแแแแแถแแโ (แแแถแแถแแแโแแแโแแถแโแแแแแโแฒแแโแแถแโแแธแโแ
แแแแแโ)"
#: misc/builtin_stuff.cc:387
msgid ""
"An object scaled over a line, by the ratio given by the length of two "
"segments"
msgstr "แแแแแปโแแแโแแถแโแแแแพโแแถแแแแแแแถแโแแพโแแแแแถแแโ แแถแโแแแถแแถแแแโแแแโแแถแโแแแแแโแฒแแโแแถแโแแธแโแ
แแแแแโ"
#: misc/builtin_stuff.cc:394
msgid "Apply Similitude"
msgstr "แขแแปแแแแโแแถแโแแผแ
โแแแแถโ"
#: misc/builtin_stuff.cc:395
msgid ""
"Apply a similitude to an object ( the sequence of a scaling and rotation "
"around a center )"
msgstr "แขแแปแแแแโแแถแโแแผแ
แแแแถโแแ
โแแนแ แแแแแปโ ( แแแแถแแโแแโแแถแแแแแพโแแถแแแแแแแถแโ แแทแโโแแถแแแแแแทแโแแปแโแแปแแแทแโแ
แแแปแ
โแแแแแถแโ )"
#: misc/builtin_stuff.cc:402
msgid "Harmonic Homology"
msgstr "แแถแโแแผแ
โแแแแถโโแแแโแแแถแโแ
แผแโแแแแถโ"
#: misc/builtin_stuff.cc:403
msgid ""
"The harmonic homology with a given center and a given axis (this is a "
"projective transformation)"
msgstr ""
"แแถแแแผแ
โแแแแถโแแแโแแแถแโแ
แผแโแแแแถโแแถแโแ
แแแปแ
แแแแแถแโ แแทแโแขแแแแโแแแโแแถแ โแแแแโแฒแแโ แแแโแแถโแแถแโแแแแแแโแแโแแแแ
แถแแโ)"
#: misc/builtin_stuff.cc:418
msgid "Draw Projective Shadow"
msgstr "แแผแโแแแแแแโแแแโแแแแ
แถแแโ"
#: misc/builtin_stuff.cc:419
msgid ""
"The shadow of an object with a given light source and projection plane "
"(indicated by a line)"
msgstr "แแแแแแโแแแแแปโแแถแโแแแแแโแแผแแแแแแโแแแแแบโ แแทแโแแถแถแแแแแ
แถแแโแแแโแแถแโแแแแโแแถแแแแแพ (แแแแ แถแโแแถแโแแแแแถแแโ)"
#: misc/builtin_stuff.cc:434
msgid "Asymptotes of a Hyperbola"
msgstr "แขแถแแแธแแแผแโแแโแขแแธแแแแผแโ"
#: misc/builtin_stuff.cc:435
msgid "The two asymptotes of a hyperbola."
msgstr "แขแถแแแธแแแผแโแแธแโแแโแขแแธแแแแผแโแแฝแโย แ"
#: misc/builtin_stuff.cc:448
msgid "Triangle by Its Vertices"
msgstr "แแผแโแแแแธแแแโแแถแโแ
แแแปแ
โแแโแแปแโแแแแโแแถโ"
#: misc/builtin_stuff.cc:449
msgid "Construct a triangle given its three vertices."
msgstr "แแแโแแแแธแแแโแแแโแแถแโแแแแผแโแแธโ"
#: misc/builtin_stuff.cc:471
msgid "Convex Hull"
msgstr "แแแแโแแแแ"
#: misc/builtin_stuff.cc:472
msgid "A polygon that corresponds to the convex hull of another polygon"
msgstr "แแ แปแแแโแแแโแแแแผแแแแแถโแแ
แแนแ แแ แปแแแแแแแโแแถแแแแแ
โแแแแแแแแโ"
#: misc/builtin_stuff.cc:486
msgid "Parallel Test"
msgstr "แแทแแแ แแแถแแแถแกแแ"
#: misc/builtin_stuff.cc:487
msgid "Test whether two given lines are parallel"
msgstr "แแทแแแโแแถโแแพโแแแแแถแแโแแแโแแแแแโแฒแแโแแถแแโแแธแโแแแถแแแถแกแแโแฌโแแ"
#: misc/builtin_stuff.cc:494
msgid "Orthogonal Test"
msgstr "แแทแแแโแขแแแผแแผแแถแแ"
#: misc/builtin_stuff.cc:495
msgid "Test whether two given lines are orthogonal"
msgstr "แแทแแแโแแถโแแพโแแแแแถแแโแแแโแแแแแโแฒแแโแแถแแโแแธแโแขแแแผแแผแแถแแโแฌโแแ"
#: misc/builtin_stuff.cc:502
msgid "Collinear Test"
msgstr "แแทแแแ แแผแแธแแแขแแแ"
#: misc/builtin_stuff.cc:503
msgid "Test whether three given points are collinear"
msgstr "แแทแแแโแแถโแแพโแ
แแแปแ
โแแธโแแแโแแถแโแแแแแโแฒแแโโโแแผแแธแแแขแแแโแฌโแแ"
#: misc/builtin_stuff.cc:510
msgid "Contains Test"
msgstr "แแทแแแ แแถแโแแถแ"
#: misc/builtin_stuff.cc:511
msgid "Test whether a given curve contains a given point"
msgstr "แแทแแแโแแถแแพโแแแแแแแโแแถแโแ
แแแปแ
โแแแโแแแแแโแฒแแโแฌโแแ"
#: misc/builtin_stuff.cc:518
msgid "In Polygon Test"
msgstr "แแทแแแ แแ
โแแแแปแโแแ แปแแแ"
#: misc/builtin_stuff.cc:519
msgid "Test whether a given polygon contains a given point"
msgstr "แแทแแแโแแถแแพโแแ แปแแแโแแแโแแแแแโแฒแแโแแถแโแ
แแแปแ
โแแแโแแแแแโแฒแแโแฌโแแ"
#: misc/builtin_stuff.cc:526
msgid "Convex Polygon Test"
msgstr "แแทแแแ แแ แปแแแโแแแแ"
#: misc/builtin_stuff.cc:527
msgid "Test whether a given polygon is convex"
msgstr "แแทแแแโแแผแโแแ แปแแแโแแแโแแถแโแแแแแโแฒแแโแแถแแ แปแแแโแแแแโโแฌโแแ"
#: misc/builtin_stuff.cc:534
msgid "Distance Test"
msgstr "แแทแแแ แ
แแแแถแโ"
#: misc/builtin_stuff.cc:535
msgid ""
"Test whether a given point have the same distance from a given point and "
"from another given point"
msgstr "แแทแแแโแแถแแพแแแแปแโแแแโแแถแแแแแแแฒแแโแแถแโแ
แแแถแโแแผแ
แแแแถโแแธโแแแแปแโแแแโแแถแโ แแทแโแแแแปแโแแแแแโแแแโแแแโแแถแโแแแแแโแฒแแโแฌ "
#: misc/builtin_stuff.cc:543
msgid "Vector Equality Test"
msgstr "แแทแแแ แแถแแแแแพแแแแถโแแโแแแทแ
แแแโ"
#: misc/builtin_stuff.cc:544
msgid "Test whether two vectors are equal"
msgstr "แแทแแแ แแผแโแแแทแ
แแแโแแธแโแแแแพแแแแถโ"
#: misc/builtin_stuff.cc:584 modes/popup.cc:1057
msgid "Python Script"
msgstr "แแแแแแธแโ Python "
#: misc/builtin_stuff.cc:585
msgid "Construct a new Python script."
msgstr "แแแแแพแโแแแแแแธแโ Python แแแแธแแฝแโย แ"
#: misc/coordinate_system.cpp:315
msgid ""
"Enter coordinates in the following format: \"x;y\",\n"
"where x is the x coordinate, and y is the y coordinate."
msgstr ""
"แแแแ
แผแโแขแแแผแแแแโแแแแปแโแแแแแแแแแถแโแแผแ
แแถแแแแแแโย แ \"x;y\",\n"
" x แแ
โแแธแแถโ แแผแขแแแแแโ x โแแ
โแแธโแแแโ แ แพแโ y แแถโแแผแขแแแแแโแแโ y ย แโ"
#: misc/coordinate_system.cpp:321
msgid ""
"Enter coordinates in the following format: <b>\"x;y\"</b>, where x is the x "
"coordinate, and y is the y coordinate."
msgstr ""
"แแแแ
แผแโแแผแขแแแแแโแแถแโแแแแแแแแแถแโแแผแ
โแแถแแแแแแโย แ <b>\"x;y\"</b>, x แแธแแแ แแถโแแผแขแแแแแโ x แ แพแ "
"y แแถโแแผแขแแแแแแแโโ yย แโ"
#: misc/coordinate_system.cpp:363
msgid ""
"Enter coordinates in the following format: \"r; ฮธยฐ\",\n"
"where r and ฮธ are the polar coordinates."
msgstr ""
"แแแแ
แผแโแแผแขแแแแแโแแถแโแแแแแแแแแถแโแแผแ
โแแถแแแแแแโย แ \"r; ฮธยฐ\",\n"
" แแธแแถแแโ r แแทแ ฮธ แแถโแแผแขแแแแแโแแโแแแแแถแแโแแถแโแแแผแโย แโ"
#: misc/coordinate_system.cpp:370
msgid ""
"Enter coordinates in the following format: <b>\"r; ฮธยฐ\"</b>, where r and ฮธ "
"are the polar coordinates."
msgstr ""
"แแแแ
แผแโแแผแขแแแแแโแแถแโแแแแแแแแแถแโแแผแ
โแแถแแแแแแโย แ <b>\"r; ฮธยฐ\"</b> r แแนแ ฮธ แแถโแแผแขแแแแแโแแแแแถแแแแถแโ"
"แแแผแโย แโ"
#: misc/coordinate_system.cpp:522
msgid "&Euclidean"
msgstr "แแถแโแแถแแแแกแถโ"
#: misc/coordinate_system.cpp:523
msgid "&Polar"
msgstr "แแถแแแถโแแแผแโ"
#: misc/coordinate_system.cpp:573
msgid "Set Euclidean Coordinate System"
msgstr "แแแแแโแแแแแแแแโแแผแขแแแแแโแแถแแแถแแแแกแถโ"
#: misc/coordinate_system.cpp:575
msgid "Set Polar Coordinate System"
msgstr "แแแแแโแแแแแแแแโแแผแขแแแแแโแแถแแแถโแแแผแโ"
#: misc/goniometry.cc:121
msgid ""
"_: Translators: Degrees\n"
"Deg"
msgstr "Deg"
#: misc/goniometry.cc:122
msgid ""
"_: Translators: Radians\n"
"Rad"
msgstr "Rad"
#: misc/goniometry.cc:123
msgid ""
"_: Translators: Gradians\n"
"Grad"
msgstr "Grad"
#: misc/guiaction.cc:117
msgid ""
"A normal point, i.e. one that is either independent or attached to a line, "
"circle, segment."
msgstr "แ
แแแปแ
โแแแแแแถ แแถแโแแแโแแถ แ
แแแปแ
โแแฝแโแแแโแแ
โแแโแฏแ แฌ แแแแถแแโแแ
โแแทแโแแแแแถแแ แแแแแแ แ
แแแแแย แ"
#: misc/guiaction.cc:129
msgid "Point"
msgstr "แ
แแแปแ
"
#: misc/guiaction.cc:170
msgid "Construct a text label."
msgstr "แแแโแแแแถแโแขแแแแแโย แ"
#: misc/guiaction.cc:180
msgid "Text Label"
msgstr "แแแแถแโแขแแแแแ"
#: misc/guiaction.cc:201
msgid "Construct a Point by its Coordinates"
msgstr "แแแโแ
แแแปแ
โแแถแโแแผแขแแแแแแแแโแแถโ"
#: misc/guiaction.cc:211
msgid "Point by Coordinates"
msgstr "แแผแโแ
แแแปแ
โแแถแโแแผแขแแแแแ"
#: misc/guiaction.cc:224
msgid "Fixed Point"
msgstr "แ
แแแปแ
โแแแ"
#: misc/guiaction.cc:225
msgid "Enter the coordinates for the new point."
msgstr "แแแแ
แผแโแแผแขแแแแแโแแแแแถแแโแ
แแแปแ
โแแแแธย แ"
#: filters/imageexporteroptionsbase.ui:121 filters/latexexporteroptions.ui:30
#: filters/svgexporteroptions.ui:30 misc/kigfiledialog.cc:35
#, fuzzy, no-c-format
msgid "Options"
msgstr "แแแแแพแ SVG"
#: misc/kiginputdialog.cc:125
msgid "Set Angle Size"
msgstr "แแแแแโแแแ แโแแปแ"
#: misc/kiginputdialog.cc:136
msgid "Insert the new size of this angle:"
msgstr "แแแแ
แผแโแแแ แโแแปแโแแแโแแแแธย แ"
#: misc/kiginputdialog.cc:146
msgid "Use this edit field to modify the size of this angle."
msgstr "แแแแพโแแถแโแแโแแแแแฝแโแแแโแแพแแแแธโแแแแแแโแแแ แโแแปแย แ"
#: misc/kiginputdialog.cc:154
msgid ""
"Choose from this list the goniometric unit you want to use to modify the "
"size of this angle.<br>\n"
"If you switch to another unit, the value in the edit field on the left will "
"be converted to the new selected unit."
msgstr ""
"แแแแพแโแฏแแแแแถโ goniometric แแธโแแแแแธโแแแโแแแโแขแแแโแ
แแโแแแแพโแแแแแถแแโแแแแแแโแแแ แโแแโแแปแโแแแ ย แ <br>\n"
"แแพโแขแแแโแแแแผแโแแ
โแแถโแฏแแแแแถโแแแแแโแแแโ แแแแแโโแแแแแแแฝแโแแแแปแโแแถแโแแถแแแแแแโแแนแ แแแแผแโแแถแโแแแแแแโแแ
โแแถโแฏแแแแแถโแแแแธโแแแโ"
"แแถแโแแแแพแโย แโ"
#: misc/lists.cc:304 misc/lists.cc:310
msgid "Could not open macro file '%1'"
msgstr "แแทแโแขแถแ
โแแพแโแฏแแแถแโแแแถแแแแผ '%1'"
#: misc/lists.cc:321
msgid "Kig cannot open the macro file \"%1\"."
msgstr "Kig แแทแโแขแถแ
โแแพแโแฏแแแถแโแแแถแแแแผ \"%1\"ย แ"
#: misc/lists.cc:322
msgid ""
"This file was created by a very old Kig version (pre-0.4). Support for this "
"format has been removed from recent Kig versions. You can try to import this "
"macro using a previous Kig version (0.4 to 0.6) and then export it again in "
"the new format."
msgstr ""
"แฏแแแถแโแแแโแแแแผแโแแถแโแแแแแพแโแแแโแแแแแแทแแธโ Kig แแแแแโ (pre-0.โ4) แแแโแแถโแแแแแ
แถแแโย แ แแแแโ Kig แแ
แแ
แปแแแแแแโ "
"แแแโแแถแแแแโแแแแแแแแแถแโแแแโแแแแผแโแแถแโแแโแ
แแโย แ แขแแแโแขแถแ
โแแแแถแแถแโแแถแแ
แผแโแแแถแแแแผโแแแโแแแแพโแแแแโ Kig แแธแแปแ (0.4 แแ
โ "
"0. 6) แ แพแโแแแแแถแแโแแแแถแแแถโแ
แแโแแ
โแแถโแแแแแแแแแถแโแแแแธโแแแแแแแโย แ"
#: misc/lists.cc:375
#, c-format
msgid "Unnamed Macro #%1"
msgstr "แแแถแแแแผโแแแแถแโแแแแแ #%1"
#: misc/special_constructors.cc:97
msgid "Radical Lines for Conics"
msgstr "แแแแแถแแโแแแถแแธแแถแแโแแแแแถแแโแแถแแธ"
#: misc/special_constructors.cc:98
msgid ""
"The lines constructed through the intersections of two conics. This is also "
"defined for non-intersecting conics."
msgstr ""
"แแแแแถแแโแแถแ
แแแพแโแแแแผแโแแถแโแแแแแพโแแแถแโแแถแแแแแแแแโแแโแแถแแธโแแธโแย แ แแแโแแถโแแถแแแแแแโแแแแแถแแโแแถแแธโแแแโแแแแถแโแ
แแแปแ
โ"
"แแแแแแแแแโแแแโย แโ"
#: misc/special_constructors.cc:156 misc/special_constructors.cc:252
msgid "Moving Point"
msgstr "แ
แแแปแ
โแแแแทแ"
#: misc/special_constructors.cc:157
msgid ""
"Select the moving point, which will be moved around while drawing the "
"locus..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแทแโแแแโแแนแโแแแแผแโแแถแโแแแแถแแแแธโแแปแแแทแโแแแโแแผแโแแแแถแแแแแถแแทแ..."
#: misc/special_constructors.cc:158
msgid "Following Point"
msgstr "แ
แแแปแ
โแแถแโแแแแแ"
#: misc/special_constructors.cc:159
msgid ""
"Select the following point, whose locations the locus will be drawn "
"through..."
msgstr "แแแแพแโแ
แแแปแ
โแแถแโแแแแแ แแแโแแธแแถแแโแแแแโแแถโแแแแผแโแแถแโแแแแถแแแแแถแแทแโแแนแโแแผแโแแถแ..."
#: misc/special_constructors.cc:163
msgid "Locus"
msgstr "แแแแถแแแแแถแแทแ"
#: misc/special_constructors.cc:163
msgid "A locus"
msgstr "แแแแถแแแแแถแแทแ"
#: misc/special_constructors.cc:253
msgid "Dependent Point"
msgstr "แ
แแแปแ
โแขแถแแแแแ"
#: misc/special_constructors.cc:289
msgid "Polygon by Its Vertices"
msgstr "แแผแโแแ แปแแแโแแถแโแแแแผแโแแแแโแแถโ"
#: misc/special_constructors.cc:294
msgid "Construct a polygon by giving its vertices"
msgstr "แแแโแแ แปแแแโแแถแโแแแแผแโแแแโแแถโแแแแปแโแแแแแโแฒแแโ"
#: misc/special_constructors.cc:366
msgid ""
"... with this vertex (click on the first vertex to terminate construction)"
msgstr "... แแถแแฝแโแแแแผแโแแแ (แ
แปแ
แแพโแแแแผแโแแแแผแโแแโแแพแแแแธโแแแแ
แแโแแแแพแแแถแโแแถแแแถแแแแโ)"
#: misc/special_constructors.cc:367
msgid "Construct a polygon with this vertex"
msgstr "แแแแแพแโแแ แปแแแโแแถแโแแแแผแโแแแ "
#: misc/special_constructors.cc:374 misc/special_constructors.cc:1235
msgid "Select a point to be a vertex of the new polygon..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแผแโแแโแแ แปแแแแแแแธโ..."
#: misc/special_constructors.cc:429 misc/special_constructors.cc:496
msgid "Polygon"
msgstr "แแ แปแแแ"
#: misc/special_constructors.cc:430
msgid "Construct the vertices of this polygon..."
msgstr "แแแโแแแแผแโแแ แปแแแโแแแโ..."
#: misc/special_constructors.cc:434
msgid "Vertices of a Polygon"
msgstr "แแแแผแโแแ แปแแแโ"
#: misc/special_constructors.cc:435
msgid "The vertices of a polygon."
msgstr "แแแแผแโแแ แปแแแ "
#: misc/special_constructors.cc:497
msgid "Construct the sides of this polygon..."
msgstr "แแแแแพแโแแแแปแโแแ แปแแแแแแโ..."
#: misc/special_constructors.cc:501
msgid "Sides of a Polygon"
msgstr "แแแแปโแแแ แปแแแโ"
#: misc/special_constructors.cc:502
msgid "The sides of a polygon."
msgstr "แแแแปแโแแ แปแแแโ"
#: misc/special_constructors.cc:573
msgid "Regular Polygon with Given Center"
msgstr "แแผแโแแ แปแแแโแแทแแแโแแถแโแ
แแแปแ
โแแแแแถแโแแแโแแถแโแแแแแโแฒแแโ"
#: misc/special_constructors.cc:578
msgid "Construct a regular polygon with a given center and vertex"
msgstr "แแแโแแ แปแแแโแแทแแแโแแถแแฝแโแ
แแแปแ
โแแแแแถแโ แแทแโแ
แแแปแ
โแแแแผแโแแแโแแถแโแแแแแโแฒแแโ"
#: misc/special_constructors.cc:737
msgid "Construct a regular polygon with this center"
msgstr "แแแโแแ แปแแแโแแทแแแโแแถแแฝแโแ
แแแปแ
โแแแแแถแโแแแโ"
#: misc/special_constructors.cc:741
msgid "Construct a regular polygon with this vertex"
msgstr "แแแโแแ แปแแแโแแทแแแโแแถแแฝแโแแแแผแโแแแ "
#: misc/special_constructors.cc:754
msgid "Adjust the number of sides (%1/%2)"
msgstr "แแแแแแแผแโแ
แแแฝแโแแแแปแโ (%1/%2)"
#: misc/special_constructors.cc:760
msgid "Adjust the number of sides (%1)"
msgstr "แแแแแแแผแโแ
แแแฝแโแแแแปแโ (%1)"
#: misc/special_constructors.cc:777
msgid "Select the center of the new polygon..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแโแแ แปแแแโแแแแธโ..."
#: misc/special_constructors.cc:781
msgid "Select a vertex for the new polygon..."
msgstr "แแแแพแโแแแแผแโแแแแแถแแโแแ แปแแแโแแแแธโ..."
#: misc/special_constructors.cc:785
msgid "Move the cursor to get the desired number of sides..."
msgstr "แแแแถแแแแธโแแแแแแแแแทแ
แแพแแแแธโแแแฝแโแแถแโแแแโแแแโแขแแแโแ
แแโแแถแโ..."
#: misc/special_constructors.cc:977
msgid "Construct the Radical Lines of This Circle"
msgstr "แแแโแแแแแถแแโแแแถแแธแแถแแโแแโแแแแแแโแแแโ"
#: misc/special_constructors.cc:979
msgid "Construct the Radical Lines of This Conic"
msgstr "แแแแแแแแถแแโแแแถแแธแแถแแโแแโแแถแแธโแแแ"
#: misc/special_constructors.cc:994
msgid "Generic Affinity"
msgstr "แแถแโแแผแ
โแแแแถโแแโแแแแแแ"
#: misc/special_constructors.cc:995
msgid ""
"The unique affinity that maps three points (or a triangle) onto three other "
"points (or a triangle)"
msgstr ""
"แแถแโแแถแแแผแ
แแแแถโแแแแฝแโแแแโแแแโแแแแผแแแแแโแแ
โแแนแ แแแแปแโแแถแแแแธโ (แฌ แแแแธแแแโ) แแพโแแแแปแโแแธโแแแแแโแแแโ (แฌ แแแแธแแแโ)"
#: misc/special_constructors.cc:1018
msgid "Generic Projective Transformation"
msgstr "แแถแแแแแแโแแโแแแแแแแแแโแแแแแถแแ"
#: misc/special_constructors.cc:1019
msgid ""
"The unique projective transformation that maps four points (or a "
"quadrilateral) onto four other points (or a quadrilateral)"
msgstr "แแถแแแแแแแโแแแโแแแแแถแแโแแโแแฝแโแแแแฝแแแแแโแแ
โแแฝแโแ
แแแปแ
โ (แฌ แ
แแปแแแแแโ) แแพโแแฝแโแ
แแแปแ
โแแแแแโแแแโ (แฌ แ
แแปแแแแแโ)"
#: misc/special_constructors.cc:1046
msgid "Inversion of Point, Line or Circle"
msgstr "แแถแโแแถแแโแแแแ
แแแถแแโแแโแ
แแแปแ
แแแแแถแแโ แฌ แแแแแแโ"
#: misc/special_constructors.cc:1047
msgid "The inversion of a point, line or circle with respect to a circle"
msgstr "แแถแโแแถแแโแแแแ
แแแถแแโแแโแ
แแแปแ
โ แแแแแถแแโแฌ แแแแแแโ แแแโแแแแโแแ
แแถแโแแแแแแ"
#: misc/special_constructors.cc:1104
msgid "Measure Transport"
msgstr "แแแแแถแแโแแแแแผแโ"
#: misc/special_constructors.cc:1109
msgid "Transport the measure of a segment or arc over a line or circle."
msgstr "แแแแแผแโแแแแแถแแโแแโแ
แแแแแโแฌ แแแแผแแพโแแแแแถแแโแฌ แแแแแแโย แโ"
#: misc/special_constructors.cc:1210 objects/special_calcers.cc:24
msgid "Segment to transport"
msgstr "แ
แแแแแโแแแแแถแแโแแแแแผแโ"
#: misc/special_constructors.cc:1212
msgid "Arc to transport"
msgstr "แแแแผโแแแแแถแแโแแแแแผแโ"
#: misc/special_constructors.cc:1214
msgid "Transport a measure on this line"
msgstr "แแแแแผแโแแแแแถแแโแแพโแแแแแถแแโแแแ "
#: misc/special_constructors.cc:1216 objects/special_calcers.cc:22
msgid "Transport a measure on this circle"
msgstr "แแแแแผแโแแแแแถแแโแแพโแแแแแแโแแแโ"
#: misc/special_constructors.cc:1220
msgid "Start transport from this point of the circle"
msgstr "แ
แถแแโแแแแพแโแแแแแผแโแแธโแ
แแแปแ
โแแโแแแแแแโแแแ "
#: misc/special_constructors.cc:1222
msgid "Start transport from this point of the line"
msgstr "แ
แถแแโแแแแพแโแแแแแผแโแแธโแ
แแแปแ
โแแโแแแแแถแแโแแแ "
#: misc/special_constructors.cc:1224
msgid "Start transport from this point of the curve"
msgstr "แ
แถแแโแแแแพแโแแแแแผแโแแธโแ
แแแปแ
โแแโแแแแแแแโแแแ "
#: misc/special_constructors.cc:1267
msgid "Intersect"
msgstr "แแแแแแแ"
#: misc/special_constructors.cc:1268
msgid "The intersection of two objects"
msgstr "แแถแโแแแแแแแโแแโโแแแแแปโแแธแโ"
#: misc/special_constructors.cc:1335
msgid "Intersect this Circle"
msgstr "แแแแแแแโแแถแโโแแแแแแโแแแโ"
#: misc/special_constructors.cc:1337
msgid "Intersect this Conic"
msgstr "แแแแแแแโแแถแโโแแถแแธโแแแโ"
#: misc/special_constructors.cc:1339
msgid "Intersect this Line"
msgstr "แแแแแแแโแแถแโโแแแแแถแแโแแแโ"
#: misc/special_constructors.cc:1341
msgid "Intersect this Cubic Curve"
msgstr "แแแแแแแโแแแแแแโแโแแผแโแแแ "
#: misc/special_constructors.cc:1343
msgid "Intersect this Arc"
msgstr "แแแแแแแโแแแแผแโแแแโ"
#: misc/special_constructors.cc:1345
msgid "Intersect this Polygon"
msgstr "แแแแแแแโแแ แปแแแโแแแโ"
#: misc/special_constructors.cc:1350
msgid "with this Circle"
msgstr "แแถแแฝแโแแแแแแโแแแ"
#: misc/special_constructors.cc:1352
msgid "with this Conic"
msgstr "แแถแแฝแโแแแแผแโแแแโ"
#: misc/special_constructors.cc:1354
msgid "with this Line"
msgstr "แแถแแฝแโแแแแแถแแโ"
#: misc/special_constructors.cc:1356
msgid "with this Cubic Curve"
msgstr "แแถแแฝแโแแแแแแแโแแผแโแแแ "
#: misc/special_constructors.cc:1358
msgid "with this Arc"
msgstr "แแถแแฝแโแแแแผโแแแโ"
#: misc/special_constructors.cc:1360
msgid "with this Polygon"
msgstr "แแถแแฝแโแแ แปแแแโแแแ"
#: misc/special_constructors.cc:1370
msgid "Construct Midpoint of This Point and Another One"
msgstr "แแแโแ
แแแปแ
โแแแแแถแโแแโแแแแปแโแแแโ แแทแโแแแแปแโแแฝแโแแแแแแแแโ"
#: misc/special_constructors.cc:1371
msgid ""
"Select the first of the points of which you want to construct the midpoint..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแผแโแแโแแแโแขแแแโแ
แแโแแแโแ
แแแปแ
โแแแแแถแโ..."
#: misc/special_constructors.cc:1372
msgid "Construct the midpoint of this point and another one"
msgstr "แแแโแ
แแแปแ
โแแแแแถแโแแโแแแแปแโ แแทแโแแแแปแโแแฝแโแแแแแแแแโ"
#: misc/special_constructors.cc:1373
msgid "Select the other of the points of which to construct the midpoint..."
msgstr "แแแแพแโแแแแปแโแแฝแโแแแแแแแแโแแแแแถแแโแแแโแ
แแแปแ
โแแแแแถแโ..."
#: misc/special_constructors.cc:1483
msgid "Select the first object to intersect..."
msgstr "แแแแพแโแแแแแปโแแแแผแโแแแแแถแแโแแแแแแแโ..."
#: misc/special_constructors.cc:1485
msgid "Select the second object to intersect..."
msgstr "แแแแพแโแแแแแปโแแพแโแแธโแแธแโแแพแแแแธโแแแแแแแโ..."
#: misc/special_constructors.cc:1490
msgid "Tangent"
msgstr "แแแแ แแแแ"
#: misc/special_constructors.cc:1491
msgid "The line tangent to a curve"
msgstr "แแแแแถแแโแแแแ แแแแโแแแแแถแแโแแแแแแแโ"
#: misc/special_constructors.cc:1533
msgid "Tangent to This Circle"
msgstr "แแแแ แแแแโแแแแแแโแแแโ"
#: misc/special_constructors.cc:1535
msgid "Tangent to This Conic"
msgstr "แแแแ แแแแโแแถแแธแแแ "
#: misc/special_constructors.cc:1537
msgid "Tangent to This Arc"
msgstr "แแแแ แแแแโแแแแผโแแแโ"
#: misc/special_constructors.cc:1539
msgid "Tangent to This Cubic Curve"
msgstr "แแแแ แแแแโแแแแแแแโแแผแโแแแ "
#: misc/special_constructors.cc:1541
msgid "Tangent to This Curve"
msgstr "แแแแ แแแแโแแแแแแแโแแแโ"
#: misc/special_constructors.cc:1543
msgid "Tangent at This Point"
msgstr "แแแแ แแแแโแแแแปแโแแแ"
#: misc/special_constructors.cc:1564
msgid "Center Of Curvature"
msgstr "แ
แแแปแ
โแแแแแถแโแแโแแแแแโ"
#: misc/special_constructors.cc:1565
msgid "The center of the osculating circle to a curve"
msgstr "แ
แแแปแ
โแแแแแถแโแแโแแแแแแโแแแโแแ
โ แแทแโแแแแแแแโ"
#: misc/special_constructors.cc:1600
msgid "Center of Curvature of This Conic"
msgstr "แ
แแแปแ
โแแแแแถแโแแโแแแแแโแแแแโแแถแแธแแแโ"
#: misc/special_constructors.cc:1602
msgid "Center of Curvature of This Cubic Curve"
msgstr "แ
แแแปแ
โแแแแแถแโแแแแแแแแแโแแผแแแแ "
#: misc/special_constructors.cc:1604
msgid "Center of Curvature of This Curve"
msgstr "แ
แแแปแ
โแแแแแถแโแแแแแแแโแแแแแแแโแแแโ"
#: misc/special_constructors.cc:1606
msgid "Center of Curvature at This Point"
msgstr "แ
แแแปแ
โแแแแแถแโแแแแแแแโแแแแโแ
แแแปแ
โแแแ"
#: modes/construct_mode.cc:262 modes/normal.cc:268
msgid "Which object?"
msgstr "แแแแแปโแแฝแโแแถโ?"
#: modes/construct_mode.cc:298
msgid ""
"Click the location where you want to place the new point, or the curve that "
"you want to attach it to..."
msgstr "แ
แปแ
แแพโแแธแแถแแโแแฝแโแแถโแแแโแขแแแโแ
แแโแแถแแโแ
แแแปแ
โแแแแธโ แฌ แแแแแแแโแแแโแขแแแโแ
แแโแแแแถแแโแแถแแฝแโแแ
โแแถแแ..."
#: modes/construct_mode.cc:475
msgid "Now select the location for the result label."
msgstr "แฅแกแผแโแแแโแแแแพแโแแธแแถแแโแแแแแถแแโแแปแโแแแแแแโแแแแถแโย แโ"
#: modes/edittype.cc:62
msgid "The name of the macro can not be empty."
msgstr "แแแแแโแแแถแแแแผโแแทแโแขแถแ
โแแแโแแถแโแกแพแโย แ"
#: modes/label.cc:136 modes/macrowizardbase.ui:96 modes/typesdialogbase.ui:53
#, no-c-format
msgid "Name"
msgstr "แแแแแ"
#: modes/label.cc:163 modes/popup.cc:555 modes/popup.cc:587
msgid "<unnamed object>"
msgstr "<แแแแแปโแแทแโแแแโแแแแถแโแแแแแ>"
#: modes/label.cc:295
#, c-format
msgid ""
"There are '%n' parts in the text that you have not selected a value for. "
"Please remove them or select enough arguments."
msgstr ""
"แแถแโแแแแแโ '%n' โแแแแปแโแขแแแแแโแแแโแขแแแโแแทแแแถแแโแแถแแแแแพแโแแแแแโแแแแแถแแโย แแแผแโแแโแแฝแโแแถโแ
แแโ แฌ แแโแขแถแแปแแแแแโแแฝแโ"
"แแแแแแแแแถแแโแ แพแโโย แ"
#: modes/label.cc:379
#, c-format
msgid "argument %1"
msgstr "แขแถแแปแแแแแโ %1"
#: modes/label.cc:409
#, c-format
msgid "Selecting argument %1"
msgstr "แแแแปแโแแแแพแโแขแถแแปแแแแแ %1"
#: modes/label.cc:518
msgid "Change Label"
msgstr "แแแแถแแแแแแผแโแแแแถแโ"
#: modes/macro.cc:106
msgid ""
"One of the result objects you selected cannot be calculated from the given "
"objects. Kig cannot calculate this macro because of this. Please press Back, "
"and construct the objects in the correct order..."
msgstr ""
"แแแแแแแแฝแโแแโโแแแแแปแแถแ
แแแพแโโแแแโแขแแแโแแถแโแแแแพแโแแทแโแขแถแ
โแแแแผแโแแถแโแแแแถโแแธโแแแแแปโแแแโแแถแโแแแแแโแฒแแโแกแพแโย แ Kig แแทแโแขแถแ
โ"
"แแแแถโแแแถแแแแผแแแแแถแโแกแพแโโแแแโแแถแแแโแแแแ แถแแแโย แโ แแผแแ
แปแ
แแแแกแแโ แแแแแถแแโแแโแแแแแพแโแแแแแปโแแแโแแแแนแแแแแผแโแแฝแโ..."
#: modes/macro.cc:116
msgid ""
"One of the given objects is not used in the calculation of the resultant "
"objects. This probably means you are expecting Kig to do something "
"impossible. Please check the macro and try again."
msgstr ""
"แแแแแปโแแฝแโแแแแปแโแ
แแแแโแแแแแปโแแแโแแถแโแแแแแโแฒแแโแแทแโแแแแผแโแแถแโแแแแพโแแแแปแโแแถแโแแแแถโแแโแแแแแปโแแแแแทแแโแแย แ แแถโแแแแ แแโแแถโแแถแโแแแโ"
"แแถโแขแแแโแแแแปแโแแแแนแโแฒแแ Kig แแแแพโแขแแแธโแแแโแแทแโแขแถแ
โแแ
โแแฝแ
ย แ แแผแโแแทแแทแแแโแแแถแแแแผ แแทแโแแแแถแแถแโแแแแโแแแย แ"
#: modes/moving.cc:157
msgid "Move %1 Objects"
msgstr "แแแแถแแแแธโ %1 แแแแแปโ"
#: modes/moving.cc:240
msgid "Redefine Point"
msgstr "แแแแแโแแแแปแโแกแพแโแแทแโ"
#: modes/popup.cc:197
msgid "Kig Document"
msgstr "แฏแแแถแโKig "
#: modes/popup.cc:206
msgid "%1 Objects"
msgstr "%1 แแแแแปโ"
#: modes/popup.cc:276
msgid "&Transform"
msgstr "แแถแโแแแแแโแแถแ"
#: modes/popup.cc:277
msgid "T&est"
msgstr "แแทแแแโ"
#: modes/popup.cc:278
msgid "Const&ruct"
msgstr "แแแโ"
#: modes/popup.cc:279
msgid "&Start"
msgstr ""
#: modes/popup.cc:280
msgid "Add Te&xt Label"
msgstr "แแแแแแโแแแแถแโแขแแแแแ"
#: modes/popup.cc:281
msgid "Set Co&lor"
msgstr "แแแแแโแแแ "
#: modes/popup.cc:282
msgid "Set &Pen Width"
msgstr "แแแแแโแแแนแโแแแทแ
โ"
#: modes/popup.cc:283
msgid "Set St&yle"
msgstr "แแแแแโแแ
แแถแแแแแโ"
#: modes/popup.cc:285
msgid "Set Coordinate S&ystem"
msgstr "แแแแแโแแแแแแแแโแแผแขแแแแแ"
#: modes/popup.cc:393
msgid "&Hide"
msgstr "แแถแแ"
#: modes/popup.cc:397
msgid "&Show"
msgstr "แแแแ แถแ"
#: modes/popup.cc:401
msgid "&Move"
msgstr "แแแแถแแโแแธ"
#: modes/popup.cc:403 modes/typesdialog.cpp:85
#, fuzzy
msgid "&Delete"
msgstr "แแปแโแแแแแปโ"
#: modes/popup.cc:413
msgid "&Custom Color"
msgstr "แแแโแแแแถแแแแแแฝแโ"
#: modes/popup.cc:502
msgid "Set &Name..."
msgstr "แแแแแโแแแแแโ..."
#: modes/popup.cc:506
msgid "&Name"
msgstr "แแแแแ"
#: modes/popup.cc:541 modes/popup.cc:563
msgid "Set Object Name"
msgstr "แแแแแโแแแแแโแแแแแปโ"
#: modes/popup.cc:542
msgid "Set Name of this Object:"
msgstr "แแแแแโแแแแแโแแแแแปโแแแย แ"
#: modes/popup.cc:661
msgid "Change Object Color"
msgstr "แแแแถแแแแแแผแโแแแโแแแแแปโ"
#: modes/popup.cc:677
msgid "Change Object Width"
msgstr "แแแแถแแแแแแผแโแแแนแโแแแแแปโ"
#: modes/popup.cc:705
msgid "Change Point Style"
msgstr "แแแแถแแแแแแผแโแแ
แแถแแแแแโแ
แแแปแ
โ"
#: modes/popup.cc:718
msgid "Change Object Style"
msgstr "แแแแถแแแแแแผแโแแ
แแถแแแแแโแแแแแปโ"
#: modes/popup.cc:1065
msgid "Edit Script..."
msgstr "แแโแแแแแฝแโแแแแแแธแ..."
#: modes/typesdialog.cpp:84
msgid "&Edit..."
msgstr "แแแแแแแฝแ..."
#: modes/typesdialog.cpp:87
msgid "E&xport..."
msgstr "แแถแแ
แแ..."
#: modes/typesdialog.cpp:143
#, c-format
msgid ""
"_n: Are you sure you want to delete this type?\n"
"Are you sure you want to delete these %n types?"
msgstr "แแพโแขแแแโแแทแแแถโแ
แแแแปแโแแแแแแโ %n แแถแแแแแโแ
แแโแฌ ?"
#: modes/typesdialog.cpp:144
msgid "Are You Sure?"
msgstr "แแพโแขแแแโแแแแถแแโแ แพแโแฌย ?"
#: modes/typesdialog.cpp:170 modes/typesdialog.cpp:185
msgid ""
"*.kigt|Kig Types Files\n"
"*|All Files"
msgstr ""
"แแแแแแโแฏแแแถแ *.kigt|Kig \n"
"แฏแแแถแ *|All"
#: modes/typesdialog.cpp:170
msgid "Export Types"
msgstr "แแถแโแ
แแโแแแแแแ"
#: modes/typesdialog.cpp:185
msgid "Import Types"
msgstr "แแถแโแ
แผแโแแแแแแ"
#: modes/typesdialog.cpp:236
msgid ""
"There is more than one type selected. You can only edit one type at a time. "
"Please select only the type you want to edit and try again."
msgstr ""
"แแถแโแแแแแแโแ
แแแพแโแแถแแแฝแโแแแโแแแแผแโแแถแโแแแแพแโย แ แขแแแโแขแถแ
โแแแแแแแฝแโแแแแแแโแแฝแโแแแแปแโแแแโแแโแแฝแโย แ แแผแโแแแแพแโแแถแโแแโ"
"แแแแแแโแแฝแโแแแโแขแแแโแ
แแโแแแแแแแฝแโ แ แพแโแแแแถแแถแโแแแแแแแโย แ"
#: modes/typesdialog.cpp:239
msgid "More Than One Type Selected"
msgstr "แแถแโแแแแพแโแแแแแแโแ
แแแพแโแแถแโแแฝแ"
#: objects/angle_type.cc:39
msgid "Construct an angle through this point"
msgstr "แแแโแแปแโแแถแโแ
แแแปแ
โแแแโ"
#: objects/angle_type.cc:44
msgid ""
"Select a point that the first half-line of the angle should go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแโแแปแโแแถแแแแแแแถแโแแแแแถแแโแแแแผแโแแแแผแโแแถแแโแแถแโ..."
#: objects/angle_type.cc:45
msgid "Construct an angle at this point"
msgstr "แแแโแแปแโแแถแโแ
แแแปแ
โแแแ "
#: objects/angle_type.cc:46
msgid "Select the point to construct the angle in..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแโแแปแโแแแแปแโ..."
#: objects/angle_type.cc:48
msgid ""
"Select a point that the second half-line of the angle should go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแโแแปแโแแถแแโแแแแแถแโแแแแแถแแโแแธแแธแโแแแแผแโแแถแแโแแถแโ..."
#: objects/angle_type.cc:103
msgid "Set Si&ze"
msgstr "แแแแแโแแแ แโ"
#: objects/angle_type.cc:147
msgid "Resize Angle"
msgstr "แแแแผแโแแแ แโแแปแโ"
#: objects/arc_type.cc:41
msgid "Construct an arc starting at this point"
msgstr "แแแโแแแแผโแแแโแ
แถแแแแแแพแโแแ
โแ
แแแปแ
โแแแ"
#: objects/arc_type.cc:46 objects/arc_type.cc:148
msgid "Select the start point of the new arc..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแโแแแแผโแแแแธ..."
#: objects/arc_type.cc:47
msgid "Construct an arc through this point"
msgstr "แแแโแแแแผโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/arc_type.cc:48
msgid "Select a point for the new arc to go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแแผโแแแแธโแแแแแถแแโแแถแแแแถแโ..."
#: objects/arc_type.cc:49
msgid "Construct an arc ending at this point"
msgstr "แแแโแ
แปแโแแแแผโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/arc_type.cc:50
msgid "Select the end point of the new arc..."
msgstr "แแแแพแโแ
แปแโแ
แแแปแ
โแแโแแแแผโแแแแธ ..."
#: objects/arc_type.cc:145
msgid "Construct an arc with this center"
msgstr "แแแโแแแแผโแแถแแฝแโแ
แแแปแ
โแแแแแถแโ"
#: objects/arc_type.cc:146
msgid "Select the center of the new arc..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแโแแแแผโแแแแธ..."
#: objects/arc_type.cc:149
msgid "Construct an arc with this angle"
msgstr "แแแโแแแแผโแแถแแฝแโแแปแโแแแโ"
#: objects/arc_type.cc:150
msgid "Select the angle of the new arc..."
msgstr "แแแแพแโแแปแโแแโแแแแผโแแแแธโ..."
#: objects/bogus_imp.cc:338
msgid "Test Result"
msgstr "แแทแแแโแแแแแแโ"
#: macros/evolute.kigt:11 macros/osculating_circle.kigt:11
#: objects/centerofcurvature_type.cc:35 objects/tangent_type.cc:36
msgid "Select the curve..."
msgstr "แแแแพแโแแแแแแแ..."
#: objects/centerofcurvature_type.cc:36
msgid "Select a point on the curve..."
msgstr "แแแแพแโแ
แแแปแ
โแแฝแโแแพโโแแแแแแแโ..."
#: objects/circle_imp.cc:145 objects/polygon_imp.cc:227
msgid "Surface"
msgstr "แแแแโแแถแแแแแ
"
#: objects/circle_imp.cc:146
msgid "Circumference"
msgstr "แแแทแแแโ"
#: objects/circle_imp.cc:147 objects/other_imp.cc:368
msgid "Radius"
msgstr "แแถแ"
#: objects/circle_imp.cc:148 objects/other_imp.cc:367
msgid "Center"
msgstr ""
#: objects/circle_imp.cc:149
msgid "Expanded Cartesian Equation"
msgstr "แแแธแแถแ Cartesian แแแโแแถแโแแแแแธแ"
#: objects/circle_imp.cc:150 objects/conic_imp.cc:84 objects/cubic_imp.cc:290
msgid "Cartesian Equation"
msgstr "แแแธแแถแ Cartesian"
#: objects/circle_imp.cc:151 objects/conic_imp.cc:85
msgid "Polar Equation"
msgstr "แแแธแแถแโแแแผแ"
#: objects/circle_imp.cc:236
msgid "rho = %1 [centered at %2]"
msgstr "rho = %1 [แแถแโแแถแแโแ
แแแปแ
โแแแแแถแโแแ
%2]"
#: objects/circle_imp.cc:245
msgid "xยฒ + yยฒ + %1 x + %2 y + %3 = 0"
msgstr "xยฒ + yยฒ + %1 x + %2 y + %3 = 0"
#: objects/circle_imp.cc:255
msgid "( x - %1 )ยฒ + ( y - %2 )ยฒ = %3"
msgstr "( x - %1 )ยฒ + ( y - %2 )ยฒ = %3"
#: objects/circle_imp.cc:326
msgid "circle"
msgstr "แแแแแแโ"
#: objects/circle_imp.cc:327
msgid "Select this circle"
msgstr "แแแแพแโแแแแแแโแแแโ"
#: objects/circle_imp.cc:328
#, c-format
msgid "Select circle %1"
msgstr "แแแแพแโแแแแแแโ %1"
#: objects/circle_imp.cc:329
msgid "Remove a Circle"
msgstr "แแโแแแแแแโแ
แแโ"
#: objects/circle_imp.cc:330
msgid "Add a Circle"
msgstr "แแแแแแโแแแแแแโ"
#: objects/circle_imp.cc:331
msgid "Move a Circle"
msgstr "แแแแถแแแแธโแแแแแแโ"
#: objects/circle_imp.cc:332
msgid "Attach to this circle"
msgstr "แแแแถแแโแแถแแฝแโแแแแแแโแแแโ"
#: objects/circle_imp.cc:333
msgid "Show a Circle"
msgstr "แแแแ แถแโแแแแแแโ"
#: objects/circle_imp.cc:334
msgid "Hide a Circle"
msgstr "แแถแแโแแแแแแ"
#: objects/circle_type.cc:29
msgid "Construct a circle through this point"
msgstr "แแแโแแแแแแโแแถแโแแแโแ
แแแปแ
โแแแ"
#: macros/circle_by_center_and_line.kigt:14
#: macros/circle_by_point_and_diameter.kigt:10
#: macros/circle_by_point_and_segment.kigt:10 objects/circle_type.cc:31
msgid "Construct a circle with this center"
msgstr "แแแแแพแโแแแแแแโแแแโแ
แแแปแ
โแแแแแถแโแแแ"
#: macros/circle_by_center_and_line.kigt:15
#: macros/circle_by_point_and_diameter.kigt:11
#: macros/circle_by_point_and_segment.kigt:11 objects/circle_type.cc:36
msgid "Select the center of the new circle..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแแแโแแแแแแโแแแแธ..."
#: objects/circle_type.cc:38 objects/circle_type.cc:72
#: objects/circle_type.cc:74 objects/circle_type.cc:76
msgid "Select a point for the new circle to go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแแแแแแแแธโแแถแแแแถแโ..."
#: objects/conic_imp.cc:81
msgid "Conic Type"
msgstr "แแแแแแโแแถแแธโ"
#: objects/conic_imp.cc:82
msgid "First Focus"
msgstr "แแแแปแโแแธแแฝแ"
#: objects/conic_imp.cc:83
msgid "Second Focus"
msgstr "แแแแปแโแแธแแธแ"
#: objects/conic_imp.cc:192
msgid "Ellipse"
msgstr "แแโแแแแแพ"
#: objects/conic_imp.cc:194
msgid "Hyperbola"
msgstr "แขแแธแแแแผแโ"
#: objects/conic_imp.cc:196
msgid "Parabola"
msgstr "แแแถแแแถแแผแโ"
#: objects/conic_imp.cc:205
msgid "%1 xยฒ + %2 yยฒ + %3 xy + %4 x + %5 y + %6 = 0"
msgstr "%1 xยฒ + %2 yยฒ + %3 xy + %4 x + %5 y + %6 = 0"
#: objects/conic_imp.cc:218
msgid ""
"rho = %1/(1 + %2 cos theta + %3 sin theta)\n"
" [centered at %4]"
msgstr ""
"rho = %1/(1 + %2 cos theta + %3 sin theta)\n"
" [แแถแแโแฒแแโแ
แแแแแแถแโ%4]"
#: objects/conic_imp.cc:317
msgid "conic"
msgstr "แแถแแธโ"
#: objects/conic_imp.cc:318
msgid "Select this conic"
msgstr "แแแแพแโแแถแแธโแแแโ"
#: objects/conic_imp.cc:319
#, c-format
msgid "Select conic %1"
msgstr "แแแแพแโแแถแแธโ %1 "
#: objects/conic_imp.cc:320
msgid "Remove a Conic"
msgstr "แแโแแถแแธโแ
แแโ"
#: objects/conic_imp.cc:321
msgid "Add a Conic"
msgstr "แแแแแแโแแถแแธโ"
#: objects/conic_imp.cc:322
msgid "Move a Conic"
msgstr "แแแแถแแแแธโแแถแแธโ"
#: objects/conic_imp.cc:323
msgid "Attach to this conic"
msgstr "แแแแถแแโแแถแแฝแโแแถแแธโแแแโ"
#: objects/conic_imp.cc:324
msgid "Show a Conic"
msgstr "แแแแ แถแโแแถแแธโ"
#: objects/conic_imp.cc:325
msgid "Hide a Conic"
msgstr "แแถแแโแแถแแธโ"
#: objects/conic_types.cc:33 objects/conic_types.cc:87
#: objects/conic_types.cc:221
msgid "Construct a conic through this point"
msgstr "แแแโแแถแแธโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/conic_types.cc:38 objects/conic_types.cc:40
#: objects/conic_types.cc:42 objects/conic_types.cc:44
#: objects/conic_types.cc:46 objects/conic_types.cc:88
#: objects/conic_types.cc:222
msgid "Select a point for the new conic to go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแถแแธโแแแแธโแแถแแแแถแโ..."
#: objects/conic_types.cc:83 objects/conic_types.cc:85
msgid "Construct a conic with this asymptote"
msgstr "แแแโแแถแแธโแแถแแฝแโแขแถแแแธแแแผแโแแแโ"
#: objects/conic_types.cc:84
msgid "Select the first asymptote of the new conic..."
msgstr "แแแแพแโแขแถแแแธแแแผแโแแแแผแโแแโแแถแแธแแแแธโ..."
#: objects/conic_types.cc:86
msgid "Select the second asymptote of the new conic..."
msgstr "แแแแพแโแขแถแแแธแแแผแโแแธแแธแโแแโแแถแแธโแแแแธโ..."
#: objects/conic_types.cc:140
msgid "Construct an ellipse with this focus"
msgstr "แแแโแแถแโแแโแแแแแพโแแถแแฝแโแ
แแแปแ
โแแผแโแแแ "
#: objects/conic_types.cc:145
msgid "Select the first focus of the new ellipse..."
msgstr "แแแแพแโแ
แแแปแ
โแแฝแโแแแแผแโแแโแแถแโแแโแแแแแพโแแแ ..."
#: objects/conic_types.cc:147
msgid "Select the second focus of the new ellipse..."
msgstr "แแแแพแโแ
แแแปแ
โแแฝแโแแธแแธแโแแโแแถแโแแโแแแแแพโแแแแธโแแแ ..."
#: objects/conic_types.cc:148
msgid "Construct an ellipse through this point"
msgstr "แแแโแแถแโแแโแแแแแพโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/conic_types.cc:149
msgid "Select a point for the new ellipse to go through..."
msgstr "แแแแพแโแแแแปแโแแแแแถแแโแแถแโแแโแแแแแพโแแแแธโแแถแแแแถแโ..."
#: objects/conic_types.cc:175
msgid "Construct a hyperbola with this focus"
msgstr "แแแโแขแแธแแแแผแโแแถแแฝแโแ
แแแปแ
โแแฝแโแแแ "
#: objects/conic_types.cc:180
msgid "Select the first focus of the new hyperbola..."
msgstr "แแแแพแโแ
แแแปแ
โแแผแโแแแแผแโแแโแขแแธแแแแผแโแแแแธโ..."
#: objects/conic_types.cc:182
msgid "Select the second focus of the new hyperbola..."
msgstr "แแแแพแโแ
แแแปแ
แแฝแโแแธแแธแโแแโแขแแธแแแแผแโแแแแธโแแฝแโ..."
#: objects/conic_types.cc:183 objects/conic_types.cc:417
msgid "Construct a hyperbola through this point"
msgstr "แแแโแขแแธแแแแผแโแแถแแแแถแโแแแแปแโแแแ "
#: objects/conic_types.cc:184 objects/conic_types.cc:422
#: objects/conic_types.cc:424 objects/conic_types.cc:426
#: objects/conic_types.cc:428
msgid "Select a point for the new hyperbola to go through..."
msgstr "แแแแพแโแแแแปแโแแแแแถแแโแขแแธแแแแผแโแแถแแแแถแโ..."
#: objects/conic_types.cc:217
msgid "Construct a conic with this line as directrix"
msgstr "แแแโแแถแแธโแแถแแฝแโแแแแแถแแโแแแ แแถโ directrix"
#: objects/conic_types.cc:218
msgid "Select the directrix of the new conic..."
msgstr "แแแแพแโแแถแแแทแ
แแแแธแ
โแแโแแถแแธโแแแแธ ..."
#: objects/conic_types.cc:219
msgid "Construct a conic with this point as focus"
msgstr "แแแโแแถแแธโแแถแแฝแโแ
แแแปแ
โแแแโแแถโแ
แแแปแ
โแแฝแโ"
#: objects/conic_types.cc:220
msgid "Select the focus of the new conic..."
msgstr "แแแแพแโแ
แแแปแ
โแแฝแโแแแแโแแถแแธโแแแแธโแแฝแโ..."
#: objects/conic_types.cc:260
msgid "Construct a parabola through this point"
msgstr "แแแโแแแถแแแแผแโแแถแแแแถแโแแแแปแโแแแโ"
#: objects/conic_types.cc:265 objects/conic_types.cc:267
#: objects/conic_types.cc:269
msgid "Select a point for the new parabola to go through..."
msgstr "แแแแพแโแแแแปแโแแแแแถแแโแแแถแแแถแแผแโแแแแธโแแแโแแถแแแแถแโ..."
#: objects/conic_types.cc:307
msgid "Construct a polar point wrt. this conic"
msgstr "แแแโแแแแปแโแแแแแถแแโแแถแโแแแผแโ wrt. แแถแแธโแแแโ"
#: objects/conic_types.cc:308 objects/conic_types.cc:344
msgid "Select the conic wrt. which you want to construct a polar point..."
msgstr "แแแแพแโแแถแแธโ wrt. แแแโแขแแแโแ
แแโแแแโแแแแปแโแแแโแแถแโแแถแโแแถโแแแผแโ..."
#: objects/conic_types.cc:309
msgid "Construct the polar point of this line"
msgstr "แแแโแแแแแถแแโแแแโแแถโแแแแแถแแโแแถแโแแแผแโแแแ "
#: objects/conic_types.cc:310 objects/conic_types.cc:346
msgid "Select the line of which you want to construct the polar point..."
msgstr "แแแแพแโแแแแแถแแโแแแโแขแแแโแ
แแโแแแแแถแโแแแแปแโแแแแแถแแโแแถแโแแแผแโ..."
#: objects/conic_types.cc:343
msgid "Construct a polar line wrt. this conic"
msgstr "แแแโแแแแแถแแแผแโ แแถแโแแแผแโt. แแโแแถแแธโแแแโ"
#: objects/conic_types.cc:345
msgid "Construct the polar line of this point"
msgstr "แแแโแแแแปแโแแแโแแถโแแถแโแแแแแถแแโแแแผแโ"
#: objects/conic_types.cc:380
msgid "Construct the directrix of this conic"
msgstr "แแแโแแถแแแทแ
แแแแธแ
โแแโแแถแแธโแแแโ"
#: objects/conic_types.cc:381
msgid "Select the conic of which you want to construct the directrix..."
msgstr "แแแแพแโแแถแแธโแแแโแขแแแโแ
แแโแแแโแแถแแแทแ
แแแแธแ
โ..."
#: objects/conic_types.cc:465
msgid "Construct a parabola with this directrix"
msgstr "แแแโแแแถแแแถแแผแโแแถแแฝแโแแถแแทแ
แแแแธแ
โแแแโ"
#: objects/conic_types.cc:466
msgid "Select the directrix of the new parabola..."
msgstr "แแแแพแโแแถแแแทแ
แแแแธแ
โแแโแแแถแแแแผแโแแแแธ..."
#: objects/conic_types.cc:467
msgid "Construct a parabola with this focus"
msgstr "แแแโแแแถแแแถแแผแโแแถแแฝแโแ
แแแปแ
โแแฝแโ"
#: objects/conic_types.cc:468
msgid "Select the focus of the new parabola..."
msgstr "แแแแพแโแ
แแแปแ
โแแฝแโแแโแแแถแแแถแแผแโแแแแธโ..."
#: objects/conic_types.cc:505
msgid "Construct the asymptotes of this conic"
msgstr "แแแโแขแถแแแธแแแผแโแแโแแถแแธโแแแ "
#: objects/conic_types.cc:506
msgid "Select the conic of which you want to construct the asymptotes..."
msgstr "แแแแพแโแแถแแธโแแแโแขแแแโแ
แแโแแแโแแถโแขแถแแแธแแแผแโ..."
#: objects/conic_types.cc:543
msgid "Construct the radical lines of this conic"
msgstr "แแแโแแแแแถแแโแแแถแแธแแถแแโแแโแแถแแธแแแโ"
#: objects/conic_types.cc:548
msgid ""
"Select the first of the two conics of which you want to construct the "
"radical line..."
msgstr "แแแแพแโแแถแแธโแแธแแฝแโแแแแปแโแ
แแแแโแแถแแธโแแถแแแแธแโแแแโแขแแแโแ
แแโแแแโแแแแแถแแโแแแถแแธแแถแแ..."
#: objects/conic_types.cc:550
msgid ""
"Select the other of the two conic of which you want to construct the radical "
"line..."
msgstr "แแแแพแโแแถแแธโแแธแโแแแแแแแแแถโแแแโแขแแแโแ
แแโแแแโแแแแแถแแโแแแถแแธแแถแแโ..."
#: objects/conic_types.cc:669
msgid "Switch Radical Lines"
msgstr "แแแแผแโแแถแโแแแแแถแแโ"
#: objects/cubic_imp.cc:353
msgid "cubic curve"
msgstr "แแแแแแแโแแผแโ"
#: objects/cubic_imp.cc:354
msgid "Select this cubic curve"
msgstr "แแแแพแโแแแแแแแโแแผแโแแแโ"
#: objects/cubic_imp.cc:355
#, c-format
msgid "Select cubic curve %1"
msgstr "แแแแพแโแแแแแแแโแแผแโ %1"
#: objects/cubic_imp.cc:356
msgid "Remove a Cubic Curve"
msgstr "แแโแแแแแแแโแแผแโแ
แแ "
#: objects/cubic_imp.cc:357
msgid "Add a Cubic Curve"
msgstr "แแแแแแโแแแแแแแโแแผแโ"
#: objects/cubic_imp.cc:358
msgid "Move a Cubic Curve"
msgstr "แแแแถแแแแธโแแแแแแผแโ"
#: objects/cubic_imp.cc:359
msgid "Attach to this cubic curve"
msgstr "แแแแถแแโแแถแแฝแโแแแแแแแโแแผแโ"
#: objects/cubic_imp.cc:360
msgid "Show a Cubic Curve"
msgstr "แแแแ แถแโแแแแแแแโแแผแโ"
#: objects/cubic_imp.cc:361
msgid "Hide a Cubic Curve"
msgstr "แแถแแโแแแแแแแโแแผแโ"
#: objects/cubic_imp.cc:419
msgid "%6 xยณ + %9 yยณ + %7 xยฒy + %8 xyยฒ + %5 yยฒ + %3 xยฒ + %4 xy + %1 x + %2 y"
msgstr "%6 xยณ + %9 yยณ + %7 xยฒy + %8 xyยฒ + %5 yยฒ + %3 xยฒ + %4 xy + %1 x + %2 y"
#: objects/cubic_imp.cc:430
msgid " + %1 = 0"
msgstr " + %1 = 0"
#: objects/cubic_type.cc:26
msgid "Construct a cubic curve through this point"
msgstr "แแแโแแแแแแแโแแผแโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/cubic_type.cc:31 objects/cubic_type.cc:33 objects/cubic_type.cc:35
#: objects/cubic_type.cc:37 objects/cubic_type.cc:39 objects/cubic_type.cc:41
#: objects/cubic_type.cc:43 objects/cubic_type.cc:45 objects/cubic_type.cc:47
#: objects/cubic_type.cc:85 objects/cubic_type.cc:87 objects/cubic_type.cc:89
#: objects/cubic_type.cc:91 objects/cubic_type.cc:93 objects/cubic_type.cc:95
#: objects/cubic_type.cc:133 objects/cubic_type.cc:135
#: objects/cubic_type.cc:137 objects/cubic_type.cc:139
msgid "Select a point for the new cubic to go through..."
msgstr "แแแแพแแแแแปแโแแผแโแแแแธโแแถแแโแแถแโ..."
#: objects/curve_imp.cc:25
msgid "curve"
msgstr "แแแแแแแโ"
#: objects/curve_imp.cc:26
msgid "Select this curve"
msgstr "แแแแพแโแแแแแแแโแแแ "
#: objects/curve_imp.cc:27
#, c-format
msgid "Select curve %1"
msgstr "แแแแพแโแแแแแแแโ %1 แแแโ"
#: objects/curve_imp.cc:28
msgid "Remove a Curve"
msgstr "แแโแแแแแแแโแ
แแ "
#: objects/curve_imp.cc:29
msgid "Add a Curve"
msgstr "แแแแแแโแแแแแแแโ"
#: objects/curve_imp.cc:30
msgid "Move a Curve"
msgstr "แแแแถแแแแธโแแแแแแแโ"
#: objects/curve_imp.cc:31
msgid "Attach to this curve"
msgstr "แแแแถแแแแถแแฝแโแแแแแแแโ"
#: objects/curve_imp.cc:32
msgid "Show a Curve"
msgstr "แแแแ แถแโแแแแแแแโ"
#: objects/curve_imp.cc:33
msgid "Hide a Curve"
msgstr "แแถแแแแแแแแแโ"
#: objects/intersection_types.cc:30
msgid "Intersect with this line"
msgstr "แแแแแแแโแแถแแฝแโแแแแแถแแโแแแโ"
#: objects/intersection_types.cc:34 objects/intersection_types.cc:87
msgid "Intersect with this conic"
msgstr "แแแแแแแโแแถแแฝแโแแถแแธโแแแ "
#: objects/intersection_types.cc:90
msgid "Already computed intersection point"
msgstr "แแแแปแโแแแแแแแโแแแแผแโแแถแโแแแแถโแแฝแ
โแแถแแโแ แพแโ"
#: objects/intersection_types.cc:183
msgid "Intersect with this cubic curve"
msgstr "แแแแแแแโแแถแแฝแโโแแแแแแแโแแผแโ"
#: objects/intersection_types.cc:243 objects/intersection_types.cc:245
msgid "Intersect with this circle"
msgstr "แแแแแแแโแแถแแฝแโแแแแแแโแแแโ"
#: objects/intersection_types.cc:295
msgid "Intersect with this arc"
msgstr "แแแแแแแโแแถแแฝแโแแแแผโแแแโ"
#: objects/inversion_type.cc:29
msgid "Invert with respect to this circle"
msgstr "แแถแแโแแแแ
แแแถแโแแแโแแแแแแถแโแแแแแแโแแแโ"
#: objects/inversion_type.cc:30
msgid "Select the circle we want to invert against..."
msgstr "แแแแพแโแแแแแแโแแแโแขแแแโแ
แแโแแถแแแแแแ
แแแถแโแแแแแแแโ..."
#: objects/inversion_type.cc:34
msgid "Compute the inversion of this point"
msgstr "แแแแถโแแถแแแแแแแแ
แแแถแโแแโแแแแปแโแแแโ"
#: objects/inversion_type.cc:35
msgid "Select the point to invert..."
msgstr "แแแแพแโแแแแปแโแแพแแแแธโแแถแแโแแแแ
แแแถแ..."
#: objects/inversion_type.cc:80
msgid "Compute the inversion of this line"
msgstr "แแแแถโแแถแแแแโแแแแ
แแแถแโแแโแแแแแถแแโแแแ "
#: objects/inversion_type.cc:81
msgid "Select the line to invert..."
msgstr "แแแแพแโแแแแแถแแโแแแแแถแแโแแถแแโแแแแ
แแแถแ..."
#: objects/inversion_type.cc:133
msgid "Compute the inversion of this segment"
msgstr "แแแแถโแแถแแแแโแแแแ
แแแถแโแแโแแแแแแโแแแ "
#: objects/inversion_type.cc:134
msgid "Select the segment to invert..."
msgstr "แแแแพแโแ
แแแแแโแแแแแถแแโแแถแแโแแแแ
แแแถแ..."
#: objects/inversion_type.cc:224
msgid "Compute the inversion of this circle"
msgstr "แแแแถโแแถแแแแโแแแแ
แแแถแโแแโแแแแแแโแแแโ"
#: objects/inversion_type.cc:225
msgid "Select the circle to invert..."
msgstr "แแแแพแโแแแแแแโแแแแแถแแโแแถแแโแแแแ
แแแถแ..."
#: objects/inversion_type.cc:289
msgid "Compute the inversion of this arc"
msgstr "แแแแถโแแถแโแแแโแแแแ
แแแถแโแแโแแแแผโแแแโ"
#: objects/inversion_type.cc:290
msgid "Select the arc to invert..."
msgstr "แแแแพแโแแแแผโแแแแแถแแโแแถแแโแแแแ
แแแถแ..."
#: objects/line_imp.cc:96
msgid "Slope"
msgstr "แแแแถแโ"
#: objects/line_imp.cc:97
msgid "Equation"
msgstr "แแแธแแถแ"
#: objects/line_imp.cc:121 objects/other_imp.cc:212
msgid "Length"
msgstr "แแแแแแ"
#: objects/line_imp.cc:123 objects/other_imp.cc:374
msgid "First End Point"
msgstr "แ
แปแโแแแแแถแแโแแแแผแโ"
#: objects/line_imp.cc:124 objects/other_imp.cc:375
msgid "Second End Point"
msgstr "แ
แปแโแแแแแถแแโแแธแแธแโ"
#: objects/line_imp.cc:439 objects/line_imp.cc:448
msgid "line"
msgstr "แแแแแถแแโ"
#: objects/line_imp.cc:440
msgid "Select a Line"
msgstr "แแแแพแโแแแแแถแแโ"
#: objects/line_imp.cc:449
msgid "Select this line"
msgstr "แแแแพแโแแแแแถแแโแแแโ"
#: objects/line_imp.cc:450
#, c-format
msgid "Select line %1"
msgstr "แแแแพแโแแแแแถแแโ %1"
#: objects/line_imp.cc:451
msgid "Remove a Line"
msgstr "แแโแแแแแถแแโแ
แแโ"
#: objects/line_imp.cc:452
msgid "Add a Line"
msgstr "แแแแแแโแแแแแถแแโ"
#: objects/line_imp.cc:453
msgid "Move a Line"
msgstr "แแแแถแแแแธโแแแแแถแแโ"
#: objects/line_imp.cc:454
msgid "Attach to this line"
msgstr "แแแแถแแโแแถแแฝแโแแแแแถแแโ"
#: objects/line_imp.cc:455
msgid "Show a Line"
msgstr "แแแแ แถแโแแแแแถแแโ"
#: objects/line_imp.cc:456
msgid "Hide a Line"
msgstr "แแถแแโแแแแแถแแโ"
#: objects/line_imp.cc:465
msgid "segment"
msgstr "แ
แแแแแโ"
#: objects/line_imp.cc:466
msgid "Select this segment"
msgstr "แแแแพแโแ
แแแแแโแแแโ"
#: objects/line_imp.cc:467
#, c-format
msgid "Select segment %1"
msgstr "แแแแพแโแ
แแแแแโ %1"
#: objects/line_imp.cc:468
msgid "Remove a Segment"
msgstr "แแโแ
แแแแแโแ
แแโ"
#: objects/line_imp.cc:469
msgid "Add a Segment"
msgstr "แแแแแแโแ
แแแแแโ"
#: objects/line_imp.cc:470
msgid "Move a Segment"
msgstr "แแแแถแแแแธโแ
แแแแแโ"
#: objects/line_imp.cc:471
msgid "Attach to this segment"
msgstr "แแแแถแแโแแถแแฝแโแ
แแแแแโแแแโ"
#: objects/line_imp.cc:472
msgid "Show a Segment"
msgstr "แแแแ แถแโแ
แแแแแโ"
#: objects/line_imp.cc:473
msgid "Hide a Segment"
msgstr "แแถแแโแ
แแแแแโ"
#: objects/line_imp.cc:482
msgid "half-line"
msgstr "แแแแแถแแโแแถแแโแแแแแถแโ"
#: objects/line_imp.cc:483
msgid "Select this half-line"
msgstr "แแแแพแโแแแแแถแแโแแถแแโแแแแแถแโแแแโ"
#: objects/line_imp.cc:484
#, c-format
msgid "Select half-line %1"
msgstr "แแแแพแโแแแแแถแแโแแถแแโแแแแแถแโ %1"
#: objects/line_imp.cc:485
msgid "Remove a Half-Line"
msgstr "แแโแแแแแถแแโแแถแแโแแแแแถแโแ
แแ "
#: objects/line_imp.cc:486
msgid "Add a Half-Line"
msgstr "แแแแแแโแแแแแถแแโแแถแแโแแแแแถแโ"
#: objects/line_imp.cc:487
msgid "Move a Half-Line"
msgstr "แแแแถแแแแธโแแแแแถแแโแแถแแแแแแแถแโ"
#: objects/line_imp.cc:488
msgid "Attach to this half-line"
msgstr "แแแแถแแโแแถแแฝแโแแแแแถแแโแแถแแโแแแแแถแโแแแ "
#: objects/line_imp.cc:489
msgid "Show a Half-Line"
msgstr "แแแแ แถแโแแแแแถแแโแแถแแโแแแแแถแโ"
#: objects/line_imp.cc:490
msgid "Hide a Half-Line"
msgstr "แแถแแโแแแแแถแแโแแถแแโแแแแแถแ"
#: objects/line_type.cc:38
msgid "Construct a segment starting at this point"
msgstr "แแแแปแโแ
แถแแโแแแแพแโแแแแแพแโแ
แแแแแโแแถแโแ
แแแปแ
โแแแ "
#: objects/line_type.cc:39
msgid "Select the start point of the new segment..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแโแแแแพแโแแโแ
แแแแแโแแแแธโ..."
#: objects/line_type.cc:40
msgid "Construct a segment ending at this point"
msgstr "แแแโแ
แปแโแ
แแแแแโแแถแโแ
แแแปแ
โแแแโ"
#: objects/line_type.cc:41
msgid "Select the end point of the new segment..."
msgstr "แแแแพแโแ
แปแโแ
แแแปแ
โแแโแ
แแแแแโแแแแธ ...."
#: objects/line_type.cc:66
msgid "Construct a line through this point"
msgstr "แแแโแแแแแถแแโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/line_type.cc:71
msgid "Select a point for the line to go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแแแถแแโแแพแแแแธแแถแแแแถแโ..."
#: objects/line_type.cc:73
msgid "Select another point for the line to go through..."
msgstr "แแแแพแแ
แแแปแ
โแแแแแแแแโแแแแแถแแโแแแแแถแแโแแพแแแแธแแถแแโแแถแโ..."
#: objects/line_type.cc:98
msgid "Construct a half-line starting at this point"
msgstr "แแแโแแแแแถแแโแแถแแโแแแแแถแโแแแโแ
แถแแแแแแพแโแแ
โแ
แแแปแ
"
#: objects/line_type.cc:103 objects/line_type.cc:301
msgid "Select the start point of the new half-line..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแโแแแแพแโแแโแแแแแถแแโแแถแแแแแแแถแโแแแแธโแแแโ..."
#: objects/line_type.cc:104
msgid "Construct a half-line through this point"
msgstr "แแแโแแแแแถแแโแแถแแแแแแแถแโแแถแแแแถแโแ
แแแปแ
โแแแโ"
#: objects/line_type.cc:105
msgid "Select a point for the half-line to go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแถแแโแแแแแถแแโแแถแแแแแแแถแโแแถแโ..."
#: objects/line_type.cc:146
msgid "Construct a line parallel to this line"
msgstr "แแแโแแแแแถแแโแแแถแแแถแกแแโแแทแโแแแแแถแแโแแแ"
#: objects/line_type.cc:147
msgid "Select a line parallel to the new line..."
msgstr "แแแแพแโแแแแแถแแโแแแถแแแถแกแแโโแแแแแถแแโแแแแแถแแโแแแแธโ..."
#: objects/line_type.cc:148
msgid "Construct the parallel line through this point"
msgstr "แแแโแแแแแถแแโแแแถแแแถแกแแโแแถแแโแแถแโแ
แแแปแ
โแแแ "
#: objects/line_type.cc:149 objects/line_type.cc:182 objects/line_type.cc:261
msgid "Select a point for the new line to go through..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแแแถแแโแแแแธโแแถแแโแแถแโ..."
#: objects/line_type.cc:179
msgid "Construct a line perpendicular to this line"
msgstr "แแแโแแแแแถแแโแแถแแแแแโแแ
โแแนแ แแแแแถแแโแแแโ"
#: objects/line_type.cc:180
msgid "Select a line perpendicular to the new line..."
msgstr "แแแแพแโแแแแแถแแโแแถแแแแแโแแ
โแแนแ แแแแแถแแโแแแแธโ..."
#: objects/line_type.cc:181
msgid "Construct a perpendicular line through this point"
msgstr "แแแโแแแแแถแแโแแถแแแแแโแแถแแโแแถแโแ
แแแปแ
โแแแ "
#: objects/line_type.cc:224
msgid "Set &Length..."
msgstr "แแแแแโแแแแแแโ..."
#: objects/line_type.cc:243
msgid "Set Segment Length"
msgstr "แแแแแโแแแแแแโแ
แแแแแโ"
#: objects/line_type.cc:243
msgid "Choose the new length: "
msgstr "แแแแพแโแแแแแแโแแแแธโย แโ"
#: objects/line_type.cc:251
msgid "Resize Segment"
msgstr "แแแแผแโแแแ แโแ
แแแแแโ"
#: objects/line_type.cc:258
msgid "Construct a line by this vector"
msgstr "แแแโแแแแแถแแโแแถแโแแแทแ
แแแโแแแ "
#: objects/line_type.cc:259
msgid "Select a vector in the direction of the new line..."
msgstr "แแแแพแโแแแทแ
แแแโแแแแปแโแแถแโแแแแแโแแทแโแแโแแแแแถแแโแแแแธโ..."
#: objects/line_type.cc:298
msgid "Construct a half-line by this vector"
msgstr "แแแโแแแแแถแแโแแถแแแแแแแถแโแแถแโแแแทแ
แแแโแแแ "
#: objects/line_type.cc:299
msgid "Select a vector in the direction of the new half-line..."
msgstr "แแแแพแโแแแทแ
แแแโแแแแปแโแแทแแแ
โแแโแแแแแถแแโแแถแแโแแแแแถแโแแแแธโ...แ
แแแปแ
"
#: objects/locus_imp.cc:357
msgid "locus"
msgstr "แแแแถแแแแแถแแทแ"
#: objects/locus_imp.cc:358
msgid "Select this locus"
msgstr "แแแแถแแแแแถแแทแ"
#: objects/locus_imp.cc:359
#, c-format
msgid "Select locus %1"
msgstr "แแแแพแโแแแแถแแแแแถแแทแ %1"
#: objects/locus_imp.cc:360
msgid "Remove a Locus"
msgstr "แแโแแแแถแแแแแถแแทแโแ
แแ"
#: objects/locus_imp.cc:361
msgid "Add a Locus"
msgstr "แแแแแแโแแแแถแแแแแถแแทแ"
#: objects/locus_imp.cc:362
msgid "Move a Locus"
msgstr "แแแแถแแแแธโแแแแถแแแแแถแแทแ"
#: objects/locus_imp.cc:363
msgid "Attach to this locus"
msgstr "แแแแถแแโแแถแแฝแโแแแแถแแแแแถแแทแโแแแ"
#: objects/locus_imp.cc:364
msgid "Show a Locus"
msgstr "แแแแ แถแโแแแแถแแแแแถแแทแ"
#: objects/locus_imp.cc:365
msgid "Hide a Locus"
msgstr "แแถแแโแแแแถแแแแแถแแทแ"
#: objects/object_imp.cc:54
msgid "Object Type"
msgstr "แแแแแแโแแแแแปโ"
#: objects/object_imp.cc:266
msgid "Object"
msgstr "แแแแแปโ"
#: objects/object_imp.cc:267
msgid "Select this object"
msgstr "แแแแพแโแแแแแปโแแแ"
#: objects/object_imp.cc:268
#, c-format
msgid "Select object %1"
msgstr "แแแแพแโแแแแแปโ %1"
#: objects/object_imp.cc:269
msgid "Remove an object"
msgstr "แแโแแแแแปโแ
แแโ"
#: objects/object_imp.cc:270
msgid "Add an object"
msgstr "แแแแแแโแแแแแปโ"
#: objects/object_imp.cc:271
msgid "Move an object"
msgstr "แแแแถแแแแธโแแแแแปโแแฝแ"
#: objects/object_imp.cc:272
msgid "Attach to this object"
msgstr "แแแแถแแแแถแแฝแโแแแแแปโแแแโ"
#: objects/object_imp.cc:273
msgid "Show an object"
msgstr "แแแแ แถแโแแแแแปโ"
#: objects/object_imp.cc:274
msgid "Hide an object"
msgstr "แแถแแโแแแแแปโ"
#: objects/other_imp.cc:102 objects/other_imp.cc:371
msgid "Angle in Radians"
msgstr "แแปแโแแทแโแแถโแแถแแแแแแโ"
#: objects/other_imp.cc:103 objects/other_imp.cc:370
msgid "Angle in Degrees"
msgstr "แแปแโแแทแโแแถโแแบแแแแโ"
#: objects/other_imp.cc:213
msgid "Midpoint"
msgstr "แแถแแโแแแแแถแโแ
แแแปแ
โ"
#: objects/other_imp.cc:214
msgid "X length"
msgstr "แแแแแแโ X"
#: objects/other_imp.cc:215
msgid "Y length"
msgstr "แแแแแแ Y "
#: objects/other_imp.cc:216
msgid "Opposite Vector"
msgstr "แแแทแ
แแแโแแแแปแโ"
#: objects/other_imp.cc:369
msgid "Angle"
msgstr "แแปแ"
#: objects/other_imp.cc:372
msgid "Sector Surface"
msgstr "แ
แแแแแโแแแแแแถแแแแแ
โ"
#: objects/other_imp.cc:373
msgid "Arc Length"
msgstr "แแแแแแโแแแแผ"
#: objects/other_imp.cc:557
msgid "angle"
msgstr "แแปแโ"
#: objects/other_imp.cc:558
msgid "Select this angle"
msgstr "แแแแพแโแแปแโแแแโ"
#: objects/other_imp.cc:559
#, c-format
msgid "Select angle %1"
msgstr "แแแแพแโแแปแโ %1"
#: objects/other_imp.cc:560
msgid "Remove an Angle"
msgstr "แแโแแปแโแ
แแ"
#: objects/other_imp.cc:561
msgid "Add an Angle"
msgstr "แแแแแแโแแปแโ"
#: objects/other_imp.cc:562
msgid "Move an Angle"
msgstr "แแแแถแแแแธโแแปแโ"
#: objects/other_imp.cc:563
msgid "Attach to this angle"
msgstr "แแแแถแแโแแถแแฝแโแแปแโแแแโ"
#: objects/other_imp.cc:564
msgid "Show an Angle"
msgstr "แแแแ แถแโแแปแโ"
#: objects/other_imp.cc:565
msgid "Hide an Angle"
msgstr "แแถแแโแแปแโ"
#: objects/other_imp.cc:573
msgid "vector"
msgstr "แแแทแ
แแแโ"
#: objects/other_imp.cc:574
msgid "Select this vector"
msgstr "แแแแพแโแแแทแแแแแแโ"
#: objects/other_imp.cc:575
#, c-format
msgid "Select vector %1"
msgstr "แแแแพแโแแแทแ
แแแโ %1"
#: objects/other_imp.cc:576
msgid "Remove a Vector"
msgstr "แแโแแแทแ
แแแโแ
แแโ"
#: objects/other_imp.cc:577
msgid "Add a Vector"
msgstr "แแแแแแโแแแทแ
แแแโ"
#: objects/other_imp.cc:578
msgid "Move a Vector"
msgstr "แแแแถแแแแธโแแแทแ
แแแโ"
#: objects/other_imp.cc:579
msgid "Attach to this vector"
msgstr "แแแแถแแโแแถแแฝแโแแแทแ
แแแโ"
#: objects/other_imp.cc:580
msgid "Show a Vector"
msgstr "แแแแ แถแโแแแทแ
แแแโ"
#: objects/other_imp.cc:581
msgid "Hide a Vector"
msgstr "แแถแแโแแแทแ
แแแโ"
#: objects/other_imp.cc:589
msgid "arc"
msgstr "แแแแผ"
#: objects/other_imp.cc:590
msgid "Select this arc"
msgstr "แแแแพแโแแแแผโแแแโ"
#: objects/other_imp.cc:591
#, c-format
msgid "Select arc %1"
msgstr "แแแแพแโแแแแผโ %1"
#: objects/other_imp.cc:592
msgid "Remove an Arc"
msgstr "แแโแแแแผโแ
แแโ"
#: objects/other_imp.cc:593
msgid "Add an Arc"
msgstr "แแแแแแโแแแแผ"
#: objects/other_imp.cc:594
msgid "Move an Arc"
msgstr "แแแแถแแแแธโแแแแผ"
#: objects/other_imp.cc:595
msgid "Attach to this arc"
msgstr "แแแแถแแโแแถแแฝแโแแแแผ"
#: objects/other_imp.cc:596
msgid "Show an Arc"
msgstr "แแแแ แถแโแแแแผ"
#: objects/other_imp.cc:597
msgid "Hide an Arc"
msgstr "แแถแแโแแแแผ"
#: objects/point_imp.cc:75
msgid "Coordinate"
msgstr "แแผแขแแแแแ"
#: objects/point_imp.cc:76
msgid "X coordinate"
msgstr "แแผแขแแแแแ X "
#: objects/point_imp.cc:77
msgid "Y coordinate"
msgstr "แแผแขแแแแแ Y "
#: objects/point_imp.cc:163
msgid "point"
msgstr "แ
แแแปแ
"
#: objects/point_imp.cc:164
msgid "Select this point"
msgstr "แแแแพแโแ
แแแปแ
โ"
#: objects/point_imp.cc:165
#, c-format
msgid "Select point %1"
msgstr "แแแแพแโแ
แแแปแ
โ %1"
#: objects/point_imp.cc:166
msgid "Remove a Point"
msgstr "แแโแ
แแแปแ
โแ
แแโ"
#: objects/point_imp.cc:167
msgid "Add a Point"
msgstr "แแแแแแโแ
แแแปแ
โ"
#: objects/point_imp.cc:168
msgid "Move a Point"
msgstr "แแแแถแแแแธโแ
แแแปแ
โ"
#: objects/point_imp.cc:169
msgid "Attach to this point"
msgstr "แแแแถแแโแแถแแฝแโแ
แแแปแ
โ"
#: objects/point_imp.cc:170
msgid "Show a Point"
msgstr "แแแแ แถแโแ
แแแปแ
โ"
#: objects/point_imp.cc:171
msgid "Hide a Point"
msgstr "แแถแแโแ
แแแปแ
โ"
#: objects/point_type.cc:261 objects/point_type.cc:263
msgid "Construct the midpoint of this point and another point"
msgstr "แแแโแ
แแแปแ
โแแแแแถแโแแโแ
แแแปแ
โแแแโ แแทแโแ
แแแปแ
โแแแแแแแแโ"
#: objects/point_type.cc:262
msgid ""
"Select the first of the two points of which you want to construct the "
"midpoint..."
msgstr "แแถแแแแผแโแแแแพแโแ
แแแปแ
โแแธแโแแแโแขแแแโแ
แแโแแแโแแถโแ
แแแปแ
โแแแแแถแโ..."
#: objects/point_type.cc:264
msgid ""
"Select the other of the two points of which you want to construct the "
"midpoint..."
msgstr "แแแแพแโแ
แแแปแ
โแแธแโแแแแแแแแโโโแแแโแขแแแโแ
แแโแแแโแแถโแ
แแแปแ
โแแแแแถแโ..."
#: objects/point_type.cc:366
msgid "Set &Coordinate..."
msgstr "แแแแแโแแผแขแแแแแ..."
#: objects/point_type.cc:367 objects/point_type.cc:375
msgid "Redefine"
msgstr "แแแแแโแกแพแโแแทแ "
#: objects/point_type.cc:374
msgid "Set &Parameter..."
msgstr "แแแแแโแแแถแแแถแแแแแแโ..."
#: objects/point_type.cc:397
msgid "Set Coordinate"
msgstr "แแแแแโแแผแขแแแแแโ"
#: objects/point_type.cc:398
msgid "Enter the new coordinate."
msgstr "แแแแ
แผแโแแผแขแแแแแโแแแแธ ย แ"
#: objects/point_type.cc:439
msgid "Set Point Parameter"
msgstr "แแแแแโแแแถแแแถแแแแแแโแ
แแแปแ
"
#: objects/point_type.cc:439
msgid "Choose the new parameter: "
msgstr "แแแแพแโแแแถแแแถแแแแแแโแแแแธโย แโ"
#: objects/point_type.cc:445
msgid "Change Parameter of Constrained Point"
msgstr "แแแแถแแแแแแผแโแแแถแแแถแแแแแแโแแโแแแแปแโ"
#: objects/point_type.cc:635
msgid "Select the circle on which to transport a measure..."
msgstr "แแแแพแโแแแแแแโแแถแแฝแโแแแแแถแแโแแแแแผแโแแแแแถแแโ..."
#: objects/point_type.cc:637
msgid "Select a point on the circle..."
msgstr "แแแแพแโแ
แแแปแ
โแแพโแแแแแแโ..."
#: objects/point_type.cc:639
msgid "Select the segment to transport on the circle..."
msgstr "แแแแพแโแ
แแแแแโแแแแแถแแโแแแแแผแโแแพโแแแแแแโ..."
#: objects/polygon_imp.cc:225
msgid "Number of sides"
msgstr "แ
แแแฝแโแแแแปแ"
#: objects/polygon_imp.cc:226
msgid "Perimeter"
msgstr "แแแทแแถแแแโ"
#: objects/polygon_imp.cc:228
msgid "Center of Mass of the Vertices"
msgstr "แ
แแแฝแโแแแปแโแ
แแแปแ
โแแแแแถแโแแโแแแแผแโ"
#: objects/polygon_imp.cc:229
msgid "Winding Number"
msgstr "แ
แแแฝแโแแแฝแโ"
#: objects/polygon_imp.cc:342
msgid "polygon"
msgstr "แแ แปแแแ "
#: objects/polygon_imp.cc:343
msgid "Select this polygon"
msgstr "แแแแพแโแแ แปแแแโแแแ "
#: objects/polygon_imp.cc:344
#, c-format
msgid "Select polygon %1"
msgstr "แแแแพแโแแ แปแแแโโ %1"
#: objects/polygon_imp.cc:345
msgid "Remove a Polygon"
msgstr "แแโแแ แปแแแโแ
แแโ"
#: objects/polygon_imp.cc:346
msgid "Add a Polygon"
msgstr "แแแแแแโแแ แปแแแ "
#: objects/polygon_imp.cc:347
msgid "Move a Polygon"
msgstr "แแแแถแแแแธโแแ แปแแแโ"
#: objects/polygon_imp.cc:348
msgid "Attach to this polygon"
msgstr "แแแแถแแโแแถแแฝแโแแ แปแแแโ"
#: objects/polygon_imp.cc:349
msgid "Show a Polygon"
msgstr "แแแแ แถแโแแ แปแแแ "
#: objects/polygon_imp.cc:350
msgid "Hide a Polygon"
msgstr "แแถแแโแแ แปแแแโ"
#: objects/polygon_imp.cc:360
msgid "triangle"
msgstr "แแแแธแแแ "
#: objects/polygon_imp.cc:361
msgid "Select this triangle"
msgstr "แแแแพแโแแแแธแแแโแแแ "
#: objects/polygon_imp.cc:362
#, c-format
msgid "Select triangle %1"
msgstr "แแแแพแโแแแแธแแแ %1"
#: objects/polygon_imp.cc:363
msgid "Remove a Triangle"
msgstr "แแโแแแแธแแแโแ
แแ "
#: objects/polygon_imp.cc:364
msgid "Add a Triangle"
msgstr "แแแแแแโแแแแธแแแโ"
#: objects/polygon_imp.cc:365
msgid "Move a Triangle"
msgstr "แแแแถแแแแธโแแแแธแแแโ"
#: objects/polygon_imp.cc:366
msgid "Attach to this triangle"
msgstr "แแแแถแแโแแถแแฝแโแแแแธแแแโแแแ"
#: objects/polygon_imp.cc:367
msgid "Show a Triangle"
msgstr "แแแแ แถแโแแแแธแแแโ"
#: objects/polygon_imp.cc:368
msgid "Hide a Triangle"
msgstr "แแถแแโแแแแธแแแโ"
#: objects/polygon_imp.cc:378
msgid "quadrilateral"
msgstr "แ
แแปแแแแแ"
#: objects/polygon_imp.cc:379
msgid "Select this quadrilateral"
msgstr "แแแแพแโแ
แแปแแแแแโ"
#: objects/polygon_imp.cc:380
#, c-format
msgid "Select quadrilateral %1"
msgstr "แแแแพแโแ
แแปแแแแแ %1"
#: objects/polygon_imp.cc:381
msgid "Remove a Quadrilateral"
msgstr "แแโแ
แแปแแแแแโแ
แแ "
#: objects/polygon_imp.cc:382
msgid "Add a Quadrilateral"
msgstr "แแแแแแโแ
แแปแแแแแโ"
#: objects/polygon_imp.cc:383
msgid "Move a Quadrilateral"
msgstr "แแแแถแแแแธโแ
แแปแแแแแโ"
#: objects/polygon_imp.cc:384
msgid "Attach to this quadrilateral"
msgstr "แแแแถแแโแแถแแฝแโแ
แแปแแแแแโแแแ "
#: objects/polygon_imp.cc:385
msgid "Show a Quadrilateral"
msgstr "แแแแ แถแโแ
แแปแแแแแโ"
#: objects/polygon_imp.cc:386
msgid "Hide a Quadrilateral"
msgstr "แแถแแโแ
แแปแแแแแโ"
#: objects/polygon_type.cc:36
msgid "Construct a triangle with this vertex"
msgstr "แแแโแแแแธแแแโแแถแโแแแแผแโแแแ 7"
#: objects/polygon_type.cc:37
msgid "Select a point to be a vertex of the new triangle..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแผแโแแโแแแแธแแแโแแแแธโ..."
#: objects/polygon_type.cc:406
msgid "Intersect this polygon with a line"
msgstr "แแแแแแแโแแ แปแแแ แแถแแฝแโแแแแแถแแโแแแ "
#: objects/polygon_type.cc:407
msgid "Select the polygon of which you want the intersection with a line..."
msgstr "แแแแพแโแแ แปแแแโแแแโแขแแแโแ
แแโแแแแแแแโแแถแแฝแโแแแแแถแแโ..."
#: objects/polygon_type.cc:543
msgid "Construct the vertices of this polygon"
msgstr "แแแโแ
แแแปแ
โแแแแผแโแแโแขแ แปแแแโแแแโ"
#: objects/polygon_type.cc:544
msgid "Select the polygon of which you want to construct the vertices..."
msgstr "แแแแพแโแแ แปแแแโแแฝแโแแถโแแแโแขแแแโแ
แแโแแแโแแแแผแโ..."
#: objects/polygon_type.cc:586
msgid "Construct the sides of this polygon"
msgstr "แแแโแแแแแโแแโแแ แปแแแโแแแโ"
#: objects/polygon_type.cc:587
msgid "Select the polygon of which you want to construct the sides..."
msgstr "แแแแพแโแแ แปแแแ แแแโแขแแแโแ
แแโแแแโแแแแปแ..."
#: objects/polygon_type.cc:632
msgid "Construct the convex hull of this polygon"
msgstr "แแแโแแถแโแแแแโแแถแแแแแ
โแแโแแ แปแแแโแแแ "
#: objects/polygon_type.cc:633
msgid "Select the polygon of which you want to construct the convex hull..."
msgstr "แแแแพแโแแ แปแแแ แแแโแขแแแแ
แแโแแแโแแถแโแแถแโแแแแโแแถแโแแแแ
โ..."
#: objects/special_calcers.cc:23
msgid "Project this point onto the circle"
msgstr "แแแแแโแ
แแแปแ
โแแแแแถแแโแแแแแแโ"
#: objects/tangent_type.cc:38
msgid "Select the point for the tangent to go through..."
msgstr "แแแแพแโแแแแปแโแแแแ แแแแโแแถแแแแถแโ..."
#: objects/tests_type.cc:30
msgid "Is this line parallel?"
msgstr "แแพโแแแโแแถโแแแแแถแแโแแแถแแแถแกแแโแฌย ?"
#: objects/tests_type.cc:31
msgid "Select the first of the two possibly parallel lines..."
msgstr "แแแแพแโแแแแแถแแโแแแถแแแถแกแแโแแธแโแแแแผแโแแโแแแโแขแถแ
โแแแแพโแแ
โแแถแโ..."
#: objects/tests_type.cc:32
msgid "Parallel to this line?"
msgstr "แแแถแแแถแกแแโแแ
โแแทแโแแแแแถแแโแแแย ?"
#: objects/tests_type.cc:33
msgid "Select the other of the two possibly parallel lines..."
msgstr "แแแแพแโแแแแแถแแโแแแโแขแถแ
โแแแถแแแถแกแแโแแธแโแแแแแโแแแ..."
#: objects/tests_type.cc:61
msgid "These lines are parallel."
msgstr "แแถแแแแแโแแถโแแแแแถแแโแแแถแแแถแกแแโโย แ"
#: objects/tests_type.cc:63
msgid "These lines are not parallel."
msgstr "แแถแแแแแโแแทแโแแแโแแถโแแแแแถแแโแแแถแแแถแกแแโโแแโย แ"
#: objects/tests_type.cc:74
msgid "Is this line orthogonal?"
msgstr "แแพโแแแโแแถโแแแแแถแแโแขแแแผแแผแแถแแโแฌย ?"
#: objects/tests_type.cc:75
msgid "Select the first of the two possibly orthogonal lines..."
msgstr "แแแแพแโแแแแแถแแโแแแโแขแถแ
โแขแแแผแแผแแถแแโแแธแแฝแโแแโแแแแแถแแโแแธ..."
#: objects/tests_type.cc:76
msgid "Orthogonal to this line?"
msgstr "แขแแแผแแผแแถแแโแแทแโแแแแแถแแโแแแย ?"
#: objects/tests_type.cc:77
msgid "Select the other of the two possibly orthogonal lines..."
msgstr "แแแแพแโแแแแแถแแโแแแโแขแถแ
โแขแแแผแแผแแถแแโแแธแโแแแแแโแแแ..."
#: objects/tests_type.cc:105
msgid "These lines are orthogonal."
msgstr "แแถแแแแแโแแถโแแแแแถแแโแขแแแผแแผแแถแแย แ"
#: objects/tests_type.cc:107
msgid "These lines are not orthogonal."
msgstr "แแแแแถแแโแแถแแแแแโแแทแโแแแโแแถโแแแแแถแแโแขแแแผแแผแแถแแโแแย แ"
#: objects/tests_type.cc:118
msgid "Check collinearity of this point"
msgstr "แแทแแทแแแโแแผแแธแแแขแแแโแแโแ
แแแปแ
โแแแ"
#: objects/tests_type.cc:119
msgid "Select the first of the three possibly collinear points..."
msgstr "แแแแพแโแ
แแแปแ
โแแธแแฝแโแแโแ
แแแปแ
โแแธโแแแโแขแถแ
โแแผแแธแแแขแแแ..."
#: objects/tests_type.cc:120
msgid "and this second point"
msgstr "แ แพแโแแทแโแแแแปแโแแธโแแธแโแแแ"
#: objects/tests_type.cc:121
msgid "Select the second of the three possibly collinear points..."
msgstr "แแแแพแโแ
แแแปแ
โแแธโแแธแโแแโแ
แแแปแ
โแแธโแแแโแขแถแ
โแแผแแธแแแขแแแ..."
#: objects/tests_type.cc:122
msgid "with this third point"
msgstr "แแถแแฝแโแแทแโแ
แแแปแ
โแแธโแแธ"
#: objects/tests_type.cc:123
msgid "Select the last of the three possibly collinear points..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แปแโแแแแแโแแโแ
แแแปแ
โแแธโแแแโแขแถแ
โแแผแแธแแแขแแแ..."
#: objects/tests_type.cc:152
msgid "These points are collinear."
msgstr "แ
แแแปแ
โแแถแแโแแแโแแถแโแขแแแแโแแฝแย แ"
#: objects/tests_type.cc:154
msgid "These points are not collinear."
msgstr "แ
แแแปแ
โแแถแแโแแแโแแทแโแแถแโแขแแแแโแแฝแย แ"
#: objects/tests_type.cc:164
msgid "Check whether this point is on a curve"
msgstr "แแทแแทแแแโแแถโแแพโแ
แแแปแ
โแแแแแแแทแโแแพโแแแแแแแโแแแแฌโแแโ"
#: objects/tests_type.cc:165 objects/tests_type.cc:211
msgid "Select the point you want to test..."
msgstr "แแแแพแโแ
แแแปแ
โแแแโแขแแแโแ
แแโแแทแแแ..."
#: objects/tests_type.cc:166
msgid "Check whether the point is on this curve"
msgstr "แแทแแทแแแโแแถแแพโแ
แแแปแ
โแแแโแแแแทแโแแพโแแแแแแแโแแแโแแแแฌโแแโ"
#: objects/tests_type.cc:167
msgid "Select the curve that the point might be on..."
msgstr "แแแแพแโแแแแแแแโแแแโแ
แแแปแ
โแแแแผแโแแแแทแแแพโ..."
#: objects/tests_type.cc:194
msgid "This curve contains the point."
msgstr "แแถแโแ
แแแปแ
โแแ
โแแพโแแแแโแแแโแแแย แ"
#: objects/tests_type.cc:196
msgid "This curve does not contain the point."
msgstr "แแทแโแแถแโแ
แแแปแ
โแแ
โแแพโแแแแโแแแโแแแโแแย แ"
#: objects/tests_type.cc:210
msgid "Check whether this point is in a polygon"
msgstr "แแทแแทแแแโแแถโแแพโแ
แแแปแ
โแแแโแแ
โแแแแปแโแแ แปแแแโแฌโแแ"
#: objects/tests_type.cc:212
msgid "Check whether the point is in this polygon"
msgstr "แแทแแทแแแโแแถแแพโแ
แแแปแ
โแแ
โแแแแปแโแแ แปแแแโแแแโแฌโโแแ"
#: objects/tests_type.cc:213
msgid "Select the polygon that the point might be in..."
msgstr "แแแแพแโแแ แปแแแโแแแโแแแแ แแโแแถโแแถแโแ
แแแปแ
โแแ
โแแแแปแโ..."
#: objects/tests_type.cc:240
msgid "This polygon contains the point."
msgstr "แแถแโแ
แแแปแ
โแแ
โแแแแปแโแแ แปแแแโแแแย แ"
#: objects/tests_type.cc:242
msgid "This polygon does not contain the point."
msgstr "แแ แปแแแโแแแโแแปแโแแถแแแแถแโแแแแปแโแแโย แโ"
#: objects/tests_type.cc:256
msgid "Check whether this polygon is convex"
msgstr "แแทแแทแแแโแแถแแพโแแ แปแแแโแแแโแแถโแแ แปแแแโแแแแโ"
#: objects/tests_type.cc:257
msgid "Select the polygon you want to test for convexity..."
msgstr "แแแแพแโแแ แปแแแโแแแโแขแแแโแ
แแแแผแโแแถโแแ แปแแแโแแแแโ..."
#: objects/tests_type.cc:283
msgid "This polygon is convex."
msgstr "แแแโแแถโแแ แปแแแโแแแแโย แ"
#: objects/tests_type.cc:285
msgid "This polygon is not convex."
msgstr "แแแโแแทแโแแแโแแถโแแ แปแแแโแแแแโย แ"
#: objects/tests_type.cc:299
msgid "Check if this point has the same distance"
msgstr "แแทแแทแแแโแแแแปแโแแแโแแถแโแ
แแแแถแโแแผโแ
แแแแถโ"
#: objects/tests_type.cc:300
msgid ""
"Select the point which might have the same distance from two other points..."
msgstr "แแแแพแโแ
แแแปแ
โแแแโแแถแโแ
แแแแถแโแแผแ
โแแแแถโแแแถแโแ
แแแปแ
โแแถแแแแธโแโแแแแแแแแแถโ..."
#: objects/tests_type.cc:301
msgid "from this point"
msgstr "แแธโแ
แแแปแ
โแแแ "
#: objects/tests_type.cc:302
msgid "Select the first of the two other points..."
msgstr "แแแแพแโแ
แแแปแ
โแแธแแฝแโแแโแ
แแแปแ
โแแธแโแแแแแ..."
#: objects/tests_type.cc:303
msgid "and from this second point"
msgstr "แแทแโแแธโแ
แแแปแ
โแแธโแแธแโแแแ"
#: objects/tests_type.cc:304
msgid "Select the other of the two other points..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแโแแโแ
แแแปแ
โแแธแโแแแแแโแแแ..."
#: objects/tests_type.cc:332
msgid "The two distances are the same."
msgstr "แ
แแแแถแโแแถแแโแแธแโแแแแพโแแแแถย แ"
#: objects/tests_type.cc:334
msgid "The two distances are not the same."
msgstr "แ
แแแแถแโแแถแแโแแธแโแแทแโแแแแพโแแแแถโแแย แ"
#: objects/tests_type.cc:344
msgid "Check whether this vector is equal to another vector"
msgstr "แแทแแทแแแโแแถโแแพโแแแทแ
แแแโแแแโแแแแพโแแแทแ
แแแโแแฝแโแแแแแโแแแโแฌโแขแแ"
#: objects/tests_type.cc:345
msgid "Select the first of the two possibly equal vectors..."
msgstr "แแแแพแโแแแทแ
แแแโแแธแแฝแโแแโแแแทแ
แแแโแแธแโแแแโแขแถแ
โแแแแพโแแแแถ..."
#: objects/tests_type.cc:346
msgid "Check whether this vector is equal to the other vector"
msgstr "แแทแแทแแแโแแถแแพโแแแทแ
แแแโแแแ แแแแพโแแนแ แแแทแ
แแแโแแแแแแแแโ"
#: objects/tests_type.cc:347
msgid "Select the other of the two possibly equal vectors..."
msgstr "แแแแพแโแแแทแ
แแแโแแแแแแแแโแแโแแแทแ
แแแโแแธแโแแแโแขแถแ
โแแแแพโแแแแถ..."
#: objects/tests_type.cc:374
msgid "The two vectors are the same."
msgstr "แแแทแ
แแแโแแถแแโแแธแโแแผแ
แแแแถย แโ"
#: objects/tests_type.cc:376
msgid "The two vectors are not the same."
msgstr "แแแทแ
แแแโแแถแแโแแธแโแแทแโแแผแ
โแแแแถโย แโ"
#: objects/text_imp.cc:84
msgid "Text"
msgstr "แขแแแแแ"
#: objects/text_imp.cc:147
msgid "label"
msgstr "แแแแถแโโ"
#: objects/text_imp.cc:148
msgid "Select this label"
msgstr "แแแแพแโแแแแถแโแแแ "
#: objects/text_imp.cc:149
#, c-format
msgid "Select label %1"
msgstr "แแแแพแโแแแแถแโ%1"
#: objects/text_imp.cc:150
msgid "Remove a Label"
msgstr "แแโแแแแถแโแ
แแ "
#: objects/text_imp.cc:151
msgid "Add a Label"
msgstr "แแแแแแโแแแแถแโ"
#: objects/text_imp.cc:152
msgid "Move a Label"
msgstr "แแแแถแแแแธโแแแแถแโ"
#: objects/text_imp.cc:153
msgid "Attach to this label"
msgstr "แแแแถแแแแถแแฝแโแแแแถแโแแแโ"
#: objects/text_imp.cc:154
msgid "Show a Label"
msgstr "แแแแ แถแโแแแแถแโ"
#: objects/text_imp.cc:155
msgid "Hide a Label"
msgstr "แแถแแโแแแแถแโ"
#: objects/text_type.cc:126
msgid "&Copy Text"
msgstr "แ
แแแแโแขแแแแแ "
#: objects/text_type.cc:127
msgid "&Toggle Frame"
msgstr "แแทแแแพแโแแแปแ"
#: objects/text_type.cc:128
msgid "&Redefine..."
msgstr "แแแแแโแกแพแโแแทแ ..."
#: objects/text_type.cc:157
msgid "Toggle Label Frame"
msgstr "แแทแแแพแโแแแปแโแแแแถแโ"
#: objects/transform_types.cc:32
msgid "Translate this object"
msgstr "แแแแแแโแแแแแปโแแแ "
#: objects/transform_types.cc:33
msgid "Select the object to translate..."
msgstr "แแแแพแโแแแแแปโแแแแแถแแโแแโแแแแโ..."
#: objects/transform_types.cc:34
msgid "Translate by this vector"
msgstr "แแแแแแโแแถแโแแแทแ
แแแ"
#: objects/transform_types.cc:35
msgid "Select the vector to translate by..."
msgstr "แแแแพแโแแแทแ
แแแโแแแแแถแแโแแแแแแ..."
#: objects/transform_types.cc:67 objects/transform_types.cc:102
msgid "Reflect this object"
msgstr "แแแแปแโแแแแแปโแแแ"
#: objects/transform_types.cc:68 objects/transform_types.cc:103
msgid "Select the object to reflect..."
msgstr "แแแแพแโแแแแแปโแแแแแถแแโแแแแปแโ..."
#: objects/transform_types.cc:69
msgid "Reflect in this point"
msgstr "แแแแปแโแแทแโแ
แแแปแ
โแแแ"
#: objects/transform_types.cc:70
msgid "Select the point to reflect in..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแแปแ..."
#: objects/transform_types.cc:104
msgid "Reflect in this line"
msgstr "แแแแปแโแแทแโแแแแแถแแโแแแ"
#: objects/transform_types.cc:105
msgid "Select the line to reflect in..."
msgstr "แแแแพแโแแแแแถแแโแแแแแถแแโแแแแปแ..."
#: objects/transform_types.cc:137
msgid "Rotate this object"
msgstr "แแแแแทแโแแแแแปโแแแ "
#: objects/transform_types.cc:138
msgid "Select the object to rotate..."
msgstr "แแแแพแโแแแแแปแแแแแถแแโแแแแแทแโ..."
#: objects/transform_types.cc:139
msgid "Rotate around this point"
msgstr "แแแแแทแโแแปแแแทแโแ
แแแปแ
โแแแโ"
#: objects/transform_types.cc:140
msgid "Select the center point of the rotation..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแโแแถแแแแแแทแโ..."
#: objects/transform_types.cc:141
msgid "Rotate by this angle"
msgstr "แแแแแทแโแแถแโแแปแโแแแ "
#: objects/transform_types.cc:142
msgid "Select the angle of the rotation..."
msgstr "แแแแพแโแแปแโแแโแแถแโแแแแแทแ..."
#: objects/transform_types.cc:174 objects/transform_types.cc:211
#: objects/transform_types.cc:251 objects/transform_types.cc:285
msgid "Scale this object"
msgstr "แแแแพโแแถแแแแแแแถแโแแแแแปโแแแ "
#: objects/transform_types.cc:175 objects/transform_types.cc:212
msgid "Select the object to scale..."
msgstr "แแแแพแโแแแแแปโแแแแแถแแโแแแแพโแแถแแแแแแแถแโ..."
#: objects/transform_types.cc:176 objects/transform_types.cc:213
msgid "Scale with this center"
msgstr "แแแแพโแแถแแแแแแแถแโแแธโแ
แแแปแ
โแแแแแถแโแแแ"
#: objects/transform_types.cc:177 objects/transform_types.cc:214
msgid "Select the center point of the scaling..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแโแแถแโแแแแพโแแถแแแแแแแถแ..."
#: objects/transform_types.cc:178 objects/transform_types.cc:253
msgid "Scale by the length of this segment"
msgstr "แแแแพโแแถแแแแแแแถแโแแถแโแแแแแแโแแโแ
แแแแแโแแแ "
#: objects/transform_types.cc:179
msgid "Select a segment whose length is the factor of the scaling..."
msgstr "แแแแพแแ
แแแแแโแแแโแแถแโแแแแแแโแแถโแแแแแถโแแโแแถแโแแแแพโแแถแแแแแแแถแ.."
#: objects/transform_types.cc:215 objects/transform_types.cc:287
msgid "Scale the length of this segment..."
msgstr "แแแแพโแแถแแแแแแแถแโแแแแแแโแแโแ
แแแแแโแแแ ..."
#: objects/transform_types.cc:216
msgid ""
"Select the first of two segments whose ratio is the factor of the scaling..."
msgstr "แแแแพแโแ
แแแแแโแแธแแฝแโแแโแ
แแแแแโแแธแโแแแโแแแถแแถแแแโแแแแโแแถโแแถโแแแแแถโแแโแแถแโแแแแพโแแถแแแแแแแถแ..."
#: objects/transform_types.cc:217
msgid "...to the length of this other segment"
msgstr "...แแ
โแแทแโแแแแแแโแแโแ
แแแแแโแแแแแโแแแโแแแ"
#: objects/transform_types.cc:218
msgid ""
"Select the second of two segments whose ratio is the factor of the scaling..."
msgstr "แแแแพแโแ
แแแแแโแแธโแแธแโแแโแ
แแแแแโแแธแโแแแโแแแถแแถแแแโแแแแโแแถโแแถโแแแแแถโแแโแแถแโแแแแพโแแถแแแแแแแถแ..."
#: objects/transform_types.cc:251 objects/transform_types.cc:285
msgid "Select the object to scale"
msgstr "แแแแพแโแแแแแปโแแแแแถแแโแแแแพแแถแแแแแแแถแโ"
#: objects/transform_types.cc:252 objects/transform_types.cc:286
msgid "Scale over this line"
msgstr "แแแแพโแแถแแแแแแแถแโแแพโแแแแแถแแโ"
#: objects/transform_types.cc:252 objects/transform_types.cc:286
msgid "Select the line to scale over"
msgstr "แแแแพแโแแแแแถแแโแแแแแถแแโแแแแพโแแถแแแแแแแถแโ"
#: objects/transform_types.cc:253
msgid "Select a segment whose length is the factor for the scaling"
msgstr "แแแแพแโแ
แแแแแโแแแโแแแแแแโแแถโแแแแแถโแแแแแถแแโแแแแพโแแถแแแแแแแถแโ"
#: objects/transform_types.cc:287
msgid ""
"Select the first of two segments whose ratio is the factor for the scaling"
msgstr "แแแแพแโแ
แแแแแโแแธแแฝแโแแโแ
แแแแแโแแธแโแแแโแแแถแแถแแแโแแแแโแแถโแแบโแแถโแแแแแถโแแแแแถแแโแแถแโแแแแพโแแถแแแแแแแถแ"
#: objects/transform_types.cc:288
msgid "...to the length of this segment"
msgstr "...แแ
โแแทแโแแแแแแโแแโแ
แแแแแโแแแ"
#: objects/transform_types.cc:288
msgid ""
"Select the second of two segments whose ratio is the factor for the scaling"
msgstr "แแแแพแโแ
แแแแแโแแธแแธแโแแโแ
แแแแแโแแธแโแแแโแแแถแแถแแแโแแแแโแแถโแแบโแแถโแแแแแถโแแแแแถแแโแแถแโแแแแพโแแถแแแแแแแถแ"
#: objects/transform_types.cc:321
msgid "Projectively rotate this object"
msgstr "แแแแแทแโแแแแแปโแแแโแฒแแโแแโ"
#: objects/transform_types.cc:321
msgid "Select the object to rotate projectively"
msgstr "แแแแพแโแแแแแปโแแแแแถแแโแแแแแทแโแฒแแโแแโ"
#: objects/transform_types.cc:322
msgid "Projectively rotate with this half-line"
msgstr "แแแแแทแโแแโแแถแแฝแโแแถแแแแแแแถแโแแแแแถแแโแแแ "
#: objects/transform_types.cc:322
msgid ""
"Select the half line of the projective rotation that you want to apply to "
"the object"
msgstr "แแแแพแโแแแแแถแแโแแถแแโแแแแแถแโแแโแแถแโแแแแแทแโแฒแแโแแโแแแโแขแแแโแ
แแโแขแแปแแแแโแแ
โแแพโแแแแแป"
#: objects/transform_types.cc:323
msgid "Projectively rotate by this angle"
msgstr "แแแแแทแแฒแแโโแแโแแถแโแแปแโแแแ "
#: objects/transform_types.cc:323
msgid ""
"Select the angle of the projective rotation that you want to apply to the "
"object"
msgstr "แแแแพแโแแปแโแแโแแถแโแแแแแทแโแฒแแโแแโแแแโแขแแแโแ
แแโแขแแปแแแแโแแ
โแแพโแแแแแป"
#: objects/transform_types.cc:358
msgid "Harmonic Homology of this object"
msgstr "แแถแโแแผแ
โแแแแถโแแแทแแแถแแแแแโแแโแแแแแปโแแแ"
#: objects/transform_types.cc:359 objects/transform_types.cc:396
#: objects/transform_types.cc:438 objects/transform_types.cc:495
#: objects/transform_types.cc:537 objects/transform_types.cc:860
msgid "Select the object to transform..."
msgstr "แแแแพแโแแแแแปโแแแแแถแแโแแแแแ..."
#: objects/transform_types.cc:360
msgid "Harmonic Homology with this center"
msgstr "แแถแโแแผแ
แแแแถโแแแทแแแถแแแแแโแแถแแฝแโแ
แแแปแ
โแแแแแถแโแแแ "
#: objects/transform_types.cc:361
msgid "Select the center point of the harmonic homology..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแโแแถแโแแผแ
แแแแถโแแแทแแแถแแแแแโ..."
#: objects/transform_types.cc:362
msgid "Harmonic Homology with this axis"
msgstr "แแถแโแแผแ
โแแแแถโแแแทแแแถแแแแแโแแถโแแฝแโแขแแแแโแแแ"
#: objects/transform_types.cc:363
msgid "Select the axis of the harmonic homology..."
msgstr "แแแแพแโแขแแแแโแแโแแถแแแผแ
แแแแถโแแแทแแแถแแแแแ..."
#: objects/transform_types.cc:395 objects/transform_types.cc:437
msgid "Generic affinity of this object"
msgstr "แแแแแแโแแผแ
แแแแถโแแโแแแแแปโแแแโ"
#: objects/transform_types.cc:397
msgid "Map this triangle"
msgstr "แแแแผแแแแโแแแแธแแแโแแแ"
#: objects/transform_types.cc:398
msgid "Select the triangle that has to be transformed onto a given triangle..."
msgstr "แแแแพแโแแแแธแแแโแแแโแแแแผแโแแโแแแแแโแแ
โแแถโแแแแธแแแโแแแโแฒแแ..."
#: objects/transform_types.cc:399
msgid "onto this other triangle"
msgstr "แแ
โแแถโแแแแธแแแโแแแโแแแแแโแแแ"
#: objects/transform_types.cc:400
msgid ""
"Select the triangle that is the image by the affinity of the first "
"triangle..."
msgstr "แแแแพแโแแแแธแแแโแแแโแแถโแแผแแแถแโ แแแแแถแโแแโแแแแธแแแโแแธ แก..."
#: objects/transform_types.cc:439
msgid "First of 3 starting points"
msgstr "แ
แแแปแ
โแแธโแแฝแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธ"
#: objects/transform_types.cc:440
msgid ""
"Select the first of the three starting points of the generic affinity..."
msgstr "แแแแพแโแ
แแแปแ
โแแธโแแฝแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแโแแแแแแโแแผแ
โแแแแถ..."
#: objects/transform_types.cc:441
msgid "Second of 3 starting points"
msgstr "แ
แแแปแ
โแแธแแธแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธ"
#: objects/transform_types.cc:442
msgid ""
"Select the second of the three starting points of the generic affinity..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแธแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธโแแโแแแแแแโแแผแ
แแแแถ..."
#: objects/transform_types.cc:443
msgid "Third of 3 starting points"
msgstr "แ
แแแปแ
โแแธแแธโแแโแ
แแแปแ
โแ
แถแแแแแแพแ แฃ"
#: objects/transform_types.cc:444
msgid ""
"Select the third of the three starting points of the generic affinity..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแธโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธโแแโแแแแแแโแแผแ
แแแแถ..."
#: objects/transform_types.cc:445 objects/transform_types.cc:546
msgid "Transformed position of first point"
msgstr "แแแแแโแแธแแถแแโแแโแแแแปแโแแแแผแโแแโ"
#: objects/transform_types.cc:446
msgid "Select the first of the three end points of the generic affinity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแฝแโแแโแ
แแแปแ
โแแแแ
แแโแแธโแแโแแแแแแโแแผแ
แแแแถ..."
#: objects/transform_types.cc:447 objects/transform_types.cc:548
msgid "Transformed position of second point"
msgstr "แแแแแโแแธแแถแแโแแโแแแแปแโแแธแแธแโ"
#: objects/transform_types.cc:448
msgid "Select the second of the three end points of the generic affinity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแธแโแแโแ
แแแปแ
โแแแแ
แแโแแธโแแโแแแแแแโแแผแ
แแแแถ..."
#: objects/transform_types.cc:449 objects/transform_types.cc:550
msgid "Transformed position of third point"
msgstr "แแแแแโแแธแแถแแโแแโแแแแปแโแแธแแธโ"
#: objects/transform_types.cc:450
msgid "Select the third of the three end points of the generic affinity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแธโแแโแ
แแแปแ
โแแแแ
แแโแแธโแแโแแแแแแโแแผแ
แแแแถ..."
#: objects/transform_types.cc:494 objects/transform_types.cc:536
msgid "Generic projective transformation of this object"
msgstr "แแถแโแแแแแแโแแแแแแโแแถแโแแโแแโแแแแแปโแแแ"
#: objects/transform_types.cc:496
msgid "Map this quadrilateral"
msgstr "แแแแผแแแแโแ
แแปแแแแแโแแแโ"
#: objects/transform_types.cc:497
msgid ""
"Select the quadrilateral that has to be transformed onto a given "
"quadrilateral..."
msgstr "แแแแพแโแ
แแปแแแแแโแแแโแแแแผแโแแถแโแแแแแโแแ
โแแถโแ
แแปแแแแแโแแแโแแถแโแแแแแโแฒแแโ..."
#: objects/transform_types.cc:498
msgid "onto this other quadrilateral"
msgstr "โแแ
โแแพโแ
แแปแแแแแโแแแแแแแแโแแแ"
#: objects/transform_types.cc:499
msgid ""
"Select the quadrilateral that is the image by the projective transformation "
"of the first quadrilateral..."
msgstr "แแแแพแโโแ
แแปแแแแแโโแแแโแแถโแแผแแแถแ แแแโแแถแโแแแแแโแแแแแปโแแแแโแ
แแปแแแแแโแแธ แก..."
#: objects/transform_types.cc:538
msgid "First of 4 starting points"
msgstr "แ
แแแปแ
โแ
แถแแแแแแพแโแแธแแฝแโแแโแ
แแแปแ
โแ
แถแแแแแแพแ แค"
#: objects/transform_types.cc:539
msgid ""
"Select the first of the four starting points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแฝแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแฝแโแแโแแแแแแโแแ..."
#: objects/transform_types.cc:540
msgid "Second of 4 starting points"
msgstr "แ
แแแปแ
โแ
แถแแแแแแพแโแแธแแธแโแแโแ
แแแปแ
โแ
แถแแแแแแพแ แค"
#: objects/transform_types.cc:541
msgid ""
"Select the second of the four starting points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแธแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแฝแโแแโแแแแแแโแแถแโแแ..."
#: objects/transform_types.cc:542
msgid "Third of 4 starting points"
msgstr "แ
แแแปแ
โแ
แถแแแแแแพแโแแธแแธโแแโแ
แแแปแ
โแ
แถแแแแแแพแ แค"
#: objects/transform_types.cc:543
msgid ""
"Select the third of the four starting points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแธโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแฝแโแแโแแแแแแโแแ..."
#: objects/transform_types.cc:544
msgid "Fourth of 4 starting points"
msgstr "แ
แแแปแ
โแ
แถแแแแแแพแโแแธแแฝแโแแโแ
แแแปแ
โแ
แถแแแแแแพแ แค"
#: objects/transform_types.cc:545
msgid ""
"Select the fourth of the four starting points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแแแแแพแโแแธแแฝแโแแโแ
แแแปแ
โแ
แถแแแแแแพแโแแฝแโแแโแแแแแแโแแถแโแแ..."
#: objects/transform_types.cc:547
msgid "Select the first of the four end points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแฝแโแแโแ
แแแปแ
โแแแแ
แแโแแฝแโแแโแแแแแแโแแถแโแแ..."
#: objects/transform_types.cc:549
msgid "Select the second of the four end points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแธแโแแโแ
แแแปแ
โแแแแ
แแโแแธแโแแโแแแแแแโแแถแโแแ..."
#: objects/transform_types.cc:551
msgid "Select the third of the four end points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแธโแแโแ
แแแปแ
โแแแแ
แแโแแธโแแโแแแแแแโแแถแโแแ..."
#: objects/transform_types.cc:552
msgid "Transformed position of fourth point"
msgstr "แแแแแโแแธแแถแแโแแโแแแแปแโแแธโแแฝแโ"
#: objects/transform_types.cc:553
msgid "Select the fourth of the four end points of the generic projectivity..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแธแแฝแโแแโแ
แแแปแ
โแแแแ
แแโแแฝแโแแโแแแแแแโแแถแโแแ..."
#: objects/transform_types.cc:597
msgid "Cast the shadow of this object"
msgstr "แ
แแโแแแแแแโแแโแแแแแปโแแแโ"
#: objects/transform_types.cc:598
msgid "Select the object of which you want to construct the shadow..."
msgstr "แแแแพแโแแแแแปโแแแโแขแแแโแ
แแโแแแโแแแแแแ..."
#: objects/transform_types.cc:599
msgid "Cast a shadow from this light source"
msgstr "แ
แแโแแแแแแโแแธโแแแแแโแแแแแบโแแแโ"
#: objects/transform_types.cc:600
msgid "Select the light source from which the shadow should originate..."
msgstr "แแแแพแโแแแแแโแแแแแบโแแแแแแแแแโแแฝแโแแโแ
แแ..."
#: objects/transform_types.cc:602
msgid "Cast a shadow on the horizon represented by this line"
msgstr "แ
แแโแแแแแแโแแแแแโแแแโแแแแถแโแฒแแโแแแแแถแแโแแแโ"
#: objects/transform_types.cc:603
msgid "Select the horizon for the shadow..."
msgstr "แแแแพแโแแแแแแโแแแแแโ..."
#: objects/transform_types.cc:785
msgid "Transform this object"
msgstr "แแแแแโแแแแแปโแแแโ"
#: objects/transform_types.cc:786
msgid "Transform using this transformation"
msgstr "แแแแแโแแแแแแแพโแแถแแแแแแแโแแแโ"
#: objects/transform_types.cc:859
msgid "Apply a similitude to this object"
msgstr "แขแแปแแแแโแแถแโแแผแ
โแแแแถโแแ
โแแแแแปโแแแ"
#: objects/transform_types.cc:861
msgid "Apply a similitude with this center"
msgstr "แขแแปแแแแโแแถแโแแผแ
โแแแแถโแแถแแฝแโแ
แแแปแ
โแแแแแถแโแแแ"
#: objects/transform_types.cc:862
msgid "Select the center for the similitude..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแโแแแแแถแแโแแถแโแแผแ
โแแแแถ..."
#: objects/transform_types.cc:863
msgid "Apply a similitude mapping this point onto another point"
msgstr "แขแแปแแแแโแแถแโแแผแ
โแแแแถโแแแโแแแแผแแแแโแ
แแแปแ
โแแแโแแ
โแแทแโแ
แแแปแ
โแแฝแโแแแแแโแแแ"
#: objects/transform_types.cc:864
msgid "Select the point which the similitude should map onto another point..."
msgstr "แแแแพแโแ
แแแปแโแแแโแแถแโแแผแ
โแแแแถโแแฝแโแแโแแแแผแแแแโโแแ
โแแทแโแ
แแแปแ
โแแฝแโแแแแแโแแแ..."
#: objects/transform_types.cc:865
msgid "Apply a similitude mapping a point onto this point"
msgstr "แขแแปแแแแโแแถแโแแผแ
โแแแแถโแแแโแแแแผแแแแโแ
แแแปแ
โแแ
โแแทแโแ
แแแปแ
โแแแ"
#: objects/transform_types.cc:866
msgid ""
"Select the point onto which the similitude should map the first point..."
msgstr "แแแแพแโแแแแปแโแแแโแแผแ
โแแแแถโแแแแผแโแแโแแแแฝแแแแแโแแ
โแแนแ แแแแปแโแแแแผแโแแโ..."
#: objects/vector_type.cc:26
msgid "Construct a vector from this point"
msgstr "แแแโแแแทแ
แแแโแแธโโแ
แแแปแ
โแแแโ"
#: objects/vector_type.cc:27
msgid "Select the start point of the new vector..."
msgstr "แแแแพแโแ
แแแปแ
โแ
แถแแโแแแแพแโแแโแแแทแ
แแแโแแแแธโ..."
#: objects/vector_type.cc:28
msgid "Construct a vector to this point"
msgstr "แแแโแแแทแ
แแแโแแ
โแ
แแแปแ
โแแแ"
#: objects/vector_type.cc:29
msgid "Select the end point of the new vector..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแ
แแโแแโแแแทแ
แแแโแแแแธ..."
#: objects/vector_type.cc:61
msgid "Construct the vector sum of this vector and another one."
msgstr "แแแโแแแแผแโแแแทแ
แแแโแแโแแแทแ
แแแโแแแ แแทแโแแฝแโแแแแแโแแแย แ"
#: objects/vector_type.cc:62
msgid ""
"Select the first of the two vectors of which you want to construct the sum..."
msgstr "แแแแพแโแแแทแ
แแแโแแธแแฝแโแแโแแแทแ
แแแโแแธแโแแแโแขแแแโแ
แแโแแแโแแแแผแ..."
#: objects/vector_type.cc:63
msgid "Construct the vector sum of this vector and the other one."
msgstr "แแแโแแแแผแโแแแทแ
แแแโแแโแแแทแ
แแแโแแแโแแทแโแแฝแโแแแแแโแแแย แ"
#: objects/vector_type.cc:64
msgid ""
"Select the other of the two vectors of which you want to construct the sum..."
msgstr "แแแแพแโแแแทแ
แแแโแแแแแโแแแโแแโแแแทแ
แแแโแแธแโแแแโแขแแแโแ
แแโแแแโแแแแผแ..."
#: objects/vector_type.cc:65
msgid "Construct the vector sum starting at this point."
msgstr "แแแโแแแทแ
แแแโแแแแผแโแแแโแ
แถแแโแแแแพแโแแ
โแ
แแแปแ
โแแแย แ"
#: objects/vector_type.cc:66
msgid "Select the point to construct the sum vector in..."
msgstr "แแแแพแโแ
แแแปแ
โแแแโแแแแผแโแแแโแแแทแ
แแแโแแแแผแ..."
#: scripting/newscriptwizardbase.ui:67 scripting/script-common.cc:34
#, no-c-format
msgid "Now fill in the code:"
msgstr "แฅแกแผแ แ
แผแโแแแแแโแแผแย แ"
#: scripting/script-common.cc:35
msgid "Now fill in the Python code:"
msgstr "แแแแแโแแผแ Python แฅแกแผแโแแแย แ"
#: scripting/script-common.cc:53
msgid ""
"_: Note to translators: this should be a default name for an argument in a "
"Python function. The default is \"arg%1\" which would become arg1, arg2, "
"etc. Give something which seems appropriate for your language.\n"
"arg%1"
msgstr "arg%1"
#: scripting/script_mode.cc:205
msgid ""
"The Python interpreter caught an error during the execution of your script. "
"Please fix the script and click the Finish button again."
msgstr ""
"แแแแแแทแแธโแแแแแแโ Python แแถแโแ
แถแแโแแโแแแ แปแโแแแกแปแโแแแโแแแแแทแแแแแทโแแโแแแแแแธแโแแแแโแขแแแโย แโแแผแโแแฝแแแปแโแแแแแแธแโแ แพแ แ
แปแ
โแแพโแแแผแแปแโ"
"แแแแ
แแโแแแแแแแโย แ"
#: scripting/script_mode.cc:207 scripting/script_mode.cc:325
#, c-format
msgid ""
"The Python Interpreter generated the following error output:\n"
"%1"
msgstr ""
"แแแแแแทแแธโแแแแแแโ Python แแแแผแโแแถแโแแแแแพแโแแถแโแแทแแแแแโแแแ แปแโแแผแ
โแแถแแแแแแโย แโ\n"
"%1"
#: scripting/script_mode.cc:212
msgid ""
"There seems to be an error in your script. The Python interpreter reported "
"no errors, but the script does not generate a valid object. Please fix the "
"script, and click the Finish button again."
msgstr ""
"แแแแแแธแโแแแแโแขแแแโแ แถแแแแธโแแผแ
แแถโแแถแโแแแ แปแย แ แแแแแแทแแธโแแแแแแโ Python แแถแโแแถแแแถแแแโแแถโแแแแถแโแแแ แปแโ แแแปแแแแโแแแแแแธแโแแทแโ"
"แแถแโแแแแแพแโแแแแแปโแแแโแแแแนแแแแแผแโแแผแโแกแพแโโย แ แแผแโแแฝแแแปแโแแแแแแธแโ แ แพแโแ
แปแ
แแพโแแแผแแปแโแแแแ
แแโแแแแแแแโย แโ"
#: scripting/script_mode.cc:290
msgid ""
"_: 'Edit' is a verb\n"
"Edit Script"
msgstr "แแโแแแแแฝแโแแแแแแธแ"
#: scripting/script_mode.cc:313
msgid "Edit Python Script"
msgstr "แแโแแแแแฝแโแแแแแแธแโ Python "
#: scripting/script_mode.cc:323
msgid ""
"The Python interpreter caught an error during the execution of your script. "
"Please fix the script."
msgstr ""
"แแแแแแทแแธโแแแแแแโ Python แแถแโแ
แถแแโแแโแแแ แปแโแแแกแปแโแแแโแแแแแทแแแแแทโแแโแแแแแแธแโแแแแโแขแแแโย แโ แแผแโแแฝแแแปแโแแแแแแธแโแ แพแ แ
แปแ
โแแพโแแแผแแปแโ"
"แแแแ
แแโแแแแแแแโย แ"
#: scripting/script_mode.cc:330
msgid ""
"There seems to be an error in your script. The Python interpreter reported "
"no errors, but the script does not generate a valid object. Please fix the "
"script."
msgstr ""
"แแแแแแธแโแแแแโแขแแแโแ แถแแแแธโแแผแ
แแถโแแถแโแแแ แปแย แ แแแแแแทแแธโแแแแแแโ Python แแถแโแแถแแแถแแแโแแถโแแแแถแโแแแ แปแโ แแแปแแแแโแแแแแแธแโแแทแโ"
"แแถแโแแแแแพแโแแแแแปโแแแโแแแแนแแแแแผแโแแผแโแกแพแโโย แ แแผแโแแฝแแแปแโแแแแแแธแโ แ แพแโแ
แปแ
แแพโแแแผแแปแโแแแแ
แแโแแแแแแแโย แโ"
#: macros/circle_by_center_and_line.kigt:4
msgid "Circle by Center && Line"
msgstr "แแแแแแโแแแแแแแพโโแ
แแแปแ
โแแแแแถแ แแทแโแแแแแถแแ"
#: macros/circle_by_center_and_line.kigt:5
msgid "A circle constructed by its center and tangent to a given line"
msgstr "แแแแแแโแแฝแโแแแโแแถแโแแแแแพแโแแแโแ
แแแปแ
โแแแแแถแโแแแแแแถ แ แพแโแแแโแแ
แแนแโแแแแแถแแโแแแแแถแโแแแแแแฒแแ"
#: macros/circle_by_center_and_line.kigt:10
msgid "Construct a circle tangent to this line"
msgstr "แแแแแพแโแแแแแแโแแแโแแแโแแ
โแแนแโแแแแแถแแโแแแ"
#: macros/circle_by_center_and_line.kigt:11
msgid "Select the line that the new circle should be tangent to..."
msgstr "แแแแพแโแแแแแถแแโแแแโแแถแแโแแแโแแนแโโแแแแแแโแแแแธ..."
#: macros/circle_by_point_and_diameter.kigt:4
msgid "Circle by Point && Segment (as the Diameter)"
msgstr "แแแแแแโแแแแแแแพโแ
แแแปแ
แแทแโแ
แแแแแ (แแถโแขแแแแแโแแแ
แทแ)"
#: macros/circle_by_point_and_diameter.kigt:5
msgid ""
"A circle defined by its center and the length of a segment as the diameter"
msgstr "แแแแแแโแแแแแถแโแแแแแโแแแโแ
แแแปแ
โแแแแแถแโแแแแแแถ แแทแโแแแแแแโแแโแ
แแแแแโแแถโแขแแแแแโแแแ
แทแ"
#: macros/circle_by_point_and_diameter.kigt:14
msgid ""
"Construct a circle with the diameter given by the length of this segment"
msgstr "แแแแแพแโแแแแแแโแแแโแแถแโแขแแแแแโแแแ
แทแโโแแถโแแแแแแโแแโแ
แแแแแ"
#: macros/circle_by_point_and_diameter.kigt:15
msgid "Select the segment whose length gives the diameter of the new circle..."
msgstr "แแแแพแโโแ
แแแแแโแแแโแแแแแแโแแแแแแถโแแแแแแแถโแขแแแแแโแแแ
แทแโแแโแแแแแแแแแแธ..."
#: macros/circle_by_point_and_segment.kigt:4
msgid "Circle by Point && Segment (as the Radius)"
msgstr "แแแแแแโแแแแแแแพโแ
แแแปแ
แแทแโแ
แแแแแ (แแถโแแถแ)"
#: macros/circle_by_point_and_segment.kigt:5
msgid ""
"A circle defined by its center and the length of a segment as the radius"
msgstr "แแแแแแโแแแแแถแโแแแแแโแแแโแ
แแแปแ
โแแแแแถแโแแแแแแถ แแทแโแแแแแแโแ
แแแแแโ แแแโแแถโแแถแ"
#: macros/circle_by_point_and_segment.kigt:14
msgid "Construct a circle with the radius given by the length of this segment"
msgstr "แแแแแพแโแแแแแแโโแแแโแแถแโแแถแโแแถโแแแแแแโแแแแโแ
แแแแแโแแแ"
#: macros/circle_by_point_and_segment.kigt:15
msgid "Select the segment whose length gives the radius of the new circle..."
msgstr "แแแแพแโโแ
แแแแแโแแแโโแแแแแแโแแแแแแถโแแแแแแแถแโแแโแแแแแแแแแแธ..."
#: macros/equitriangle.kigt:4
msgid "Equilateral Triangle"
msgstr "แแแแธโแแแโแแแแถแ"
#: macros/equitriangle.kigt:5
msgid "Equilateral triangle with given two vertices"
msgstr "แแแแธแแแโแแแแถแ แแแแแถแโแแแแแโแแแแผแโแแธแ"
#: macros/evolute.kigt:4
msgid "Evolute"
msgstr "แแแแแแแแฝแ"
#: macros/evolute.kigt:5
msgid "Evolute of a curve"
msgstr "แแแแแแแแแแฝแโแแแแแแแ"
#: macros/evolute.kigt:10
msgid "Evolute of this curve"
msgstr "แแแแแแแแแแฝแโแแแแแแแแแแแโแแแ"
#: macros/osculating_circle.kigt:4
msgid "Osculating Circle"
msgstr "แแแแแแโแแแ"
#: macros/osculating_circle.kigt:5
msgid "Osculating circle of a curve at a point"
msgstr "แแแแแแโแแแโแแโแแแแแแแ แแ
แ
แแแปแ
โแแฝแ"
#: macros/osculating_circle.kigt:10
msgid "Osculating circle of this curve"
msgstr "แแแแแแโแแแโแแโแแแแแแแแแแ"
#: macros/osculating_circle.kigt:14
msgid "Osculating circle at this point"
msgstr "แแแแแแแแแโแแ
แแแแแแ
แแแปแ
โแแแ"
#: macros/osculating_circle.kigt:15
msgid "Select the point..."
msgstr "แแแแพแโแ
แแแปแ
..."
#: macros/segment_axis.kigt:4
msgid "Segment Axis"
msgstr "แขแแแแโแ
แแแแแ"
#: macros/segment_axis.kigt:5
msgid "The perpendicular line through a given segment's mid point."
msgstr "แแแแแถแแโแแถแแโแแแโโแแแแแโแ
แแแปแ
โแแแแแถแโแแแแโแ
แแแแแโแแแแแถแโแแแแแแฒแแย แ"
#: macros/segment_axis.kigt:10
msgid "Construct the axis of this segment"
msgstr "แแแแแพแโแขแแแแโแแโแ
แแแแแโแแแ"
#: macros/segment_axis.kigt:11
msgid "Select the segment of which you want to draw the axis..."
msgstr "แแแแพแโแ
แแแแแโแแถแแฝแโแแแแขแแแโแ
แแ แแผแโแขแแแแ..."
#: macros/square.kigt:4
msgid "Square"
msgstr "แแถแแ"
#: macros/square.kigt:5
msgid "Square with two given adjacent vertices"
msgstr "แแถแแโแแแแแถแโแแแแผแโแแถแแแแแแถโแแแแแถแโแแแแแแฒแแโแแธแ"
#: macros/vector_difference.kigt:4
msgid "Vector Difference"
msgstr "แแโแแโแแแทแ
แแแ"
#: macros/vector_difference.kigt:5
msgid "Construct the vector difference of two vectors."
msgstr "แแแโโแแโแแโแแแทแ
แแแโแแโแแแทแ
แแแโแแธแย แ"
#: macros/vector_difference.kigt:10
msgid "Construct the vector difference of this vector and another one."
msgstr "แแแโแแโแแโแแแทแ
แแแโแแโแแแทแ
แแแโแแแโแแทแโแแแทแ
แแแโแแฝแโแแแแแโแแแย แ"
#: macros/vector_difference.kigt:11
msgid ""
"Select the first of the two vectors of which you want to construct the "
"difference..."
msgstr "แแแแพแโแแแทแ
แแแโแแธแแฝแโแแโแแแทแ
แแแโแแถแแโแแธแโแแแโแขแแแโแ
แแโแแแโแแโแแ..."
#: macros/vector_difference.kigt:14
msgid "Construct the vector difference of the other vector and this one."
msgstr "แแแโแแโแแโแแแทแ
แแแโแแโแแแทแ
แแแโแแแแแโแแแโแแทแโแแแทแ
แแแโแแแย แ"
#: macros/vector_difference.kigt:15
msgid ""
"Select the other of the two vectors of which you want to construct the "
"difference..."
msgstr "แแแแพแโแแแแแโแแแแ
โแแธโแแแทแ
แแแโแแถแแโแแธแโแแแโแขแแแโแ
แแโแแแโแแโแแ..."
#: macros/vector_difference.kigt:18
msgid "Construct the vector difference starting at this point."
msgstr "แแแโแแโแแโแแแทแ
แแแโแแแโแ
แถแแโแแแแพแโแแ
โแ
แแแปแ
โแแแย แ"
#: macros/vector_difference.kigt:19
msgid "Select the point to construct the difference vector in..."
msgstr "แแแแพแโแ
แแแปแ
โแแแแแถแแโแแแโแแแทแ
แแแโแแโแแโแแแแปแ..."
#: filters/drgeo-filter-chooserbase.ui:16
#, no-c-format
msgid "Dr. Geo Filter"
msgstr "แแแแแ Dr. Geo"
#: filters/drgeo-filter-chooserbase.ui:33
#, no-c-format
msgid ""
"The current Dr. Geo file contains more than one figure.\n"
"Please select which to import:"
msgstr ""
"แฏแแแถแ Dr. Geo แแ
แแ
แปแแแแแแโแแถแโโแแผแแแถแโแแแแแแโแ
แแแพแแแถแแแฝแย แ\n"
"แแผแโแแแแพแแแพแโแแฝแโแแพแแแแธโแแแแ
แผแย แ"
#: filters/drgeo-filter-chooserbase.ui:119 modes/edittypebase.ui:227
#: modes/typesdialogbase.ui:243
#, no-c-format
msgid "&OK"
msgstr ""
#: filters/drgeo-filter-chooserbase.ui:127 modes/edittypebase.ui:241
#: modes/typesdialogbase.ui:257
#, no-c-format
msgid "&Cancel"
msgstr ""
#: filters/imageexporteroptionsbase.ui:30
#, no-c-format
msgid "Resolution"
msgstr "แแปแแแถแโแแแแ แถแ"
#: filters/imageexporteroptionsbase.ui:55
#, no-c-format
msgid "Width:"
msgstr "โแแแนแย แ"
#: filters/imageexporteroptionsbase.ui:66
#: filters/imageexporteroptionsbase.ui:101
#, no-c-format
msgid " pixels"
msgstr " แแธแแแแ"
#: filters/imageexporteroptionsbase.ui:90
#, no-c-format
msgid "Height:"
msgstr "แแแแแแโย แ"
#: filters/imageexporteroptionsbase.ui:111
#, no-c-format
msgid "&Keep aspect ratio"
msgstr "แแแแแถโแแแถแแถแแแโแแทแแแแแถแ"
#: filters/latexexporteroptions.ui:57
#, no-c-format
msgid "Show extra frame"
msgstr "แแแแ แถแโแแแปแโแแแแแแ"
#: kig/kigpartui.rc:5 kig/kigui.rc:4
#, no-c-format
msgid "&File"
msgstr ""
#: kig/kigpartui.rc:16
#, fuzzy, no-c-format
msgid "&Edit"
msgstr "แแแแแแแฝแ..."
#: kig/kigpartui.rc:27
#, no-c-format
msgid "&View"
msgstr ""
#: kig/kigpartui.rc:35
#, no-c-format
msgid "&Objects"
msgstr "แแแแแป"
#: kig/kigpartui.rc:37
#, no-c-format
msgid "&Points"
msgstr "แ
แแแปแ
"
#: kig/kigpartui.rc:48
#, no-c-format
msgid "&Lines"
msgstr "แแแแแถแแ"
#: kig/kigpartui.rc:58
#, no-c-format
msgid "&Circles && Arcs"
msgstr "แแแแแแ แแทแโแขแแแแ"
#: kig/kigpartui.rc:69
#, no-c-format
msgid "Poly&gons"
msgstr "โแแ แปแแแ"
#: kig/kigpartui.rc:80
#, no-c-format
msgid "&Vectors && Segments"
msgstr "แแแทแ
แแแ แแทแโแ
แแแแแ"
#: kig/kigpartui.rc:89
#, no-c-format
msgid "Co&nics && Cubics"
msgstr "แแถแแธ แแทแโแแผแ"
#: kig/kigpartui.rc:96
#, no-c-format
msgid "More Conics"
msgstr "แแถแแธโแแแแแแโ"
#: kig/kigpartui.rc:109
#, no-c-format
msgid "Cu&bics"
msgstr "แแผแ"
#: kig/kigpartui.rc:116
#, no-c-format
msgid "&Angles"
msgstr "แแปแ"
#: kig/kigpartui.rc:121
#, no-c-format
msgid "&Transformations"
msgstr "แแถแโแแแแแแ"
#: kig/kigpartui.rc:139
#, no-c-format
msgid "&Differential geometry"
msgstr "แแธแแแแแแแแแแโแแแแธแแถแแแ"
#: kig/kigpartui.rc:146
#, no-c-format
msgid "T&ests"
msgstr "แแทแแแโ"
#: kig/kigpartui.rc:157
#, no-c-format
msgid "&Other"
msgstr "แแแแแแ"
#: kig/kigpartui.rc:169
#, no-c-format
msgid "&Types"
msgstr "แแแแแแ"
#: kig/kigpartui.rc:182 kig/kigui.rc:34
#, no-c-format
msgid "Main Toolbar"
msgstr ""
#: kig/kigpartui.rc:196
#, no-c-format
msgid "Points"
msgstr "แ
แแแปแ
โ"
#: kig/kigpartui.rc:207
#, no-c-format
msgid "Lines"
msgstr "แแแแแถแแ"
#: kig/kigpartui.rc:217
#, no-c-format
msgid "Vectors && Segments"
msgstr "แแแทแ
แแแ แแทแโแ
แแแแแ"
#: kig/kigpartui.rc:225
#, no-c-format
msgid "Circles && Arcs"
msgstr "แแแแแแ แแทแโแขแแแแ"
#: kig/kigpartui.rc:234
#, no-c-format
msgid "Conics"
msgstr "แแถแแธ"
#: kig/kigpartui.rc:243
#, no-c-format
msgid "Angles"
msgstr "แแปแ"
#: kig/kigpartui.rc:248
#, no-c-format
msgid "Transformations"
msgstr "แแถแโแแแแแโแแถแ"
#: kig/kigpartui.rc:262
#, no-c-format
msgid "Tests"
msgstr "แแทแแแ"
#: kig/kigpartui.rc:273
#, no-c-format
msgid "Other Objects"
msgstr "แแแแแปโแแแแแแแแ"
#: kig/kigpartui.rc:280
#, no-c-format
msgid "View"
msgstr ""
#: kig/kigui.rc:13
#, no-c-format
msgid "&Settings"
msgstr ""
#: kig/kigui.rc:22 modes/edittypebase.ui:199 modes/typesdialogbase.ui:215
#, no-c-format
msgid "&Help"
msgstr ""
#: modes/edittypebase.ui:24
#, no-c-format
msgid "Edit Type"
msgstr "แแโแแแแแฝแโแแแแแแ"
#: modes/edittypebase.ui:41
#, no-c-format
msgid ""
"Here you can modify the name, the description and the icon of this macro "
"type."
msgstr "แแแแแแแแโแขแแแโแขแถแ
โแแแแแแโแแแแแ แแแ
แแแแธโแแทแแแแแถ แแทแโแแผแแแแแถแโแแแแแแแแแแโแแแถแแแแผย แ"
#: modes/edittypebase.ui:79 modes/macrowizardbase.ui:135
#, no-c-format
msgid "Name:"
msgstr "แแแแแย แ"
#: modes/edittypebase.ui:87
#, no-c-format
msgid "Here you can edit the name of the current macro type."
msgstr "แแ
แแแแแแแแ แขแแแแขแถแ
โแแแแแแแฝแโแแแแแโแแแแแแแแแถแแแแผโแแ
แแ
แปแแแแแแโแแถแย แ"
#: modes/edittypebase.ui:111 modes/macrowizardbase.ui:167
#, no-c-format
msgid "Description:"
msgstr "แแถแโแแทแแแแแถย แ"
#: modes/edittypebase.ui:119
#, no-c-format
msgid ""
"Here you can edit the description of the current macro type. This field is "
"optional, so you can also leave this empty: if you do so, then your macro "
"type will have no description."
msgstr ""
"แแ
แแธแแแโ แขแแแแขแถแ
โแแแแแแแฝแโแแแ
แแแแธโแแทแแแแแถโแแแแแแแแแแโแแแถแแแแผโแแ
แแ
แปแแแแแแโแแถแย แ แแถแโแแแโแแบโแแถโแแแแแพแ แแผแ
แแแแ "
"แขแแแแขแถแ
โโแแทแแแแแแโแแถแแถแย แ แแแแแทแโแแพแขแแแโแแแแพโแแผแ
แแแแ แแ
แแแแแแ แแแแแแโแแแถแแแแผโแแแแแขแแแโแแนแโแแแแถแโแแแ
แแแแธโ"
"แแทแแแแแถย แ"
#: modes/edittypebase.ui:142
#, no-c-format
msgid "Use this button to change the icon of the current macro type."
msgstr "แ
แปแ
โแแแผแแปแโแแแ แแพแแแแธโแแแแถแแแแแแผแโแแผแแแแแถแแแแแแแแแแถแแแแผโแแ
แแ
แปแแแแแแย แ"
#: modes/macrowizardbase.ui:24
#, no-c-format
msgid "Define New Macro"
msgstr "แแแแแโแแแถแแแแผโแแแแธ"
#: modes/macrowizardbase.ui:31
#, no-c-format
msgid "Given Objects"
msgstr "แแแแแปโแแแโแแถแแแแแแแฒแแ"
#: modes/macrowizardbase.ui:56
#, no-c-format
msgid "Select the \"given\" objects for your new macro and press \"Next\"."
msgstr "แแแแพแโแแแแแป\"แแแแแถแแแแแแแฒแแ\" แแแแแถแแโแแแถแแแแผแแแแธแแแแแขแแแ แ แพแ แ
แปแ
\"แแแแแถแแ\"ย แ"
#: modes/macrowizardbase.ui:69
#, no-c-format
msgid "Final Object"
msgstr "แแแแแปโแ
แปแโแแแแ
แแ"
#: modes/macrowizardbase.ui:86
#, no-c-format
msgid "Select the final object(s) for your new macro."
msgstr "แแแแพแโแแแแแปโแ
แปแโแแแแ
แแโแแแแแถแแโแแแถแแแแผแแแแธแแแแแขแแแย แ"
#: modes/macrowizardbase.ui:113
#, no-c-format
msgid "Enter a name and description for your new type."
msgstr "แแแแ
แผแโแแแแแ แแทแโแแแ
แแแแธโแแทแแแแแถโแแแแแถแแโแแแแแแโแแแแธโแแแแแขแแแย แ"
#: modes/textlabelwizardbase.ui:16
#, no-c-format
msgid "Construct Label"
msgstr "แแแแแพแโแแแแถแ"
#: modes/textlabelwizardbase.ui:23
#, no-c-format
msgid "Enter Label Text"
msgstr "แแแแ
แผแโแขแแแแแโแแแแแถแแโแแแแถแ"
#: modes/textlabelwizardbase.ui:34
#, no-c-format
msgid ""
"Enter the text for your label here and press \"Next\".\n"
"If you want to show variable parts, then put %1, %2, ... at the appropriate "
"places (e.g. \"This segment is %1 units long.\")."
msgstr ""
"แแแแ
แผแโแขแแแแแโแแแแแถแแโแแแแถแแแแแแขแแแแแ
แแธแแแ แ แพแแ
แปแ
\"แแแแแถแแ\"ย แ\n"
"แแแแแทแแแพแขแแแโแ
แแแแแแ แถแโแแแแแโแแแถแแแแแแ แแแแขแแแแแถแแ %1, %2, ... แแ
แแธแแแโแแแแแแ (แง. \"แ
แแแแแโ"
"แแแแแบแแถแแแแแแแ %1 โแฏแแแถ\")ย แ"
#: modes/textlabelwizardbase.ui:51
#, no-c-format
msgid "Show text in a frame"
msgstr "แแแแ แถแโแขแแแแแโแแ
แแแแปแโแแแปแ"
#: modes/textlabelwizardbase.ui:61 scripting/newscriptwizardbase.ui:23
#, no-c-format
msgid "Select Arguments"
msgstr "แแแแพแโแขแถแแปแแแแแ"
#: modes/textlabelwizardbase.ui:72
#, no-c-format
msgid ""
"Now select the argument(s) you need. For every argument, click on it, "
"select an object and a property in the Kig window, and click finish when you "
"are done..."
msgstr ""
"แฅแกแผแ แ
แผแแแแแพแโแขแถแแปแแแแแโแแแแขแแแโแแแแผแแแถแย แ แ
แแแแโแขแถแแปแแแแแโแแถแแแขแแ แแบโแแแแผแแ
แปแ
โแแพแแถแแแแพแโแแแแแปโแแฝแ แแทแโ"
"แแแแแแแแแแแแแแทโแแฝแโแแ
แแแแปแแแแแขแฝแ
Kig แแฝแ
แ แพแแ
แปแ
โ แแแแ
แแ แแ
แแแแแแแขแแแโแแถแโแแแแพแแฝแ
..."
#: modes/typesdialogbase.ui:16
#, no-c-format
msgid "Manage Types"
msgstr "แแแแแแแแแโแแแแแแ"
#: modes/typesdialogbase.ui:19
#, no-c-format
msgid ""
"Here you can manage types; you can remove them, and load and save them from "
"and to files..."
msgstr ""
"แแ
แแแแแแแแ แขแแแโแขแถแ
โแแแแแแแแแโแแแแแแโแแถแย แขแแแโแขแถแ
โแแแแถแ
แแโแแแแถแ แแแแปแโแแธแฏแแแถแแแแแถแ แ แพแ แแแแแถแแปแโแแ
โ"
"แฏแแแถแแแแแถแ..."
#: modes/typesdialogbase.ui:42
#, no-c-format
msgid "Icon"
msgstr "แแผแแแแแถแ"
#: modes/typesdialogbase.ui:64
#, no-c-format
msgid "Description"
msgstr "แแถแแแทแแแแแถ"
#: modes/typesdialogbase.ui:83
#, no-c-format
msgid "Select types here..."
msgstr "แแแแพแโแแแแแแโแแ
แแธแแแ..."
#: modes/typesdialogbase.ui:86
#, no-c-format
msgid ""
"This is a list of the current macro types... You can select, edit, delete, "
"export and import them..."
msgstr ""
"แแแโแแถโแแแแแธโแแแแแแโแแแถแแแแผโแแ
แแ
แปแแแแแแ... แขแแแแขแถแ
แแแแพแ แแแแแแแฝแ แแปแ แแถแโแ
แแ แแทแโแแถแแ
แผแแแฝแแแถแแถแ..."
#: modes/typesdialogbase.ui:112
#, no-c-format
msgid "Edit..."
msgstr "แแแแแแแฝแ..."
#: modes/typesdialogbase.ui:115
#, no-c-format
msgid "Edit the selected type."
msgstr "แแแแแแแฝแโแแแแแแโแแแโแแถแโแแแแพแย แ"
#: modes/typesdialogbase.ui:123
#, no-c-format
msgid "Delete"
msgstr ""
#: modes/typesdialogbase.ui:126
#, no-c-format
msgid "Delete all the selected types in the list."
msgstr "แแปแโแแแแแแโแแแโแแถแแแแแพแแโแ
แแแแธโแแแแแธโแแถแแแขแแย แ"
#: modes/typesdialogbase.ui:161
#, no-c-format
msgid "Export..."
msgstr "แแถแโแ
แแ..."
#: modes/typesdialogbase.ui:164
#, no-c-format
msgid "Export all the selected types to a file."
msgstr "แแถแโแแแแแแโแฏแแแถแโแแแโแแถแแแแแพแโแ
แแโแแ
โแแถแแโแฏแแแถแโแแถแแแขแแย แ"
#: modes/typesdialogbase.ui:172
#, no-c-format
msgid "Import..."
msgstr "แแถแแ
แผแ..."
#: modes/typesdialogbase.ui:175
#, no-c-format
msgid "Import macros that are contained in one or more files."
msgstr "แแถแโแ
แผแโแแแถแแแแผโแแแโแแถแโแแ
แแแแปแโแฏแแแถแโแแฝแโแฌโแ
แแแพแย แ"
#: scripting/newscriptwizardbase.ui:16
#, no-c-format
msgid "New Script"
msgstr "แแแแแแธแโแแแแธ"
#: scripting/newscriptwizardbase.ui:34
#, no-c-format
msgid ""
"Select the argument objects ( if any )\n"
"in the Kig window and press \"Next\"."
msgstr ""
"แแแแพแโแแแแแปโแขแถแแปแแแแแ ( แแแแแทแแแพแแถแโแ
แแแพแ )\n"
"แแ
แแแแปแโแแแแขแฝแ
Kig แ แพแแ
แปแ
\"แแแแแถแแ\"ย แ"
#: scripting/newscriptwizardbase.ui:48
#, no-c-format
msgid "Enter Code"
msgstr "แแแแ
แผแโแแผแ"
#: data/tips:3
msgid ""
"<p>One of the most powerful tools in Kig are the menus that you can\n"
"enter by right-clicking on an object, or on some empty space in the\n"
"document. You can use them to give objects names, change their colors\n"
"and line styles, and lots of other interesting things.</p>\n"
msgstr ""
"<p>แงแแแแแโแแแโแแถแโแฅแแแแทแแโแแแแปแโแแฝแโแแ
แแแแปแโแแแแแแทแแธ Kig แแบโแแแบแแปแแแถแ
แแแพแ แแแโแขแแแโแขแถแ
\n"
"แแแแ
แผแโแแถแโแแแแ
แปแ
โแแพ แแแแแปแแฝแ แฌ แแ
แแพโแ
แแแแแโแแแแแโแแถแแฝแโแแ
แแแแปแ\n"
"แฏแแแถแย แ แขแแแโแขแถแ
โแแแแพโแแฝแแแถโ แแพแแแแธ แแแแแแแแแแโแฒแแโแแแแแป แแแแผแแแแโแแแแแป\n"
"แแทแโแแ
แแถแแแแแโแแแแแถแแ แ แพแโ แแทแโแแแแแปโแแแโแแฝแโแฒแแแ
แถแแแขแถแแแแแแโแแถแ
แแแพแแแแย แ</p>\n"
#: data/tips:12
msgid ""
"<p>You can construct new points without using the menu or the toolbar, "
"simply\n"
"clicking somewhere on the Kig document with the <em>middle mouse\n"
"button</em>.</p>\n"
msgstr ""
"<p>แขแแแโแขแถแ
โแแแแแพแโแ
แแแปแ
แแแแธโ แแแโแแทแแ
แถแแแถแ
แแแแแพโแแแบแแปแ แฌ แแแถแโแงแแแแแแแ\n"
"แแบแแแแถแแแแโแ
แปแ
โแแ
แแแแแแแแถแแฝแโแแ
แแพโแฏแแแถแ Kig แแแแแแแพ <em>แแแผแแปแโแแแแแปแ\n"
"แแแแแถแ</em>ย แ</p>\n"
#: data/tips:20
msgid ""
"<p>Kig can open several file formats: its files (<code>.kig</code> files),\n"
"<em>KGeo</em> files, <em>KSeg</em> files, and, partially, <em>Dr. Geo</em>\n"
"and <em>Cabri™</em> files.</p>\n"
msgstr ""
"<p>Kig แขแถแ
โแแพแโแแถโแแแแแแแแแถแโแฏแแแถแโแแถแโแ
แแแพแย แ แฏแแแถแแแแแแแถแแบ (แฏแแแถแ<code>.kig</code>),\n"
"แฏแแแถแโ<em>KGeo</em>, แฏแแแถแโ<em>KSeg</em> แแทแโ แฏแแแถแโแแฝแโแ
แแแฝแโ<em>Dr. Geo</em>\n"
"แแทแโแฏแแแถแโ<em>Cab ri™</em>ย แ</p>\n"
#: data/tips:28
msgid ""
"<p>Kig has more than 40 objects and 10 transformations you can construct and "
"use\n"
"in your documents: open the <em>Objects</em> menu to see them all.</p>\n"
msgstr ""
"<p>Kig แแถแโแแแแแปโแ
แแแพแแแถแ 40 แแทแโแแถแโแแแแแแ 10 แแแถแโแแแแขแแแโแขแถแ
โแแแแแพแ แแทแโแแแแพ\n"
"แแ
แแแแปแโแฏแแแถแโแแแแแขแแแย แ แแพแโแแแบแแปแ <em>แแแแแป</em> แแพแแแแธโแแพแโแแแแแปโแแถแแแขแแแแแย แ</p>\n"
#: data/tips:35
msgid ""
"<p>You can use the selected objects to start the construction of an object\n"
"which requires the selected objects as arguments. For example, if you have "
"two\n"
"points selected, you can choose <em>Start->Circle by Three Points</em> from "
"the\n"
"popup menu to start constructing a circle by three points.</p>\n"
msgstr ""
"<p>แขแแแโแขแถแ
โแแแแพโแแแแแปโแแแแแถแแแแแพแโแแพแแแแธโแ
แถแแแแแแพแโแแแแแพแโแแแแแป\n"
"แ แพแโโแแถแแแถแโแฒแแโแแแแแปแแแแแถแแแแแพแโแแแโแแถโแขแถแแปแแแแแแแแโย แ แงแแถแ แแแ แแแแแทแโแแพแขแแแโแแถแแแแแพแโแ
แแแปแ
โแแธแ\n"
"แขแแแโแขแถแ
โแแแแพแโ <em>แ
แถแแแแแแพแ->แแแแแแแแแแแแแพโแแธโแ
แแแปแ
</em> แแธโ\n"
"แแแบแแปแโแแแ
แกแพแ แแพแแแแธโแ
แถแแแแแแพแโแแแแพแแถแแแผแโแแแแแแแแแโแแแแพโแแธแ
แแแปแ
ย แ</p>\n"
#: data/tips:44
msgid ""
"<p>Kig can extends its object set using external macros. You can find some\n"
"interesting macro on Kig website:\n"
"<a href=\"http://edu.kde.org/kig\">http://edu.kde.org/kig</a>.</p>\n"
msgstr ""
"<p>Kig แขแถแ
โแแแแแธแโโแแแแปแโแแแแแปโแแแแแแถโ แแแแแแแพโแแแถแแแแผโแแถแแแแแ
ย แ แขแแแโแขแถแ
โแแแแแแแโแแแถแแแแผโแแแโแแฝแโแฒแแโ"
"แ
แถแแแขแถแแแแแแ\n"
"แแถแแฝแโแแ
แแพโแแแแแแแแแแถแโแแแแ Kigย แ\n"
"<a href=\"http://edu.kde.org/kig\">http://edu.kde.org/kig</a>ย แ</p>\n"
#: data/tips:52
msgid ""
"<p>If you have more than one object under the mouse, and you want to select "
"any\n"
"of them, you can click with the <em>left mouse button</em>, while holding "
"the\n"
"<em>Shift</em> key, to get a list of the objects under the mouse cursor "
"which\n"
"you can then select from.</p>\n"
msgstr ""
"<p>แแแแแทแโแแพแขแแแโแแถแแโแแแแแปแโแแ
แแพโแแแแแปโแแธแ แฌโแ
แแแพแ แ แพแแขแแแโแ
แแโแแแแพแโแแแแแปแแถแแฝแ\n"
"แขแแแแขแถแ
โแ
แปแ
โแแแแถแแแ
แปแ
<em>แแแแผแ (shift)</em> แแทแโ\n"
"แ
แปแ
โ<em>แแแผแแปแแแแแแปแโแแถแแแแแแ</em> แแพแแแแธโแแโแแแแแธโแแแแแปโแแแแแ
แแแแแโแแแแแแแแแแแทแ
โแแแแแปแแแแ\n"
"แแ
แแแโแแแ แขแแแแขแถแ
โแแแแพแโแแถโแแถแแ แพแย แ</p>\n"
|