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
|
# translation of kttsd.po to Khmer
# translation of kttsd.po to
#
# Khoem Sokhem <khoemsokhem@khmeros.info>, 2007, 2008.
# Auk Piseth <piseth_dv@khmeros.info>, 2007.
# Eng Vannak <evannak@khmeros.info>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: kttsd\n"
"POT-Creation-Date: 2019-01-13 18:59+0100\n"
"PO-Revision-Date: 2008-07-15 15:29+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"
#: app-plugins/kate/katekttsd.cpp:77
msgid "Speak Text"
msgstr "แขแแแแแโแแทแแถแโ"
#: app-plugins/kate/katekttsd.cpp:100
msgid "Starting KTTSD Failed"
msgstr "แแถแโแ
แถแแแแแแพแ KTTSD แแถแโแแแถแแแ"
#: app-plugins/kate/katekttsd.cpp:110 app-plugins/kate/katekttsd.cpp:117
msgid "DCOP Call Failed"
msgstr "แแถแโแ แ
โแแแแ DCOP แแถแโแแแถแแแ"
#: app-plugins/kate/katekttsd.cpp:111
msgid "The DCOP call setText failed."
msgstr "แแถแแ แ
setText แแแแ DCOP แแถแโแแแถแแแย แ"
#: app-plugins/kate/katekttsd.cpp:118
msgid "The DCOP call startText failed."
msgstr "แแถแแ แ
startText แแแแ DCOP แแถแโแแแถแแแ"
#: filters/main.cpp:44
msgid "Name of a KTTSD filter plugin (required)"
msgstr "แแแแแโแแโแแแแแแทแแธโแแแแฝแโแแแแแโแแแแโ KTTSD (แแถแแแถแโแฒแแโแแถแโ)"
#: filters/main.cpp:46
msgid "Talker code passed to filter"
msgstr "แแผแโแขแแแแแทแแถแโแแแโแแแแแผแโแแ
โแแแแแ"
#: filters/main.cpp:48
msgid "DCOP application ID passed to filter"
msgstr "แแแโแแแแแถแแ DCOP แแถแโแแทแแแแแถแแโแแ
โแแแแปแโแแแแแ"
#: filters/main.cpp:52
msgid ""
"_: A string that appears in a single config file, not a group of config "
"files\n"
"Config file group name passed to filter"
msgstr "แแแแแโแแแแปแโแฏแแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแแโแแแแแผแโแแ
โแแแแแ"
#: filters/main.cpp:53
msgid "Display list of available Filter PlugIns and exit"
msgstr "แแแแ แถแโแแแแแธโแแแแแแทแแธโแแแแฝแโแแแแแโแแแโแแถแ แ แพแโแ
แแย แโ"
#: filters/main.cpp:55
msgid "Display tabs as \\t, otherwise they are removed"
msgstr "แแแแ แถแโแแแแถแแโแแถโ \\t, แแทแแแผแ
แแแแโแแฝแแแถโโแแนแโแแแแผแโแแถแโแแโแ
แแโ"
#: filters/main.cpp:56
msgid "Display list of available filter plugins and exit"
msgstr "แแแแ แถแโแแแแแธโแแโแแแแแแทแแธโแแแแฝแโแแแแแโแแแโแแถแ แ แพแโแ
แแ"
#: filters/main.cpp:63
msgid "testfilter"
msgstr "testfilter"
#: filters/main.cpp:64
msgid "A utility for testing KTTSD filter plugins."
msgstr "แงแแแแแโแแแแพแแแแถแแโแแแแแถแแโแแถแแแแแโแแแแแแทแแธโแแแแฝแโแแแแแโ KTTSDย แ"
#: filters/main.cpp:66 kcmkttsmgr/kcmkttsmgr.cpp:1085 kttsd/main.cpp:40
#: kttsmgr/kttsmgr.cpp:63
msgid "Maintainer"
msgstr "แขแแแโแแแแถแโ"
#: filters/sbd/sbdconf.cpp:171 filters/sbd/sbdconfwidget.ui:67
#: kttsd/filtermgr.cpp:83
#, no-c-format
msgid "Standard Sentence Boundary Detector"
msgstr "แงแแแแแโแ
แถแแโแแแแแแแโแแแแแแโแแแแถแแแแแผ"
#: filters/sbd/sbdconf.cpp:239
#: filters/stringreplacer/stringreplacerconf.cpp:424
#: kcmkttsmgr/kcmkttsmgr.cpp:1243 kcmkttsmgr/kcmkttsmgrwidget.ui:216
#: libkttsd/selecttalkerdlg.cpp:166 libkttsd/selecttalkerwidget.ui:455
#, no-c-format
msgid "Language"
msgstr "แแถแแถ"
#: filters/sbd/sbdconf.cpp:240
#: filters/stringreplacer/stringreplacerconf.cpp:425
#: kcmkttsmgr/kcmkttsmgr.cpp:1244 libkttsd/selecttalkerdlg.cpp:167
msgid "Code"
msgstr "แแผแโ"
#: filters/sbd/sbdconf.cpp:268
#: filters/stringreplacer/stringreplacerconf.cpp:453
#: libkttsd/selecttalkerdlg.cpp:190
msgid "Select Languages"
msgstr "แแแแพแโแแถแแถ"
#: filters/sbd/sbdproc.cpp:422
msgid "Invalid S S M L."
msgstr "S S M L แแทแโแแแแนแแแแแผแโย แ"
#: filters/stringreplacer/stringreplacerconf.cpp:150
#: kcmkttsmgr/kcmkttsmgr.cpp:2241
msgid "Unable to open file."
msgstr "แแทแโแขแถแ
โแแพแโแฏแแแถแย แโ"
#: filters/stringreplacer/stringreplacerconf.cpp:156
#: kcmkttsmgr/kcmkttsmgr.cpp:2247
msgid "File not in proper XML format."
msgstr "แฏแแแถแโแแทแโแแ
โแแแแปแโแแแแแแแแแถแ XML แแแแนแแแแแผแย แ"
#: filters/stringreplacer/stringreplacerconf.cpp:238
#: filters/stringreplacer/stringreplacerconf.cpp:574
#: filters/stringreplacer/stringreplacerconf.cpp:609
msgid ""
"_: Abbreviation for 'Regular Expression'\n"
"RegExp"
msgstr "RegExp"
#: filters/stringreplacer/stringreplacerconf.cpp:238
#: filters/stringreplacer/stringreplacerconf.cpp:333
#: filters/stringreplacer/stringreplacerconf.cpp:607
msgid "Word"
msgstr "แแถแแแโ"
#: filters/stringreplacer/stringreplacerconf.cpp:287
#: kcmkttsmgr/kcmkttsmgr.cpp:2291
msgid "Unable to open file "
msgstr "แแทแโแขแถแ
โแแพแโแฏแแแถแโแแถแ"
#: filters/stringreplacer/stringreplacerconf.cpp:378
#: filters/stringreplacer/stringreplacerconf.cpp:413
msgid "String Replacer"
msgstr "แขแแแโแแแแฝแโแแแแแขแแแแโ"
#: filters/stringreplacer/stringreplacerconf.cpp:411
#: filters/stringreplacer/stringreplacerconf.cpp:488
#: filters/stringreplacer/stringreplacerconf.cpp:492
msgid "Multiple Languages"
msgstr "แแ แปโแแถแแถ"
#: filters/stringreplacer/stringreplacerconf.cpp:595
msgid "Edit String Replacement"
msgstr "แแโแแแแแฝแโแแถแแแแแฝแโแแแแโแขแแแแโ"
#: filters/stringreplacer/stringreplacerconf.cpp:702
#: filters/stringreplacer/stringreplacerconf.cpp:718
#: kcmkttsmgr/kcmkttsmgr.cpp:2670 kcmkttsmgr/kcmkttsmgr.cpp:2686
msgid "Error Opening File"
msgstr "แแแ แปแโแแแแปแโแแถแโแแพแโแฏแแแถแ"
#: filters/talkerchooser/talkerchooserconf.cpp:164
msgid "Talker Chooser"
msgstr "แขแแแโแแแแพแโแขแแแโแแทแแถแโ"
#: filters/talkerchooser/talkerchooserconf.cpp:225
#: kcmkttsmgr/kcmkttsmgr.cpp:2501 kttsjobmgr/kttsjobmgr.cpp:496
#: libkttsd/selecttalkerdlg.h:61 libkttsd/selecttalkerwidget.ui:25
#, no-c-format
msgid "Select Talker"
msgstr "แแแแพแโแขแแแโแแทแแถแ"
#: filters/xmltransformer/xmltransformerconf.cpp:141
msgid "XML Transformer"
msgstr "แแแแแแทแแธโแแแแแ XML"
#: kcmkttsmgr/addtalker.cpp:131 kcmkttsmgr/kcmkttsmgr.cpp:552
#: libkttsd/talkercode.cpp:217
msgid "Other"
msgstr "แแแแแแ"
#: kcmkttsmgr/kcmkttsmgr.cpp:83
msgid "Text interrupted. Message."
msgstr "แแถแโแแแขแถแแขแแแแแโย แ แแถแโย แ"
#: kcmkttsmgr/kcmkttsmgr.cpp:89
msgid "Resuming text."
msgstr "แแแแโแขแแแแแย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:386
#: kcmkttsmgr/kcmkttsmgr.cpp:166 kcmkttsmgr/kcmkttsmgrwidget.ui:366
#: kcmkttsmgr/kcmkttsmgrwidget.ui:934
#, no-c-format
msgid "&Edit..."
msgstr "แแแแแแแฝแ..."
#: kcmkttsmgr/kcmkttsmgr.cpp:168 kcmkttsmgr/kcmkttsmgrwidget.ui:331
#: kcmkttsmgr/kcmkttsmgrwidget.ui:893
#, no-c-format
msgid "U&p"
msgstr "แกแพแโแแพโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:364
#: kcmkttsmgr/kcmkttsmgr.cpp:170 kcmkttsmgr/kcmkttsmgrwidget.ui:347
#: kcmkttsmgr/kcmkttsmgrwidget.ui:912
#, no-c-format
msgid "Do&wn"
msgstr "แ
แปแแแแแแ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:325
#: kcmkttsmgr/kcmkttsmgr.cpp:171
#, no-c-format
msgid "&Add..."
msgstr "แแแแแแโ..."
#: kcmkttsmgr/kcmkttsmgr.cpp:910
msgid ""
"You have made changes to the configuration but have not saved them yet. "
"Click Apply to save the changes or Cancel to abandon the changes."
msgstr ""
"แขแแแโแแถแโแแแแพโแแถแโแแแแถแแแแแแผแโแแ
โแแถแโแแแแแโแแ
แแถโแแแแแแแแ แแแปแแแแโแแทแโแแถแโแแแแแถโแแปแโแแฝแโแแถโแแย แ แ
แปแ
แขแแปแแแแ แแพแแแแธโ"
"แแแแแถโแแปแโแแถแโแแแแถแแแแแแผแ แฌ แแแแแแ แแพแแแแธโแแแแแแโแแถแโแแแแถแแแแแแผแย แ"
#: kcmkttsmgr/kcmkttsmgr.cpp:1072
msgid ""
"<h1>Text-to-Speech</h1><p>This is the configuration for the text-to-speech "
"dcop service</p><p>This allows other applications to access text-to-speech "
"resources</p><p>Be sure to configure a default language for the language you "
"are using as this will be the language used by most of the applications</p>"
msgstr ""
"<h1>แขแแแแแโแแแแผแโแแทแแถแโ</h1><p>แแถแแแแแแโแแ
แแถแแแแแแแแโแแแโแแแแแถแแโแขแแแแแโแแแแผแโแแทแแถแโ dcop service</"
"p><p>แแแแแแทแแธโแแแแแโแแแโโแขแแปแแแแถแโแขแถแ
โแ
แผแโแแแแพแโแแถแโแแแแถแโย แ</p><p>แแแแถแแโโโแแพแแแแธโแแแแแโแแ
แแถโแแแแแแแแโแแถแแถแโ"
"แแแแถแโแแพแแขแแแโแแแแปแโแแแแพโแแถโแแถแโแแแโแแนแ แแแแผแโแแแแพโแแแโแแแแแแทแแธโแแถแ
แแแพแโย แ</p>"
#: kcmkttsmgr/kcmkttsmgr.cpp:1080 kttsd/main.cpp:36
#: players/artsplayer/artsplayer.cpp:240
msgid "kttsd"
msgstr "kttsd"
#: kcmkttsmgr/kcmkttsmgr.cpp:1080
msgid "KCMKttsMgr"
msgstr "KCMKttsMgr"
#: kcmkttsmgr/kcmkttsmgr.cpp:1082
msgid "(c) 2002, Josรฉ Pablo Ezequiel Fernรกndez"
msgstr "(แแแแแถแแทแแแโ) แข00แข, แแแโแแแโJosรฉ Pablo Ezequiel Fernรกndez"
#: kcmkttsmgr/kcmkttsmgr.cpp:1084
msgid "Author"
msgstr "แขแแแโแแทแแแแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:1086 kcmkttsmgr/kcmkttsmgr.cpp:1087
#: kttsd/main.cpp:41 kttsd/main.cpp:42 kttsd/main.cpp:43 kttsmgr/kttsmgr.cpp:64
#: kttsmgr/kttsmgr.cpp:65 kttsmgr/kttsmgr.cpp:66
msgid "Contributor"
msgstr "แขแแแโแ
แแแ
แถแ"
#: kcmkttsmgr/addtalkerwidget.ui:16 kcmkttsmgr/kcmkttsmgr.cpp:1220
#, no-c-format
msgid "Add Talker"
msgstr "แแแแแแโแขแแแโแแทแแถแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:1263
msgid "Select Language"
msgstr "แแแแพแโแแถแแถแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:1436
msgid "Select Filter"
msgstr "แแแแพแโแแแแแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:1437 kcmkttsmgr/kcmkttsmgrwidget.ui:830
#, no-c-format
msgid "Filter"
msgstr "แแแแแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:1843
msgid "&Jobs"
msgstr "แแถแแแถแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2032
msgid "Talker Configuration"
msgstr "แแถแแแแแแโแแ
แแถโแแแแแแแแโแขแแแโแแทแแถแ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2088
msgid "Filter Configuration"
msgstr "แแถแโแแแแแโแแ
แแถแแแแแแแแโแแแแแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2375 libkttsd/talkercode.cpp:140
msgid "default"
msgstr "แแแแถแโแแพแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2481 kcmkttsmgr/kcmkttsmgr.cpp:2487
msgid "sample notification message"
msgstr "แแถแโแแแ
แแแแธโแแผแโแแแแนแโแแแแผโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2485
msgid "sample application"
msgstr "แแแแแแทแแธโแแแแผ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2486
msgid "sample event"
msgstr "แแแแนแแแแทแแถแแแโแแแแผ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2527
msgid "Default (all other events)"
msgstr "แแแแถแโแแพแ (แแแแแโแแแแนแแแแทแแถแแแโแแแแแแแแโแแถแแแขแแโ)"
#: kcmkttsmgr/kcmkttsmgr.cpp:2536 kcmkttsmgr/selectevent.cpp:113
msgid "All other %1 events"
msgstr "แแแแแโแแแแนแแแแทแแถแแแโ %1 แแแแแโแแถแแแขแแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2581
msgid "Select Event"
msgstr "แแแแพแโแแแแนแแแแทแแถแแแโ"
#: kcmkttsmgr/kcmkttsmgr.cpp:2663 kcmkttsmgr/kcmkttsmgr.cpp:2679
msgid ""
"_: file type\n"
"Notification Event List"
msgstr "แแแแแธโแแแแนแแแแทแแถแแแโแแแ
แแแแธโแแผแโแแแแนแ"
#: kcmkttsmgr/selectevent.cpp:68 libkttsd/notify.cpp:154
msgid "No description available"
msgstr "แแทแโแแถแโแแถแโแแแแแถ"
#: kttsd/kttsd.cpp:133
msgid ""
"KTTS has not yet been configured. At least one Talker must be configured. "
"Would you like to configure it now?"
msgstr ""
"KTTS แแทแแแถแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแ
โแกแพแโแแโโแ แขแแแโแแทแแถแโแแแถแโแ แแ
โแแถแแโแแฝแโแแแแผแโแแถแโแแแแแโแแ
แแถโแแแแแแแแย แ แแพโ"
"แขแแแโแ
แแโแแแแแโแแ
แแถโแแแแแแแแโแแถโแฅแกแผแโแแแโแแโ?"
#: kttsd/kttsd.cpp:135
msgid "KTTS Not Configured"
msgstr "KTTS แแทแโแแถแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโ"
#: kttsd/kttsd.cpp:137
msgid "Do Not Configure"
msgstr "แแทแโแแถแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโ"
#: kttsd/main.cpp:37
msgid "Text-to-speech synthesis deamon"
msgstr "แแแแทแโแแแแแโแขแแแแแโแแแแผแโแแทแแถแโ"
#: kttsd/main.cpp:39 kttsmgr/kttsmgr.cpp:62
msgid "Original Author"
msgstr "แขแแแโแแทแแแแโแแพแโ"
#: kttsd/main.cpp:44 kttsd/main.cpp:45 kttsmgr/kttsmgr.cpp:67
#: kttsmgr/kttsmgr.cpp:68 plugins/command/commandconf.cpp:163
#: plugins/epos/eposconf.cpp:229 plugins/festivalint/festivalintconf.cpp:577
#: plugins/flite/fliteconf.cpp:150 plugins/freetts/freettsconf.cpp:178
#: plugins/hadifix/hadifixconf.cpp:342
msgid "Testing"
msgstr "แแถแโแแถแแแแแโ"
#: kttsjobmgr/kttsjobmgr.cpp:85
msgid "KttsJobMgr"
msgstr "KttsJobMgr"
#: kttsjobmgr/kttsjobmgr.cpp:114
msgid "Job Num"
msgstr "Job Num"
#: kttsjobmgr/kttsjobmgr.cpp:115
msgid "Owner"
msgstr "แแแ
แถแแ"
#: kttsjobmgr/kttsjobmgr.cpp:116
msgid "Talker ID"
msgstr "แแแโแแแแแถแแโแขแแแโแแทแแถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:117
msgid "State"
msgstr "แแแถแ"
#: kttsjobmgr/kttsjobmgr.cpp:118
msgid "Position"
msgstr "แแธแแถแแ"
#: kttsjobmgr/kttsjobmgr.cpp:119
msgid "Sentences"
msgstr "แแแแแแ"
#: kttsjobmgr/kttsjobmgr.cpp:120
msgid "Part Num"
msgstr "Part Num"
#: kttsjobmgr/kttsjobmgr.cpp:121
msgid "Parts"
msgstr "แแแแแโ"
#: kttsjobmgr/kttsjobmgr.cpp:127
msgid ""
"<p>These are all the text jobs. The <b>State</b> column may be:"
"<ul><li><b>Queued</b> - the job is waiting and will not be spoken until its "
"state is changed to <b>Waiting</b> by clicking the <b>Resume</b> or "
"<b>Restart</b> buttons.</li><li><b>Waiting</b> - the job is ready to be "
"spoken. It will be spoken when the jobs preceding it in the list have "
"finished.</li><li><b>Speaking</b> - the job is speaking. The <b>Position</"
"b> column shows the current sentence of the job being spoken. You may pause "
"a speaking job by clicking the <b>Hold</b> button.</li><li><b>Paused</b> - "
"the job is currently paused. Paused jobs prevent jobs below them from "
"speaking. Use the <b>Resume</b> or <b>Restart</b> buttons to resume "
"speaking the job, or click <b>Later</b> to move the job down in the list.</"
"li><li><b>Finished</b> - the job has finished speaking. When a second job "
"finishes, this one will be deleted. You may click <b>Restart</b> to repeat "
"the job.</li></ul><em>Note</em>: Messages, Warnings, and Screen Reader "
"Output do not appear in this list. See the Handbook for more information.</"
"p>"
msgstr ""
"<p>แแถแโแแถแแแถแโแขแแแแแโแแถแแแถแโแแถโแ
แแแพแโแ <b>แแฝแแแโแแแแ</b>แแแแ แแโแแถโย แ <ul><li><b>แแ
โแแแแโแแแแแถแแโ"
"</b> - แแถแแแถแโแแแแแโแแแแ
แถแโ แ แพแโแแทแแแแแผแโแแถแโแแทแแถแ แแแโแแแแโแแแแโแแถโแแถแโแแแแถแแแแแแผแโ <b>แแแแปแโแแแแ
แถแโ</"
"b>แ
แปแ
แแแผแแปแโโ <b>แแแแพแแแแโ</b> แฌ <b>แ
แถแแแแแแพแโแกแพแโแแทแ </b> ย แ </li><li><b>แแแแ
แถแโ</b> - แแถแแแถแโ"
"แแถแแแทแแถแโแแฝแ
แ แพแโย แ แแถโ แแทแแแทแแถแโแแแแแถแแแถแโแแแแแโแแปแโแแแแปแโแแแแแธโแแแโแแถแโแแแแ
แแโย แ </"
"li><li><b>แแถแแแทแแถแ</b> - แแถแแแถแโแแถโแแถแแแทแแถแโย แ <b>แแธแแถแแโ</b> แแฝแแแโแแแแ แถแโแแแแปแโแแแแแแโ"
"แแ
แแ
แปแแแแแแโแแโแแถแแแถแโแแแโแแแแปแโแ
แถแแโแแแแพแโแแทแแถแโย แ แขแแแโแแแแ แแโแแถโแแแขแถแแแถแแแถแโแแทแแถแแแแโแ
แปแ
โแแแผแแปแโ <b>แแแแ
แถแ</"
"b>ย แ </li><li><b>แแถแแแแขแถแโ</b> - แแถแแแถแโแแ
แแ
แปแแแแแแโแแแแผแโแแถแแแแขแถแโโแ แแแขแถแโแแถแแแถแโ "
"แแถแแแถแแแถแแแถโแแแถแแแแแแโแแธโแแถแแแทแแถแโโแ แ
แปแ
โแแแผแแปแโ <b>แแแแพโแแแแ</b> แฌโ <b>แ
แถแแแแแแพแโแกแพแโแแทแโ</b> แแพแแแแธโ"
"แแแแพโแแแแโแแถแแแถแโแแทแแถแโแฌโแ
แปแ
โ <b>แแแโแแแแแโ</b> แแพแแแแธโแแแแถแแแแธโแแถแแแถแโแ
แปแแแแแแโแแแแปแโแแแแแธย แ </"
"li><li><b>แแแแ
แแโ</b> -แแถแแแถแโแแทแแถแโแแถแโแแแแ
แแโย แ แแแโแแแโแแถแแแถแโแแธแแธแแแถแโแแแแ
แแโ แ แพแโแแถแแแถแโแแฝแโแแนแ "
"แแแแผแโแแถแโแแปแโโแ แขแแแโแแแแ แแโแแถโแ
แปแ
โ <b>แ
แถแแแแแแพแโแกแพแโแแทแโ</b> แแพแแแแธแแแแพแแถแแแถแโแแแโแแแแโแแแโ โแ </li></"
"ul><em>แ
แแแถแโ</em>ย แ แแถแโ แแถแแแแแแถแโ แแทแโแขแแแแแแโแแแแแแทแแธโแขแถแโแแทแแแแแโแแทแโแแถแโแแแ
แกแพแโแแแแปแโแแแแแธโแแแโแแย แ "
"แแแแแแถแโแแแแแแโแแผแโแแพแโแแแแแ
แแโย แ </p>"
#: kttsjobmgr/kttsjobmgr.cpp:176
msgid "Hold"
msgstr "แแแแ
แถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:178
msgid ""
"<p>Changes a job to Paused state. If currently speaking, the job stops "
"speaking. Paused jobs prevent jobs that follow them from speaking, so "
"either click <b>Resume</b> to make the job speakable, or click <b>Later</b> "
"to move it down in the list.</p>"
msgstr ""
"<p>แแแแถแแแแแแผแโแแถแแแถแโแแ
โแแแถแโแแแขแถแย แ แแพโแแแแปแโแแทแแถแโแแแแธแ แแถแแแถแโแแแโแแทแแถแย แ แแถแแแถแโแแแโแแแขแถแโ"
"แแถแแแถแโแแถแแแถแโแแแโแแแแพโแแถแโแแแแแโแแถแโแแทแแถแ แแผแ
แแแแแ
แปแ
<b>แแแแ</b> แแพแแแแธโแแแแพโแฒแแโแแถแแแถแโแขแถแ
โแแทแแถแโ"
"แแถแ แฌโแ
แปแ
<b>แแแโแแแแแ</b> แแพแแแแธโแแแแถแแแแธโแแถโแ
แปแโแแแแปแโแแแแแธย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:185 kttsmgr/kttsmgr.cpp:186
msgid "Resume"
msgstr "แแแแ"
#: kttsjobmgr/kttsjobmgr.cpp:187
msgid ""
"<p>Resumes a paused job or changes a Queued job to Waiting. If the job is "
"the top speakable job in the list, it begins speaking.</p>"
msgstr ""
"<p>แแแแโแแถแแแถแโแแแโแแถแโแแแขแถแ แฌโแแแแถแแแแแแผแโแแถแแแถแโแแแโแแถแโแแถแแโแแถโแแฝแโแแ
โแแแแ
แถแย แ แแพโแแถแแแถแโแแบโแแถโแแถแแแถแโ"
"แแแโแขแถแ
โแแทแแถแโแแแแผแโแแแแปแโแแแแแธ แแถโแ
แถแแแแแแพแโแแทแแถแย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:192
msgid "R&estart"
msgstr "แ
แถแแแแแแพแโแกแพแโแแทแ"
#: kttsjobmgr/kttsjobmgr.cpp:194
msgid ""
"<p>Rewinds a job to the beginning and changes its state to Waiting. If the "
"job is the top speakable job in the list, it begins speaking.</p>"
msgstr ""
"<p>แแถแโแแโแแแแแโแแถแแแถแโแแ
โแ
แแแปแ
โแแแแผแ แแทแโแแแแถแแแแแแผแโแแแถแโแแแแโแแถโแแ
แแแโแ
แถแย แ แแพโแแถแแแถแโแแบโแแถโแแถแแแถแโแแแโ"
"แขแถแ
โแแทแแถแโแแแแผแโแแแแปแโแแแแแธ แแถโแ
แถแแแแแแพแโแแทแแถแย แ</p>"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:563 kttsjobmgr/kttsjobmgr.cpp:199
#, no-c-format
msgid "Re&move"
msgstr "แแโแ
แแ"
#: kttsjobmgr/kttsjobmgr.cpp:201
msgid ""
"<p>Deletes the job. If it is currently speaking, it stops speaking. The "
"next speakable job in the list begins speaking.</p>"
msgstr ""
"<p>แแปแโแแถแแแถแโย แ แแพโแแถโแแถแแถแแแทแแถแโแแ
แแ
แปแแแแแแโ แแถโแแแแแแโแแถแแแทแแถแโแแแแถแโย แ แแถแแแถโแแแแขแถแ
โแแทแแถแโแแแแแถแแโ"
"แแแแปแโแแแแแธโแ
แถแแแแแแพแโแแทแแถแโย โแโ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:206
msgid "&Later"
msgstr "แแแโแแแแแ"
#: kttsjobmgr/kttsjobmgr.cpp:208
msgid ""
"<p>Moves a job downward in the list so that it will be spoken later. If the "
"job is currently speaking, its state changes to Paused.</p>"
msgstr ""
"<p>แแแแถแแแแธโแแถแแแถแโแ
แปแแแแแแโแแแแปแโแแแแแธโ แแผแ
แแแแโแแถโแแนแโแแทแแถแโแแแโแแแแแย แ แแพโแแถแแแถแโแแถโแแถแแแทแแถแโแแ
แแ
แปแแแแแแโ "
"แแแถแโแแแแโแแถโแแแแถแแแแแแผแโแแ
โแแแขแถแโย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:214
msgid "Pre&vious Part"
msgstr "แแแแแโแแปแโ"
#: kttsjobmgr/kttsjobmgr.cpp:216
msgid "<p>Rewinds a multi-part job to the previous part.</p>"
msgstr "<p>แแถแโแแโแแแแแโแแถแแแถแโแ
แแแพแโแแแแแโแแ
โแแแแแโแแปแโแแทแย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:220
msgid "&Previous Sentence"
msgstr "แแแแแแโแแปแโ"
#: kttsjobmgr/kttsjobmgr.cpp:222
msgid "<p>Rewinds a job to the previous sentence.</p>"
msgstr "<p>แแถแโแแโแแแแแโแแถแแแถแโแแ
แแถแแโแแแแแแโแแปแย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:226
msgid "&Next Sentence"
msgstr "แแแแแแโแแแแแถแแ"
#: kttsjobmgr/kttsjobmgr.cpp:228
msgid "<p>Advances a job to the next sentence.</p>"
msgstr "<p>แแถแแแถแโแแแแแทแโแแแแแโแแ
โแแแแแถแแโแแแแแแโแแแแแถแแย แโ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:232
msgid "Ne&xt Part"
msgstr "แแแแแโแแแแแถแแโ"
#: kttsjobmgr/kttsjobmgr.cpp:234
msgid "<p>Advances a multi-part job to the next part.</p>"
msgstr "<p>แแถแแโแแแแแทแโแแแแแโแแถแแแถแโแแแแแโแ
แแแพแโแแ
โแแแแแโแแแแแถแแย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:239
msgid "&Speak Clipboard"
msgstr "แแแแถแโแแแแแแโแแแแถแแโแแทแแถแ"
#: kttsjobmgr/kttsjobmgr.cpp:241
msgid ""
"<p>Queues the current contents of the clipboard for speaking and sets its "
"state to Waiting. If the job is the topmost in the list, it begins "
"speaking. The job will be spoken by the topmost Talker in the <b>Talkers</"
"b> tab.</p>"
msgstr ""
"<p>แแถแแทแแถโแแแแถแแโแแแแแแแแถโแแ
แแ
แปแแแแแแโแแโแแแแถแแแแแแแโแแแแถแแโแแถแแแทแแถแโ แแทแโแแแแแโแแแแถแแแถแโแแแแโแแถโแแพแแแแธแแแแ
แถแโโแ "
"แแพโแแถแแแถแโแแแแทแโแแ
โแแปแโแแแแผแโแแโแแแแปแโแแแแแธโ แแถโแ
แถแแโแแแแพแโแแทแแถแโย แ แแถแแแถแโแแนแ แแแแผแโแแถแโแแทแแถแโแแแโแขแแแโแแทแแถแโแแแแแโ"
"แแถแโแแโแแแแปแโ<b>แแแแถแแโแขแแแโแแทแแถโแ</b> ย แโ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:247
msgid "Spea&k File"
msgstr "แฏแแแถแโแแทแแถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:249
msgid ""
"<p>Prompts you for a file name and queues the contents of the file for "
"speaking. You must click the <b>Resume</b> button before the job will be "
"speakable. The job will be spoken by the topmost Talker in the <b>Talkers</"
"b> tab.</p>"
msgstr ""
"<p>แแแแขแแโแแแแ
แผแโแแแแแโแฏแแแถแโ แแทแโแฏแแแถแโแแแแถแแโแแถแแทแแถโแแแแแถแแโแแถแแแทแแถแโย แ แขแแแโแแแแผแโแแโแ
แปแ
โแแแผแแปแโ <b>แแแแพโแแแแโ</"
"b>แแปแโแแถแแแถแโแแแโแขแถแ
โแแทแแถแโแแถแโย แ แแถแแแถแโแขแถแ
โแแทแแถแโแแถแแขแแแแแทแแถแโแแถแโแแแแถแแโแแปแโแแโแแแแปแโ <b>แแแแถแแโแขแแแโ"
"แแทแแถแโ</b> โย แโ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:255
msgid "Change Talker"
msgstr "แแแแถแแแแแแผแโแขแแแโแแทแแถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:257
msgid ""
"<p>Prompts you with a list of your configured Talkers from the <b>Talkers</"
"b> tab. The job will be spoken using the selected Talker.</p>"
msgstr ""
"<p>แแแแขแแโแแแแ
แผแโแแแโแแถแโแแแแแธโแขแแแโแแทแแถแโแแถแแแแแแโแแ
แแถแแแแแแแแโแแแแโแขแแแโแแธโแแแ <b>แขแแแแแทแแถแโ</b> ย แ "
"แแถแแแถแโโแแนแโแแถแโแแแแผแโแแทแแถแโแแแโแแแแพแโแขแแแโแแทแแถแโย แโ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:262
msgid "&Refresh"
msgstr "แแแแพโแฒแแโแแแแแโ"
#: kttsjobmgr/kttsjobmgr.cpp:264
msgid "<p>Refresh the list of jobs.</p>"
msgstr "<p>แแแแพโแฒแแโแแแแแโแแแแแธโแแถแแแถแย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:278
msgid "Current Sentence"
msgstr "แแแแแแโแแ
แแ
แปแแแแแแโ"
#: kttsjobmgr/kttsjobmgr.cpp:288
msgid "<p>The text of the sentence currently speaking.</p>"
msgstr "<p>แขแแแแแโแแโแแแแแแโแแแโแแทแแถแโแแ
แแ
แปแแแแแแย แ</p>"
#: kttsjobmgr/kttsjobmgr.cpp:585 kttsmgr/kttsmgr.cpp:251
msgid "Queued"
msgstr "แแแโแแถแแโแแฝแ"
#: kttsjobmgr/kttsjobmgr.cpp:586 kttsmgr/kttsmgr.cpp:252
msgid "Waiting"
msgstr "แแแแ
แถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:587 kttsmgr/kttsmgr.cpp:253
msgid "Speaking"
msgstr "แแถแโแแทแแถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:588 kttsmgr/kttsmgr.cpp:254
msgid "Paused"
msgstr "แแถแโแแแขแถแโ"
#: kttsjobmgr/kttsjobmgr.cpp:589 kttsmgr/kttsmgr.cpp:255
msgid "Finished"
msgstr "แแถแโแแแแ
แแโ"
#: kttsjobmgr/kttsjobmgr.cpp:590 kttsmgr/kttsmgr.cpp:256
#: plugins/festivalint/festivalintconf.cpp:314
#: plugins/festivalint/festivalintconf.cpp:519
msgid "Unknown"
msgstr "แแทแโแแแแถแแโ"
#: kttsmgr/kttsmgr.cpp:49
msgid "Start minimized in system tray"
msgstr "แ
แถแแแแแแพแโแแแแแฝแโแขแแแแแแแถโแแแแปแโแแถแโแแแแแแแแ"
#: kttsmgr/kttsmgr.cpp:51
msgid "Exit when speaking is finished and minimized in system tray"
msgstr "แแทแโแแแโแแทแแถแโแแแแผแโแแถแโแแแแ
แแ แแทแโแแแแแฝแโแขแแแแแแแถโแแแแปแโแแถแโแแแแแแแแ"
#: kttsmgr/kttsmgr.cpp:59
msgid "KTTSMgr"
msgstr "KTTSMgr"
#: kttsmgr/kttsmgr.cpp:60
msgid "Text-to-Speech Manager"
msgstr "แแแแแแทแแธโแแแแแแแแแโแขแแแแแโแแแแแถแแโแแทแแถแโ"
#: kttsmgr/kttsmgr.cpp:89
msgid "TDE Text-to-Speech Manager"
msgstr "แแแแแแทแแธแแแแแแแแแโแแแแแถแแโแแทแแถแ TDE"
#: kttsmgr/kttsmgr.cpp:156
msgid "<qt>Text-to-Speech Manager"
msgstr "แขแแแแแโแแแแแถแแโแแทแแถแ TDE"
#: kttsmgr/kttsmgr.cpp:182
msgid "&Speak Clipboard Contents"
msgstr "แแถแแทแแถโแแแแถแโแแแแแแโแแแแถแแโแแแแปแโแแถแโแแทแแถแ"
#: kttsmgr/kttsmgr.cpp:184
msgid "&Hold"
msgstr "แแถแแโ"
#: kttsmgr/kttsmgr.cpp:189
msgid "KTTS &Handbook"
msgstr "แแแแแ
โแแโแแแแ KTTS"
#: kttsmgr/kttsmgr.cpp:191
msgid "&About KTTSMgr"
msgstr "แขแแแธโ KTTSMgr"
#: kttsmgr/kttsmgr.cpp:262
msgid "Text-to-Speech System is not running"
msgstr "แแแแแแแแโแขแแแแแโแแแแแถแแโแแทแแถแโแแทแโแแแแปแโแแแโแแโ"
#: kttsmgr/kttsmgr.cpp:264
#, c-format
msgid ""
"_n: 1 job\n"
"%n jobs"
msgstr "%n แแปแแแถแ"
#: kttsmgr/kttsmgr.cpp:275
msgid ", current job %1 at sentence %2 of %3 sentences"
msgstr ", แแถแแแถแโแแ
แแ
แปแแแแแแโ %1 แแแแปแโแแแแแแ %2 แแโแแแแแแ %3"
#: libkttsd/notify.cpp:49
msgid "Speak event name"
msgstr "แแแแแโแแแแนแแแแทแแถแแแโแแทแแถแ"
#: libkttsd/notify.cpp:50
msgid "Speak the notification message"
msgstr "แแทแแถแโแแถแโแแถแโแแผแโแแแแนแโ"
#: libkttsd/notify.cpp:51
msgid "Do not speak the notification"
msgstr "แแปแโแแทแแถแโแแถแโแแผแโแแแแนแโ"
#: libkttsd/notify.cpp:52
msgid "Speak custom text:"
msgstr "แแทแแถแโแขแแแแแโแแแแถแแโแแแแฝแโย แโ"
#: libkttsd/notify.cpp:106
msgid "none"
msgstr "แแแแถแ"
#: libkttsd/notify.cpp:107
msgid "notification dialogs"
msgstr "แแแแขแแโแแถแโแแผแโแแแแนแโ"
#: libkttsd/notify.cpp:108
msgid "passive popups"
msgstr "แแแแขแแโแแแ
แกแพแโแขแแแแแโ"
#: libkttsd/notify.cpp:109
msgid "notification dialogs and passive popups"
msgstr "แแแแขแแโแแถแโแแผแโแแแแนแโ แแทแโแแแแขแแโแแแ
โแกแพแโแขแแแแแ"
#: libkttsd/notify.cpp:110
msgid "all notifications"
msgstr "แแถแโแแผแโแแแแนแโแแถแแแขแแโ"
#: libkttsd/pluginproc.cpp:184
msgid "Local"
msgstr "แแผแแแแแถแโ"
#: libkttsd/pluginproc.cpp:188
msgid "Latin1"
msgstr "แกแถแแถแแโ แก"
#: libkttsd/pluginproc.cpp:189
msgid "Unicode"
msgstr "แแผแแธแแผแโ"
#: libkttsd/talkercode.cpp:227
msgid ""
"_: full country name\n"
"United States of America"
msgstr "แแ แแแแโแขแถแแแแทแ
โ"
#: libkttsd/talkercode.cpp:228
msgid ""
"_: abbreviated country name\n"
"USA"
msgstr "USA"
#: libkttsd/talkercode.cpp:229
msgid ""
"_: full country name\n"
"United Kingdom"
msgstr "แ
แแแแแโแขแแแแแแแโ"
#: libkttsd/talkercode.cpp:230
msgid ""
"_: abbreviated country name\n"
"UK"
msgstr "UK"
#: libkttsd/talkercode.cpp:242 libkttsd/talkercode.cpp:251
msgid "male"
msgstr "แแแแปแโ"
#: libkttsd/talkercode.cpp:244 libkttsd/talkercode.cpp:253
msgid "female"
msgstr "แแแแธโ"
#: libkttsd/talkercode.cpp:246 libkttsd/talkercode.cpp:255
msgid ""
"_: neutral gender\n"
"neutral"
msgstr "แขแแแแถแแแแนแ"
#: libkttsd/talkercode.cpp:262 libkttsd/talkercode.cpp:271
msgid ""
"_: medium sound\n"
"medium"
msgstr "แแแแแโ"
#: libkttsd/talkercode.cpp:264 libkttsd/talkercode.cpp:273
msgid ""
"_: loud sound\n"
"loud"
msgstr "แแแแถแแแ"
#: libkttsd/talkercode.cpp:266 libkttsd/talkercode.cpp:275
msgid ""
"_: soft sound\n"
"soft"
msgstr "แแแโ"
#: libkttsd/talkercode.cpp:282 libkttsd/talkercode.cpp:291
msgid ""
"_: medium speed\n"
"medium"
msgstr "แแแแแโ"
#: libkttsd/talkercode.cpp:284 libkttsd/talkercode.cpp:293
msgid ""
"_: fast speed\n"
"fast"
msgstr "แแฟแโ"
#: libkttsd/talkercode.cpp:286 libkttsd/talkercode.cpp:295
msgid ""
"_: slow speed\n"
"slow"
msgstr "แแบแโ"
#: players/artsplayer/artsplayer.cpp:79
msgid "Cannot find the aRts soundserver."
msgstr "แแทแโแขแถแ
โแแโแแพแโแแแถแแแธแโแแแแแพโแแแกแแ aRts"
#: players/artsplayer/artsplayer.cpp:235
msgid ""
"Connecting/starting aRts soundserver failed. Make sure that artsd is "
"configured properly."
msgstr ""
"แแถแโแแแแแถแแ/แ
แถแแแแแแพแโแแถแแแธแโแแแแแพแโแแแกแแ aRts แแถแโแแแถแแแย แ แแผแโแแแแถแแโแแถ artsd แแแแผแโแแถแโแแแแแโแแ
แแถโ"
"แแแแแแแแโแแแถแโแแแแนแแแแแผแย แ"
#: plugins/command/commandconf.cpp:164 plugins/epos/eposconf.cpp:230
#: plugins/flite/fliteconf.cpp:151 plugins/freetts/freettsconf.cpp:179
#: plugins/hadifix/hadifixconf.cpp:343
msgid "Testing."
msgstr "แแถแแแถแแแแแ"
#: plugins/festivalint/festivalintconf.cpp:406
msgid "Scanning... Please wait."
msgstr "แแแแปแโแแแแแโ... แแผแโแแแแ
แถแโแ"
#: plugins/festivalint/festivalintconf.cpp:421
msgid "Query Voices"
msgstr "แแแกแแโแแแแฝแ"
#: plugins/festivalint/festivalintconf.cpp:422
msgid ""
"Querying Festival for available voices. This could take up to 15 seconds."
msgstr "แแฝแโ Festival แ
แแแแโแแแกแแโแแแโแแถแย แ แแแโแขแถแ
โแ
แแแถแโแแแโแแแโ แกแฅ แแถแแธย แโ"
#: plugins/festivalint/festivalintconf.cpp:578
msgid ""
"Testing. MultiSyn voices require several seconds to load. Please be "
"patient."
msgstr "แแถแแแถแแแแโแโย แ แแแกแแ MultiSyn แแถแแแถแโแแธแแฌ แแธแแถแแธโแแแแแถแแโแแแแปแโย แ แแผแโแขแแแแแแแโแแแแแทแ
โย แโ"
#: plugins/freetts/freettsconf.cpp:96
msgid ""
"Unable to locate freetts.jar in your path.\n"
"Please specify the path to freetts.jar in the Properties tab before using "
"TDE Text-to-Speech"
msgstr ""
"แแทแแขแถแ
โแแแแธแแถแแ freetts.jar แแ
แแแแปแโแแแแผแโแแแแแขแแแโแแถแแแย แ\n"
"แแผแโแแแแแถแแโแแแแผแโแแ
freetts.jar แแ
แแแแปแโแแแแถแแโแแแแแแแแแแแแแแท แแปแแแแแแแแพTDE Text-to-Speech"
#: plugins/freetts/freettsconf.cpp:96
msgid "TDE Text-to-Speech"
msgstr "TDE Text-to-Speech"
#: plugins/hadifix/hadifixconf.cpp:95
msgid "Male voice \"%1\""
msgstr "แแแกแแโแแปแแ \"%1\""
#: plugins/hadifix/hadifixconf.cpp:97 plugins/hadifix/hadifixconf.cpp:100
msgid "Female voice \"%1\""
msgstr "แแแกแแโแแแแแแธ \"%1\""
#: plugins/hadifix/hadifixconf.cpp:102 plugins/hadifix/hadifixconf.cpp:103
msgid "Unknown voice \"%1\""
msgstr "แแแกแแโแแทแโแแแแถแแ \"%1\""
#: plugins/hadifix/hadifixconf.cpp:216
msgid "This plugin is distributed under the terms of the GPL v2 or later."
msgstr "แแแแแแทแแธโแแแแฝแโแแแโแแแแผแโแแถแโแ
แแแ
แถแโแแแแแโแแแแแแแแโแแ GPL v2 แฌโแแแแแโแแแย แ"
#: plugins/hadifix/hadifixconf.cpp:300
msgid "Voice File - Hadifix Plugin"
msgstr "แฏแแแถแโแแแกแแ - แแแแแแทแแธโแแแแฝแ Hadifix"
#: plugins/hadifix/voicefileui.ui.h:27
msgid "The gender of the voice file %1 could not be detected."
msgstr "แแแโแแโแฏแแแถแโแแแกแแ %1 แแทแโแขแถแ
โแแแแผแโแแถแโแแโแแพแโแแย แ"
#: plugins/hadifix/voicefileui.ui.h:28 plugins/hadifix/voicefileui.ui.h:33
msgid "Trying to Determine the Gender - Hadifix Plug In"
msgstr "แแแแปแโแแแแถแแถแโแแแแแโแแแ - แแแแแแทแแธโแแแแฝแ Hadifix"
#: plugins/hadifix/voicefileui.ui.h:32
msgid "The file %1 does not seem to be a voice file."
msgstr "แฏแแแถแโ %1 แ แถแแแแธแแผแ
แแถโแแทแโแแแโแแถโแฏแแแถแโแแแกแแโแกแพแโย แโ"
#: plugins/festivalint/voices:14 plugins/festivalint/voices:26
#: plugins/festivalint/voices:508 plugins/festivalint/voices:532
#: plugins/festivalint/voices:556 plugins/festivalint/voices:580
#: plugins/festivalint/voices:616
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Male"
msgstr "แแแแปแโแขแถแแแแทแ
โ"
#: plugins/festivalint/voices:38
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Female, MBROLA"
msgstr "แแแแธโแขแถแแแแทแ
MBROLA"
#: plugins/festivalint/voices:50 plugins/festivalint/voices:62
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Male, MBROLA"
msgstr "แแแแปแโแขแถแแแแทแ
MBROLA"
#: plugins/festivalint/voices:74 plugins/festivalint/voices:86
#: plugins/festivalint/voices:628
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"British Male"
msgstr "แแแแปแโแขแแแแแแแ"
#: plugins/festivalint/voices:98
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Castilian Spanish Male"
msgstr "แแแแปแโแขแแแแแแถแโแแถแแแแธแ"
#: plugins/festivalint/voices:110 plugins/festivalint/voices:158
#: plugins/festivalint/voices:170
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Male, HTS"
msgstr "แแแแปแโแขแถแแแแทแ
โ HTS"
#: plugins/festivalint/voices:122
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Female, HTS"
msgstr "แแแแธโแขแถแแแแทแ
HTS"
#: plugins/festivalint/voices:134
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Canadian English Male, HTS"
msgstr "แแแแปแโแแแแถแแทโแแถแแถแแถโ แแทแโแขแแแแแแแโ"
#: plugins/festivalint/voices:146
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Scottish Male, HTS"
msgstr "แแแแปแโแแแแถแแทโแแแแปแแแโ HTS"
#: plugins/festivalint/voices:182
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Canadian English Male, MultiSyn"
msgstr "แแแแปแโแแแแถแแทโแแถแแถแแถโโแขแแแแแแแโ MultiSyn"
#: plugins/festivalint/voices:194
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Scottish Male, MultiSyn"
msgstr "แแแแปแโแแแแถแแทโแแแแปแแแโ MultiSyn"
#: plugins/festivalint/voices:206 plugins/festivalint/voices:230
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"German Female, Festival"
msgstr "แแแแแแธโแแแแถแแทโแขแถแแแแบแแแแ Festival"
#: plugins/festivalint/voices:218
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"German Male, Festival"
msgstr "แแแแปแโแขแถแแแแบโแแแแ Festival"
#: plugins/festivalint/voices:242
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Mexican Spanish Male, OGC"
msgstr "แแแแปแโแขแแแแแแถแโแแแทแ
แแแทแ
OGC"
#: plugins/festivalint/voices:254
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Mexican Spanish Female, OGC"
msgstr "แแแแแแธโแขแแแแแแถแโแแแทแ
แแแทแ
โ OGC"
#: plugins/festivalint/voices:266 plugins/festivalint/voices:278
#: plugins/festivalint/voices:290 plugins/festivalint/voices:326
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Male, OGC"
msgstr "แแแแปแโแขแถแแแแทแ
โ OGC"
#: plugins/festivalint/voices:302 plugins/festivalint/voices:338
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Female, OGC"
msgstr "แแแแแแธโแขแถแแแแทแ
โ OGC"
#: plugins/festivalint/voices:314
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"British Male, OGC"
msgstr "แแแแปแโแ
แแแแแโแขแแแแแแแโ OGC"
#: plugins/festivalint/voices:350
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Finnish Male"
msgstr "แแแแปแโแ แแแถแแโแกแแ"
#: plugins/festivalint/voices:362
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Czech Male, MBROLA"
msgstr "แแแแปแโแแแ MBROLA"
#: plugins/festivalint/voices:374
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Polish Male"
msgstr "แแแแปแโแแแผแกแผแโ"
#: plugins/festivalint/voices:386
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Russian Male"
msgstr "แแแแปแโแแปแแแแแธโ"
#: plugins/festivalint/voices:398 plugins/festivalint/voices:434
#: plugins/festivalint/voices:446
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Italian Male"
msgstr "แแแแปแโแขแแธแแถแแธโ"
#: plugins/festivalint/voices:410 plugins/festivalint/voices:422
#: plugins/festivalint/voices:458
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Italian Female"
msgstr "แแแแแแธโแขแแธแแถแแธ"
#: plugins/festivalint/voices:470
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Kiswahili Male"
msgstr "แแแแปแโแแธแแแแถแ แแธแแธ"
#: plugins/festivalint/voices:484
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Ibibio Female"
msgstr "แแแแธโแขแแธแแแธแแแแแผโ"
#: plugins/festivalint/voices:496
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Zulu Male"
msgstr "แแแแปแโแ แแแแผแแผ"
#: plugins/festivalint/voices:520 plugins/festivalint/voices:544
#: plugins/festivalint/voices:568 plugins/festivalint/voices:592
#: plugins/festivalint/voices:604
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"American Female"
msgstr "แแแแแแธโแขแถแแแแทแ
โ"
#: plugins/festivalint/voices:640
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"British Female"
msgstr "แแแแแแธโแ
แแแแแโแขแแแแแแแโ"
#: plugins/festivalint/voices:652
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"French Canadian Male"
msgstr "แแแแปแโแแถแแถแแถโแแถแแถแแ"
#: plugins/festivalint/voices:664
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"French Canadian Female"
msgstr "แแแแแแธโแแถแแถแแถโแแถแแถแแ"
#: plugins/festivalint/voices:676
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"German Male"
msgstr "แแแแปแโแขแถแแแแบโแแแแ"
#: plugins/festivalint/voices:688
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"German Female"
msgstr "แแแแแแธโแขแถแแแแบแแแแ"
#: plugins/festivalint/voices:700
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Americas Spanish Male"
msgstr "แแแแปแโแขแแแแแแถแโแขแถแแแแทแ
โ"
#: plugins/festivalint/voices:712
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Americas Spanish Female"
msgstr "แแแแแแธโแขแแแแแแถแโแขแถแแแแทแ
"
#: plugins/festivalint/voices:724
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Vietnamese Male"
msgstr "แแแแปแโแแแแแถแ"
#: plugins/festivalint/voices:735
#, no-c-format
msgid ""
"_: FestivalVoiceName\n"
"Vietnamese Female"
msgstr "แแแแแแธโแแแแแถแ"
#: filters/sbd/sbdconfwidget.ui:33
#, no-c-format
msgid ""
"<b>WARNING: This filter is a key component of the KTTS system. Please read "
"the KTTS Handbook before modifying these settings.</b>"
msgstr ""
"<b>แแแแแถแย แ แแแแแโแแแโแแบโแแถโแแแถแแแถแโแแผแแแโแแแแโแแแแแแแแ KTTS ย แ แแผแโแขแถแโแแแแแ
โแแโแแแแ KTTS แแปแแแแโ"
"แแแแพแแถแแแแแแแโแแถแแแแแแโแแถแแโแแแย แ</b>"
#: filters/sbd/sbdconfwidget.ui:49
#: filters/stringreplacer/stringreplacerconfwidget.ui:37
#: filters/talkerchooser/talkerchooserconfwidget.ui:37
#: filters/xmltransformer/xmltransformerconfwidget.ui:73
#, no-c-format
msgid "&Name:"
msgstr "แแแแแโย แ"
#: filters/sbd/sbdconfwidget.ui:58 filters/sbd/sbdconfwidget.ui:70
#, no-c-format
msgid "The name of this filter. Enter any descriptive name you like."
msgstr "แแแแแโแแแแแแแแแย แ แแแแ
แผแโแแแแแโแแทแแแแแถโแแแแขแแแโแ
แผแแ
แทแแแย แ"
#: filters/sbd/sbdconfwidget.ui:88
#, no-c-format
msgid "&Sentence boundary regular expression:"
msgstr "แแแแแแโแแแแแแถโแแแแโแแโแแแแแแแโแแแแแแย แ"
#: filters/sbd/sbdconfwidget.ui:97 filters/sbd/sbdconfwidget.ui:106
#, no-c-format
msgid ""
"The regular expression that detects boundaries between sentences in text "
"jobs."
msgstr "แแแแแแโแแแแแแถโแแแโแ
แถแแแแแแแแแ แแแถแโแแแแแแโแแ
แแแแปแโแแปแโแแถแโแแถโแขแแแแแย แ"
#: filters/sbd/sbdconfwidget.ui:114 filters/sbd/sbdconfwidget.ui:246
#: filters/stringreplacer/editreplacementwidget.ui:225
#: filters/stringreplacer/stringreplacerconfwidget.ui:151
#: filters/talkerchooser/talkerchooserconfwidget.ui:148
#: filters/talkerchooser/talkerchooserconfwidget.ui:221
#: kcmkttsmgr/kcmkttsmgrwidget.ui:744 libkttsd/selecttalkerwidget.ui:382
#, no-c-format
msgid "..."
msgstr "..."
#: filters/sbd/sbdconfwidget.ui:132
#, no-c-format
msgid "&Replacement sentence boundary:"
msgstr "แแถแโแแแแฝแโแแแแแแแโแแแแแแโย ย แ"
#: filters/sbd/sbdconfwidget.ui:141 filters/sbd/sbdconfwidget.ui:150
#, no-c-format
msgid ""
"This string replaces the matched regular expression. <b>Important</b>: must "
"end with tab (\\t)."
msgstr ""
"แแแแโแขแแแแโแแแ แแแแฝแโแแแแแแโแแแแแแถโแแถโแแแแแถแโแแแแผแแแแแย แ <b>แแถแแแแแแถแแ</b>ย แ แแแแผแแแโแแแแ
แแโแแแโแแแ "
"(\\t)ย แ"
#: filters/sbd/sbdconfwidget.ui:160
#: filters/stringreplacer/stringreplacerconfwidget.ui:65
#: filters/xmltransformer/xmltransformerconfwidget.ui:127
#, no-c-format
msgid "Apply This &Filter When"
msgstr "แขแแปแแแแโแแแแแโแแแโ"
#: filters/sbd/sbdconfwidget.ui:163
#: filters/stringreplacer/stringreplacerconfwidget.ui:68
#: filters/talkerchooser/talkerchooserconfwidget.ui:68
#: filters/xmltransformer/xmltransformerconfwidget.ui:130
#, no-c-format
msgid "These settings determines when the filter is applied to text."
msgstr "แแถแโแแแแแโแแถแแโแแแ แแแแแโแแ
แแแโแแแโแแแแแโแแแแผแโแแถแโแขแแปแแแแโแแ
แแถแแโแขแแแแแย แ"
#: filters/sbd/sbdconfwidget.ui:182
#, no-c-format
msgid "&Language is:"
msgstr "แแถแแถโแแบย แ"
#: filters/sbd/sbdconfwidget.ui:191 filters/sbd/sbdconfwidget.ui:238
#: filters/stringreplacer/stringreplacerconfwidget.ui:96
#: filters/stringreplacer/stringreplacerconfwidget.ui:143
#, no-c-format
msgid ""
"This filter is applied to text jobs of the specified language. You may "
"select more than one language by clicking the browse button and Ctrl-"
"clicking on more than one in the list. If blank the filter applies to all "
"text jobs of any language."
msgstr ""
"แแแแแโแแแ แแบโแแแแผแแแถแโแขแแปแแแแโแแ
แแถแแโแแปแแแถโแขแแแแแโแแโแแถแแถโแแแแแถแโแแแแแถแแย แ แขแแแแขแถแ
โแแแแพแโแ
แแแพแโแแถแโแแฝแโ"
"แแถแแถโแแแโแแแแพแแถแโแ
แปแ
แแแผแแปแ แแทแแแถแแ
แปแ
แแแแแถ(Ctrl) แแ
แแพโแแแแแธโแแพแแแแธโแแแแพแโแ
แแแพแโแแถแโแแฝแย แ แแแแแทแโแแพโแแแ "
"แแแโแแแแแโแขแแปแแแแโแแ
โแแถแแโแแปแแแถแแขแแแแแโแแถแแแขแแแแแแแแถแแถโแแถแแฝแย แ"
#: filters/sbd/sbdconfwidget.ui:200
#: filters/stringreplacer/stringreplacerconfwidget.ui:105
#: filters/talkerchooser/talkerchooserconfwidget.ui:105
#, no-c-format
msgid "Application &ID contains:"
msgstr "แแแโแแแแแถแแโแแแแแแทแแธ แแถแย แ"
#: filters/sbd/sbdconfwidget.ui:209
#: filters/stringreplacer/stringreplacerconfwidget.ui:114
#: filters/talkerchooser/talkerchooserconfwidget.ui:114
#, no-c-format
msgid ""
"Enter a DCOP Application ID. This filter will only apply to text jobs "
"queued by that application. You may enter more than one ID separated by "
"commas. If blank, this filter applies to text jobs queued by all "
"applications. Tip: Use kdcop from the command line to get the Application "
"IDs of running applications. Example: \"konversation, kvirc,ksirc,kopete\""
msgstr ""
"แแแแ
แผแโแแแแแแแแถแแโแแแแแแทแแธ DCOP ย แ แแแแแโแแแโแแนแโแแถแแแแขแแปแแแแโแแ
แแถแแโแแปแแแถแโแขแแแแแ แแแแแถแโแแถแแโแแถแแฝแโ"
"แแแโแแแแแแทแแธโแแแย แ แขแแแแขแถแ
โแแแแ
แผแโโแแแแแแแแถแแโ แ
แแแพแโแแถแโแแฝแ แ แพแโแแแแแโแแธแแแแถโแแแ แแแแแถโแแแแแย แ แแแแแทแโแแพโ"
"แแทแโแแแแแ แแแโแแแแแโแแแโแแนแโแขแแปแแแแโแแ
แแถแแโแแปแแแถแโแขแแแแแ แแแโแแถแโแแถแแแแถแแฝแแแแโแแแแแแทแแธโแแถแแแขแแย แ แแแแแแถแโ"
"แแแแฝแย แ แแแแพ kdcop แแธโแแแแแถแแแแถแแแแแแแแถแแพแแแแธโแแแฝแโแแโแแผแโแแแแแแแแถแแโแแแแแแแแแแทแแธ แแแแแแแแแแทแแธโแแแโ"
"แแแแแแแแย แ แงแแถแ แแแย แ \"konversation, kvirc,ksirc,kopete\""
#: filters/sbd/sbdconfwidget.ui:249
#: filters/stringreplacer/stringreplacerconfwidget.ui:154
#: filters/talkerchooser/talkerchooserconfwidget.ui:151
#: libkttsd/selecttalkerwidget.ui:385
#, no-c-format
msgid ""
"Click to select one or more languages. This filter will be applied to text "
"jobs of those languages."
msgstr ""
"แ
แปแ
โแแพแแแแธโแแแแพแโแแถแแถโแแฝแ แฌโแ
แแแพแย แ แแแแแโแแแโแแนแโแแแแผแโแแถแโแขแแปแแแแโโแแ
โแแถแแโแแปแแแถแโแขแแแแแโแแโแแถแแถโแแถแแแแแย แ"
#: filters/sbd/sbdconfwidget.ui:259
#: filters/stringreplacer/stringreplacerconfwidget.ui:164
#: filters/talkerchooser/talkerchooserconfwidget.ui:161
#, no-c-format
msgid ""
"<qt>Enter a DCOP Application ID. This filter will only apply to text jobs "
"queued by that application. You may enter more than one ID separated by "
"commas. Use <b>knotify</b> to match all messages sent as TDE "
"notifications. If blank, this filter applies to text jobs queued by all "
"applications. Tip: Use kdcop from the command line to get the Application "
"IDs of running applications. Example: \"konversation, kvirc,ksirc,kopete\"</"
"qt>"
msgstr ""
"แแแแ
แผแโแแแแแแแแถแแโแแแแแแทแแธ DCOP ย แ แแแแแโแแแโแแนแโแแถแแแแขแแปแแแแโแแ
แแถแแโแแปแแแถแโแขแแแแแ แแแแแถแโแแถแแโแแถแแฝแโ"
"แแแโแแแแแแทแแธโแแแย แ แขแแแแขแถแ
โแแแแ
แผแโโแแแแแแแแถแแโ แ
แแแพแโแแถแโแแฝแ แ แพแโแแแแแโแแธแแแแถโแแแ แแแแแถโแแแแแย แ แแแแแทแโแแพโ"
"แแทแโแแแแแ แแแโแแแแแโแแแโแแนแโแขแแปแแแแโแแ
โแแถแแโแแปแแแถแโแขแแแแแ แแแโแแถแโแแถแแโแแถโแแฝแโแแแโแแแแแแทแแธโแแถแแแขแแย แ แแแแแแถแโ"
"แแแแฝแย แ แแแแพ kdcop แแธโแแแแแถแแโแแถแแแโแแแแแถโแแพแแแแธโแแแฝแโแแโแแผแโแแแโแแแแแถแแโแแแแโแแแแแแทแแธ แแแแโแแแแแแทแแธโแแแโ"
"แแแแปแแแแย แ แงแแถแ แแแย แ \"konversation, kvirc,ksirc,kopete\"</qt>"
#: filters/sbd/sbdconfwidget.ui:287
#: filters/stringreplacer/stringreplacerconfwidget.ui:192
#, no-c-format
msgid "Load..."
msgstr "แแแแปแโ..."
#: filters/sbd/sbdconfwidget.ui:293
#, no-c-format
msgid "Click to load a Sentence Boundary Detection configuration from a file."
msgstr "แ
แปแ
แแพแแแแธโแแแแปแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแถแโแ
แถแแโแแโแแแแแแแโแแแแแแโแแธโแฏแแแถแย แ"
#: filters/sbd/sbdconfwidget.ui:310
#, no-c-format
msgid "Sa&ve..."
msgstr "แแแแแถโแแปแโ..."
#: filters/sbd/sbdconfwidget.ui:313
#, no-c-format
msgid "Click to save this Sentence Boundary Detection configuration to a file."
msgstr "แ
แปแ
โแแพแแแแธ แแแแแถโแแปแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแถแโแ
แถแแโแแโแแแแแแแโแแแแแแโโแแ
แแถแแโแฏแแแถแย แ"
#: filters/sbd/sbdconfwidget.ui:330
#, no-c-format
msgid "Clea&r"
msgstr "แแแแแโ"
#: filters/sbd/sbdconfwidget.ui:333
#: filters/talkerchooser/talkerchooserconfwidget.ui:293
#, no-c-format
msgid "Click to clear everything."
msgstr "แ
แปแ
โ แแพแแแแธโแแแแขแถแโแขแแแธโแแถแแแขแแย แ"
#: filters/stringreplacer/editreplacementwidget.ui:55
#, no-c-format
msgid "&Type"
msgstr "แแแแแแ"
#: filters/stringreplacer/editreplacementwidget.ui:85
#, no-c-format
msgid "&Word"
msgstr "แแถแแแ"
#: filters/stringreplacer/editreplacementwidget.ui:104
#, no-c-format
msgid "Regular &expression"
msgstr "แแแแแแโแแแแแแถ"
#: filters/stringreplacer/editreplacementwidget.ui:124
#, no-c-format
msgid "Match &case"
msgstr "แแแแธโแแแแผแ
"
#: filters/stringreplacer/editreplacementwidget.ui:158
#, no-c-format
msgid "&Replace with:"
msgstr "แแแแฝแโแแแโย แโ"
#: filters/stringreplacer/editreplacementwidget.ui:180
#, no-c-format
msgid "&Match:"
msgstr "แแแแผแแแแย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:18
#, no-c-format
msgid "Configure String Replacer"
msgstr "แแแแแโแแ
แแถโแแแแแแแแโแขแแแโแแแแฝแโโแแแแโแขแแแแ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:46
#: filters/stringreplacer/stringreplacerconfwidget.ui:55
#: filters/talkerchooser/talkerchooserconfwidget.ui:46
#: filters/talkerchooser/talkerchooserconfwidget.ui:55
#, no-c-format
msgid "Enter any name you like for this filter."
msgstr "แแแแ
แผแโแแแแแโแแถโแแฝแโแแแโแขแแแโแ
แผแแ
แทแแแโแแแแแถแแโแแแแแโแแแย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:87
#, no-c-format
msgid "Lan&guage is:"
msgstr "แแถแแถโแแบย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:198
#, no-c-format
msgid "Click to load a word list from a file."
msgstr "แ
แปแ
แแพแแแแธโแแแแปแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแถแโแ
แถแแโแแโแแแแแแแโแแแแแแโแแธโแฏแแแถแย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:215
#: filters/talkerchooser/talkerchooserconfwidget.ui:270
#: kcmkttsmgr/kcmkttsmgrwidget.ui:613
#, no-c-format
msgid "&Save..."
msgstr "แแแแแถโแแปแ..."
#: filters/stringreplacer/stringreplacerconfwidget.ui:218
#, no-c-format
msgid "Click to save word list to a file."
msgstr "แ
แปแ
โแแแแแถโแแปแโแแแแแธโแแถแแแโแแแแปแโแฏแแแถแโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:235
#, no-c-format
msgid "C&lear"
msgstr "แแแแแโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:238
#, no-c-format
msgid "Click to empty the word list."
msgstr "แ
แปแ
โแแพแแแแธโแแแแพโแฒแแโแแแแแธโแแถแแแโแแแย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:255
#, no-c-format
msgid "Type"
msgstr "แแแแแแโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:266
#, no-c-format
msgid "Match Case"
msgstr "แแแแธโแแแแผแ
"
#: filters/stringreplacer/stringreplacerconfwidget.ui:277
#, no-c-format
msgid "Match"
msgstr "แแแแผแแแแ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:288
#, no-c-format
msgid "Replace With"
msgstr "แแแแฝแโแแแโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:328
#, no-c-format
msgid "Click to add another word or regular expression to the list."
msgstr "แ
แปแ
โแแแแแแโแแถแแแโแฌ แแแแแแโแแถแแแโแแแโแแแแนแแแแแผแโแแ
โแแถแแโแแแแแธโย แโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:345
#, no-c-format
msgid "&Up"
msgstr "แกแพแโแแพโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:348
#, no-c-format
msgid ""
"Click to move selected word up in the list. Words higher in the list are "
"applied first."
msgstr "แ
แปแ
โแแแแถแแแแธโแแถแแแโแแแโแแถแแแแแพแโแกแพแโแแพโโแแแแปแโแแแแแธโย แ แแถแแแโแแแโแแ
โแแพโแแโแแแแผแโแแถแโแขแแปแแแแโแแปแโย แโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:367
#, no-c-format
msgid ""
"Click to move a word down in the list. Words lower in the list are applied "
"last."
msgstr "แ
แปแ
โแแแแถแแแแธโแแถแแแโแแแโแแถแโแแแแพแโแ
แปแโแแแแแโโแแแแปแโแแแแแธโย โโโโแ แแถแแแโแแแโแแ
โแแพโแแโแแแแผแโแแถแโแขแแปแแแแโแแแแแโแแโย แโ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:392
#, no-c-format
msgid "Click to modify an existing word or regular expression in the list."
msgstr "แ
แปแ
โแแพแแแแธโแแแแแแโแแถแแแโแแแโแแถแ แฌโแแแแแแโแแแแแแถโแแแแปแโแแแแแธย แ"
#: filters/stringreplacer/stringreplacerconfwidget.ui:417
#, no-c-format
msgid "Click to remove a word or regular expression from the list."
msgstr "แ
แปแ
โแแพแแแแธโแแโแ
แแโแแถแแแ แฌโแแแแแแโแแแแแแถโแ
แแโแแธโแแแแแธย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:18
#, no-c-format
msgid "Configure Talker Chooser"
msgstr "แแแแแโแแ
แแถโแแแแแแแแโแงแแแแแโแแแแพแโแขแแแโแแทแแถแ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:65
#, no-c-format
msgid "&Apply This Filter When"
msgstr "แขแแปแแแแโแแแแแโแแแโแแแ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:87
#, no-c-format
msgid "Te&xt contains:"
msgstr "แขแแแแแโแแถแย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:96
#: filters/talkerchooser/talkerchooserconfwidget.ui:140
#: libkttsd/selecttalkerwidget.ui:374
#, no-c-format
msgid ""
"This filter is applied to text jobs of the specified language. You may "
"select more than one language by clicking the browse button and Ctrl-"
"clicking on more than one in the list. If blank, the filter applies to all "
"text jobs of any language."
msgstr ""
"แแแแแโแแแ แแบโแแแแผแโแแถแโแขแแปแแแแโแแ
โแแถแแโแแปแแแถแโแขแแแแแโแแโแแถแแถโแแแโแแถแโแแแแแถแแย แ แขแแแแขแถแ
โแแแแพแโแ
แแแพแโแแถแโแแฝแโ"
"แแถแแถโแแแโแแแแพแแถแโแ
แปแ
แแแผแแปแ แแทแโแแถแโแ
แปแ
แแแแแถ(Ctrl) แแ
แแพโแแแแแธโแแพแแแแธโแแแแพแโแ
แแแพแโแแถแโแแฝแย แ แแแแแทแโแแพโแแแ "
"แแแโแแแแแโแขแแปแแแแโแแ
โแแถแแโแแปแแแถแโแขแแแแแโโแแถแแแขแแโแแแแโแแถแแถโแแถโแแฝแย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:189
#, no-c-format
msgid "&Talker:"
msgstr "แขแแแโแแทแแถแย แโ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:195
#: filters/talkerchooser/talkerchooserconfwidget.ui:213
#, no-c-format
msgid ""
"The new Talker that will be used when the conditions above are met. The "
"default Talker is the topmost in the Talkers tab. Click the button to "
"choose a Talker."
msgstr ""
"แขแแแโแแทแแถแโแแแแธโแแนแโแแแแผแโแแถแโแแแแพ แแแโแแแแผแโแแถแโแแแแแแแแโแแถแโแแพย แ แขแแแโแแทแแถแโแแแแถแโแแพแโแแ
โแแแแผแโแแแแปแโแแแโแขแแแโ"
"แแทแแถแย แ แ
แปแ
โแแแผแแปแโแแพแแแแธโแแแแพแโแขแแแโแแทแแถแย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:224
#, no-c-format
msgid "Click to select a Talker."
msgstr "แ
แปแ
โแแพแแแแธโแแแแพแโแขแแแโแแทแแถแย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:250
#: kcmkttsmgr/kcmkttsmgrwidget.ui:602
#, no-c-format
msgid "&Load..."
msgstr "แแแแปแโ..."
#: filters/talkerchooser/talkerchooserconfwidget.ui:253
#, no-c-format
msgid "Click to load a Talker Chooser configuration from a file."
msgstr "แ
แปแ
โแแพแแแแธโแแแแปแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแงแแแแแโแแแแพแโแขแแแโแแทแแถแโแแธโแฏแแแถแย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:273
#, no-c-format
msgid "Click to save this Talker Chooser to a file."
msgstr "แ
แปแ
โแแพแแแแธโแแแแแถโแแปแโแงแแแแแโแแแแพแโแขแแแโแแทแแถแโแแ
โแฏแแแถแย แ"
#: filters/talkerchooser/talkerchooserconfwidget.ui:290
#: kcmkttsmgr/kcmkttsmgrwidget.ui:591
#, no-c-format
msgid "Cl&ear"
msgstr "แแแแแ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:17
#, no-c-format
msgid "Configure XML Transformer"
msgstr "แแแแแแแ
แแถแแแแแแแแโแขแแแโแแแแแโ XML"
#: filters/xmltransformer/xmltransformerconfwidget.ui:36
#: filters/xmltransformer/xmltransformerconfwidget.ui:82
#, no-c-format
msgid "Enter any descriptive name you like for this filter."
msgstr "แแแแ
แผแโแแแแแโแแทแแแแแถโแแถแแฝแ แแแแขแแแโแ
แแโแแแแพโแแแแแถแแโแแแแแโแแแย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:44
#: filters/xmltransformer/xmltransformerconfwidget.ui:100
#, no-c-format
msgid ""
"Enter the full path to an XML Style Language - Transforms (XSLT) stylesheet "
"file. XSLT files usually end with extension .xsl."
msgstr ""
"แแแแ
แผแโแแแแผแโแแแแแแโแแ
แฒแแ แแถแแถโแแ
แแถแแแแแโXML - แแแแแแฏแแถแโแแแแแ
โแแแแแธ (XSLT)ย แ แฏแแแถแ XSLT "
"แแถแแแแแแถโแแแแ
แแโแแแโแแถแแแโแแแแแแ .xslย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:52
#, no-c-format
msgid "xsltproc"
msgstr "xsltproc"
#: filters/xmltransformer/xmltransformerconfwidget.ui:55
#: filters/xmltransformer/xmltransformerconfwidget.ui:117
#, no-c-format
msgid ""
"Enter the path to the xsltproc executable program. If it is in the PATH "
"environment variable, just enter \"xsltproc\"."
msgstr ""
"แแแแ
แผแโแแแแผแโแแ
โแแแแแแทแแธโแแแแขแถแ
โแแแแแทแแแแแทโ xsltprocย แ แแแแแทแแแพโแแถโแแ
แแแแปแแขแแแโแแแทแแแแถแ PATH โแแบแแแแถแแแแโ"
"แแแแ
แผแแแ \"xsltproc\" แแแปแแแแแย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:91
#, no-c-format
msgid "&XSLT file:"
msgstr "แฏแแแถแโXSLT ย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:108
#, no-c-format
msgid "xsltproc &executable:"
msgstr "xsltproc แแแแขแถแ
โแ
แผแโแแแแแทแแแแแทโแแถแย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:149
#: filters/xmltransformer/xmltransformerconfwidget.ui:192
#, no-c-format
msgid ""
"This filter will be applied only to text having the specified XML root "
"element. If blank, applies to all text. You may enter more than one root "
"element separated by commas. Example: \"html\"."
msgstr ""
"แแแแแโแแแ แแนแโแแแแผแแแถแโแขแแปแแแแโแแโแแ
แแถแแแขแแแแแโแแแแแถแโแแถแแปโแแโ XML แแแโแแถแโแแแแแถแแย แ แแแแแทแโแแพโแแแ แแแโ"
"แแถโแขแแปแแแแโแแ
โแแถแแโแขแแแแแโแแโแแถแแแถแโแแถแแแขแแย แ แขแแแโแขแถแ
โแแแแ
แผแโโแแถแแป Root โแ
แแแพแโแแถแโแแฝแ แแแโแแแแพแแถแโแแแแแโ"
"แแแโแแแแแถโแแแแแย แ แงแแถแ แแแย แ \"html\"ย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:157
#: filters/xmltransformer/xmltransformerconfwidget.ui:210
#, no-c-format
msgid ""
"This filter will be applied only to text having the specified DOCTYPE "
"specification. If blank, applies to all text. You may enter more than one "
"DOCTYPE separated by commas. Example: \"xhtml\"."
msgstr ""
"แแแแแโแแแ แแนแโแแแแผแโแแถแโแขแแปแแแแโแแโแแ
แแถแแโแขแแแแแโแแแแแถแโแแถแโแแแแแถแแโแแแแขแทแโแขแแแธโแแแ
แแแแธโแแแแแถแแ DOCTYPEย แ "
"แแแแแทแโแแพโแแถโแแแ แแแโแแถโแขแแปแแแแโแแ
โแแถแแโแขแแแแแโแแโแแถแแแถแย แ แขแแแแขแถแ
โแแแแ
แผแโ DOCTYPE แ
แแแพแโแแถแโแแฝแ แแแโ"
"แแแแแโแแธโแแแแถโแแแโแแแแแถโแแแแแย แ แงแแถแ แแแย แ \"xhtml\"ย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:165
#: filters/xmltransformer/xmltransformerconfwidget.ui:227
#, no-c-format
msgid ""
"<qt>Enter a DCOP Application ID. This filter will only apply to text queued "
"by that application. You may enter more than one ID separated by commas. "
"Use <b>knotify</b> to match all messages sent as TDE notifications. If "
"blank, this filter applies to text queued by all applications. Tip: Use "
"kdcop from the command line to get the Application IDs of running "
"applications. Example: \"konversation, kvirc,ksirc,kopete\"</qt>"
msgstr ""
"แแแแ
แผแโแแแโแแแแแถแแโแแแแแแทแแธ DCOP ย แ แแแแแโแแแโแแนแโแแถแโแแแขแแปแแแแโแแ
แแถแแโแขแแแแแ แแแโแแถแโแแถแแโแแถโแแฝแโแแแโ"
"แแแแแแทแแธโแแแย แ แขแแแโแขแถแ
โแแแแ
แผแโโแแแโแแแแแถแแโ แ
แแแพแโแแถแโแแฝแ แ แพแโแแแแแโแแธโแแแแถโแแแ แแแแแถโแแแแแย แ แแแแแทแโแแพโแแทแโ"
"แแแแแ แแแโแแแแแโแแแโแแนแโแขแแปแแแแโแแ
โแแถแแโแแปแแแถแโแขแแแแแ แแแโแแถแโแแถแแโแแถโแแฝแโแแแโแแแแแแทแแธโแแถแแแขแแย แ แแแแแแถแโ"
"แแแแฝแย แ แแแแพ kdcop แแธโแแแแแถแแโแแถแแแโแแแแแถโแแพแแแแธโแแแฝแโแแโแแผแโแแแโแแแแแถแแโแแแแโแแแแแแทแแธ แแแแแแแแทแแธโแแแโแแแแแแแแย แ "
"แงแแถแ แแแย แ \"konversation, kvirc,ksirc,kopete\"</qt>"
#: filters/xmltransformer/xmltransformerconfwidget.ui:183
#, no-c-format
msgid "&Root element is:"
msgstr "แแถแแป Root แแบย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:201
#, no-c-format
msgid "or DOC&TYPE is:"
msgstr "แฌ DOCTYPE แแบย แ"
#: filters/xmltransformer/xmltransformerconfwidget.ui:218
#, no-c-format
msgid "and Application &ID contains:"
msgstr "แแทแโแแแโแแแแแถแแโแแแแแแทแแธโแแถแย แ"
#: kcmkttsmgr/addtalkerwidget.ui:49 kcmkttsmgr/addtalkerwidget.ui:104
#, no-c-format
msgid "Select the speech synthesizer to do the speaking."
msgstr "แแแแพแโแแทแแถแโแแพแแแแธโโแแถแแแทแแถแโย แ"
#: kcmkttsmgr/addtalkerwidget.ui:69 kcmkttsmgr/addtalkerwidget.ui:209
#, no-c-format
msgid ""
"Select the language to be spoken. Note that after you configure a Talker, "
"your chosen Language may be overridden by the synthesizer, depending upon "
"the options you choose."
msgstr ""
"แแแแพแโแแถแแถแโแแแแแถแแโแแทแแถแโย แ แ
แแแถแโแแถ แแแแแถแแโแแธโแขแแแโแแแแแแแ
แแถแแแแแแแแโแขแแแโแแทแแถแโแแถแแถโแแแโแขแแแโแแถแโแแแแพแโแแแแ แแโ"
"แแถแแแทแแแโแแแโแขแแแโแแแแแแแแโ แแบแแถโแขแถแแแแแโแแพโแแแแแพโแแแแโแขแแแโแแถแโแแแแพโแย แ"
#: kcmkttsmgr/addtalkerwidget.ui:95 libkttsd/selecttalkerwidget.ui:141
#, no-c-format
msgid "&Synthesizer:"
msgstr "แงแแแแแโแแแแแแแแโย แ"
#: kcmkttsmgr/addtalkerwidget.ui:186
#, no-c-format
msgid "Show All"
msgstr "แแแแ แถแโแแถแแแขแแโ"
#: kcmkttsmgr/addtalkerwidget.ui:192
#, no-c-format
msgid ""
"The radio buttons below determine which box shows all possibilities. The "
"box to the left of the checked button shows all possibilities. The box to "
"the left of the unchecked box only shows those possibilities that match the "
"other box."
msgstr ""
"แแแผแแปแโแแผแโแแ
แแถแแแแแแ แแแแแโแแแแขแแโแแถแแฝแโแฒแแโแแแแ แถแโแแแแแแถแโแแถแแแขแแย แ แแแแขแแโแแ
แแถแแแแแแโโแแแผแแปแโแแแแแถแโแแธแแแโ แแบโ"
"แแแแ แถแโแแแแแแถแโแแถแแแขแแย แ แแแแขแแโแแ
แแถแแแแแแโแแแแขแแโแแแโแแทแแแถแแแธแโแแแแบโแแแแ แถแโแแโแแแแแแถแโโโแแแแแแแผแแแแแโแแ
แแนแโ"
"แแแแขแแโแแแแแแแแย แ"
#: kcmkttsmgr/addtalkerwidget.ui:200 libkttsd/selecttalkerwidget.ui:353
#, no-c-format
msgid "&Language:"
msgstr "แแถแแถย แ"
#: kcmkttsmgr/addtalkerwidget.ui:227
#, no-c-format
msgid ""
"Check to list all the possible languages in the Language box at the left. "
"When a language has been chosen, the Synthesizer box will show only those "
"synthesizers that can speak in the chosen language."
msgstr ""
"แแผแโแแธแ แแพแแแแธโแแถแโแแถแแถโแแแแแถแโแแถแแแขแแโแแ
แแแแปแโแแแแขแแโแแถแแถโแแ
แแถแแแแแแย แ แแ
แแแโแแแแแถแแแแแพแโแแถแแถโแแถแแฝแ "
"แแแแแแแขแแโแขแแแแแแแแแแแโแแนแโแแแแ แถแโแแโแขแแแแแแแแแแแโแแถโแแแโแขแถแ
แแทแแถแโแแถแแถโแแแแแถแโแแแแพแโแแแปแแแแแย แ"
#: kcmkttsmgr/addtalkerwidget.ui:241
#, no-c-format
msgid ""
"Check this box to display all the available synthesizers in the Synthesizer "
"box to the left. When a synthesizer is chosen, only the languages that can "
"be spoken by that synthesizer appear in the Language box."
msgstr ""
"แแผแโแแธแโแแแแขแแโแแแโแแพแแแแธโแแแแ แถแโแขแแแแแแแแแแแโแแแแแถแโแแ
แแแแปแโแแแแขแแโแขแแแแแแแแแแแโแแ
แแถแแแแแแย แ "
"แแ
แแแแแแแแถแแแแแพแโแขแแแแแแแแแแแ แแบโแแถแแแโแแถแแถโแแแโแขแแแแแแแแแแแโแขแถแ
โแแทแแถแโแแถแโแแแปแแแแแโโแแแแแแแผแแแแแ แถแโ"
"แแ
แแแแปแโแแแแขแแโแแถแแถโย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:45
#, no-c-format
msgid "&General"
msgstr "แแผแแ
"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:56
#, no-c-format
msgid "&Enable Text-to-Speech System (KTTSD)"
msgstr "&Enable Text-to-Speech System (KTTSD)"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:59
#, no-c-format
msgid "Check to start the KTTS Deamon and enable Text-to-Speech."
msgstr "แแธแโแแพแแแแธโแ
แถแแโแแแแพแโแแแแทแ KTTS แ แพแโแแพโแโแขแแแแแโแแแแแถแแโแแทแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:67
#, no-c-format
msgid "Always em&bed Text-to-Speech Manager in system tray"
msgstr "แแแแแแทแแธโแแแแแแแแแโแขแแแแแโแแแโแแแแผแโแแทแแถแโแแถแโแแแแแแโแแแแปแโแแถแโแแแแแแแแโแแถแแทแ
แแ
โ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:73
#, no-c-format
msgid ""
"When checked, KTTSMgr displays an icon in the system tray, and clicking OK "
"or Cancel buttons does not stop KTTSMgr. Use system tray context menu to "
"quit KTTSMgr. This setting takes effect when KTTSMgr is next started. This "
"setting has no effect when running in the Trinity Control Center."
msgstr ""
"แแ
แแแแแแแแถแแแธแ แแแ KTTSMgr แแแแ แถแโแแผแแแแแ แถแโแแฝแโแแ
แแแแปแโแแถแแแแแแแแแ แ แพแโ แแทแโแ
แปแ
แแแผแแปแ แแแแแแแ แฌ "
"แแแแแแ แแโแแทแแแถแโแแแแแแ KTTSMgr แแย แ แแแแพโแแแบแแปแโแแแทแแโแแแแแแถแโแแแแแแแแโแแพแแแแธโแ
แถแแ
แแโแแธ KTTSMgrย แ "
"แแถแแแแแแโแแแโแแบโแแถแโแแถแแแแแแถแแโโแแแโแแถแแ
แถแแแแแแพแ KTTSMgr แแแแแแแแย แ แแโแแถแแแแแแโแแแโแแทแแแถแโแฅแแแแทแแแแโ"
"แแ
แแแโแแแโแแแแปแโแแโแแแโแแ
แแแแปแ แแถแแแแแแโแแแแถแแโแแแแฝแโแแแแ TDE แแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:123
#, no-c-format
msgid "Show &main window on startup"
msgstr "แแแแ แถแโแแแแขแฝแ
โแ
แแแแโแแ
แแแโแ
แถแแแแแแพแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:129
#, no-c-format
msgid ""
"When checked, the KTTSMgr window is displayed when KTTSMgr starts. When "
"unchecked, click on the icon in the system tray to display the KTTSMgr "
"window."
msgstr ""
"แแ
แแแแแแแแถแแแธแ แแแโแแ
แแแแ
แถแแแแแแพแ KTTSMsgr แแนแโแแแแ แถแโแแแแขแฝแ
KTTSMgrย แ แแแแแแโแแทแแแถแโแแธแ "
"แแผแโแ
แปแ
โแแพโแแผแแแแแถแโแแ
แแแแปแโแแถแแแแแแแแแแแพแแแแธโแแแแ แถแโแแแแขแฝแ
KTTSMgrย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:164
#, no-c-format
msgid "E&xit when speaking is finished"
msgstr "แแทแ แแแโแแถแโแแทแแถแโแแแแผแโแแถแโแแแแ
แแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:170
#, no-c-format
msgid ""
"When checked, and KTTSMgr was automatically started when speech began, "
"automatically exits when speech has finished. Does not automatically exit "
"if KTTSMgr was started manually or started from the Control Center."
msgstr ""
"แแแโแแธแโ โ KTTSMgr แแถแโแ
แถแแโแแแแพแโแแแโแแแแแแแแแแแแแทโโแแแโแแถแแแทแแถแโแแถแโแ
แถแแโแแแแพแโแ
แแโแแแโแแแแแแแแแแแแแทโแแแโแแทแแถแโ"
"แ
แแโย แ แแทแโแ
แแโแแแโแแแแแแแแแแแแแทโแแพ KTTSMgr แแถแโแ
แถแแโแแแแพแโแกแพแโแแแโแแโแฌ แแถแโแ
แถแแโแแแแพแโแแธโแแแแแแแแแโแแแแแถย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:180
#, no-c-format
msgid "Sta&rt minimized in system tray when speaking"
msgstr "แ
แถแแโแแแแพแโแแแแแฝแโแขแแแแแแแถโแแแแปแโแแถแโแแแแแแแแโแแแโแแแแปแโแแทแแถแโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:186
#, no-c-format
msgid ""
"When checked, if KTTSMgr is not already running and speech begins, starts "
"KTTSMgr and displays an icon in the system tray. <em>Note<em>: KTTSMgr only "
"automatically starts for text jobs having 5 sentences or more."
msgstr ""
"แแแแแธแโ แแพโ KTTSMgr แแทแโแแแแปแโแแแโแแ แ แพแโแแถแแแทแแถแโแแแแปแโแ
แถแแแแแแพแโ แ
แถแแโแแแแพแ KTTSMgr แ แพแโแแแแ แถแโ"
"แแผแแแแแถแโโแแแแปแโแแถแโแแแแแแแแโย แโ <em>แ
แแแถแโ<em>ย แ แแถแโแแโแ
แถแแแแแแพแโ KTTSMgr แแแโแแแแแแแแแแแแแทโโแแแแแถแแโแขแแแแแโ"
"แแแโแแถแโแฅ แแแแแแแฌ แ
แแแพแโแแถแโแแแย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:196
#, no-c-format
msgid "&Talkers"
msgstr "แขแแแโแแทแแถแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:205
#, no-c-format
msgid "ID"
msgstr "แแแโแแแแแถแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:227 libkttsd/selecttalkerwidget.ui:466
#, no-c-format
msgid "Speech Synthesizer"
msgstr "แงแแแแแโแแแแแแแแโแแถแแแทแแถแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:238 libkttsd/selecttalkerwidget.ui:477
#, no-c-format
msgid "Voice"
msgstr "แแแกแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:249 libkttsd/selecttalkerwidget.ui:488
#: plugins/hadifix/voicefileui.ui:52
#, no-c-format
msgid "Gender"
msgstr "แแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:260 libkttsd/selecttalkerwidget.ui:499
#, no-c-format
msgid "Volume"
msgstr "แแแแแทแโแแแกแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:271 libkttsd/selecttalkerwidget.ui:510
#, no-c-format
msgid "Rate"
msgstr "แขแแแแถ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:284 libkttsd/selecttalkerwidget.ui:534
#, no-c-format
msgid ""
"This is a list of all the configured Talkers. A Talker is a speech "
"synthesizer that has been configured with a language, voice, gender, "
"speaking rate, and volume. Talkers higher in the list have higher "
"priority. The topmost Talker will be used when no talker attributes have "
"been specified by an application."
msgstr ""
"แแแโแแถโแแแแแธโแขแแแโแแทแแถแโแแถแแแขแแโแแแโแแถแโแแแแแโแแ
แแถแแแแแแแแโย แ แขแแแโแแทแแถแแแถโแขแแแโแแทแแถแโแแแโแแถแโแแแแแโแแ
แแถแแแแแแแแโแแถโ"
"แแถแแถโแแแกแแโ แแแโ แขแแแแถโแแถแแแทแแถแโ แแทแโแแแแแทแโแแแกแแโย แ แขแแแแแทแแถแโโแแถแโแขแถแแทแแถแโแแแแแโแแถแโแแแแปแโแแแแแธโย แ แขแแแโแแทแแถแโ"
"แแแแแทแโแแแแผแโแแถโแ
แแแพแโ แแทแแแถแโแแแแพโแแแแแแแถแโแแปแแแแแแแโแขแแแแแทแแถแแแแโแแถแโแแแแแโแแถแโแแแแแแทแแธโย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:308 kcmkttsmgr/kcmkttsmgrwidget.ui:549
#: kcmkttsmgr/kcmkttsmgrwidget.ui:870
#, no-c-format
msgid "Add..."
msgstr "แแแแแแโ..."
#: kcmkttsmgr/kcmkttsmgrwidget.ui:314
#, no-c-format
msgid "Click to add and configure a new Talker (speech synthesizer)."
msgstr "แ
แปแ
แแพแแแแธโแแแแแแ แแทแโแแแแแโแแ
แแถแแแแแแแแโโแงแแแแแโแแทแแถแโแแแแธ (แงแแแแแโแแแแแแแแโแแถแแแทแแถแ)ย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:372
#, no-c-format
msgid "Click to configure options for the highlighted Talker."
msgstr "แ
แปแ
แแพแแแแธโแแแแแโแแ
แแถแแแแแแแแโแแแแแพแแแแแแถแแโแงแแแแแโแแทแแถแโแแแแแถแโแแแแแทแ
ย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:397
#, no-c-format
msgid "Click to remove the highlighted Talker."
msgstr "แ
แปแ
แแพแแแแธโแแโแงแแแแแโแแทแแถแโแแแแแถแโแแแแแทแ
แ
แแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:426
#, no-c-format
msgid "&Notifications"
msgstr "แแถแแแผแโแแแแนแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:452
#, no-c-format
msgid "Application/Event"
msgstr "แแแแแแทแแธ/แแแแนแแแแทแแถแแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:463
#, no-c-format
msgid "Action"
msgstr "แแแแแแแถแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:474
#, no-c-format
msgid "Talker"
msgstr "แขแแแโแแทแแถแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:493
#, no-c-format
msgid ""
"This is a list of configured application events and actions to be taken when "
"received. The \"default\" event governs all events not specifically "
"configured."
msgstr ""
"แแแโแแถโแแแแแธแแแแนแแแแทแแถแแแโแแแแแแทแแธโ แแทแโแแแแแโแแแโแแถแโแแแแแโแแพแแแแธโแฒแแโแแถแโแแแโแแแฝแโย แโ แแทแแถแแแโ \"แแแแถแแแพแโ \" แขแแแโ"
"แแแแแนแแแแทแแถแแแโแแถแแแขแแโแแแโแแทแโแแถแแโแแถแโแแแแแโแแ
แแถแแแแแแแแโแ
แแแถแแโแแถแแโย แโfigured."
#: kcmkttsmgr/kcmkttsmgrwidget.ui:517
#, no-c-format
msgid "Notifications to speak:"
msgstr "แแแ
แแแแธโแแผแโแแแแนแโแแแแแถแแโแแทแแถแโย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:523 kcmkttsmgr/kcmkttsmgrwidget.ui:531
#, no-c-format
msgid ""
"Applies only to the default event. Does not affect application-specific "
"events. Only events that display in the manner which you select will be "
"spoken."
msgstr ""
"แแถแโแแโแขแแปแแแแโแแแแนแแแแทแแถแแแโแแแแถแแแพแโย แโ แแแแถแโแฅแแแแทแแโ แแพโแแแแแแทแแธโแแแโแแแแแถแแโแแธโแแแแนแแแแทแแถแแแโย แ แแถแโแแโแแแแ แถแโ"
"แแแแนแแแแทแแถแแแโแแแแปแแแแแโแแแโแขแแแโแแแแพแแแถโแแนแโแแแแผแโแแถแแแทแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:555
#, no-c-format
msgid "Click to configure notification for a specific application event."
msgstr "แ
แปแ
โแแพแแแแธโแแแแแโแแ
แแถโแแแแแแแแโแแแ
แแแแธโแแผแโแแแแนแโแแแแแถแแโแแแแแถแแโแแธโแแแแนแแแแทแแถแแแโแแแแแแทแแธย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:566
#, no-c-format
msgid ""
"Click to remove a specific notification event from the list. You cannot "
"remove the default event."
msgstr ""
"แ
แปแ
โแแโแแแแนแแแแทแแถแแแโแแแ
แแแแธแแผแโแแแแนแโแแถแแแแถแแโแ
แแโแแธโแแแแแธโย แ แขแแแโแแทแโแขแถแ
โแแโแแแแนแแแแทแแถแแแโแแแแถแโแแพแโแ
แแโแแถแโแแโย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:594
#, no-c-format
msgid ""
"Removes all the application specific events. The default event remains."
msgstr "แแโแแแแนแแแแทแแถแแแโแแแแแแทแแธโแแถแแแแถแแโแ
แแโแแถแแแขแแย แ แแ
โแแแโแแแแนแแแแทแแถแแแโแแแแถแแแพแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:605
#, no-c-format
msgid "Click to read configured notification events from a file."
msgstr "แ
แปแ
โแแพแแแแธโแแแแปแโแแถแแแแแแโแแ
แแถแแแแแแแแโแแถแแ
แถแแแแโแแแแแแแโแแแแแแโแแธแฏแแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:616
#, no-c-format
msgid "Click to write all the configured application events to a file."
msgstr "แ
แปแ
โแแพแแแแธโแแแแแถโแแปแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแถแโแ
แถแแโแแโแแแแแแแโแแแแแแโโแแ
แแถแแโแฏแแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:637
#, no-c-format
msgid "Click to test notification"
msgstr "แ
แปแ
โแแพแแแแธโแแถแแแแแโแแแ
แแแแธโแแผแโแแแแนแโโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:640
#, no-c-format
msgid ""
"Click this button to test the notification. A sample message will be "
"spoken. Note: The Text-to-Speech system must be enabled."
msgstr ""
"แ
แปแ
โแแแผแแปแโแแถแแแแแโแแแ
แแแแธแแผแโแแแแนแย แ แแถแแแแแแแถ แแทแโแแแแผแโแแถแโแแทแแถแย แ แ
แแแถแโย แโ แแแแแแแแโแขแแแแแโแแแแแถแแแแทแแถแแแแแผแโ"
"แแถแโแแพแโย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:656
#, no-c-format
msgid "Ac&tion:"
msgstr "แแแแแแแถแย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:662 kcmkttsmgr/kcmkttsmgrwidget.ui:670
#: kcmkttsmgr/kcmkttsmgrwidget.ui:686
#, no-c-format
msgid ""
"<qt>Specifies how KTTS should speak the event when received. If you select "
"\"Speak custom text\", enter the text in the box. You may use the following "
"substitution strings in the text:<dl><dt>%e</dt><dd>Name of the event</"
"dd><dt>%a</dt><dd>Application that sent the event</dd><dt>%m</dt><dd>The "
"message sent by the application</dd></dl></qt>"
msgstr ""
"<qt>แแแแแถแแโแแถโแแพโ KTTS แแแแผแโแแทแแถแโแแแแนแแแแทแแถแแแโแแแถแโแแผแ
แแแแแ
โ แแแโแแถโแแถแโแแแฝแย แ แแพโแแแแพแโ\"แแทแแถแโแขแแแแแโ"
"แแแแถแแโแแแแฝแโ\", แแแแ
แผแโแขแแแแแโแแแแปแโแแแแขแแโย แ แขแแแโแแแแ แแโแแถโแแแแพโแแถแโแแแแฝแโแแแแโแขแแแแโแแแแปแโแขแแแแแโแแผแ
โแแถแแแแแแโย แ "
"<dl><dt>%e</dt><dd>แแแแแโแแแแนแแแแทแแถแแแโ</dd><dt>%a</dt><dd>แแแแแแทแแธโแแแโแแแแพโแแแแนแแแแทแแถแแแโ</"
"dd><dt>%m</dt><dd>แแถแโแแแโแแถแโแแแแพโแแถแโแแแแแแทแแธโ</dd></dl></qt>"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:712
#, no-c-format
msgid "Talke&r:"
msgstr "แขแแแโแแทแแถแโย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:718 kcmkttsmgr/kcmkttsmgrwidget.ui:736
#, no-c-format
msgid ""
"The Talker that will speak the notification. The \"default\" Talker is the "
"topmost talker listed on the Talkers tab."
msgstr ""
"แขแแแโแแทแแถแโแแแโ แแนแโแแทแแถแโแแแ
แแแแธโแแผแโแแแแนแย แ \"แแแแถแแแพแโ\" แขแแแโแแทแแถแโแแถโแขแแแแแทแแถแโแแแโแแแแแโแแถแโแแแโแแถแโแแถแโ"
"แแแแแโแแพโแแแแถแแโแขแแแโแแทแแถแย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:747
#, no-c-format
msgid "Click to select the Talker to speak the notification."
msgstr "แ
แปแ
โแแแแพแโแขแแแโแแทแแถแโแแพแแแแธโแแทแแถแโแแแ
แแแแธโแแผแโแแแแนแย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:767
#, no-c-format
msgid "Speak notifications (&KNotify)"
msgstr "แแทแแถแโแแแ
แแแแธโแแผแโแแแแนแโ (&KNotify)"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:770
#, no-c-format
msgid ""
"When checked and KTTS is enabled, notification events from applications sent "
"via KNotify will be spoken according to the options you set on this tab."
msgstr ""
"แแแโแแธแ แ แพแโ KTTS แแถแโแแพแโ แแแแนแแแแทแแถแแแโแแแ
แแแแธโแแผแโแแแแนแโแแธโแแแแแแทแแธโโแแแแพโแแถแโแแแโแแแแแแทแแธโโ KNotify แแทแโแแแแผแโแแถแโ"
"แแทแแถแโแขแถแแแแแโแแพโแแแแแพแโแแแโแขแแแโแแถแโแแแแแโแแพโแแแแถแโแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:795
#, no-c-format
msgid "E&xclude notifications with a sound"
msgstr "แแแทแแแโโแแแกแแโแแแ
แแแแธโแแผแโแแแแนแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:801
#, no-c-format
msgid "When checked, notification events that have a sound will not be spoken."
msgstr "แแแโแแธแ แแแแนแแแแทแแถแแแโแแแ
แแแแธโแแผแโแแแแนแโแแแโแแถแโแแแกแแโ แแนแโแแทแโแแถแโแแทแแถแโแกแพแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:813
#, no-c-format
msgid "&Filters"
msgstr "แแแแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:846
#, no-c-format
msgid ""
"This is a list of all the configured Filters. Filters higher in the list "
"are applied first. Filters modify text before it is spoken. They can be "
"used to substitute for mispronounced words, transform XML from one form to "
"another, or change the default Talker to be used for speech output."
msgstr ""
"แแแโแแถโแแแแแธโแแแแแโแแถแแแขแแโแแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโย แ แแแแแแโแแแแแโแแถแโแแโแแแแปแโแแแแแธโแแแแผแโแแถแโแขแแปแแแแโแแปแโแแโย แ "
"แแแแแแโแแแแแโแขแแแแแโแแปแโแแถโแแถแแแทแแถแโแ แแฝแโแแถโแขแถแ
โแแแแผแโแแถโแโแแแแพโแแแแแถแแโแแแแฝแโแแถแแแโแแแโแแถแโแแแแ
แแโแแแกแแโeแแแแแแโ "
"ransแแธโแแแแแแโแแฝแโแแ
แแแแแแโแแแแแแแแโแฌ แแแแถแแแแแแผแโแขแแแแแทแแถแโแแถโแแแแถแแแพแโโแแแแพโแแแแแถแแโแแแแ แถแโแแทแแแแแโแแแกแแโย แโh "
"output."
#: kcmkttsmgr/kcmkttsmgrwidget.ui:876
#, no-c-format
msgid "Click to add and configure a new Filter."
msgstr "แ
แปแ
โแแพแแแแธโแแแแแแ แแทแโแแแแแโแแ
แแถแแแแแแแแโแแแแแโแแแแธย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:896
#, no-c-format
msgid ""
"Click to move selected filter up in the list. Filters higher in the list "
"are applied first."
msgstr ""
"แ
แปแ
แแพแแแแธโแแแแถแแแแธโแแแแแโแแแแแถแโแแแแพแโแแ
โแแพโแแ
แแแแปแโแแแแแธย แ แแแแแโแแแแแแแแแแถแแแโแแ
แแแแปแโแแแแแธโแแแแผแแแถแโแขแแปแแแแโ"
"แแปแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:915
#, no-c-format
msgid ""
"Click to move a filter down in the list. Filters lower in the list are "
"applied last."
msgstr "แ
แปแ
โแแพแแแแธโแแแแถแแแแธโแแแแแโแ
แปแแแแแแโแแ
แแแแปแโแแแแแธย แ แแแแแโแแแแแถแโแแถแแแโแแบแแแแผแแแถแโแขแแปแแแแโแ
แปแแแแแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:940
#, no-c-format
msgid "Click to configure options for the highlighted Filter."
msgstr "แ
แปแ
แแพแแแแธโแแแแแแแ
แแถแแแแแแแแโแแแแแพแโแแแแแถแแโแแแแแโแแแแแถแโแแแแแทแ
ย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:965
#, no-c-format
msgid "Click to remove the highlighted Filter."
msgstr "แ
แปแ
แแพแแแแธโแแโแแแแแโแแแแแถแโแแแแแทแ
โแ
แแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1000
#, no-c-format
msgid "Sentence Boundary Detector"
msgstr "แงแแแแแโแ
แถแแโแแแแแแแโแแแแแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1016
#, no-c-format
msgid ""
"This is a list of all the configured Sentence Boundary Detector (SBD) "
"Filters. SBDs break long text jobs up into sentences, which reduces the "
"time before a job begins speaking, and permits you to advance or rewind "
"through a job. SBDs are applied in the order listed (top to bottom) after "
"all the normal filters at the top of this screen have been applied. "
"Filtering stops when the first SBD modifies the text."
msgstr ""
"แแแโแแถโแแแแแธโแแแแแแแแพแแขแแแแแโแแแแแแแโ (SBD) แแถแแแขแแโแแแโแแถแโแแแแแโแแ
แแถโแแแแแแแโย แ SBDs แแแแแโแแถแแแถแโ"
"แขแแแแแโแแแโแแแโแโแแ
โแแถโแแแแแแโแแพแแแแธโแแถแแโแแแแแโแแแโแแแแถโแแปแโแแถแแแถแโแแทแแถแโแ
แถแแแแแแพแโแ แพแโแขแแปแแแแถแโแฒแแโแขแแแโแแแผแโ"
"แแถแแแถแโแแ
โแแปแโแแ
โแแแแแโแแถแโย แ SBDs แแแแผแโแแถแโแขแแปแแแแโแแแแแถโแแแโแแถแแแถแโแแแแแโแแแแแถแแโ (แแแแผแโแแ
โแแถแโ) แแธโโ"
"แแแแแโแแแแแแถโแแถแแแขแแโแแแแทแโแแ
โแแพโแแแแผแโแขแแแแแแโแแแโแแถแโแขแแปแแแแย แโ แแแแแแโแแแแโแแแโแแแแแแโแขแแแแแโ SBD แแถโแแพแโแแแแผแโ"
"ย แโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1040
#, no-c-format
msgid "Co&nfigure"
msgstr "แแแแแโแแ
แแถโแแแแแแแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1043
#, no-c-format
msgid ""
"Click this button to edit the Sentence Boundary Detector (SBD) configuration "
"or add additional SBD filters."
msgstr "แ
แปแ
โแแพแแแแธโแแแแแถแแปแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแถแโแ
แถแแโแแโแแแแแแแโแแแแแแโโแแ
โแแถแแโแฏแแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1074
#, no-c-format
msgid "&Interruption"
msgstr "แแถแโแแแขแถแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1104 kcmkttsmgr/kcmkttsmgrwidget.ui:1152
#, no-c-format
msgid ""
"Check the Pre-sound box and choose a Pre-sound audio file, which will sound "
"when a text job is interrupted by another message."
msgstr ""
"แแธแโแแแแขแแ แแปแแแแโแ
แถแแแแแกแแ แแทแโแแแแพแโแฏแแแถแโแขแผแแธแแแผโ แแปแแแแโแ
แถแแแแแกแแ แแแโแแนแโแ
แถแแแแแกแแโแแ
แแแแแแโแแปแแแถแโ"
"แขแแแแแโแแแแผแแแถแโแแแแถแ
แโแแแโแแถแโแแถแแฝแโแแแแแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1115 kcmkttsmgr/kcmkttsmgrwidget.ui:1130
#, no-c-format
msgid ""
"Check the Post-message box and enter a Post-message, which will be spoken "
"when a text job resumes after being interrupted by another message."
msgstr ""
"แแธแแแแแขแแ แแปแแแแโแแแแพแแถแ แแทแโแแแแ
แผแโแแถแโแแปแแแแโแแแแพโแแแแแนแโแแแแผแแแถแโแขแถแโแแ
แแแโแแแโแแปแแแถแโแขแแแแแโแแแแโ แแแแแแแธโ"
"แแแแผแแแถแโแแแแถแ
แแแแโแแถแโแแถแแฝแโแแแแแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1124
#, no-c-format
msgid "Post-&message:"
msgstr "แแแแแโแแแแพโแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1146
#, no-c-format
msgid "Pre-sou&nd:"
msgstr "แแปแโแแแโแ
แถแแโแแแกแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1160
#, no-c-format
msgid "&Pre-message:"
msgstr "แแปแแแแแพแแถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1169 kcmkttsmgr/kcmkttsmgrwidget.ui:1216
#, no-c-format
msgid ""
"Check the Pre-message box and enter a Pre-message, which will be spoken "
"whenever a text job is interrupted by another message."
msgstr ""
"แแธแโแแแแขแแโ แแปแแแแโแแแแพโแแถแ แแทแโแแแแ
แผแโแแถแแแถแแปแโแแฝแ แแแแแนแโแแแแผแแแถแโแแทแแถแโแแ
แแแโแแถโแแแโแแปแแแถแโแขแแแแแโแแแแผแแแถแโ"
"แแแแถแ
แแแแ แแถแโแแถแแฝแโแแแแแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1188 kcmkttsmgr/kcmkttsmgrwidget.ui:1202
#, no-c-format
msgid ""
"Check the Post-sound and choose a Post-sound audio file, which will sound "
"before a text job resumes after being interrupted by another message."
msgstr ""
"แแธแโแแแแขแแโแแแแแโแแแโแ
แถแแแแแกแแ แแทแโแแแแพแโแฏแแแถแโแขแผแแธแแแผโแแแแแแแแโแ
แถแแโแแแกแแ แแแแแนแโแ
แถแแแแแกแแโแแปแแแแโ"
"แแแแแปแแแถแแขแแแแแโแแแแโแแแแแโแแธโแแแแผแแแถแโแแแแถแ
แโแแแโแแถแโแแถแแฝแโแแแแแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1196
#, no-c-format
msgid "Post-s&ound:"
msgstr "แแแแแโแแแโแ
แถแแโแแแกแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1246
#, no-c-format
msgid "A&udio"
msgstr "แขแผแแธแแแผ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1265
#, no-c-format
msgid "&Keep audio files:"
msgstr "แแปแโแฏแแแถแโแขแผแแธแแแผย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1268
#, no-c-format
msgid ""
"Check this if you want to keep the generated audio (wav) files. You will "
"find them in the indicated directory."
msgstr ""
"แแธแโแแธแแแ แแแแแทแแแพแขแแแโแ
แแโแแปแโแฏแแแถแโแขแผแแธแแแผ (wav) แแแแแถแโแแแแแพแย แ แขแแแแแนแโแแโแแฝแแแถโแแ
แแแแปแโแแโแแแแแถแโ"
"แแแแ แถแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1287
#, no-c-format
msgid "Specify the directory in which the audio files will be copied."
msgstr "แแแแแถแแโแแโแแแโแฏแแแถแโแขแผแแธแแแผโแแนแแแแแผแแแถแโแ
แแแแโแแ
ย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1313
#, no-c-format
msgid "&Speed:"
msgstr "แแแแฟแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1319 kcmkttsmgr/kcmkttsmgrwidget.ui:1350
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1379
#: plugins/festivalint/festivalintconfwidget.ui:240
#: plugins/festivalint/festivalintconfwidget.ui:334
#: plugins/festivalint/festivalintconfwidget.ui:436
#, no-c-format
msgid ""
"Sets the speed of speech. Slide the slider to the left to slow speech down; "
"to the right to increase talking speed. Anything less than 75 percent is "
"considered \"slow\", and anything greater than 125 percent is considered "
"\"fast\". You cannot change the speed of MultiSyn voices."
msgstr ""
"แแแแแโแแแแฟแโแแถแแแทแแถแย แ แแแแทแโแแแแถแแโแแแแทแโแแ
โแแถแแแแแแโแแพแแแแธโแแแแแโแแแแฟแโแแแแปแแแถแแแทแแถแ แแทแโแแ
แแถแแแแแถแโแแพแแแแธโ"
"แแแแแพแโแแแแฟแโแแแแปแแแถแแแทแแถแย แ แแพโแแทแ
โแแถ แงแฅ แแถแแแถแ แแบโแ
แถแแโแแปแโแแถ \"แแบแ\" แแทแโแ แพโแแโแแถแ แกแขแฅ แแถแแแ แแบโ"
"แ
แถแแแแปแแแถ \"แแฟแ\"ย แ แขแแแโแแทแแขแถแ
โแแแแถแแแแแแผแโแแแแฟแแแแกแแโแแแแ MultiSyn แแถแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1338 plugins/epos/eposconfwidget.ui:199
#: plugins/epos/eposconfwidget.ui:230
#: plugins/festivalint/festivalintconfwidget.ui:291
#: plugins/festivalint/festivalintconfwidget.ui:322
#: plugins/festivalint/festivalintconfwidget.ui:353
#: plugins/hadifix/hadifixconfigui.ui:176
#: plugins/hadifix/hadifixconfigui.ui:264
#: plugins/hadifix/hadifixconfigui.ui:343
#, no-c-format
msgid " %"
msgstr " %"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1431
#, no-c-format
msgid "Out&put Using"
msgstr "แแแแ แถแโแแถแแแแแพ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1434
#, no-c-format
msgid ""
"<p>Select the audio output method desired. If you select <b>GStreamer</b>, "
"you must also select a <b>Sink</b>.</p><p><em>Note</em>: You must have "
"GStreamer >= 0.87 to use GStreamer.</p>"
msgstr ""
"<p>แแแแพแโแแทแแธแแถแแแแแโแแทแแแแแโแขแผแแธแแแผโแแแโแขแแแแแแโแ
แทแแแย แ แแพโแขแแแโแแแแพแโแแโ <b>GStreamer</b>แขแแแโแแแแผแโแแถแโ"
"แแแแพแโ <b>Sink</b>ย แแโแแแย แ </p><p><em>แ
แแแถแโ</em>ย แ แขแแแโแแแแผแโแแโแแถแโ GStreamer >= "
"แ .แจแง แแพแแแแธโแแแแพ GStreamerย แ</p>"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1456 kcmkttsmgr/kcmkttsmgrwidget.ui:1499
#, no-c-format
msgid "Sink:"
msgstr "แแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1459 kcmkttsmgr/kcmkttsmgrwidget.ui:1478
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1633
#, no-c-format
msgid "Select the sound sink to be used for GStreamer output."
msgstr "แแแแพแโแแแแแโแแแกแแโแแแแแแแผแแแถแโแแแแพโแแแแแถแแโแแถแแแแแ แถแ GStreamerย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1502
#, no-c-format
msgid "Select the sound sink to be used for aKode output."
msgstr "แแแแพแโแแแกแแโแแแแถแแโแแแแพโแแแแแถแแโแแทแแแแแโ aKode โแโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1521
#, no-c-format
msgid ""
"Select the sink to be used for aKode output. Select \"auto\" to let aKode "
"pick the best output method."
msgstr ""
"แแแแพแโแแแแถแแโแแพแแแแธโแแแแพโแแแแแถแแโแแทแแแแแโ aKode ย แ แแแแพแโ \"แแแแแโแแแแแแแแทโ\" แแพแแแแธโแแถแแโ aKode แแถโแแทแแธแแถแแแแแโ"
"แแทแแแแแโแแโแแแขโแแแแปแโย โแโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1534
#, no-c-format
msgid "GStrea&mer"
msgstr "GStreamer"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1540
#, no-c-format
msgid ""
"<p>Check to use the GStreamer audio output system. You must also select a "
"<b>Sink</b> plugin.</p>"
msgstr ""
"<p>แแธแโแแแแพโแแแแแแแแโแแทแแแแแโแขแผแแธแแแผโ GStreamer ย แ แขแแแโแแแแผโแโแแโแแแแพแโแแแแแแทแแธโแแแแฝแโแแแแโ <b>Sink</b>ย แโ</p>"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1548
#, no-c-format
msgid "a&Rts"
msgstr "แแทแแแแ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1557
#, no-c-format
msgid "Check to use the TDE aRts system for audio output."
msgstr "แแธแโโแแพแแแแธโแแแแพโแแแแแแแแโแแแแโโ TDE aRts แแแแแถแแโแแทแแแแแโแขแผแแธแแแผโย แโโ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1568
#, no-c-format
msgid "aKode"
msgstr "aKode"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1580
#, no-c-format
msgid ""
"<p>Check to use aKode for audio output. You must also select a <b>Sink</b>."
"</p>"
msgstr "<p>แแธแโแแพแแแแธโแแแแพโ aKode แแแแแถแแโแแทแแแแแโแขแผแแธแแแผโย แ แขแแแโแแแแผแโแแโแแแแพแโแแโ <b>แแแแถแแ</b>ย โแโ</p>"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1599
#, no-c-format
msgid "ALSA"
msgstr "ALSA"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1611
#, no-c-format
msgid "Check to use Advanced Linux Sound Architecture (ALSA) for audio output."
msgstr "แแธแโแแพแแแแธโแแแแพแแแแถแแแแแแแแโแแแกแแโแแธแแปแ
โแแแแแทแโแแแแแโแแแแแถแแโแแทแแแแแโแขแผแแธแแแผ (ALSA)"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1630
#, no-c-format
msgid "Device:"
msgstr "แงแแแแแย แ"
#: kcmkttsmgr/kcmkttsmgrwidget.ui:1652
#, no-c-format
msgid ""
"Select the PCM device to be used for ALSA output. Select \"default\" to use "
"the default ALSA device."
msgstr ""
"แแแแพแโแงแแแแแโ PCM แแพแแแแธโแแแแพโแแแแแถแแโแแทแแแแแโ ALSAย โแ แแแแพแโ \"แแแแถแโแแพแโ\" แแพแแแแธโแแแแพโแงแแแแแโแแแแถแแแพแโ "
"ALSAย แโ"
#: kcmkttsmgr/selecteventwidget.ui:24
#, no-c-format
msgid "Event source:"
msgstr "แแแแแโแแแแนแแแแทแแถแแแโย แ"
#: kcmkttsmgr/selecteventwidget.ui:38
#, no-c-format
msgid "Events"
msgstr "แแแแนแแแแทแแถแแแโ"
#: libkttsd/selecttalkerwidget.ui:61
#, no-c-format
msgid "&Use default Talker"
msgstr "แแแแพโแขแแแโแแทแแถแโแแแแถแแแพแโ"
#: libkttsd/selecttalkerwidget.ui:64
#, no-c-format
msgid ""
"When checked, will use the default Talker, which is the topmost Talker "
"listed in the Talkers tab."
msgstr "แแแโแแธแ แแถโโแแนแแแแแพโแขแแแแแทแแถแโแแแแถแแแพแโแแแโแแ
โแแพโแแโแแแแปแโแแแแแธโแขแแแโแแทแแถแโแแแแปแโแแแแถแแโแขแแแโแแทแแถแย แโ"
#: libkttsd/selecttalkerwidget.ui:72
#, no-c-format
msgid "Use closest &matching Talker having"
msgstr "แแแแพ แแแแขแแโแแผแ
โแแฝแโแแแโแแแแปแโแแแแผแแแแโแขแแแโแแทแแถแโ"
#: libkttsd/selecttalkerwidget.ui:75
#, no-c-format
msgid ""
"When checked, will use a configured Talker most closely matching the "
"attributes you choose. Attributes with checks next to them will be "
"preferred over unchecked attributes. Language is always preferred."
msgstr ""
"แแธแโ แแถโแแนแโแแแแพโแขแแแโแแทแแถแโแแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโแแแโแแแแผแแแแโแแทแโแแถแโแแโแแแแปแโแแผแโแแปแแแแแแแโแแแแแถแแโแขแแแโแแแแพแโโย แ "
"แแปแโแแแแแแโแแแโแแธแโแแแแแถแแโแแ
โแแฝแโแแถโ แแแแผแโแแถแโแแโแ
แผแแ
แทแแแโแแแแพโแแถโแแปแแแแแแแโแแแโแแทแโแแถแโแแธแย แโ แแถแแถโแแแแแโแแถแโ"
"แ
แผแแ
แทแแแโแแถแโย โแโ"
#: libkttsd/selecttalkerwidget.ui:125
#, no-c-format
msgid "Checked items are preferred over unchecked items."
msgstr "แแถแแปโแแถแโแแธแโแแโแแทแแโแแแแพโแแถโแแถแแปโแแแโแแทแโแแถแโแแธแย แ"
#: libkttsd/selecttalkerwidget.ui:192
#, no-c-format
msgid "&Gender:"
msgstr "แแแย แโ"
#: libkttsd/selecttalkerwidget.ui:257
#: plugins/festivalint/festivalintconfwidget.ui:212
#, no-c-format
msgid "&Volume:"
msgstr "แแแแแทแโแแแกแแย แโ"
#: libkttsd/selecttalkerwidget.ui:305
#, no-c-format
msgid "&Rate:"
msgstr "แแแแแโย แ"
#: libkttsd/selecttalkerwidget.ui:421
#, no-c-format
msgid "Use specific &Talker"
msgstr "แแแแพโแขแแแโแแทแแถแโแแถแแแแถแแโ"
#: libkttsd/selecttalkerwidget.ui:424
#, no-c-format
msgid ""
"When checked, will use the specific Talker (if it is still configured), "
"otherwise the Talker most closely matching."
msgstr ""
"แแแโแแธแ แแถโแแนแแแแแพโแขแแแโแแทแแถแโแแแโแแแแนแแแแแผแโ (แแพโแแถโแแทแโแแถแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแ) แแทแโแแผแ
แแแแโแแถโแแแแผแแแแโแขแแแโ"
"แแทแแถแโแแแโแแทแโแแแแทแโย แโ"
#: plugins/command/commandconfwidget.ui:30
#, no-c-format
msgid "Co&mmand Configuration"
msgstr "แแถแแแแแแโแแ
แแถโแแแแแแแแโแแถแแแโแแแแแถ"
#: plugins/command/commandconfwidget.ui:61
#, no-c-format
msgid "Command &for speaking texts:"
msgstr "แแถแแแโแแแแแถโแแแแแถแแโแขแแแแแโแแทแแถแย แ"
#: plugins/command/commandconfwidget.ui:72
#, no-c-format
msgid ""
"This field specifies both the command used for speaking texts and its "
"parameters. If you want to pass the text as a parameter, write %t at the "
"place where the text should be inserted. To pass a file of the text, write "
"%f. To synthesize only and let KTTSD play the synthesized text, write %w "
"for the generated audio file."
msgstr ""
"แแถแโแแแโแแแแแถแแโแแถแแแโแแแแแถโแแถแแแแธแโแแแแแถแโแแแแพโแแแแแถแแโแขแแแแแโแแทแแถแ แแทแโแแแถแแแถแแแแแแโแแแแแแถย แ แแแแแทแแแพแขแแแโแ
แแโ"
"แ แปแ
โแขแแแแแโแแถโแแแถแแแถแแแแแแ แแแแแแแแ %t แแ
แแแแแแโแแแแแฝแแแโแแแแ
แผแโแขแแแแแย แ แแพแแแแธโแ แปแ
โแฏแแแถแแแโแขแแแแแ "
"แแแโแแแแแ%fย แ แแพแแแแธโแแถแแแโแแฝแแแแแแแแแ แแทแโแขแแปแแแแถแโแฒแแ KTTSD แแแโแขแแแแแโแแแแแถแโแแฝแแแแแแแแแ แแแโ"
"แแแแแ %w แแแแแถแแโแฏแแแถแโแขแผแแธแแแผโแแแแแถแโแแแแแพแย แ"
#: plugins/command/commandconfwidget.ui:88
#, no-c-format
msgid "&Send the data as standard input"
msgstr "แแแแพโแแทแแแแแแโแแถโแแแแแแถแโแแแแ
แผแแแแแถแโแแแแผ"
#: plugins/command/commandconfwidget.ui:91
#, no-c-format
msgid ""
"This check box specifies whether the text is sent as standard input (stdin) "
"to the speech synthesizer."
msgstr ""
"แแแแขแแโแแผแแแธแโแแแ แแแแแถแแโแแถแแพโแขแแแแแโแแแแผแแแถแโแแแแพโแแถโแแแแแแถแโแแแแ
แผแโแแแแถแแแแแผ (stdin) แแ
แแถแแโแงแแแแแโแแแแแแแแโ"
"แฌแขแแย แ"
#: plugins/command/commandconfwidget.ui:116 plugins/epos/eposconfwidget.ui:574
#: plugins/festivalint/festivalintconfwidget.ui:513
#: plugins/flite/fliteconfwidget.ui:150 plugins/hadifix/hadifixconfigui.ui:548
#, no-c-format
msgid "&Test"
msgstr "แแถแแแแแโ"
#: plugins/command/commandconfwidget.ui:142 plugins/epos/eposconfwidget.ui:89
#: plugins/hadifix/hadifixconfigui.ui:492
#, no-c-format
msgid "Character &encoding:"
msgstr "แแถแแขแแทแแแผแโแแฝแขแแแแย แ"
#: plugins/command/commandconfwidget.ui:161
#: plugins/festivalint/festivalintconfwidget.ui:561
#, no-c-format
msgid ""
"This combo box specifies which character encoding is used for passing the "
"text."
msgstr "แแแแขแแโแแแแแโแแแ แแแแแถแแโแแถแแขแแทแแแผแโแแฝแขแแแแโแแถแแฝแโแแแโแแแแผแแแถแโแแแแพโแแแแแถแแโแแถแแ แปแ
โแขแแแแแย แ"
#: plugins/command/commandconfwidget.ui:171
#, no-c-format
msgid ""
"Parameters:\n"
" %t: Text to be spoken\n"
" %f: Filename of a temporary file containing the text\n"
" %l: Language (two letter code)\n"
" %w: Filename of a temporary file for generated audio"
msgstr ""
"แแแถแแแถแแแแแแย แ\n"
" %tย แ แขแแแแแโแแแแแแแผแโแแทแแถแ\n"
" %fย แ แแแแแโแฏแแแถแโแแแแแแโแขแถแแแแโแแแแแถแโแขแแแแแ\n"
" %lย แ แแถแแถ (แแผแโแขแแแแ แแธแ)\n"
" %wย แ แแแแแโแฏแแแถแโแแแแแแโแขแถแแแแโโแแแแแถแแโแขแผแแธแแแผโแแแแแถแโแแแแแพแ"
#: plugins/epos/eposconfwidget.ui:25
#, no-c-format
msgid "Epos Config UI"
msgstr "UI แแแแแโแแ
แแถแแแแแแแแโแแแแ Epos"
#: plugins/epos/eposconfwidget.ui:28 plugins/epos/eposconfwidget.ui:56
#, no-c-format
msgid ""
"This is the configuration dialog for the Epos Czech and Slovak speech "
"synthesizer."
msgstr "แแแโแแบโแแถแแแแขแแโแแแแแโแแ
แแถโแแแแแแแแโแแแแแถแแโแขแแแแแแแแแแแโแแถแแแทแแถแแแถแแถโแแแ แแทแแแแแผแแแถแแธโแแแแ Eposย แ"
#: plugins/epos/eposconfwidget.ui:53
#, no-c-format
msgid "E&pos Configuration"
msgstr "แแถแแแแแแแแ
แแถแแแแแแแแ Epos"
#: plugins/epos/eposconfwidget.ui:108
#, no-c-format
msgid "Specifies which character encoding is used for passing the text."
msgstr "แแแแแถแแโแแถแแขแแทแแแผแโแแฝแขแแแแโแแถแแฝแโแแแแแแแผแแแถแโแแแแพโแแแแแถแแโแแถแแ แปแ
โแขแแแแแย แ"
#: plugins/epos/eposconfwidget.ui:142 plugins/hadifix/hadifixconfigui.ui:239
#, no-c-format
msgid "Speed:"
msgstr "แแแแฟแย แ"
#: plugins/epos/eposconfwidget.ui:148 plugins/epos/eposconfwidget.ui:211
#: plugins/epos/eposconfwidget.ui:281
#, no-c-format
msgid ""
"Sets the speed of speech. Slide the slider to the left to slow speech down; "
"to the right to increase talking speed. Anything less than 75 percent is "
"considered \"slow\", and anything greater than 125 percent is considered "
"\"fast\"."
msgstr ""
"แแแแแโแแแแฟแโแแโแแถแแแทแแถแย แ แแแแทแโแแแแถแแแแแแทแโแแ
โแแถแแแแแแโแแพแแแแธแแแแแโแแแแฟแโแแถแแแทแแถแ แแทแโแแแแทแโแแ
แแถแแแแแถแโแแพแแแแธโ"
"แแแแแพแโแแแแฟแโแแถแแแทแแถแย แ แแพแแทแ
แแถแ แงแฅ แแถแแแโแ
แถแแแแปแแแถ \"แแบแ\" แแทแโแแพโแแแแถแ แกแขแฅ แแถแแแโแ
แถแแแแปแโแแถ"
"\"แแฟแ\"ย แ"
#: plugins/epos/eposconfwidget.ui:164
#, no-c-format
msgid "Pitch:"
msgstr "แแแแแแโแแแกแแย แ"
#: plugins/epos/eposconfwidget.ui:170 plugins/epos/eposconfwidget.ui:242
#: plugins/epos/eposconfwidget.ui:310
#, no-c-format
msgid ""
"Sets the tone (frequency) of speech. Slide the slider to the left to lower "
"the voice tone; to the right to increase tone. Anything less than 75 "
"percent is considered \"low\", and anything greater than 125 percent is "
"considered \"high\"."
msgstr ""
"แแแแแโแแแกแแ (แ แแแแแแแแ) แแโแแถแแแทแแถแย แ แแแแทแโแแแแถแแแแแแทแโแแ
แแถแแแแแแ แแพแแแแธโแแแแแโแแแกแแ แ แพแโแแแแทแโแแ
แแถแแแแแถแโ"
"แแพแแแแธแแแกแพแโแแแกแแย แ แแพโแแทแ
โแแถแ แงแฅ แแถแแแแแบโแ
แถแแแแปแแแถ \"แแถแ\" แแทแโแแพโแแแแถแ แกแขแฅ แแถแแแโแแบโแ
แถแแแแปแแแถ "
"\"แแแแแ\"ย แ"
#: plugins/epos/eposconfwidget.ui:346
#, no-c-format
msgid "Epos server executable path:"
msgstr "แแแแผแโแแแแขแถแ
โแ
แผแโแแแแแทแแแแแทโแแแถแแแธแโแแแแแพ Eposย แ"
#: plugins/epos/eposconfwidget.ui:355 plugins/epos/eposconfwidget.ui:409
#, no-c-format
msgid ""
"If the Epos server program will be found due to your PATH environment "
"variable, simply enter \"epos\", otherwise enter the full path to the Epos "
"server executable program."
msgstr ""
"แแแแแทแแแพแแแแทแแแพแโแแแแแแทแแธโแแแถแแแธแโแแแแแพ Epos แแแแแถแโแแโแขแแแโแแแทแแแแถแโแแแแผแโแแแแแขแแแ แแผแโแแแแ
แผแ \"epos\" "
"แแถแแ แแแแแถแแแทแโแแแ แแแแ
แผแโแแแแผแโแแแโแแ
แแถแแแแแแแแทแแธโแแแโแขแถแ
โแแแแแทแแแแแทโแแแถแแแธแโแแแแแพ Epos แแถแย แ"
#: plugins/epos/eposconfwidget.ui:371
#, no-c-format
msgid "Epos client executable path:"
msgstr "แแแแผแโแแแแขแถแ
โแ
แผแโแแแแแทแแแแแทโแแแถแแแธแโแแแแแ Epos แแถแย แ"
#: plugins/epos/eposconfwidget.ui:380 plugins/epos/eposconfwidget.ui:428
#, no-c-format
msgid ""
"If the Epos client program will be found due to the PATH environment "
"variable, simply enter \"say\" here. Otherwise, specify the full path to "
"the Epos client program."
msgstr ""
"แแแแแทแโแแพโแแโแแแแแแทแแธโแแแถแแแธแแแแแแโแแทแแแพแโ แแแแแโแแโแขแแแโแแแทแแแแถแโแแแแผแแแแ แแผแโแแแแ
แผแโ \"say\" แแถแแโ"
"แแ
แแธแแแย แ แแแแแถแโแแทแโแแแ แแแแแถแแโแแแแผแแแแโแแแโแแ
โแแถแแโแแแแแแทแแธโแแแถแแแธแโแแแแแ Eposย แ"
#: plugins/epos/eposconfwidget.ui:406
#, no-c-format
msgid "epos"
msgstr "epos"
#: plugins/epos/eposconfwidget.ui:425
#, no-c-format
msgid "say"
msgstr "say"
#: plugins/epos/eposconfwidget.ui:440
#, no-c-format
msgid "Additional Options (advanced)"
msgstr "แแแแแพแโแแแแแแ (แแแแแทแโแแแแแ)"
#: plugins/epos/eposconfwidget.ui:467 plugins/epos/eposconfwidget.ui:510
#, no-c-format
msgid ""
"Optional. Enter any server command line options here. To see available "
"options, enter \"epos -h\" in a terminal. Do not use \"-o\"."
msgstr ""
"แแแแพแโแแถแแ
แทแแแย แ แแแแ
แผแโโโแแแแแพแโแแแแแถแแแแถแแแโแแแแแถแแถแแฝแโแแ
แแธแแแย แ แแพแแแแธโแแพแโแแแแแพแโแแแแแถแ แแผแแแแแ
แผแ "
"\"epos -h\" แแ
แแแแปแแแแแถแแธแย แ แแปแแแแแพ \"-o\" แแถย แ"
#: plugins/epos/eposconfwidget.ui:475
#, no-c-format
msgid ""
"Specify options to be passed to Epos client. To see available options, "
"enter \"say -h\" in a terminal. Do not use \"-o\"."
msgstr ""
"แแแแแถแแโแแแแแพแโแฒแแโแ แปแ
โแแ
แแถแแโแแแถแแแธแโแแแแแ Eposย แ แแพแแแแธโแแพแโแแแแแพแโแแแกแแถแแแผแโแแแแ
แผแ \"say -h\" แแ
แแแแปแโ"
"แแแแถแแธแย แ แแปแแแแแพ \"-o\" แฒแแแแแย แ"
#: plugins/epos/eposconfwidget.ui:501
#, no-c-format
msgid "Epos server:"
msgstr "แแแถแแแธแ Eposย แ"
#: plugins/epos/eposconfwidget.ui:526
#, no-c-format
msgid "Epos client:"
msgstr "แแแถแแแธแโแแแแแ Eposย แ"
#: plugins/epos/eposconfwidget.ui:535
#, no-c-format
msgid ""
"Specify options to be passed to Epos client. Do not use -o. To see "
"available options, enter \"say -h\" in a terminal. Do not use \"-o\"."
msgstr ""
"แแแแแถแแโแแแแแพแโแฒแแโแ แปแ
โแแ
โแแถแแโแแแถแแแธแโแแแแแ Eposย แ แแปแแแแแพ -oย แ แแพแแแแธโแแพแโแแแแแพแโแแแแแถแ แแผแโแแแแ
แผแ "
"\"say -h\" แแ
แแแแปแโแแแแถแแธแย แ แแปแแแแแพ \"-o\"ย แ"
#: plugins/epos/eposconfwidget.ui:577
#, no-c-format
msgid ""
"Click to test the configuration. If correct, you will hear a sentence "
"spoken."
msgstr "แ
แปแ
แแพแแแแธโแแถแแแแแโแแแแแโแแ
แแถแแแแแแแแย แ แแแแแทแโแแพโแแแแนแแแแแผแ แขแแแแแนแโแฎโแแแแแแโแแฝแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:25
#, no-c-format
msgid "Festival Config UI"
msgstr "แแแแนแแแแทแแถแแแโแแแแแโแแ
แแถโแแแแแแแแ UI"
#: plugins/festivalint/festivalintconfwidget.ui:28
#: plugins/festivalint/festivalintconfwidget.ui:56
#, no-c-format
msgid ""
"This is the dialog for configuring the Festival speech synthesizer in "
"interactive mode."
msgstr "แแแโแแบโแแถโแแแแขแแโแแแแแถแแโแแแแแโแแ
แแถแแแแแแแแโแขแแแโแแแแแแแแโแแแแนแแแแทแแถแแแโแแทแแถแโแแแแปแโแแแแโแขแแแแแแแแแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:53
#, no-c-format
msgid "Festival &Interactive Configuration"
msgstr "แแถแโแแแแแโแแ
แแถโแแแแแแแแโแขแแแแแแแแโแแแแนแแแแทแแถแแแ"
#: plugins/festivalint/festivalintconfwidget.ui:95
#, no-c-format
msgid "&Festival executable:"
msgstr "แแแแนแแแแทแแถแแแโแแแโแขแถแ
โแแแแแทแแแแแทโแแถแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:104
#: plugins/festivalint/festivalintconfwidget.ui:120
#, no-c-format
msgid ""
"If Festival is in your PATH environment variable, just enter \"festival\", "
"otherwise specify the full path to the Festival executable program."
msgstr ""
"แแพโแแแแนแแแแทแแถแแแโแแ
โแแแแปแโแขแแแโแแแทแแแแถแ PATH แแแแโแขแแแ แแแแถแแโแแโแแแแ
แผแ \"festival\" แแทแโแแผแ
แแแแโแแ แแแแแถแแโ"
"แแแแผแโแแแโแแ
โแแแแแแทแแธโแแแโแขแถแ
โแแแแแถแแโแแแแนแแแแทแแถแแแโแแถแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:144
#, no-c-format
msgid "&Select voice:"
msgstr "แแแแพแโแแแกแแย แโ"
#: plugins/festivalint/festivalintconfwidget.ui:153
#: plugins/festivalint/festivalintconfwidget.ui:169
#, no-c-format
msgid ""
"Select a voice to speak text with. MultiSyn voices are high quality but are "
"slow to load. If no voices are shown, check the Festival executable path. "
"You must install at least one Festival voice. If you have installed a voice "
"and still none are shown, check your Festival configuration. (See the "
"README that comes with Festival.)"
msgstr ""
"แแแแพแโแแแกแแโโแแแแแถแแโแขแแแแแโแแทแแถแโแแถแแฝแย แ แแแกแแ MultiSyn แแถแโแแปแแแถแโแแแแแโ แแแปแแแแโแแถโแแแแปแโแแบแโย แ แแพโแแแกแแโ"
"แแทแโโแแถแโแแแแ แถแโแแโ แแทแแทแแแโแแแแผแโแแแโแขแถแ
โแแแแแทแแแแแทแแถแโแแแแนแแแแทแแถแแแย แ แขแแแโแแแแผแโแแโแแแกแพแโแแแกแแโแแแแนแแแแทแแถแแแโแแฝแย แ แแพโ"
"แขแแแโแแถแโแแแกแพแโแแแกแแโแ แพแโ แแถโแแทแโแแถแแโแแถแโแแแแ แถแโแแแโแแธแโแแถแโแแแแแโแแ
แแถโแแแแแแแแโ Festival แแแแโแขแแแโย แ "
"(แแพแโ README แแแโแแแแถแแโแแโแแถโแแฝแโแแแแนแแแแทแแถแแแย แ)"
#: plugins/festivalint/festivalintconfwidget.ui:177
#, no-c-format
msgid "&Rescan"
msgstr "แแทแแถแโแแโแกแพโแโแแทแโ"
#: plugins/festivalint/festivalintconfwidget.ui:218
#: plugins/festivalint/festivalintconfwidget.ui:303
#: plugins/festivalint/festivalintconfwidget.ui:407
#, no-c-format
msgid ""
"Sets the volume (loudness) of speech. Slide the slider to the left to lower "
"the volume; to the right to increase volume. Anything less than 75 percent "
"is considered \"soft\", and anything greater than 125 percent is considered "
"\"loud\"."
msgstr ""
"แแแแแโแแแกแแ (แ แแแแแแแแ) แแโแแถแโแแทแแถแย แ แแแแทแโแแแแถแแโแแแแทแโแแ
โแแถแโแแแแแ แแพแแแแธโแแแแแโแแแกแแ แ แพแโแแแแทแโแแ
แแถแแแแแถแโ"
"แแพแแแแธโแแแกแพแโแแแกแแย แ แแพโแแทแ
โแแถแ แงแฅ แแถแแแโแแบโแ
แถแแโแแปแโแแถ \"แแถแ\" แแทแโแแพโแแโแแถแ แกแขแฅ แแถแแแโแแบโแ
แถแแโแแปแโแแถ "
"\"แแแแแ\"ย แ"
#: plugins/festivalint/festivalintconfwidget.ui:234
#, no-c-format
msgid "Sp&eed:"
msgstr "แแแแฟแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:256
#: plugins/hadifix/hadifixconfigui.ui:321
#, no-c-format
msgid "&Pitch:"
msgstr "แแแแแแโแแแกแแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:262
#: plugins/festivalint/festivalintconfwidget.ui:365
#: plugins/festivalint/festivalintconfwidget.ui:465
#, no-c-format
msgid ""
"Sets the tone (frequency) of speech. Slide the slider to the left to lower "
"the voice tone; to the right to increase tone. Anything less than 75 "
"percent is considered \"low\", and anything greater than 125 percent is "
"considered \"high\". You cannot change the pitch of MultiSyn voices."
msgstr ""
"แแแแแโแแแกแแ (แ แแแแแแแแ) แแโแแถแแแทแแถแย แ แแแแทแโแแแแถแแแแแแทแโแแ
แแถแแแแแแ แแพแแแแธโแแแแแโแแแกแแ แ แพแโแแแแทแโแแ
แแถแแแแแถแโ"
"แแพแแแแธแแแกแพแโแแแกแแย แ แแพโแแทแ
โแแถแ แงแฅ แแถแแแแแบโแ
แถแแแแปแแแถ \"แแถแ\" แแทแโแแพโแแแแถแ แกแขแฅ แแถแแแโแแบโแ
แถแแแแปแแแถ "
"\"แแแแแ\"ย แ"
#: plugins/festivalint/festivalintconfwidget.ui:485
#, no-c-format
msgid "&Load this voice when starting KTTSD"
msgstr "แแแแปแโแแแกแแโแแแโแแแโแแแแแโแ
แถแแโแแแแพแโ KTTSD"
#: plugins/festivalint/festivalintconfwidget.ui:488
#, no-c-format
msgid ""
"If checked, Festival will be started and this voice will be loaded when the "
"Text-to-Speech Deamon (KTTSD) is started. Check when a voice requires a "
"long time to load in Festival (for example, multisyn voices), otherwise, "
"leave unchecked."
msgstr ""
"แแพโแแถแแแธแโแแถ Festival แแทแโแแถแโแ
แถแแแแแแพแโแ แพแโแแแกแแโแแแโแแถแแแแแปแโแแแโแแแแทแโแขแแแแแโแแแแแถแแโแขแถแโ (KTTSD) "
"แแถแโแ
แถแแโแแแแพแโย แโ แแธแโแแแโแแแกแแโแแแแผแโแแถแโแแแแแแแถโแแแแปแโแแแแปแโแแแแนแแแแทแแถแแแ (แงแแ แแแโ แแแกแแโ multisyn ), แแพโ"
"แแทแโแแผแ
แแแแโแแ แแโแแธแโแ
แแโย แ"
#: plugins/festivalint/festivalintconfwidget.ui:516
#, no-c-format
msgid ""
"Click to test the configuration. Festival will be started and a test "
"sentence will be spoken."
msgstr ""
"แ
แปแ
แแพแแแแธโแแถแแแแแโแแถแโแแแแแโแแ
แแถแแแแแแแแย แ แแแแนแแแแทแแถแแแโแแนแโแแแแผแโแแถแโแ
แถแแแแแแพแ แแทแโแแถแโแแถแแแแแโแแแแแแโแแนแโแแแแผแโ"
"แแถแโแแทแแถแย แ"
#: plugins/festivalint/festivalintconfwidget.ui:542
#, no-c-format
msgid "Character e&ncoding:"
msgstr "แแถแโแขแแธแแแผแโแแฝโแขแแแแย แ"
#: plugins/flite/fliteconfwidget.ui:25
#, no-c-format
msgid "Flite Config UI"
msgstr "Flite แแแแแโแแ
แแถโแแแแแแแแ UI"
#: plugins/flite/fliteconfwidget.ui:28 plugins/flite/fliteconfwidget.ui:73
#, no-c-format
msgid ""
"This is the configuration dialog for the Festival Lite (Flite) speech "
"synthesis engine."
msgstr "แแแโแแบโแแถโแแแแขแแโแแแแแโแแ
แแถแแแแแแแแโแแแแแถแแแแแถแแแธแโแแแแแแแแโแแถแแแทแแถแ Festival Lite (Flite)ย แ"
#: plugins/flite/fliteconfwidget.ui:70
#, no-c-format
msgid "Festival &Lite (flite) Configuration"
msgstr "แแถแแแแแแโแแ
แแถแแแแแแแแ Festival Lite (flite)"
#: plugins/flite/fliteconfwidget.ui:112
#, no-c-format
msgid "&Flite executable path:"
msgstr "แแแแผแโแแแแขแถแ
โแแแแแทแแแแแท Fliteย แ"
#: plugins/flite/fliteconfwidget.ui:121 plugins/flite/fliteconfwidget.ui:140
#, no-c-format
msgid ""
"If Flite is in your PATH environment variable, simply enter \"flite\", "
"otherwise specify the complete path to the Flite executable program."
msgstr ""
"แแแแแทแแแพ Flite แแแแทแแแ
แแแแปแแขแแแโแแแทแแแแถแ PATH แแแแแขแแแ แแผแโแแแแ
แผแ \"flite\" แแพโแแทแแแผแ
แแแแแแ "
"แแแแแถแแโแแแแผแโแแแแแแแแ
แแถแแโแแแแแแทแแธโแแแแขแถแ
โแ
แผแโแแแแแทแแแแแท Fliteย แ"
#: plugins/flite/fliteconfwidget.ui:137
#, no-c-format
msgid "flite"
msgstr "flite"
#: plugins/freetts/freettsconfigwidget.ui:25
#, no-c-format
msgid "FreeTTS Config UI"
msgstr "FreeTTS Config UI"
#: plugins/freetts/freettsconfigwidget.ui:67
#, no-c-format
msgid "FreeTTS Interactive Configuration"
msgstr "แขแแแแโแแแแแโแแ
แแถแแแแแแแแแแแแ FreeTTS"
#: plugins/freetts/freettsconfigwidget.ui:106
#, no-c-format
msgid "&FreeTTS jar file:"
msgstr "แฏแแแถแ FreeTTS jarย แ"
#: plugins/freetts/freettsconfigwidget.ui:179
#, no-c-format
msgid "Test"
msgstr "แแถแแแแแ"
#: plugins/hadifix/hadifixconfigui.ui:16
#, no-c-format
msgid "Hadifix Configuration"
msgstr "แแถแโแแแแแโแแ
แแถโแแแแแแแแ Hadifix"
#: plugins/hadifix/hadifixconfigui.ui:19 plugins/hadifix/hadifixconfigui.ui:47
#, no-c-format
msgid ""
"This is the configuration dialog for the Hadifix (txt2pho and Mbrola) speech "
"synthesizer."
msgstr ""
"แแแโแแบโแแถโแแแแขแแโแแแแแโแแ
แแถโแแแแแแแแโแแแแแถแแโแขแแแโแแแแแแแแโแแถแโแแทแแถแ Hadifix (txt2pho แแทแ Mbrola)ย แ"
#: plugins/hadifix/hadifixconfigui.ui:44
#, no-c-format
msgid "Had&ifix Configuration"
msgstr "แแถแโแแแแแโแแ
แแถโแแแแแแแแ Hadifix"
#: plugins/hadifix/hadifixconfigui.ui:78
#, no-c-format
msgid "&Basic Options"
msgstr "แแแแแพแโแแผแแแแแถแโ"
#: plugins/hadifix/hadifixconfigui.ui:97
#, no-c-format
msgid "&Voice file:"
msgstr "แฏแแแถแโแแแกแแย แ"
#: plugins/hadifix/hadifixconfigui.ui:103
#: plugins/hadifix/hadifixconfigui.ui:119
#, no-c-format
msgid ""
"Select a voice for speaking text. If no voices are listed, check your "
"Mbrola configuration. You must install at least one voice."
msgstr ""
"แแแแพแโแแแกแแโแแแแแถแแโแขแถแโแขแแแแแโย แ แแพโแแแแถแโแแแกแแโโแแแแผแโแแถแโแแแแ แถแโโแแโ แแธแโแแถแแแแแแแแ
แแถแแแแแแแแโ Mbrola แแแแโ"
"แขแแแโย แโ แขแแแโแแแแผแโแแโแแแกแพแโแแแกแแโแแแถแแ แแ
โแแถแแโแแฝแโแแแโย แโ"
#: plugins/hadifix/hadifixconfigui.ui:135
#, no-c-format
msgid "&Select..."
msgstr "แแแแพแโ..."
#: plugins/hadifix/hadifixconfigui.ui:151
#, no-c-format
msgid "Volume &ratio:"
msgstr "แแแถแแถแแแโแแแแแทแโแแแกแแย แโ"
#: plugins/hadifix/hadifixconfigui.ui:157
#: plugins/hadifix/hadifixconfigui.ui:188
#: plugins/hadifix/hadifixconfigui.ui:223
#, no-c-format
msgid ""
"Adjusts the volume of speech. Slide to left for softer speech; to the right "
"for louder."
msgstr ""
"แแแแแแแผแโแแแแแทแโแแแกแแโแแโแแถแแแทแแถแย แ แแแแแโแแแกแแโแแแแแแถโแแ
โแแถแโแแแแแโ แ แพแ แแแกแแโแแแแถแแโแแ
โแแถแโแแแแถแย โแ"
#: plugins/hadifix/hadifixconfigui.ui:245
#: plugins/hadifix/hadifixconfigui.ui:276
#: plugins/hadifix/hadifixconfigui.ui:305
#, no-c-format
msgid ""
"Adjusts the speed of speech. Slide to left for slower speech; to the right "
"for faster."
msgstr "แแโแแแแแผแโแแแแฟแโแแแแแถแแโแแทแแถแโย แ แแแแแโแแแกแแโแแบแแโแแ
โแแถแโแแแแแ แแทแโแแฟแโแแ
โแแถแโแแแแถแย แโ"
#: plugins/hadifix/hadifixconfigui.ui:327
#: plugins/hadifix/hadifixconfigui.ui:355
#: plugins/hadifix/hadifixconfigui.ui:381
#, no-c-format
msgid ""
"Adjusts the pitch (tone) of speech. Slide to left for lower speech; to the "
"right for higher."
msgstr ""
"แแแแแแแผแโแแแแแแโแแแกแแโ (แแแกแแโ) แแโแแถแแแทแแถแโย แ แแแแแโแแถแแแทแแถแโแแถแแแถแโแแ
โแแถแโแแแแแ แแทแโแแแแแโแแถแโแแ
โแแถแโ"
"แแแแถแแ"
#: plugins/hadifix/hadifixconfigui.ui:399
#, no-c-format
msgid "&Advanced Options"
msgstr "แแแแแพแโแแแแแทแโแแแแแโ"
#: plugins/hadifix/hadifixconfigui.ui:416
#, no-c-format
msgid "txt2pho e&xecutable:"
msgstr "txt2pho แแแโแขแถแ
โแแแแแทแแแแแทโแแถแย แ"
#: plugins/hadifix/hadifixconfigui.ui:422
#: plugins/hadifix/hadifixconfigui.ui:438
#, no-c-format
msgid ""
"If the txt2pho program is in your PATH environment variable, simply enter "
"\"txt2pho\", otherwise specify the full path to the txt2pho executable "
"program."
msgstr ""
"แแพโแแแแแแทแแธ txt2pho แแ
โแแแแปแโแขแแแโแแแทแแแแถแ PATH แแแแโแขแแแ แแถโแแแแแแถโแแแแ
แผแ \"txt2pho\" แแทแโแแผแ
แแแแโ"
"แแ แแแแแถแแโแแแแผแโแแแโแแ
โแแแแแแทแแธโแแแโแขแถแ
โแแแแแทแแแแแทโแแถแ txt2phoย แ"
#: plugins/hadifix/hadifixconfigui.ui:446
#, no-c-format
msgid "&Mbrola executable:"
msgstr "Mbrola แแแโแขแถแ
โแแแแแทแแแแแทโแแถแย แ"
#: plugins/hadifix/hadifixconfigui.ui:452
#: plugins/hadifix/hadifixconfigui.ui:468
#, no-c-format
msgid ""
"If the Mbrola program is in your PATH environment variable, simply enter "
"\"mbrola\", otherwise specify the full path to the Mbrola executable program."
msgstr ""
"แแพโแแแแแแทแแธ Mbrola แแ
โแแแแปแโแขแแแโแแแทแแแแถแ PATH แแแแโแขแแแ แแถโแแแแแแถโแแแแ
แผแ \"mbrola\" แแพโแแทแโแแผแ
แแแแ "
"แแแแแถแแโแแแแผแโแแแโแแ
โแแแแแแทแแธโแแแโแขแถแ
โแแแแแทแแแแแท Mbrola แแถแย แ"
#: plugins/hadifix/hadifixconfigui.ui:511
#, no-c-format
msgid ""
"This combo box specifies which character encoding is used for passing the "
"text. For most western languages, use ISO-8859-1. For Hungarian, use "
"ISO-8859-2."
msgstr ""
"แแแแขแแโแแแแแโแแแ แแแแแถแแโแแถแแขแแทแแแผแโแแฝแขแแแแโแแถแแฝแโแแแโแแแแผแแแถแโแแแแพโแแแแแถแแโแแแแแผแโแขแแแแแย แ แแแแแถแแโแแถแแถโแแแแแแโ"
"แแถแโแแทแ
แแแแพ ISO-8859-1ย แ แแแแแถแแโแแถแแถ แ แปแแแแแธ แแแแพ ISO-8859-2ย แ"
#: plugins/hadifix/hadifixconfigui.ui:551
#, no-c-format
msgid "Click to test the configuration. You should hear a spoken sentence."
msgstr "แ
แปแ
โแแพแแแแธโแแถแแแแแโแแถแโแแแแแโแแ
แแถโแแแแแแแแย แ แขแแแโแขแถแ
โแแนแโแฎโแแแแแแโแแแโแแทแแถแย แ"
#: plugins/hadifix/voicefileui.ui:16
#, no-c-format
msgid "Selecting Voice File"
msgstr "แแแแพแโแฏแแแถแโแแแกแแ"
#: plugins/hadifix/voicefileui.ui:33
#, no-c-format
msgid "Path of the voice file:"
msgstr "แแแแผแโแแโแฏแแแถแโแแแกแแย แ"
#: plugins/hadifix/voicefileui.ui:69
#, no-c-format
msgid "Female"
msgstr "แแแแธ"
#: plugins/hadifix/voicefileui.ui:77
#, no-c-format
msgid "Male"
msgstr "แแแแปแโ"
#: plugins/hadifix/voicefileui.ui:85
#, no-c-format
msgid "Try to Determine From Voice File"
msgstr "แแแแถแแถแโแแแแแโแแธโแฏแแแถแโแแแกแแ"
#, fuzzy
#~ msgid "&Remove"
#~ msgstr "แแโแ
แแ"
#, fuzzy
#~ msgid "Configure"
#~ msgstr "แแแแแโแแ
แแถโแแแแแแแแ"
|