1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
|
# translation of gnome-control-center.po to Georgian
# Georgian translation for Gnome Control Centre.
#
# Alexander Didebulidze <didebuli@in.tum.de>, 2005, 2006.
# Vladimer Sichinava <alinux@siena.linux.it>, 2006.
# Zviad Sulaberidze <zviad@osgf.ge>, 2006.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2007.
# Vladimer Sichinava <vsichi@gnome.org>, 2008.
# Vladimer Sichinava <vsichi@gnome.org>, 2008.
# Vladimer Sichinava <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
# Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>, 2008.
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-26 22:56+0200\n"
"PO-Revision-Date: 2008-09-26 23:35+0200\n"
"Last-Translator: Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vsichi@gnome.org>\n"
"Language-Team: Georgian <http://mail.gnome.org/mailman/listinfo/gnome-ge-"
"list>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
"X-Generator: KBabel 1.11.4\n"
#: ../capplets/about-me/eel-alert-dialog.c:114
msgid "Image/label border"
msgstr "แแแฎแแขแแก/แฌแแ แฌแแ แแก แฉแแ แฉแ"
#: ../capplets/about-me/eel-alert-dialog.c:115
msgid "Width of border around the label and image in the alert dialog"
msgstr "แแแคแ แแฎแแแแแแก แกแแ แแแแแจแ แฌแแ แฌแแ แแกแ แแ แแแฎแแขแแก แแ แแแแแ แฉแแ แฉแแก แกแแแแแ"
#: ../capplets/about-me/eel-alert-dialog.c:124
msgid "Alert Type"
msgstr "แแแคแ แแฎแแแแแแก แขแแแ"
#: ../capplets/about-me/eel-alert-dialog.c:125
msgid "The type of alert"
msgstr "แแแคแ แแฎแแแแแแก แขแแแ"
#: ../capplets/about-me/eel-alert-dialog.c:133
msgid "Alert Buttons"
msgstr "แแแคแ แแฎแแแแแแก แฆแแแแแแแ"
#: ../capplets/about-me/eel-alert-dialog.c:134
msgid "The buttons shown in the alert dialog"
msgstr "แแแคแ แแฎแแแแแแก แกแแ แแแแแแ แแแแแกแแฎแฃแแ แฆแแแแแแแ"
#: ../capplets/about-me/eel-alert-dialog.c:198
msgid "Show more _details"
msgstr "_แแแแแขแแแแแ แชแแแแแแ"
#: ../capplets/about-me/gnome-about-me.c:739
msgid "Select Image"
msgstr "แกแฃแ แแแแก แแแแ แฉแแแ"
#: ../capplets/about-me/gnome-about-me.c:741
msgid "No Image"
msgstr "แแ แแแแแแ แ แกแฃแ แแแ"
#: ../capplets/about-me/gnome-about-me.c:769
#: ../capplets/appearance/appearance-desktop.c:661
msgid "Images"
msgstr "แกแฃแ แแแแแ"
#: ../capplets/about-me/gnome-about-me.c:773
#: ../capplets/appearance/theme-installer.c:696
msgid "All Files"
msgstr "แงแแแแ แคแแแแ"
#: ../capplets/about-me/gnome-about-me.c:911
msgid ""
"There was an error while trying to get the addressbook information\n"
"Evolution Data Server can't handle the protocol"
msgstr ""
"แจแแชแแแแ แแแกแแแแ แแแแแก แฌแแแแแแแแแ แแแคแแ แแแชแแแก แแแฆแแแแกแแก\n"
"Evolution-แแก แแแแแชแแแแ แกแแ แแแ แ แแแ แฃแแแแแแแแแ แแ แแขแแแแแก"
#: ../capplets/about-me/gnome-about-me.c:932
msgid "Unable to open address book"
msgstr "แจแแฃแซแแแแแแแ แฌแแแแแแแก แแแฎแกแแ"
#: ../capplets/about-me/gnome-about-me.c:946
msgid "Unknown login ID, the user database might be corrupted"
msgstr "แฃแชแแแแ ID แกแแฎแแแ, แจแแกแแซแแแ แแแแฎแแแ แแแแแแแก แแแแ แแแแแแแแแฃแแแ"
#: ../capplets/about-me/gnome-about-me.c:976
#: ../capplets/about-me/gnome-about-me.c:978
#, c-format
msgid "About %s"
msgstr "%s-แแก แจแแกแแฎแแ"
#: ../capplets/about-me/gnome-about-me.desktop.in.in.h:1
#: ../capplets/about-me/gnome-about-me.glade.h:12
msgid "About Me"
msgstr "แฉแแแก แจแแกแแฎแแ"
#: ../capplets/about-me/gnome-about-me.desktop.in.in.h:2
msgid "Set your personal information"
msgstr "แแฅแแแแ แแแ แแแ แแแคแแ แแแชแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:1
msgid "<b>Email</b>"
msgstr "<b>แแแคแแกแขแ</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:2
msgid "<b>Home</b>"
msgstr "<b>แแแแ</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:3
msgid "<b>Instant Messaging</b>"
msgstr "<b>แแงแแกแแแ แ แแแแแฌแแ แ</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:4
msgid "<b>Job</b>"
msgstr "<b>แแแแแแแแแแแ</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:5
msgid "<b>Telephone</b>"
msgstr "<b>แขแแแแคแแแ</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:6
msgid "<b>Web</b>"
msgstr "<b>WWW</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:7
msgid "<b>Work</b>"
msgstr "<b>แกแแแกแแฎแฃแ แ</b>"
#: ../capplets/about-me/gnome-about-me.glade.h:8
msgid "<span size=\"larger\" weight=\"bold\">Change your password</span>"
msgstr "<span size=\"larger\" weight=\"bold\">แแแ แแแแก แจแแชแแแ</span>"
#: ../capplets/about-me/gnome-about-me.glade.h:9
msgid "A_IM/iChat:"
msgstr "A_IM/iChat:"
#: ../capplets/about-me/gnome-about-me.glade.h:10
msgid "A_ddress:"
msgstr "แแแก_แแแแ แแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:11
msgid "A_ssistant:"
msgstr "แ_แกแแกแขแแแขแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:13
msgid "Address"
msgstr "แแแกแแแแ แแ"
#: ../capplets/about-me/gnome-about-me.glade.h:14
msgid "C_ity:"
msgstr "แฅแแแแฅ_แ:"
#: ../capplets/about-me/gnome-about-me.glade.h:15
msgid "C_ompany:"
msgstr "แ_แแแแแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:16
msgid "Cale_ndar:"
msgstr "แแแแ_แแแแ แ:"
#: ../capplets/about-me/gnome-about-me.glade.h:17
msgid "Change Passwo_rd..."
msgstr "_แแแ แแแแก แจแแชแแแ..."
#: ../capplets/about-me/gnome-about-me.glade.h:18
msgid "Change pa_ssword"
msgstr "แแแ แแแแก แจ_แแชแแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:19
msgid "Change password"
msgstr "แแแ แแแแก แจแแชแแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:20
msgid "Ci_ty:"
msgstr "แฅแ_แแแฅแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:21
msgid "Co_untry:"
msgstr "แฅแ_แแงแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:22
msgid "Contact"
msgstr "แแแแขแแฅแขแ"
#: ../capplets/about-me/gnome-about-me.glade.h:23
msgid "Cou_ntry:"
msgstr "แฅแแแงแ_แแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:24
msgid "Current _password:"
msgstr "แแแแแแแแ แ _แแแ แแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:25
msgid "Full Name"
msgstr "แกแ แฃแแ แกแแฎแแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:26
msgid "Hom_e:"
msgstr "_แกแแฎแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:27
msgid "IC_Q:"
msgstr "IC_Q:"
#: ../capplets/about-me/gnome-about-me.glade.h:28
msgid "M_SN:"
msgstr "M_SN:"
#: ../capplets/about-me/gnome-about-me.glade.h:29
msgid "P.O. _box:"
msgstr "แกแ_แคแแกแแ แงแฃแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:30
msgid "P._O. box:"
msgstr "_แกแแคแแกแขแ แงแฃแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:31
msgid "Personal Info"
msgstr "แแแ แแแ แแแคแแ แแแชแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:32
#: ../capplets/about-me/gnome-about-me-password.c:938
msgid ""
"Please type your password again in the <b>Retype new password</b> field."
msgstr "แแแฎแแแ แฎแแแแฎแแ แแแ แแคแแ แแแ แแแ แแแแจแ <b>แฎแแแแฎแแแ แแแ แแคแ</b>."
#: ../capplets/about-me/gnome-about-me.glade.h:33
msgid "Select your photo"
msgstr "แคแแขแแก แแแแ แฉแแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:34
msgid "State/Pro_vince:"
msgstr "แแฎแแ แ/แแ แแแแแชแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:35
msgid ""
"To change your password, enter your current password in the field below and "
"click <b>Authenticate</b>.\n"
"After you have authenticated, enter your new password, retype it for "
"verification and click <b>Change password</b>."
msgstr ""
"แแแ แแแแก แจแแกแแชแแแแแแ แแแฎแแแ แจแแแงแแแแแ แฅแแแแแ แแแชแแแฃแ แแแแจแ แแแแแแแแ แ แแแ แแแ "
"แแ แแแแญแแ แแ <b>แแแขแแ แแแแชแแ</b>-แก.\n"
"แแฃแขแแแขแแคแแแแชแแแก แจแแแแแแ, แแฅแแแแ แแฎแแแ แแแ แแแ แแแแแฌแแแแแก แแแแแแ แแ แฏแแ แแแ แแคแแ "
"แแ แแแแฌแแแแแ <b>แแแ แแแแก แจแแชแแแ</b>-แก."
#: ../capplets/about-me/gnome-about-me.glade.h:37
msgid "User name:"
msgstr "แแแแฎแแแ แแแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:38
msgid "Web _log:"
msgstr "แแแ แแฃแ แแ_แแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:39
msgid "Wor_k:"
msgstr "_แกแแแกแแฎแฃแ แ:"
#: ../capplets/about-me/gnome-about-me.glade.h:40
msgid "Work _fax:"
msgstr "แกแแแกแแฎแฃแ แแก _แคแแฅแกแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:41
msgid "Zip/_Postal code:"
msgstr "แกแแคแแกแขแ แแ_แแแฅแกแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:42
msgid "_Address:"
msgstr "แแแก_แแแแ แแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:43
msgid "_Authenticate"
msgstr "_แแแขแแ แแแแชแแ"
#: ../capplets/about-me/gnome-about-me.glade.h:44
msgid "_Department:"
msgstr "_แแแแงแแคแแแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:45
msgid "_Groupwise:"
msgstr "_แแแฏแแฃแคแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:46
msgid "_Home page:"
msgstr "แแแ แแแ แแ_แแแแแ แแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:47
msgid "_Home:"
msgstr "แกแแฎ_แแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:48
msgid "_Jabber:"
msgstr "_Jabber:"
#: ../capplets/about-me/gnome-about-me.glade.h:49
msgid "_Manager:"
msgstr "แ_แแแ แแแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:50
msgid "_Mobile:"
msgstr "_แแแแแแฃแ แ:"
#: ../capplets/about-me/gnome-about-me.glade.h:51
msgid "_New password:"
msgstr "_แแฎแแแ แแแ แแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:52
msgid "_Profession:"
msgstr "_แแ แแคแแกแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:53
msgid "_Retype new password:"
msgstr "แฎ_แแแแฎแแแ แจแแงแแแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:54
msgid "_State/Province:"
msgstr "แแฎแแ แ/แแ _แแแแแชแแ:"
#: ../capplets/about-me/gnome-about-me.glade.h:55
msgid "_Title:"
msgstr "_แกแแแแฃแ แ:"
#: ../capplets/about-me/gnome-about-me.glade.h:56
msgid "_Work:"
msgstr "_แกแแแกแแฎแฃแ แ:"
#: ../capplets/about-me/gnome-about-me.glade.h:57
msgid "_Yahoo:"
msgstr "_Yahoo:"
#: ../capplets/about-me/gnome-about-me.glade.h:58
msgid "_Zip/Postal code:"
msgstr "แกแแคแแกแขแ _แแแแแฅแกแ:"
#: ../capplets/about-me/gnome-about-me-password.c:162
msgid "Child exited unexpectedly"
msgstr "แจแแแแ แแ แแชแแกแ แฃแชแแแแแแ แแแแแแจแ"
#: ../capplets/about-me/gnome-about-me-password.c:297
#, c-format
msgid "Could not shutdown backend_stdin IO channel: %s"
msgstr "แจแแฃแซแแแแแแแ แจแแแแ แแ แแชแแกแแก แจแแงแแแแแก แแ แฎแแก แแแฎแฃแ แแ: %s"
#: ../capplets/about-me/gnome-about-me-password.c:310
#, c-format
msgid "Could not shutdown backend_stdout IO channel: %s"
msgstr "แจแแฃแซแแแแแแแ แจแแแแ แแ แแชแแกแแก แแแแแงแแแแแก แแ แฎแแก แแแฎแฃแ แแ: %s"
#: ../capplets/about-me/gnome-about-me-password.c:409
msgid "Authenticated!"
msgstr "แแแขแแ แแแแแแ แแแฃแแแ!"
#. This is a re-auth, and it failed.
#. * The password must have been changed in the meantime!
#. * Ask the user to re-authenticate
#.
#. Update status message and auth state
#. Authentication failure
#: ../capplets/about-me/gnome-about-me-password.c:475
#: ../capplets/about-me/gnome-about-me-password.c:551
msgid ""
"Your password has been changed since you initially authenticated! Please re-"
"authenticate."
msgstr ""
"แฃแแแแแกแแแแแ แแแขแแ แแแแชแแแก แแ แแก แแฅแแแแ แแแ แแแ แจแแแชแแแแ! แแแฎแแแ แฎแแแแฎแแ แกแชแแแแ."
#: ../capplets/about-me/gnome-about-me-password.c:477
msgid "That password was incorrect."
msgstr "แแ แแกแฌแแ แ แแแ แแแ."
#: ../capplets/about-me/gnome-about-me-password.c:524
msgid "Your password has been changed."
msgstr "แแฅแแแแ แแแ แแแ แจแแชแแแแแแ."
#. What does this indicate?
#. * "Authentication information cannot be recovered?" from libpam?
#: ../capplets/about-me/gnome-about-me-password.c:534
#, c-format
msgid "System error: %s."
msgstr "แกแแกแขแแแฃแ แ แจแแชแแแแ: %s."
#: ../capplets/about-me/gnome-about-me-password.c:537
msgid "The password is too short."
msgstr "แซแแแแแ แแแแแ แแแ แแแ."
#: ../capplets/about-me/gnome-about-me-password.c:540
msgid "The password is too simple."
msgstr "แซแแแแแ แแแ แขแแแ แแแ แแแ."
#: ../capplets/about-me/gnome-about-me-password.c:543
msgid "The old and new passwords are too similar."
msgstr "แแฎแแแ แแ แซแแแแ แแแ แแแ แแ แแแแแแแก แฐแแแแแแ."
#: ../capplets/about-me/gnome-about-me-password.c:545
msgid "The new password must contain numeric or special character(s)."
msgstr "แแฎแแแ แแแ แแแ แชแแคแ แแแก แแ แกแแแแแแแแแก แฃแแแ แจแแแชแแแแแก."
#: ../capplets/about-me/gnome-about-me-password.c:548
msgid "The old and new passwords are the same."
msgstr "แซแแแแ แแ แแฎแแแ แแแ แแแ แแ แแ แแ แแแแแแแ."
#. translators: Unable to launch <program>: <error message>
#: ../capplets/about-me/gnome-about-me-password.c:820
#, c-format
msgid "Unable to launch %s: %s"
msgstr "แจแแฃแซแแแแแแแ แแแจแแแแ %s: %s"
#: ../capplets/about-me/gnome-about-me-password.c:824
msgid "Unable to launch backend"
msgstr "แจแแฃแซแแแแแแแ แจแแแ แแ แแแ แแแแก แแแจแแแแ"
#: ../capplets/about-me/gnome-about-me-password.c:825
msgid "A system error has occurred"
msgstr "แแแแจแแ แกแแกแขแแแฃแ แ แจแแชแแแแ"
#. Update status message
#: ../capplets/about-me/gnome-about-me-password.c:845
msgid "Checking password..."
msgstr "แแแ แแแแก แจแแแแฌแแแแ..."
#: ../capplets/about-me/gnome-about-me-password.c:932
msgid "Click <b>Change password</b> to change your password."
msgstr "แแแ แแแแก แจแแกแแชแแแแแแ แแแแฌแแแแฃแแแ <b>แแแ แแแแก แจแแชแแแ</b>-แก."
#: ../capplets/about-me/gnome-about-me-password.c:935
msgid "Please type your password in the <b>New password</b> field."
msgstr "แแแฎแแแ แจแแแงแแแแแ แแแ แแแ แแฎแแ แแแแจแ <b>แแฎแแแ แแแ แแแ</b>."
#: ../capplets/about-me/gnome-about-me-password.c:941
msgid "The two passwords are not equal."
msgstr "แแแ แแแแแ แแ แแแแแแแก แแ แแแแฎแแแแแแ."
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:1
msgid "<b>Assistive Technologies</b>"
msgstr "<b>แแแแฎแแแ แ แขแแฅแแแแแแแ</b>"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:2
msgid "<b>Preferences</b>"
msgstr "<b>แแแ แแแแขแ แแแ</b>"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:3
msgid "Accessible Lo_gin"
msgstr "แซแแ แแแแแ แกแแ แแแแแแแ แ แแแแกแขแ แแชแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:4
msgid "Assistive Technologies Preferences"
msgstr "แแแแฎแแแ แ แขแแฅแแแแแแแแแแก แแแ แแแแขแ แแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:5
msgid ""
"Changes to enable assistive technologies will not take effect until your "
"next log in."
msgstr "แแแแฎแแแ แ แขแแฅแแแแแแแ แแ แฉแแแ แแแแแ แแฅแแแแก แแแแแแแ แจแแแแกแแแแแแ."
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:6
msgid "Close and _Log Out"
msgstr "แแแฎแฃแ แแ แแ แแแกแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:7
msgid "Jump to Preferred Applications dialog"
msgstr "แกแแกแฃแ แแแแ แแ แแแ แแแแแแก แแแแแแ แกแแ แแแแแแ แแแแแกแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:8
msgid "Jump to the Accessible Login dialog"
msgstr "แแแแฎแแแ แแแแแก แจแแแแกแแกแแแแ แแแแแแ แกแแ แแแแแแ แแแแแกแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:9
msgid "Jump to the Keyboard Accessibility dialog"
msgstr "แแแแแแแขแฃแ แแก แฌแแแแแแก แกแแจแฃแแแแแแแแก แแแแแแ แกแแ แแแแแแ แแแแแกแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:10
msgid "Jump to the Mouse Accessibility dialog"
msgstr "แแแแฃแแแแ แฌแแแแแแก แกแแจแฃแแแแแแแแก แแแแแแ แกแแ แแแแแแ แแแแแกแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:11
msgid "_Enable assistive technologies"
msgstr "แแแแฎแแแ แ แข_แแฅแแแแแแแแแแก แฉแแ แแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:12
msgid "_Keyboard Accessibility"
msgstr "_แแแแแแแขแฃแ แแก แแแแฎแแแ แ แกแแจแฃแแแแแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:13
msgid "_Mouse Accessibility"
msgstr "_แแแแฃแแแก แแแแฎแแแ แ แกแแจแฃแแแแแแแ"
#: ../capplets/accessibility/at-properties/at-enable-dialog.glade.h:14
msgid "_Preferred Applications"
msgstr "แกแแกแฃแ แแแแ _แแ แแแ แแแแแ"
#: ../capplets/accessibility/at-properties/at-properties.desktop.in.in.h:1
msgid "Assistive Technologies"
msgstr "<b>แแแแฎแแแ แ แขแแฅแแแแแแแแแ</b>"
#: ../capplets/accessibility/at-properties/at-properties.desktop.in.in.h:2
msgid "Choose which accessibility features to enable when you log in"
msgstr ""
#: ../capplets/appearance/appearance-desktop.c:629
msgid "Add Wallpaper"
msgstr "แคแแแฃแ แ แกแฃแ แแแแก แแแแแขแแแ"
#: ../capplets/appearance/appearance-desktop.c:665
msgid "All files"
msgstr "แงแแแแ แคแแแแ"
#: ../capplets/appearance/appearance-font.c:494
msgid "Font may be too large"
msgstr "แจแแกแแซแแแ แจแ แแคแขแ แกแแแแแ แแกแแ แแแแ แแงแแก"
#: ../capplets/appearance/appearance-font.c:498
#, c-format
msgid ""
"The font selected is %d point large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a size "
"smaller than %d."
msgid_plural ""
"The font selected is %d points large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a size "
"smaller than %d."
msgstr[0] ""
"แแ แฉแแฃแแ แจแ แแคแขแ แแ แแก %d แฌแแ แขแแแแแแ แแ แจแแกแแซแแแ แแแแแแฃแขแแ แแก แแคแแฅแขแฃแ แ แแแฎแแแ แแแ "
"แแแแซแแแแแก. แ แแแแแแแแแแฃแแแ, แ แแ แแแ แฉแแก %d-แแ แแชแแ แ แแแแ."
#: ../capplets/appearance/appearance-font.c:511
#, c-format
msgid ""
"The font selected is %d point large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a smaller "
"sized font."
msgid_plural ""
"The font selected is %d points large, and may make it difficult to "
"effectively use the computer. It is recommended that you select a smaller "
"sized font."
msgstr[0] ""
"แแ แฉแแฃแแ แจแ แแคแขแ แแ แแก %d แฌแแ แขแแแแ แแแแ แแ แจแแกแแซแแแ แแแแแแฃแขแแ แแก แแคแแฅแขแฃแ แ "
"แแแฎแแแ แแแ แแแแซแแแแแก. แ แแแแแแแแแแฃแแแ, แ แแ แแแ แฉแแก แฃแคแ แ แแชแแ แ แแแแแก แจแ แแคแขแ."
#: ../capplets/appearance/appearance-font.c:533
msgid "Use previous font"
msgstr "แฌแแแ แจแ แแคแขแแก แแแแแงแแแแแ"
#: ../capplets/appearance/appearance-font.c:535
msgid "Use selected font"
msgstr "แแแแ แฉแแฃแแ แจแ แแคแขแแก แแแแแงแแแแแ"
#: ../capplets/appearance/appearance-main.c:107
msgid "Specify the filename of a theme to install"
msgstr "แแแคแแ แแแแแก แแแแแก แคแแแแแก แกแแฎแแแแก แแแแแแแแ แแแกแแงแแแแแแแ"
#: ../capplets/appearance/appearance-main.c:108
msgid "filename"
msgstr "filename"
#. TRANSLATORS: don't translate the terms in brackets
#: ../capplets/appearance/appearance-main.c:115
msgid "Specify the name of the page to show (theme|background|fonts|interface)"
msgstr ""
"แกแแฉแแแแแแแแ แแแแ แแแก แกแแฎแแแแก แแแแแแแแ (theme|background|fonts|interface)"
#: ../capplets/appearance/appearance-main.c:116
#: ../capplets/default-applications/gnome-da-capplet.c:880
#: ../capplets/mouse/gnome-mouse-properties.c:444
msgid "page"
msgstr "page"
#: ../capplets/appearance/appearance-main.c:123
msgid "[WALLPAPER...]"
msgstr "[WALLPAPER...]"
#: ../capplets/appearance/appearance-style.c:171
#: ../capplets/common/gnome-theme-info.c:442
#: ../capplets/common/gnome-theme-info.c:634
msgid "Default Pointer"
msgstr "แแแแฃแแแกแฎแแแแ แแฃแ แกแแ แ"
#: ../capplets/appearance/appearance-style.c:233
#: ../capplets/appearance/appearance-themes.c:686
msgid "Install"
msgstr "แแแงแแแแแ"
#: ../capplets/appearance/appearance-style.c:253
#: ../capplets/common/gnome-theme-info.c:1644
#, c-format
msgid ""
"This theme will not look as intended because the required GTK+ theme engine "
"'%s' is not installed."
msgstr ""
#: ../capplets/appearance/appearance-themes.c:674
msgid "Apply Background"
msgstr "แคแแแแก แแแแแงแแแแแ"
#: ../capplets/appearance/appearance-themes.c:678
msgid "Apply Font"
msgstr "แจแ แแคแขแแก แแแแแงแแแแแ"
#: ../capplets/appearance/appearance-themes.c:682
msgid "Revert Font"
msgstr "แจแ แแคแขแแก แแแแ แฃแแแแ"
#: ../capplets/appearance/appearance-themes.c:712
#, fuzzy
msgid ""
"The current theme suggests a background and a font. Also, the last applied "
"font suggestion can be reverted."
msgstr "แแแแแแแแ แ แแแคแแ แแแแแกแแแแก แกแแกแฃแ แแแแ แคแแแ แแ แจแ แแคแขแ"
#: ../capplets/appearance/appearance-themes.c:714
#, fuzzy
msgid ""
"The current theme suggests a background. Also, the last applied font "
"suggestion can be reverted."
msgstr "แแแแแแแแ แ แแแคแแ แแแแแกแแแแก แกแแกแฃแ แแแแ แคแแแ แแ แจแ แแคแขแ"
#: ../capplets/appearance/appearance-themes.c:716
msgid "The current theme suggests a background and a font."
msgstr "แแแแแแแแ แ แแแคแแ แแแแแกแแแแก แกแแกแฃแ แแแแ แคแแแ แแ แจแ แแคแขแ"
#: ../capplets/appearance/appearance-themes.c:718
msgid ""
"The current theme suggests a font. Also, the last applied font suggestion "
"can be reverted."
msgstr ""
#: ../capplets/appearance/appearance-themes.c:720
msgid "The current theme suggests a background."
msgstr "แแแแแแแแ แ แแแคแแ แแแแแกแแแแก แกแแกแฃแ แแแแ แคแแแ."
#: ../capplets/appearance/appearance-themes.c:722
msgid "The last applied font suggestion can be reverted."
msgstr ""
#: ../capplets/appearance/appearance-themes.c:724
msgid "The current theme suggests a font."
msgstr "แแแแแแแแ แ แแแคแแ แแแแแกแแแแก แกแแกแฃแ แแแแ แจแ แแคแขแ."
#: ../capplets/appearance/appearance-themes.c:1045
#: ../capplets/default-applications/gnome-da-capplet.c:630
#: ../capplets/sound/sound-properties-capplet.c:262
#: ../capplets/sound/sound-theme.c:648 ../capplets/sound/sound-theme.c:720
msgid "Custom"
msgstr "แกแฎแแ"
#: ../capplets/appearance/data/appearance.glade.h:1
msgid "<b>C_olors</b>"
msgstr "<b>แคแแ _แ</b>"
#. font hinting
#: ../capplets/appearance/data/appearance.glade.h:3
msgid "<b>Hinting</b>"
msgstr "<b>แฐแแแขแแ แแแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:4
msgid "<b>Menus and Toolbars</b>"
msgstr "<b>แแฃแแขแแแ แแ แแแแแฃแแแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:5
msgid "<b>Preview</b>"
msgstr "<b>แแแแฃแจแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:6
msgid "<b>Rendering</b>"
msgstr "<b>แ แแแแแ แแแแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:7
msgid "<b>Smoothing</b>"
msgstr "<b>แแแแแฃแแแแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:8
msgid "<b>Subpixel Order</b>"
msgstr "<b>แฅแแแแแฅแกแแแแแแก แแแแแแแ แแแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:9
msgid "<b>_Wallpaper</b>"
msgstr "<b>แคแแแฃแ แ _แกแฃแ แแแ</b>"
#: ../capplets/appearance/data/appearance.glade.h:10
msgid "Appearance Preferences"
msgstr "แแแ แกแแฎแแก แแแ แแแแขแ แแแ"
#: ../capplets/appearance/data/appearance.glade.h:11
msgid "Background"
msgstr "แคแแแ"
#: ../capplets/appearance/data/appearance.glade.h:12
msgid "Best _shapes"
msgstr "แกแแฃแแแแแกแ _แแแงแแแแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:13
msgid "Best co_ntrast"
msgstr "แกแแฃแแแแแกแ _แแแแขแ แแกแขแ"
#: ../capplets/appearance/data/appearance.glade.h:14
msgid "C_ustomize..."
msgstr "แแ_แแแ แแแ..."
#: ../capplets/appearance/data/appearance.glade.h:15
msgid "C_ut"
msgstr "แแ_แแญแ แ"
#: ../capplets/appearance/data/appearance.glade.h:16
msgid "Changing your cursor theme takes effect the next time you log in."
msgstr ""
"แแฃแ แกแแ แแก แแแคแแ แแแแแก แชแแแแแแแแก แแแแขแแแชแแแ แกแแแแกแจแ แฎแแแแฎแแแ แจแแแแกแแแแ "
"แแขแแแชแแแแ."
#: ../capplets/appearance/data/appearance.glade.h:17
msgid "Colors"
msgstr "แคแแ แ"
#: ../capplets/appearance/data/appearance.glade.h:18
msgid "Controls"
msgstr "แแแแ แแแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:19
msgid "Customize Theme"
msgstr "แแแคแแ แแแแแก แแแแฃแจแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:20
msgid "D_etails..."
msgstr "_แแแขแแแแแ..."
#: ../capplets/appearance/data/appearance.glade.h:21
msgid "Des_ktop font:"
msgstr "แกแแแฃแจแแ แแแ_แแแแก แจแ แแคแขแ:"
#: ../capplets/appearance/data/appearance.glade.h:22
msgid "Edit"
msgstr "แ แแแแฅแขแแ แแแ"
#: ../capplets/appearance/data/appearance.glade.h:23
msgid "Font Rendering Details"
msgstr "แจแ แแคแขแแก แแแแแกแแฎแแแก แแแขแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:24
msgid "Fonts"
msgstr "แจแ แแคแขแแแ"
#: ../capplets/appearance/data/appearance.glade.h:25
msgid "Gra_yscale"
msgstr "แกแ_แ แแก แขแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:26
msgid "Icons"
msgstr "แฎแแขแฃแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:27
msgid "Interface"
msgstr "แแแขแแ แคแแแกแ"
#: ../capplets/appearance/data/appearance.glade.h:28
msgid "Large"
msgstr "แแแแ"
#: ../capplets/appearance/data/appearance.glade.h:29
msgid "N_one"
msgstr "แแ แ_แคแแ แ"
#: ../capplets/appearance/data/appearance.glade.h:30
msgid "New File"
msgstr "แแฎแแแ แคแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:31
msgid "Open File"
msgstr "แคแแแแแก แแแฎแกแแ"
#: ../capplets/appearance/data/appearance.glade.h:32
msgid "Open a dialog to specify the color"
msgstr "แแแฎแกแแแ แคแแ แแก แแแกแแแแแแแแแ แแแแแแแฃแ แ แคแแแฏแแ แ"
#: ../capplets/appearance/data/appearance.glade.h:33
msgid "Pointer"
msgstr "แแฃแ แกแแ แ"
#: ../capplets/appearance/data/appearance.glade.h:34
msgid "R_esolution:"
msgstr "แแแ แฉ_แแแแแแแ:"
#: ../capplets/appearance/data/appearance.glade.h:35
msgid "Save File"
msgstr "แคแแแแแก แจแแแแฎแแ"
#: ../capplets/appearance/data/appearance.glade.h:36
msgid "Save Theme As..."
msgstr "แแแคแแ แแแแแก แแแแแฎแกแแแ แแแ แ แแแแ แช..."
#: ../capplets/appearance/data/appearance.glade.h:37
msgid "Save _As..."
msgstr "แ_แแแแฎแกแแแ แแแ แ แแแแ แช..."
#: ../capplets/appearance/data/appearance.glade.h:38
msgid "Save _background image"
msgstr "แคแแแแก _แกแฃแ แแแแก แแแแแฎแกแแแ แแแ"
#: ../capplets/appearance/data/appearance.glade.h:39
msgid "Show _icons in menus"
msgstr "แแแแฃแจแ _แฎแแขแฃแแแแแก แฉแแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:40
msgid "Small"
msgstr "แแแขแแ แ"
#: ../capplets/appearance/data/appearance.glade.h:41
msgid ""
"Solid color\n"
"Horizontal gradient\n"
"Vertical gradient"
msgstr ""
"แแงแแ แ แคแแ แ\n"
"แฐแแ แแแแแขแแแฃแ แ แแ แแแแชแแ\n"
"แแแ แขแแแแแฃแ แ แแ แแแแชแแ"
#: ../capplets/appearance/data/appearance.glade.h:44
msgid "Sub_pixel (LCDs)"
msgstr "แฅแแ_แแแฅแกแแแ (LCDแแแแก)"
#: ../capplets/appearance/data/appearance.glade.h:45
msgid "Sub_pixel smoothing (LCDs)"
msgstr "แฅแแ_แแแฅแกแแแแแแก แแแแแฃแแแแ (LCD-แแแ)"
#: ../capplets/appearance/data/appearance.glade.h:46
msgid "Text"
msgstr "แขแแฅแกแขแ"
#: ../capplets/appearance/data/appearance.glade.h:47
msgid ""
"Text below items\n"
"Text beside items\n"
"Icons only\n"
"Text only"
msgstr ""
"แขแแฅแกแขแ แแแแแแแขแแแก แฅแแแจ\n"
"แขแแฅแกแขแ แแแแแแแขแแแแก แแแแ แแแ\n"
"แแฎแแแแ แฎแแขแฃแแแแ\n"
"แแฎแแแแ แขแแฅแกแขแ"
#: ../capplets/appearance/data/appearance.glade.h:51
msgid "The current controls theme does not support color schemes."
msgstr "แแแแแแแแ แ แแแแแก แแ แแแแฉแแแ แคแแ แแแแก แกแฅแแแแก แแฎแแ แแแญแแ แ."
#: ../capplets/appearance/data/appearance.glade.h:52
msgid "Theme"
msgstr "แแแคแแ แแแแแก แแแแ"
#: ../capplets/appearance/data/appearance.glade.h:53
msgid ""
"Tiled\n"
"Zoom\n"
"Centered\n"
"Scaled\n"
"Fill screen"
msgstr ""
"แแแแแแขแฃแ แฃแแ\n"
"แแแแแแแแฃแแ\n"
"แชแแแขแ แจแ\n"
"แแแญแแแฃแแ\n"
"แแแ แแแแก แจแแแกแแแ"
#: ../capplets/appearance/data/appearance.glade.h:58
msgid "Toolbar _button labels:"
msgstr "แแแแแแแก แฆ_แแแแแแก แฌแแ แฌแแ แ:"
#. vertical hinting, pixel order blue, green, red
#: ../capplets/appearance/data/appearance.glade.h:60
msgid "VB_GR"
msgstr "VB_GR"
#: ../capplets/appearance/data/appearance.glade.h:61
msgid "Window Border"
msgstr "แคแแแฏแแ แแก แฉแแ แฉแ"
#: ../capplets/appearance/data/appearance.glade.h:62
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:50
msgid "_Add..."
msgstr "_แแแแแขแแแ..."
#: ../capplets/appearance/data/appearance.glade.h:63
msgid "_Application font:"
msgstr "แแ _แแแ แแแแก แจแ แแคแขแ:"
#. pixel order blue, green, red
#: ../capplets/appearance/data/appearance.glade.h:65
msgid "_BGR"
msgstr "_BGR"
#: ../capplets/appearance/data/appearance.glade.h:66
msgid "_Copy"
msgstr "_แแกแแ"
#: ../capplets/appearance/data/appearance.glade.h:67
msgid "_Description:"
msgstr "_แแฆแฌแแ แแแแแ:"
#: ../capplets/appearance/data/appearance.glade.h:68
msgid "_Document font:"
msgstr "_แแแแฃแแแแขแแก แจแ แแคแขแ:"
#: ../capplets/appearance/data/appearance.glade.h:69
msgid "_Editable menu shortcut keys"
msgstr "_แ แแแแฅแขแแ แแแแแ แแแแแฃแก แแแแแฉแฅแแ แแแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:70
msgid "_File"
msgstr "_แคแแแแ"
#: ../capplets/appearance/data/appearance.glade.h:71
msgid "_Fixed width font:"
msgstr "_แคแแฅแกแแ แแแฃแแ แกแแแแแแก แจแ แแคแขแ:"
#: ../capplets/appearance/data/appearance.glade.h:72
msgid "_Full"
msgstr "_แกแ แฃแแ"
#: ../capplets/appearance/data/appearance.glade.h:73
msgid "_Input boxes:"
msgstr "แจแแงแแแ_แแก แแแแ:"
#: ../capplets/appearance/data/appearance.glade.h:74
msgid "_Install..."
msgstr "_แแแงแแแแแ..."
#: ../capplets/appearance/data/appearance.glade.h:75
msgid "_Medium"
msgstr "แก_แแจแฃแแแ"
#: ../capplets/appearance/data/appearance.glade.h:76
msgid "_Monochrome"
msgstr "_แแแแแฅแ แแแแขแฃแแ"
#: ../capplets/appearance/data/appearance.glade.h:77
msgid "_Name:"
msgstr "_แกแแฎแฌแแแแแ:"
#: ../capplets/appearance/data/appearance.glade.h:78
msgid "_New"
msgstr "_แแฎแแแ"
#: ../capplets/appearance/data/appearance.glade.h:79
msgid "_None"
msgstr "_แแ แแคแแ แ"
#: ../capplets/appearance/data/appearance.glade.h:80
msgid "_Open"
msgstr "_แแแฎแกแแ"
#: ../capplets/appearance/data/appearance.glade.h:81
msgid "_Paste"
msgstr "_แฉแแกแแ"
#: ../capplets/appearance/data/appearance.glade.h:82
msgid "_Print"
msgstr "_แแแญแแแ"
#: ../capplets/appearance/data/appearance.glade.h:83
msgid "_Quit"
msgstr "_แแแกแแแ"
#. pixel order red, green, blue
#: ../capplets/appearance/data/appearance.glade.h:85
msgid "_RGB"
msgstr "_RGB"
#: ../capplets/appearance/data/appearance.glade.h:86
msgid "_Reset to Defaults"
msgstr "แแ_แแฃแแแกแฎแแแแแ แแแแแ แแแ"
#: ../capplets/appearance/data/appearance.glade.h:87
msgid "_Save"
msgstr "แจ_แแแแฎแแ"
#: ../capplets/appearance/data/appearance.glade.h:88
msgid "_Selected items:"
msgstr "_แแแแแจแแฃแแ แแแแแแแขแ:"
#: ../capplets/appearance/data/appearance.glade.h:89
msgid "_Size:"
msgstr "_แแแแ:"
#: ../capplets/appearance/data/appearance.glade.h:90
msgid "_Slight"
msgstr "แแกแฃ_แแฃแฅแ"
#: ../capplets/appearance/data/appearance.glade.h:91
msgid "_Style:"
msgstr "_แกแขแแแ:"
#: ../capplets/appearance/data/appearance.glade.h:92
msgid "_Tooltips:"
msgstr "_แแแ แแแฎแแแ:"
#. vertical hinting, pixel order red, green, blue
#: ../capplets/appearance/data/appearance.glade.h:94
msgid "_VRGB"
msgstr "_VRGB"
#: ../capplets/appearance/data/appearance.glade.h:95
msgid "_Window title font:"
msgstr "_แคแแแฏแ แแก แกแแแแฃแ แแก แจแ แแคแขแ:"
#: ../capplets/appearance/data/appearance.glade.h:96
msgid "_Windows:"
msgstr "แคแ_แแฏแ แแแ:"
#: ../capplets/appearance/data/appearance.glade.h:97
msgid "dots per inch"
msgstr "แฌแแ แขแแแ แแฃแแแจแ"
#: ../capplets/appearance/data/gnome-appearance-properties.desktop.in.in.h:1
msgid "Appearance"
msgstr "แแแ แแแแก แแแ แกแแฎแ"
#: ../capplets/appearance/data/gnome-appearance-properties.desktop.in.in.h:2
msgid "Customize the look of the desktop"
msgstr "แกแแแฃแจแแ แแแแแแแก แฎแแแแก แแแแแแแแแแ"
#: ../capplets/appearance/data/gnome-theme-installer.desktop.in.in.h:1
msgid "Installs themes packages for various parts of the desktop"
msgstr "แแงแแแแแก แกแแแฃแจแแ แแแแแแแก แกแฎแแแแแกแฎแแ แแแฌแแแแแแก แแแแแแก"
#: ../capplets/appearance/data/gnome-theme-installer.desktop.in.in.h:2
msgid "Theme Installer"
msgstr "แแแคแแ แแแแแก แแแแงแแแแแแแ"
#: ../capplets/appearance/data/gnome-theme-package.xml.in.h:1
msgid "Gnome Theme Package"
msgstr "แแแแแแก แแแคแแ แแแแแแแก แแแแแขแ"
#: ../capplets/appearance/gnome-wp-info.c:50
msgid "No Wallpaper"
msgstr "แคแแแฃแ แ แกแฃแ แแแแก แแแ แแจแ"
#: ../capplets/appearance/gnome-wp-item.c:209
msgid "Slide Show"
msgstr "แกแแแแแแแแก แฉแแแแแแ"
#. translators: <b>wallpaper name</b>
#. * mime type, x pixel(s) by y pixel(s)
#. * Folder: /path/to/file
#.
#: ../capplets/appearance/gnome-wp-item.c:217
#, c-format
msgid ""
"<b>%s</b>\n"
"%s, %d %s by %d %s\n"
"Folder: %s"
msgstr ""
"<b>%s</b>\n"
"%s, %d %s แแแแ %d %s\n"
"แแแกแขแ: %s"
#: ../capplets/appearance/gnome-wp-item.c:223
#: ../capplets/appearance/gnome-wp-item.c:225
msgid "pixel"
msgid_plural "pixels"
msgstr[0] "แแแฅแกแแแ"
#: ../capplets/appearance/theme-installer.c:172
#: ../capplets/appearance/theme-installer.c:222
#, fuzzy
msgid "Cannot install theme"
msgstr "แแแแขแ แแแแก แแแคแแ แแแแ"
#: ../capplets/appearance/theme-installer.c:174
#, fuzzy, c-format
msgid "The %s utility is not installed."
msgstr ""
"แจแแฃแซแแแแแแแ แแแคแแ แแแแแก แแแงแแแแแ.\n"
"%s แฃแขแแแแขแ แแ แแ แแก แแแงแแแแแฃแแ."
#: ../capplets/appearance/theme-installer.c:224
#, fuzzy
msgid "There was a problem while extracting the theme."
msgstr ""
"แจแแฃแซแแแแแแแ แแแคแแ แแแแแก แแแงแแแแแ.\n"
"แแแแจแแ แจแแชแแแแ แแแกแ แแแแแ แฅแแแแแแก แแ แแก."
#: ../capplets/appearance/theme-installer.c:247
#, fuzzy
msgid "There was an error installing the selected file"
msgstr "แแแฎแแแ แแแแก แแแแแซแแฎแแแแกแแก แแแฎแแ แจแแชแแแแ: %s"
#: ../capplets/appearance/theme-installer.c:248
#, c-format
msgid "\"%s\" does not appear to be a valid theme."
msgstr ""
#: ../capplets/appearance/theme-installer.c:249
#, c-format
msgid ""
"\"%s\" does not appear to be a valid theme. It may be a theme engine which "
"you need to compile."
msgstr ""
#: ../capplets/appearance/theme-installer.c:288
#, c-format
msgid "GNOME Theme %s correctly installed"
msgstr "แแแแแแก แแแคแแ แแแแแก แแแแ %s แแแ แแแแฃแแแ แแแงแแแแ."
#: ../capplets/appearance/theme-installer.c:355
#, fuzzy, c-format
msgid "Installation for theme \"%s\" failed."
msgstr "แแแกแขแแแแชแแ แแแ แจแแกแ แฃแแแ"
#: ../capplets/appearance/theme-installer.c:393
#, c-format
msgid "The theme \"%s\" has been installed."
msgstr "แแแคแแ แแแแแก แแแแ \"%s\" แแแ แแแแฃแแแ แแแงแแแแ."
#: ../capplets/appearance/theme-installer.c:399
msgid "Would you like to apply it now, or keep your current theme?"
msgstr "แแแแแแแ แแแชแแแฃแแ แแแคแแ แแแแแก แแแแขแแแชแแแ, แแฃ แฌแแแแก แแแแ แฃแแแแ ?"
#: ../capplets/appearance/theme-installer.c:401
msgid "Keep Current Theme"
msgstr "แแแแแแแแ แ แแแคแแ แแแแแก แแแแแฎแกแแแ แแแ"
#: ../capplets/appearance/theme-installer.c:403
msgid "Apply New Theme"
msgstr "แแฎแแแ แแแคแแ แแแแแก แแแแแงแแแแแ"
#: ../capplets/appearance/theme-installer.c:506
msgid "Failed to create temporary directory"
msgstr "แแแ แแแฎแแ แแ แแแแแแ แแแ แแฅแขแแ แแก แจแแฅแแแ"
#: ../capplets/appearance/theme-installer.c:569
#, fuzzy
msgid "New themes have been successfully installed."
msgstr "แแแคแแ แแแแแก แแแแ \"%s\" แแแ แแแแฃแแแ แแแงแแแแ."
#: ../capplets/appearance/theme-installer.c:594
msgid "No theme file location specified to install"
msgstr "แแ แแ แแก แแแแแแแแฃแแ แแแกแแงแแแแแ แแแแแก แคแแแแแก แแแแแแ แแแแ"
#: ../capplets/appearance/theme-installer.c:615
#, c-format
msgid ""
"Insufficient permissions to install the theme in:\n"
"%s"
msgstr ""
"แแ แแกแแแแแ แแกแ แแแแแ แแแแแแ, แ แแ แแแงแแแแแก แแแแ แแฅ:\n"
"%s"
#: ../capplets/appearance/theme-installer.c:685
msgid "Select Theme"
msgstr "แแแคแแ แแแแแก แแแแ แฉแแแ"
#: ../capplets/appearance/theme-installer.c:689
msgid "Theme Packages"
msgstr "แแแคแแ แแแแแก แแแแแขแแแ"
#: ../capplets/appearance/theme-save.c:91
#, c-format
msgid "Theme name must be present"
msgstr "แแแแ แฃแแแ แแ แกแแแแแแแก"
#: ../capplets/appearance/theme-save.c:154
msgid "The theme already exists. Would you like to replace it?"
msgstr "แแแแ แฃแแแ แแ แกแแแแแก. แแแแแแแ แจแแชแแแแแ แแแ?"
#: ../capplets/appearance/theme-save.c:155
#: ../capplets/common/file-transfer-dialog.c:450
msgid "_Overwrite"
msgstr "_แแแแแแแแฌแแ แ"
#: ../capplets/appearance/theme-util.c:74
msgid "Would you like to delete this theme?"
msgstr "แแแแแแแ แแแชแแแฃแแ แแแคแแ แแแแแก แแแแจแแ?"
#: ../capplets/appearance/theme-util.c:124
msgid "Theme cannot be deleted"
msgstr "แจแแฃแซแแแแแแแ แแแคแแ แแแแแก แฌแแจแแ"
#: ../capplets/appearance/theme-util.c:251
#, fuzzy
msgid "Could not install theme engine"
msgstr "แจแแฃแซแแแแแแแ แซแแ แแแแแ แแแขแแ แคแแแกแแก แแแแแงแแแแแ"
#: ../capplets/common/activate-settings-daemon.c:16
msgid ""
"Unable to start the settings manager 'gnome-settings-daemon'.\n"
"Without the GNOME settings manager running, some preferences may not take "
"effect. This could indicate a problem with Bonobo, or a non-GNOME (e.g. KDE) "
"settings manager may already be active and conflicting with the GNOME "
"settings manager."
msgstr ""
"แแแ แแฃแจแแแ แแแ แแแแขแ แแแแก แแแแ แแแแแก 'gnome-settings-daemon'.\n"
"แแแแแแก แแแ แแแแขแ แแแแก แแแแ แแแแแแก แแแจแแแแแก แแแ แแจแ แแแแแ แแแ แแแแขแ แแ แจแแแซแแแแ "
"แแคแแฅแขแ แแ แแฅแแแแแก. แแก แจแแแซแแแแ แแแจแแแแแแก แแ แแแแแแแแก แแแแแแแกแแแ (Bonobo), แแ "
"แฃแแแ แแแจแแแแฃแแแ แแ แ แแแแแแก (แแแแแแแแแ KDE) แแแ แแแแขแ แแแแก แแแแ แแแแแ แแ แแก "
"แแแแคแแแฅแขแแแก แแแแแแก แแแ แแแแขแ แแแแก แแแแ แแแแแแแ."
#: ../capplets/common/capplet-stock-icons.c:67
#, c-format
msgid "Unable to load stock icon '%s'\n"
msgstr "แจแแฃแซแแแแแแแ แแแแแฃแแ แฎแแขแฃแแแก แฉแแขแแแ แแแ '%s'\n"
#: ../capplets/common/capplet-util.c:80
#, c-format
msgid "There was an error displaying help: %s"
msgstr "แแแฎแแแ แแแแก แแแแแซแแฎแแแแกแแก แแแฎแแ แจแแชแแแแ: %s"
#: ../capplets/common/file-transfer-dialog.c:98
#, c-format
msgid "Copying file: %u of %u"
msgstr "แคแแแแแก แแกแแ: %u - %u"
#: ../capplets/common/file-transfer-dialog.c:145
#, c-format
msgid "Copying '%s'"
msgstr "แแแแแแแ แแ '%s'"
#: ../capplets/common/file-transfer-dialog.c:185
#: ../capplets/common/file-transfer-dialog.c:312
msgid "Copying files"
msgstr "แคแแแแแแแก แแกแแ"
#: ../capplets/common/file-transfer-dialog.c:224
msgid "Parent Window"
msgstr "แแแแแแแแ แคแแแฏแแ แ"
#: ../capplets/common/file-transfer-dialog.c:225
msgid "Parent window of the dialog"
msgstr "แแแแแแแแก แแแแแแแแ แคแแแฏแแ แ"
#: ../capplets/common/file-transfer-dialog.c:231
msgid "From URI"
msgstr "URI-แแแ"
#: ../capplets/common/file-transfer-dialog.c:232
msgid "URI currently transferring from"
msgstr "URI, แกแแแแแแแช แแแแแแแแ แแแแก แแแแแฌแแ แ"
#: ../capplets/common/file-transfer-dialog.c:239
msgid "To URI"
msgstr "URI-แแ"
#: ../capplets/common/file-transfer-dialog.c:240
msgid "URI currently transferring to"
msgstr "URI, แฉแแฌแแ แแก แแแแแจแแฃแแแแ"
#: ../capplets/common/file-transfer-dialog.c:247
msgid "Fraction completed"
msgstr "แแแฌแแแ แแแกแ แฃแแแแฃแแแ"
#: ../capplets/common/file-transfer-dialog.c:248
msgid "Fraction of transfer currently completed"
msgstr "แแแฌแแแแก แแแแแขแแแ แฉแแขแแ แแแฃแแแ"
#: ../capplets/common/file-transfer-dialog.c:255
msgid "Current URI index"
msgstr "แแแแแแแแ แ URI-แแก แแแแแฅแกแ"
#: ../capplets/common/file-transfer-dialog.c:256
msgid "Current URI index - starts from 1"
msgstr "แแแแแแแแ แ URI-แแแแแฅแกแ - 1-แแแ แแฌแงแแแ"
#: ../capplets/common/file-transfer-dialog.c:263
msgid "Total URIs"
msgstr "แฏแแแจแ URI"
#: ../capplets/common/file-transfer-dialog.c:264
msgid "Total number of URIs"
msgstr "URI-แแแแก แฏแแแฃแ แ แ แแแแแแแแ"
#: ../capplets/common/file-transfer-dialog.c:444
#, fuzzy, c-format
msgid "File '%s' already exists. Do you want to overwrite it?"
msgstr "แแแแ แฃแแแ แแ แกแแแแแก. แแแแแแแ แจแแชแแแแแ แแแ?"
#: ../capplets/common/file-transfer-dialog.c:447
msgid "_Skip"
msgstr "_แแแแแขแแแแแ"
#: ../capplets/common/file-transfer-dialog.c:448
msgid "Overwrite _All"
msgstr "แงแแแ_แแก แแแแแแแแฌแแ แ"
#: ../capplets/common/gconf-property-editor.c:133
msgid "Key"
msgstr "แแแกแแฆแแแ"
#: ../capplets/common/gconf-property-editor.c:134
msgid "GConf key to which this property editor is attached"
msgstr "GConf แแแกแแฆแแแ, แ แแแแแแแแแช แแก แแแแกแแแแแแก แ แแแแฅแขแแ แแ แแแแแฃแแ"
#: ../capplets/common/gconf-property-editor.c:140
msgid "Callback"
msgstr "แฃแแฃแแแแแซแแฎแแแ"
#: ../capplets/common/gconf-property-editor.c:141
msgid "Issue this callback when the value associated with key gets changed"
msgstr ""
"แแแแชแ แแก แฃแแฃแแแแแซแแฎแแแ, แ แแแแกแแช แแแกแแฆแแแแแ แแกแแชแแ แแแฃแแ แแแแจแแแแแแแ แจแแแชแแแแแ"
#: ../capplets/common/gconf-property-editor.c:146
msgid "Change set"
msgstr "แแ แแแฃแแแก แจแแชแแแ"
#: ../capplets/common/gconf-property-editor.c:147
msgid ""
"GConf change set containing data to be forwarded to the gconf client on apply"
msgstr ""
#: ../capplets/common/gconf-property-editor.c:152
msgid "Conversion to widget callback"
msgstr "แแแแแแแขแจแ แแแ แแแฅแแแแก แฃแแฃแแแแแซแแฎแแแ"
#: ../capplets/common/gconf-property-editor.c:153
msgid ""
"Callback to be issued when data are to be converted from GConf to the widget"
msgstr ""
"แฃแแฃแแแแแซแแฎแแแ แฃแแแ แแแแชแแก, แ แแแแกแแช แแแแแชแแแแแ แฃแแแ แแแ แแแแฅแแแแก GConf-แแแ "
"แแแแแแแขแจแ"
#: ../capplets/common/gconf-property-editor.c:158
msgid "Conversion from widget callback"
msgstr "แแแแแแแขแแแแ แแแ แแแฅแแแแก แฃแแฃแแแแแซแแฎแแแ"
#: ../capplets/common/gconf-property-editor.c:159
msgid ""
"Callback to be issued when data are to be converted to GConf from the widget"
msgstr ""
"แฃแแฃแแแแแซแแฎแแแ แฃแแแ แแแแชแแก, แ แแแแกแแช แแแแแชแแแแแ แฃแแแ แแแ แแแแฅแแแแก แแแแแแขแแแแ "
"GConf-แจแ"
#: ../capplets/common/gconf-property-editor.c:164
msgid "UI Control"
msgstr "UI-แแก แแแ แแแ"
#: ../capplets/common/gconf-property-editor.c:165
msgid "Object that controls the property (normally a widget)"
msgstr ""
#: ../capplets/common/gconf-property-editor.c:180
msgid "Property editor object data"
msgstr "แแแแกแแแแแแก แ แแแแฅแขแแ แแก แแแแแฅแขแแแแก แแแแแชแแแแแ"
#: ../capplets/common/gconf-property-editor.c:181
msgid "Custom data required by the specific property editor"
msgstr "แกแแญแแ แแ แแแแแแแแฃแแแฃแ แ แแแแแชแแแแแ แกแแแชแแคแแฃแ แ แแแแกแแแแแแก แ แแแแฅแขแแ แแกแแแแก"
#: ../capplets/common/gconf-property-editor.c:187
msgid "Property editor data freeing callback"
msgstr "แแแแกแแแแแแก แ แแแแฅแขแแ แแก แแแแแชแแแแ แแแแแแแแแแกแฃแคแแแแแก แฃแแฃแแแแแซแแฎแแแ"
#: ../capplets/common/gconf-property-editor.c:188
msgid "Callback to be issued when property editor object data is to be freed"
msgstr ""
"แฃแแฃแแแแแซแแฎแแแ แฃแแแ แแแแชแแก, แแแจแแ, แ แแแแกแแช แแแแกแแแแแแก แ แแแแฅแขแแ แแก แแแแแฅแขแแแแก "
"แแแแแชแแแแแ แฃแแแ แแแแแแแแแแกแฃแคแแแแก"
#: ../capplets/common/gconf-property-editor.c:1429
#, c-format
msgid ""
"Couldn't find the file '%s'.\n"
"\n"
"Please make sure it exists and try again, or choose a different background "
"picture."
msgstr ""
"'%s' แคแแแแ แแแ แแแแซแแแแ.\n"
"\n"
"แแแ แฌแแฃแแแแ, แ แแ แแแ แแ แกแแแแแก แแ แกแชแแแแ แแแแแแแ, แแ แแแ แฉแแแ แกแฎแแ แคแแแฃแ แ แกแฃแ แแแ"
#: ../capplets/common/gconf-property-editor.c:1437
#, c-format
msgid ""
"I don't know how to open the file '%s'.\n"
"Perhaps it's a kind of picture that is not yet supported.\n"
"\n"
"Please select a different picture instead."
msgstr ""
"แแ แแแชแ '%s' แคแแแแ แ แแแแ แแแแฎแกแแ.\n"
"แจแแกแแซแแแ, แกแฃแ แแแแก แแกแแแ แขแแแ แฏแแ แแ แแ แแฎแแ แแแญแแ แแแ.\n"
"\n"
"แแแฎแแแ แแแแก แแแแแแ แแ แแแ แฉแแแ แกแฎแแ แกแฃแ แแแ."
#: ../capplets/common/gconf-property-editor.c:1556
msgid "Please select an image."
msgstr "แแแฎแแแ แแแ แฉแแแ แแแฎแแขแ."
#: ../capplets/common/gconf-property-editor.c:1561
msgid "_Select"
msgstr "_แแ แฉแแแ"
#: ../capplets/common/gnome-theme-info.c:635
msgid "Default Pointer - Current"
msgstr "แแแแฃแแแกแฎแแแแ แแแแแแแแแแแ - แแแแแแแแ แ"
#: ../capplets/common/gnome-theme-info.c:639
msgid "White Pointer"
msgstr "แแแแ แ แแฃแ แกแแ แ"
#: ../capplets/common/gnome-theme-info.c:640
msgid "White Pointer - Current"
msgstr "แแแแ แ แแฃแ แกแแ แ - แแแแแแแแ แ"
#: ../capplets/common/gnome-theme-info.c:644
msgid "Large Pointer"
msgstr "แแแแ แแฃแ แกแแ แ"
#: ../capplets/common/gnome-theme-info.c:645
msgid "Large Pointer - Current"
msgstr "แแแแ แแฃแ แกแแ แ - แแแแแแแแ แ"
#: ../capplets/common/gnome-theme-info.c:649
msgid "Large White Pointer - Current"
msgstr "แแแแ แแแแ แ แแฃแ แกแแ แ - แแแแแแแแ แ"
#: ../capplets/common/gnome-theme-info.c:650
msgid "Large White Pointer"
msgstr "แแแแ แแแแ แ แแฃแ แกแแ แ"
#: ../capplets/common/gnome-theme-info.c:1620
#, c-format
msgid ""
"This theme will not look as intended because the required GTK+ theme '%s' is "
"not installed."
msgstr ""
#: ../capplets/common/gnome-theme-info.c:1628
#, c-format
msgid ""
"This theme will not look as intended because the required window manager "
"theme '%s' is not installed."
msgstr ""
#: ../capplets/common/gnome-theme-info.c:1635
#, c-format
msgid ""
"This theme will not look as intended because the required icon theme '%s' is "
"not installed."
msgstr ""
#: ../capplets/default-applications/default-applications.desktop.in.in.h:1
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:22
msgid "Preferred Applications"
msgstr "แกแแกแฃแ แแแแ แแ แแแ แแแแแ"
#: ../capplets/default-applications/default-applications.desktop.in.in.h:2
msgid "Select your default applications"
msgstr "แแแแฃแแแกแฎแแแแ แแ แแแ แแแแแแก แแแแ แฉแแแ"
#: ../capplets/default-applications/gnome-at-session.desktop.in.in.h:1
msgid "Start the preferred visual assistive technology"
msgstr ""
#: ../capplets/default-applications/gnome-at-session.desktop.in.in.h:2
#, fuzzy
msgid "Visual Assistance"
msgstr "_แแแแฃแแแฃแ แ แกแแกแขแแแฃแ แ แจแแขแงแแแแแแแ"
#: ../capplets/default-applications/gnome-da-capplet.c:94
#: ../capplets/default-applications/gnome-da-capplet.c:345
#: ../capplets/default-applications/gnome-da-capplet.c:366
#, c-format
msgid "Error saving configuration: %s"
msgstr "แจแแชแแแแ แแแแคแแแฃแ แแชแแแก แจแแแแฎแแแกแแก: %s"
#: ../capplets/default-applications/gnome-da-capplet.c:650
msgid "Could not load the main interface"
msgstr "แจแแฃแซแแแแแแแ แซแแ แแแแแ แแแขแแ แคแแแกแแก แแแแแงแแแแแ"
#: ../capplets/default-applications/gnome-da-capplet.c:652
msgid "Please make sure that the applet is properly installed"
msgstr "แแแฎแแแ แแแ แฌแแฃแแแแ, แ แแ แแแแแขแ แกแฌแแ แแแแ แแแงแแแแแฃแแ"
#. TRANSLATORS: don't translate the terms in brackets
#: ../capplets/default-applications/gnome-da-capplet.c:879
#, fuzzy
msgid "Specify the name of the page to show (internet|multimedia|system|a11y)"
msgstr ""
"แกแแฉแแแแแแแแ แแแแ แแแก แกแแฎแแแแก แแแแแแแแ (theme|background|fonts|interface)"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:1
msgid "<b>Image Viewer</b>"
msgstr "<b>แกแฃแ แแแแแแก แแแแฎแแแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:2
msgid "<b>Instant Messenger</b>"
msgstr "<b>แแงแแกแแแ แ แจแแขแงแแแแแแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:3
msgid "<b>Mail Reader</b>"
msgstr "<b> แคแแกแขแแก แฌแแแแแแฎแแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:4
msgid "<b>Mobility</b>"
msgstr "<b>แแแแแแแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:5
msgid "<b>Multimedia Player</b>"
msgstr "<b>แแฃแแขแแแแแแแก แแแแแแ แแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:6
msgid "<b>Terminal Emulator</b>"
msgstr "<b>แขแแ แแแแแแแก แแแฃแแแขแแ แ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:7
msgid "<b>Text Editor</b>"
msgstr "<b>แขแแฅแกแขแฃแ แ แ แแแแฅแขแแ แ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:8
msgid "<b>Video Player</b>"
msgstr "<b>แแแแแ แแแแแแ แแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:9
msgid "<b>Visual</b>"
msgstr "<b>แแแแฃแแแ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:10
msgid "<b>Web Browser</b>"
msgstr "<b>แแแ แแ แแฃแแแ แ</b>"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:11
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:12
#: ../capplets/mouse/gnome-mouse-properties.glade.h:28
msgid "Accessibility"
msgstr "_แแแแฎแแแ แ แกแแจแฃแแแแแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:13
#, no-c-format
msgid "All %s occurrences will be replaced with actual link"
msgstr "แงแแแแ %s แแแแแฎแแแแ แจแแแชแแแแแ แจแแกแแแแแแกแ แแแฃแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:14
msgid "C_ommand:"
msgstr "แแ แซแ_แแแแ:"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:15
msgid "Co_mmand:"
msgstr "แแ แซแ_แแแแ:"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:16
msgid "E_xecute flag:"
msgstr "แแแแแก _แแแจแแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:17
msgid "Internet"
msgstr "แแแขแแ แแแขแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:18
msgid "Multimedia"
msgstr "แแฃแแขแแแแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:19
msgid "Open link in new _tab"
msgstr "แแแฃแแแก แแฎแแ _แกแแ แแแแแจแ แแแฎแกแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:20
msgid "Open link in new _window"
msgstr "แแแฃแแแก แแฎแแ _แคแแแฏแแ แแจแ แแแฎแกแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:21
msgid "Open link with web browser _default"
msgstr "แแแฃแแแก _แแแแฃแแแกแฎแแแ แแแ แแ แแฃแแแ แจแ แแแฎแกแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:23
msgid "Run at st_art"
msgstr "แแแฌแงแแแแกแแก แ_แแจแแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:24
msgid "Run in t_erminal"
msgstr "แข_แแ แแแแแแจแ แแแจแแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:25
msgid "System"
msgstr "แกแแกแขแแแ"
#: ../capplets/default-applications/gnome-default-applications-properties.glade.h:26
msgid "_Run at start"
msgstr "แจ_แแกแแแแกแแแแแแ แแแจแแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:1
msgid "Balsa"
msgstr "Balsa"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:2
msgid "Banshee Music Player"
msgstr "Banshee แแฃแกแแแแก แแแแแแ แแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:3
msgid "Claws Mail"
msgstr "Claws Mail"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:4
msgid "Dasher"
msgstr "Dasher"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:5
msgid "Debian Sensible Browser"
msgstr "Debian Sensible Browser"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:6
msgid "Debian Terminal Emulator"
msgstr "แแแแแแแแก แขแแ แแแแแแแก แแแฃแแแขแแ แ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:7
msgid "ETerm"
msgstr "ETerm"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:8
msgid "Encompass"
msgstr "Encompass"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:9
msgid "Epiphany Web Browser"
msgstr "แแแแคแแแแ แแแ แแ แแฃแแแ แ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:10
msgid "Evolution Mail Reader"
msgstr "แแแแแฃแจแแ แคแแกแขแแก แแแแแฎแแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:11
msgid "Firebird"
msgstr "Firebird"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:12
msgid "Firefox"
msgstr "แคแแแ แคแแฅแกแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:13
msgid "GNOME Magnifier without Screen Reader"
msgstr "แแแแแแก แแฃแแ แแแ แแแแก แแแแแฎแแแแแก แแแ แแจแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:14
msgid "GNOME OnScreen Keyboard"
msgstr "แแแแแแก แแแ แแ แแแแแแแขแฃแ แ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:15
msgid "GNOME Terminal"
msgstr "แแแแแแก แขแแ แแแแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:16
msgid "Galeon"
msgstr "Galeon"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:17
msgid "Gnopernicus"
msgstr "Gnopernicus"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:18
msgid "Gnopernicus with Magnifier"
msgstr "Gnopernicus แแฃแแแแฃแ แ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:19
msgid "Iceape"
msgstr "Iceape"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:20
msgid "Iceape Mail"
msgstr "Iceape Mail"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:21
msgid "Icedove"
msgstr "Icedove"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:22
msgid "Iceweasel"
msgstr "Iceweasel"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:23
msgid "KDE Magnifier without Screen Reader"
msgstr "แแแ-แก แแฃแแ แแแ แแแแก แแแแแฎแแแแแก แแแ แแจแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:24
msgid "KMail"
msgstr "KMail"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:25
msgid "Konqueror"
msgstr "Konqueror"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:26
msgid "Konsole"
msgstr "Konsole"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:27
msgid "Linux Screen Reader"
msgstr "แแแแฃแฅแกแแก แแแ แแ แแแแแแแขแฃแ แ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:28
msgid "Linux Screen Reader with Magnifier"
msgstr "แแแแฃแฅแกแแก แแแ แแ แแแแแฎแแแแ แแฃแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:29
msgid "Midori"
msgstr "Midori"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:30
msgid "Mozilla"
msgstr "แแแแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:31
msgid "Mozilla 1.6"
msgstr "Mozilla 1.6"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:32
msgid "Mozilla Mail"
msgstr "Mozilla Mail"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:33
msgid "Mozilla Thunderbird"
msgstr "Mozilla Thunderbird"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:34
msgid "Muine Music Player"
msgstr "Muine Music Player"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:35
msgid "Mutt"
msgstr "Mutt"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:36
msgid "NXterm"
msgstr "NXterm"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:37
msgid "Netscape Communicator"
msgstr "Netscape Communicator"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:38
msgid "Opera"
msgstr "Opera"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:39
msgid "Orca"
msgstr "Orca"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:40
msgid "Orca with Magnifier"
msgstr "Orca แแแแแแแแแแแแ แจแฃแจแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:41
msgid "RXVT"
msgstr "RXVT"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:42
msgid "Rhythmbox Music Player"
msgstr "แ แแแแแแฅแก แแฃแกแแแแก แแแแแแ แแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:43
msgid "SeaMonkey"
msgstr "SeaMonkey"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:44
msgid "SeaMonkey Mail"
msgstr "SeaMonkey Mail"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:45
msgid "Standard XTerminal"
msgstr "แกแขแแแแแ แขแฃแแ X แขแแ แแแแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:46
msgid "Sylpheed"
msgstr "Sylpheed"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:47
msgid "Sylpheed-Claws"
msgstr "Sylpheed-Claws"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:48
msgid "Terminator"
msgstr "Terminator"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:49
msgid "Thunderbird"
msgstr "Thunderbird"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:50
msgid "Totem Movie Player"
msgstr "แขแแขแแ แคแแแแแก แแแแจแแแแ"
#: ../capplets/default-applications/gnome-default-applications.xml.in.h:51
msgid "aterm"
msgstr "aterm"
#: ../capplets/display/display-capplet.glade.h:1
msgid "Include _Panel"
msgstr "_แแแแแแแก แฉแแ แแแ"
#. Translators: this is the feature where what you see on your laptop's
#. * screen is the same as your external monitor. Here, "Mirror" is being
#. * used as an adjective, not as a verb. For example, the Spanish
#. * translation could be "Pantallas en Espejo", *not* "Espejar Pantallas".
#.
#: ../capplets/display/display-capplet.glade.h:2
#: ../capplets/display/xrandr-capplet.c:1314
msgid "Mirror Screens"
msgstr "แแแ แแแแก แแฃแแแแ แแแ"
#: ../capplets/display/display-capplet.glade.h:3
msgid "Monitor Resolution Settings"
msgstr "แแแแแขแแ แแก แแแ แฉแแแแแแแแก แแแ แแแแขแ แแแ"
#: ../capplets/display/display-capplet.glade.h:4
msgid ""
"Normal\n"
"Left\n"
"Right\n"
"Upside-down\n"
msgstr ""
"แแแ แแแแฃแ แ\n"
"แแแ แชแฎแแแ\n"
"แแแ แฏแแแแ\n"
"แแแแแแแ-แฅแแแแแ\n"
#: ../capplets/display/display-capplet.glade.h:9
msgid "R_otation"
msgstr "_แแ แแแแขแแชแแ"
#: ../capplets/display/display-capplet.glade.h:10
msgid "Re_fresh Rate:"
msgstr "แแแแแฎแแแแแก แก_แแฎแจแแ แ:"
#: ../capplets/display/display-capplet.glade.h:11
msgid "_Detect Displays"
msgstr "แแ_แ แแแแแแก แแแแชแแแแ"
#: ../capplets/display/display-capplet.glade.h:12
msgid "_Resolution"
msgstr "แแแ _แฉแแแแแแแ:"
#: ../capplets/display/display-capplet.glade.h:13
msgid "_Show Displays in Panel"
msgstr ""
#: ../capplets/display/display-properties.desktop.in.in.h:1
msgid "Change screen resolution"
msgstr "แแแ แแแแก แแแ แฉแแแแแแแแก แจแแชแแแ"
#: ../capplets/display/display-properties.desktop.in.in.h:2
msgid "Screen Resolution"
msgstr "แแแ แแแแก แแแ แฉแแแแแแแ"
#: ../capplets/display/xrandr-capplet.c:407
#: ../capplets/display/xrandr-capplet.c:445
msgid "Normal"
msgstr "แฉแแแฃแแแแ แแแ"
#: ../capplets/display/xrandr-capplet.c:408
msgid "Left"
msgstr "แแแ แชแฎแแแ"
#: ../capplets/display/xrandr-capplet.c:409
msgid "Right"
msgstr "แแแ แฏแแแแ"
#: ../capplets/display/xrandr-capplet.c:410
msgid "Upside Down"
msgstr "แฅแแแแแแแ แแแแแ"
#: ../capplets/display/xrandr-capplet.c:483
#: ../capplets/display/xrandr-capplet.c:491
#: ../capplets/display/xrandr-capplet.c:492
#, c-format
msgid "%d Hz"
msgstr "%d แฐแแ แชแ"
#: ../capplets/display/xrandr-capplet.c:544
#: ../capplets/display/xrandr-capplet.c:563
#: ../capplets/display/xrandr-capplet.c:573
#, c-format
msgid "%d x %d"
msgstr "%d x %d"
#: ../capplets/display/xrandr-capplet.c:555
msgid "Off"
msgstr "แแแแแ แแฃแแแ"
#: ../capplets/display/xrandr-capplet.c:1724
#: ../capplets/display/xrandr-capplet.c:1725
#, fuzzy
msgid ""
"The X server does not support the XRANDR extension. Runtime resolution "
"changes to the display size are not available."
msgstr ""
"X แกแแ แแแ แก แแ แแแแฉแแแ XRandR แแแคแแ แแแแแแแก แแฎแแ แแแญแแ แ. X-แแก แแฅแขแแฃแ "
"แแแแแแแ แแแแแจแ แงแแคแแแก แแ แแก แจแแฃแซแแแแแแแ แแแ แฉแแแแแแแแก แแแกแฌแแ แแแ."
#: ../capplets/keybindings/00-multimedia-key.xml.in.h:1
#: ../capplets/sound/gnome-settings-sound.desktop.in.in.h:2
msgid "Sound"
msgstr "แฎแแ"
#: ../capplets/keybindings/01-desktop-key.xml.in.h:1
#: ../libslab/bookmark-agent.c:1154
msgid "Desktop"
msgstr "แกแแแฃแจแแ แแแแแแ"
#: ../capplets/keybindings/eggcellrendererkeys.c:21
msgid "New shortcut..."
msgstr "แแฎแแแ แแแแกแแฎแแแแ..."
#: ../capplets/keybindings/eggcellrendererkeys.c:163
#: ../capplets/keybindings/eggcellrendererkeys.c:164
msgid "Accelerator key"
msgstr "แแแแฉแแ แแแแแก แฆแแแแแ"
#: ../capplets/keybindings/eggcellrendererkeys.c:173
#: ../capplets/keybindings/eggcellrendererkeys.c:174
msgid "Accelerator modifiers"
msgstr "แแแแฉแฅแแ แแแแแก แแแแ แแแแแแแ"
#: ../capplets/keybindings/eggcellrendererkeys.c:182
#: ../capplets/keybindings/eggcellrendererkeys.c:183
msgid "Accelerator keycode"
msgstr "แแแแฉแฅแแ แแแแแก keycode"
#: ../capplets/keybindings/eggcellrendererkeys.c:193
msgid "Accel Mode"
msgstr "แแแแฉแฅแแ แแแแแก แ แแแแแ"
#: ../capplets/keybindings/eggcellrendererkeys.c:194
msgid "The type of accelerator."
msgstr "แแแแฉแฅแแ แแแแแก แขแแแ."
#: ../capplets/keybindings/eggcellrendererkeys.c:242
#: ../capplets/keybindings/gnome-keybinding-properties.c:90
#: ../capplets/sound/sound-theme.c:415 ../capplets/sound/sound-theme.c:433
#: ../capplets/sound/sound-theme.c:543 ../capplets/sound/sound-theme.c:559
#: ../typing-break/drwright.c:480
msgid "Disabled"
msgstr "แแแแแ แแฃแแ"
#: ../capplets/keybindings/gnome-keybinding-properties.c:171
msgid "<Unknown Action>"
msgstr "<แฃแชแแแแ แแแฅแแแแแแแ>"
#: ../capplets/keybindings/gnome-keybinding-properties.c:804
msgid "Custom Shortcuts"
msgstr "แกแแแฃแแแ แ แแแแกแแฎแแแแ"
#: ../capplets/keybindings/gnome-keybinding-properties.c:938
#, fuzzy, c-format
msgid "Error saving the new shortcut: %s"
msgstr "แจแแชแแแแ แแแแคแแแฃแ แแชแแแก แจแแแแฎแแแกแแก: %s"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1016
#, fuzzy, c-format
msgid ""
"The shortcut \"%s\" cannot be used because it will become impossible to type "
"using this key.\n"
"Please try with a key such as Control, Alt or Shift at the same time."
msgstr ""
"แจแแฃแซแแแแแแแ \"%s\" แแแแแแจแแก แแแแแงแแแแแ, แ แแแแแแแช แแแกแ แแแแแงแแแแแแก "
"แจแแแแฎแแแแแจแ แจแแฃแซแแแแแแ แแแฎแแแแ แฉแแแฃแแแแ แแแ แขแแฅแกแขแแก แแแ แแคแแ.\n"
"แแแฎแแแ แกแชแแแแ Control, Alt , แแ Shift แแแแแแจแแแแก แแ แแแ แแฃแแ แแแแแแแแชแแแแ.\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1046
#, fuzzy, c-format
msgid ""
"The shortcut \"%s\" is already used for\n"
"\"%s\""
msgstr ""
"แกแฎแแ แขแ แแแแแแจแแแ \"%s\" แฃแแแ แแแแแงแแแแแฃแแแ แแฅ:\n"
" \"%s\"\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1052
#, c-format
msgid ""
"If you reassign the shortcut to \"%s\", the \"%s\" shortcut will be disabled."
msgstr ""
#: ../capplets/keybindings/gnome-keybinding-properties.c:1060
msgid "_Reassign"
msgstr "_แแแแแแแ แแแ"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1180
#, fuzzy, c-format
msgid "Error unsetting accelerator in configuration database: %s"
msgstr "แจแแชแแแแ แแแแฉแฅแแ แแแแแก แแแฎแกแแแกแแก แแแแคแแแฃแ แแชแแแก แแแแแจแ: %s\n"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1362
msgid "Action"
msgstr "แแแฅแแแแแแ"
#: ../capplets/keybindings/gnome-keybinding-properties.c:1384
msgid "Shortcut"
msgstr "แแแแกแแฎแแแแ"
#.
#. * vim: sw=2 ts=8 cindent noai bs=2
#.
#: ../capplets/keybindings/gnome-keybinding-properties.glade.h:1
#: ../capplets/keybindings/keybinding.desktop.in.in.h:2
msgid "Keyboard Shortcuts"
msgstr "แกแฎแแ แขแ แแแแแแจแแแ"
#: ../capplets/keybindings/gnome-keybinding-properties.glade.h:2
#, fuzzy
msgid ""
"To edit a shortcut key, click on the corresponding row and type a new key "
"combination, or press backspace to clear."
msgstr ""
"แแฎแแแ แกแฎแแ แขแ แแแแแแจแแแแก แแแกแแงแแแแแแแ แแแแฌแแแแฃแแแ แจแแกแแแแแแก แกแขแ แแฅแแแก แแ "
"แแแ แแคแแ แแฎแแแ แแแแแแแแแชแแ, แแ แแแกแแฌแแแแแแ แแแแญแแ แแ แฃแแฃแจแแแก"
#: ../capplets/keybindings/keybinding.desktop.in.in.h:1
msgid "Assign shortcut keys to commands"
msgstr "แแ แซแแแแแแกแแแแก แกแฎแแ แขแ แแแแแแจแแก แแแแแญแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.c:248
#: ../capplets/keyboard/gnome-keyboard-properties.c:253
#: ../capplets/sound/sound-properties-capplet.c:1185
#: ../capplets/sound/sound-properties-capplet.c:1187
msgid ""
"Just apply settings and quit (compatibility only; now handled by daemon)"
msgstr "แแแแแงแแแแแ แแ แแแกแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.c:256
#: ../capplets/sound/sound-properties-capplet.c:1189
msgid "Retrieve and store legacy settings"
msgstr "แแ แกแแแฃแแ แแแ แแแแขแ แแแแก แแแซแแแแ แแ แจแแแแฎแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.c:260
msgid "Start the page with the typing break settings showing"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.c:265
msgid "Start the page with the accessibility settings showing"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.c:274
msgid "- GNOME Keyboard Preferences"
msgstr "- แแแแแแก แแแแแแแขแฃแ แแก แแแ แแแแขแ แแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:1
msgid "<b>Bounce Keys</b>"
msgstr "<b>แแฎแขแฃแแแแ แแแแแแจแแแ</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:2
msgid "<b>Cursor Blinking</b>"
msgstr "<b>แแฃแ แกแแ แแก แชแแแชแแแ</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:3
#, fuzzy
msgid "<b>General</b>"
msgstr "<b>แ แแแแแ แแแแ</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:4
msgid "<b>Repeat Keys</b>"
msgstr "<b>แแแขแแแแแแแ แแแ</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:5
#, fuzzy
msgid "<b>Slow Keys</b>"
msgstr "<b>แแแแ แแแแแแจแแแแก แฉแแ แแแ</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:6
msgid "<b>Sticky Keys</b>"
msgstr "<b>แฌ_แแแแแแแ แแแแแแจแแแ</b>"
#. fast acceleration
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:7
#: ../capplets/mouse/gnome-mouse-properties.glade.h:13
msgid "<small><i>Fast</i></small>"
msgstr "<small><i>แกแฌแ แแคแ</i></small>"
#. long delay
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:8
#: ../capplets/mouse/gnome-mouse-properties.glade.h:19
msgid "<small><i>Long</i></small>"
msgstr "<small><i>แแ แซแแแ</i></small>"
#. short delay
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:9
#: ../capplets/mouse/gnome-mouse-properties.glade.h:23
msgid "<small><i>Short</i></small>"
msgstr "<small><i>แแแแแแ</i></small>"
#. slow acceleration
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:10
#: ../capplets/mouse/gnome-mouse-properties.glade.h:25
msgid "<small><i>Slow</i></small>"
msgstr "<small><i>แแแแ</i></small>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:11
msgid "A_cceleration:"
msgstr "_แแฉแฅแแ แแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:13
msgid "All_ow postponing of breaks"
msgstr "แฌแงแแแขแแแแก แแแแแแแแแก แแแจ_แแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:14
msgid "Audio _Feedback..."
msgstr "แฃแแฃ แฎ_แแแแแแ แกแแแแแแ..."
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:15
#, fuzzy
msgid "Beep when _accessibility features are turned on or off"
msgstr "แแแแแแ, แ แแแแกแแช แค_แฃแแฅแชแแ แแ แแแแแ แแ แแแแจแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:16
#, fuzzy
msgid "Beep when a _modifier key is pressed"
msgstr "แแแแแแ, แแฃ แแแ แแแแก แแแแแแจแ แแแญแแ แแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:17
#, fuzzy
msgid "Beep when a _toggle key is pressed"
msgstr "แแแแแแ, แแฃ แแแ แแแแก แแแแแแจแ แแแญแแ แแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:18
#, fuzzy
msgid "Beep when a key is pr_essed"
msgstr "แแแแแแ, แแฃ แแแ แแแแก แแแแแแจแ แแแญแแ แแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:19
#, fuzzy
msgid "Beep when a key is reje_cted"
msgstr "แแแแแแ, แแแแแแจแแก _แฃแแ แงแแคแแก แจแแแแฎแแแแแจแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:20
#, fuzzy
msgid "Beep when key is _accepted"
msgstr "แแแแแแ,แ แแแแกแแช:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:21
#, fuzzy
msgid "Beep when key is _rejected"
msgstr "แแแแแแ, แแแแแแจแแก _แฃแแ แงแแคแแก แจแแแแฎแแแแแจแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:22
msgid "By _country"
msgstr "แฅ_แแแงแแแก แแแฎแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:23
msgid "By _language"
msgstr "_แแแแก แแแฎแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:24
msgid "Check if breaks are allowed to be postponed"
msgstr "แจแแแแฌแแแแ, แแแจแแแแฃแแแ แแฃ แแ แ แฌแงแแแขแแแแก แแแแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:25
msgid "Choose a Keyboard Model"
msgstr "แแแแแแแขแฃแ แแก แแแแแแแก แแ แฉแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:26
msgid "Choose a Layout"
msgstr "แแแแแแแแแแก แแ แฉแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:27
#, fuzzy
msgid "Cursor _blinks in text fields"
msgstr "แขแแฅแขแฃแ แกแแ แแแแแแก แแแแแแจแ แแฃแ แกแแ แแก _แชแแแชแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:28
#: ../capplets/mouse/gnome-mouse-properties.glade.h:31
msgid "Cursor blinks speed"
msgstr "แแฃแ แกแแ แแก แชแแแชแแแแก แกแแฉแฅแแ แ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:29
#: ../capplets/mouse/gnome-mouse-properties.glade.h:32
msgid "D_elay:"
msgstr "แ_แแงแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:30
#, fuzzy
msgid "Disa_ble sticky keys if two keys are pressed together"
msgstr "_แแแแแจแแ, แแ แ แแแแแแจแแก แแ แแแ แแฃแแ แแแญแแ แแก แจแแแแฎแแแแแจแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:31
msgid "Duration of the break when typing is disallowed"
msgstr "แฌแงแแแขแแก แฎแแแแ แซแแแแแแ, แ แแแแกแแช แแแ แแคแแ แแแ แซแแแฃแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:32
msgid "Duration of work before forcing a break"
msgstr "แแฃแจแแแแแก แฎแแแแ แซแแแแแแ แฌแงแแแขแแก แแแแฅแขแแฃแ แแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:33
#: ../capplets/mouse/gnome-mouse-properties.glade.h:36
msgid "General"
msgstr "แกแแแ แแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:34
msgid "Key presses _repeat when key is held down"
msgstr ""
"แแแแแแจแแก แแแญแแ แแแแก _แแแแแแ แแแ, แ แแชแ แแแแแแจแ แแแญแแ แแ แแแแแแแ แแแแแจแแ แแแฉแแ แแแฃแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:35
#, fuzzy
msgid "Keyboard Accessibility Audio Feedback"
msgstr "แแแแแแแขแฃแ แแก แกแแแช แจแแกแแซแแแแแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:36
#, fuzzy
msgid "Keyboard Layout Options"
msgstr "แแแแแแแแแแก แแแ แแแแขแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:37
msgid "Keyboard Preferences"
msgstr "แแแแแแแขแฃแ แแก แแแ แแแแขแ แแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:38
msgid "Keyboard _model:"
msgstr "แแแแแแแขแฃแ แแก _แแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:39
msgid "Layout _Options..."
msgstr "แแแแแแแแแแก _แแแ แแแแขแ แแแ..."
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:40
msgid "Layouts"
msgstr "แแแแแแแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:41
msgid ""
"Lock screen after a certain duration to help prevent repetitive keyboard use "
"injuries"
msgstr ""
"แแแ แแแแก แแแแแแ แแแ แแแ แแแแฃแแ แแ แแแก แจแแแแแ, แแแแแแจแแแแก แแแแแแแ แแแแแ แแแญแแ แแก "
"แแแแ แแแแแฌแแแฃแแ แแแแแแก แแแแแแแ แแชแแแแแแก แแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:42
msgid "Mouse Keys"
msgstr "แแแแแแก แฆแแแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:43
msgid "Preview:"
msgstr "แฌแแแแกแฌแแ แ แแแฎแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:44
msgid "Repeat keys speed"
msgstr "แแแแแแจแแแแก แแแแแแ แแแแก แกแแฉแฅแแ แ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:45
msgid "Reset to De_faults"
msgstr "แแ_แแฃแแแกแฎแแแแแ แแแงแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:46
msgid "S_peed:"
msgstr "_แกแแฉแฅแแ แ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:47
msgid "Separate _layout for each window"
msgstr "แชแแแแแฃแแ แคแแแฏแ แแกแแแแก _แแแแแแแแแแก แจแแชแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:48
msgid "Typing Break"
msgstr "แแแญแแแแก แฌแงแแแขแ"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:49
msgid "_Accessibility features can be toggled with keyboard shortcuts"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:51
msgid "_Break interval lasts:"
msgstr "_แฌแงแแแขแแก แแแขแแ แแแแ แแ แซแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:52
msgid "_Country:"
msgstr "แฅแ_แแงแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:53
#: ../capplets/mouse/gnome-mouse-properties.glade.h:43
msgid "_Delay:"
msgstr "_แแแงแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:54
#, fuzzy
msgid "_Ignore fast duplicate keypresses"
msgstr "แแ แแแแ แแแญแแ แแก _แแแ แแ แแ แแแ แ แแแแกแแช:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:55
msgid "_Language:"
msgstr "แ_แแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:56
#, fuzzy
msgid "_Lock screen to enforce typing break"
msgstr "<b>แแแ แแแแก แฉแ_แแแขแแ</b>"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:57
msgid "_Models:"
msgstr "_แแแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:58
#, fuzzy
msgid "_Only accept long keypresses"
msgstr "แแแญแแ แแก แแแฆแแแ แแฎ_แแแแ แ แแชแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:59
msgid "_Pointer can be controlled using the keypad"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:60
msgid "_Selected layouts:"
msgstr "_แแ แฉแแฃแแ แแแแแแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:61
msgid "_Simulate simultaneous keypresses"
msgstr ""
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:62
msgid "_Speed:"
msgstr "_แกแแฉแฅแแ แ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:63
msgid "_Type to test settings:"
msgstr "แแแ แแแ_แขแ แแแแก แจแแกแแแแฌแแแแแแ แแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:64
msgid "_Variants:"
msgstr "_แแแ แแแแขแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:65
msgid "_Vendors:"
msgstr "_แแฌแแ แแแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:66
msgid "_Work interval lasts:"
msgstr "_แกแแแฃแจแแ แแแขแแ แแแแ แแ แซแแแแแแ:"
#: ../capplets/keyboard/gnome-keyboard-properties.glade.h:67
msgid "minutes"
msgstr "แฌแฃแแ"
#: ../capplets/keyboard/gnome-keyboard-properties-xkb.c:81
msgid "Unknown"
msgstr "แฃแชแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties-xkblt.c:305
msgid "Layout"
msgstr "แแแแแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties-xkblt.c:311
#: ../capplets/keyboard/gnome-keyboard-properties-xkbot.c:211
#: ../capplets/sound/sound-theme.c:419 ../capplets/sound/sound-theme.c:539
msgid "Default"
msgstr "แแแแฃแแแกแฎแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties-xkbmc.c:169
msgid "Vendors"
msgstr "แแฌแแ แแแแแแแ"
#: ../capplets/keyboard/gnome-keyboard-properties-xkbmc.c:235
msgid "Models"
msgstr "แแแแแแแแ"
#: ../capplets/keyboard/keyboard.desktop.in.in.h:1
msgid "Keyboard"
msgstr "แแแแแแแขแฃแ แ"
#: ../capplets/keyboard/keyboard.desktop.in.in.h:2
msgid "Set your keyboard preferences"
msgstr "แแแแแแแขแฃแ แแก แแแ แแแแขแ แแแแก แแแงแแแแแ"
#. Translators: this is the gesture to trigger/choose the click type.
#. Don't include the prefix "gesture|" in the translation.
#: ../capplets/mouse/gnome-mouse-accessibility.c:89
msgid "gesture|Move left"
msgstr "แแแแฃแแ แแแ แชแฎแแแ"
#. Translators: this is the gesture to trigger/choose the click type.
#. Don't include the prefix "gesture|" in the translation.
#: ../capplets/mouse/gnome-mouse-accessibility.c:94
msgid "gesture|Move right"
msgstr "แแแแฃแแ แแแ แฏแแแแ"
#. Translators: this is the gesture to trigger/choose the click type.
#. Don't include the prefix "gesture|" in the translation.
#: ../capplets/mouse/gnome-mouse-accessibility.c:99
msgid "gesture|Move up"
msgstr "แแแแฃแแ แแแแแ"
#. Translators: this is the gesture to trigger/choose the click type.
#. Don't include the prefix "gesture|" in the translation.
#: ../capplets/mouse/gnome-mouse-accessibility.c:104
msgid "gesture|Move down"
msgstr "แแแแฃแแ แฅแแแแแ"
#. Translators: this is the gesture to trigger/choose the click type.
#. Don't include the prefix "gesture|" in the translation.
#: ../capplets/mouse/gnome-mouse-accessibility.c:109
#, fuzzy
msgid "gesture|Disabled"
msgstr "แแแแแ แแฃแแ"
#. TRANSLATORS: don't translate the terms in brackets
#: ../capplets/mouse/gnome-mouse-properties.c:443
#, fuzzy
msgid "Specify the name of the page to show (general|accessibility)"
msgstr ""
"แกแแฉแแแแแแแแ แแแแ แแแก แกแแฎแแแแก แแแแแแแแ (theme|background|fonts|interface)"
#: ../capplets/mouse/gnome-mouse-properties.c:452
#, fuzzy
msgid "- GNOME Mouse Preferences"
msgstr "- แแแแแแก แฎแแแก แแแ แแแแขแ แแแ"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:1
#, fuzzy
msgid "<b>Double-Click Timeout</b>"
msgstr "<b>แแ แแแแ แแแฌแแแแแแก แแแแแแแก แแแแ</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:2
msgid "<b>Drag and Drop</b>"
msgstr "<b>แแแแแแ แแแ แแ แแแจแแแแ</b>"
#. Dwell Click = Clicking without hardware buttons (by letting the pointer sit on the click target for a certain amount of time)
#: ../capplets/mouse/gnome-mouse-properties.glade.h:4
#, fuzzy
msgid "<b>Dwell Click</b>"
msgstr "<b>แแแฅแจแแ แแก แแแแฃแแแกแฎแแแแ แแ แฎแแแ</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:5
#, fuzzy
msgid "<b>Locate Pointer</b>"
msgstr "<b>แกแฃแ แแแแแแก แแแแฎแแแแ</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:6
msgid "<b>Mouse Orientation</b>"
msgstr "<b>แแแแฃแแแก แแ แแแแขแแชแแ</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:7
#, fuzzy
msgid "<b>Pointer Speed</b>"
msgstr "<b>แกแแฉแฅแแ แ</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:8
msgid "<b>Simulated Secondary Click</b>"
msgstr "<b>แแแแ แแแ แฌแแแแแก แกแแแฃแแแ แแแ</b>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:9
msgid ""
"<i>To test your double-click settings, try to double-click on the light bulb."
"</i>"
msgstr ""
#. Dwell Click = Clicking without hardware buttons (by letting the pointer sit on the click target for a certain amount of time)
#: ../capplets/mouse/gnome-mouse-properties.glade.h:11
msgid ""
"<i>You can also use the Dwell Click panel applet to choose the click type.</"
"i>"
msgstr ""
#. high sensitivity
#: ../capplets/mouse/gnome-mouse-properties.glade.h:15
#, fuzzy
msgid "<small><i>High</i></small>"
msgstr "<small><i>แแ แซแแแ</i></small>"
#. large threshold
#: ../capplets/mouse/gnome-mouse-properties.glade.h:17
#, fuzzy
msgid "<small><i>Large</i></small>"
msgstr "<small><i>แแ แซแแแ</i></small>"
#. low sensitivity
#: ../capplets/mouse/gnome-mouse-properties.glade.h:21
#, fuzzy
msgid "<small><i>Low</i></small>"
msgstr "<small><i>แแ แซแแแ</i></small>"
#. small threshold
#: ../capplets/mouse/gnome-mouse-properties.glade.h:27
#, fuzzy
msgid "<small><i>Small</i></small>"
msgstr "<small><i>แแแแ</i></small>"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:29
msgid "Choose type of click _beforehand"
msgstr ""
#: ../capplets/mouse/gnome-mouse-properties.glade.h:30
msgid "Choose type of click with mo_use gestures"
msgstr ""
#: ../capplets/mouse/gnome-mouse-properties.glade.h:33
msgid "D_ouble click:"
msgstr "_แแ แแแแ แฌแแแแ:"
#. click to initiate drag-and-drop (like normally click and hold)
#: ../capplets/mouse/gnome-mouse-properties.glade.h:35
msgid "D_rag click:"
msgstr "แฌแแแแ แแแแแ_แ แแแแ:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:37
msgid "Mouse Preferences"
msgstr "แแแแแแก แแแ แแแแขแ แแแ"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:38
msgid "Seco_ndary click:"
msgstr "_แแแแ แแแ แฌแแแแ:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:39
msgid "Sh_ow position of pointer when the Control key is pressed"
msgstr ""
#: ../capplets/mouse/gnome-mouse-properties.glade.h:40
msgid "Show click type _window"
msgstr ""
#: ../capplets/mouse/gnome-mouse-properties.glade.h:41
#, fuzzy
msgid "Thr_eshold:"
msgstr "_แแแฏแ"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:42
msgid "_Acceleration:"
msgstr "_แแฉแฅแแ แแแ:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:44
msgid "_Initiate click when stopping pointer movement"
msgstr ""
#: ../capplets/mouse/gnome-mouse-properties.glade.h:45
#, fuzzy
msgid "_Left-handed"
msgstr "_แชแแชแแ แแแแแ"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:46
#, fuzzy
msgid "_Motion threshold:"
msgstr "_แแแฏแ"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:47
msgid "_Right-handed"
msgstr "แแ_แ แฏแแแแ แฎแแแแ"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:48
msgid "_Sensitivity:"
msgstr "_แแแ แซแแแแแแแแ:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:49
msgid "_Single click:"
msgstr "_แแ แแแแแ แฌแแแแ:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:50
msgid "_Timeout:"
msgstr "_แแแแแแแก แแแแ:"
#: ../capplets/mouse/gnome-mouse-properties.glade.h:51
msgid "_Trigger secondary click by holding down the primary button"
msgstr ""
#: ../capplets/mouse/gnome-settings-mouse.desktop.in.in.h:1
msgid "Mouse"
msgstr "แแแแแ"
#: ../capplets/mouse/gnome-settings-mouse.desktop.in.in.h:2
msgid "Set your mouse preferences"
msgstr "แแแแแแก แแแ แแแแขแ แแแแก แแแงแแแแแ"
#: ../capplets/network/gnome-network-preferences.desktop.in.in.h:1
msgid "Network Proxy"
msgstr "แฅแกแแแแก แแ แแฅแกแ"
#: ../capplets/network/gnome-network-preferences.desktop.in.in.h:2
msgid "Set your network proxy preferences"
msgstr "แแแแแ แฅแกแแแแก แแ แแฅแกแแก แแแ แแแแขแ แแแแก แแแงแแแแแ"
#: ../capplets/network/gnome-network-preferences.glade.h:1
msgid "<b>Di_rect internet connection</b>"
msgstr "<b>แแแขแแ แแแขแจแ แแแ แแแแแ แ แจ_แแแ แแแแ</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:2
msgid "<b>Ignore Host List</b>"
msgstr "<b>แฐแแกแขแแแแก แแฃแกแฎแแก แแแแแ แแ แแแ</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:3
msgid "<b>_Automatic proxy configuration</b>"
msgstr "<b>แแ แแฅแ แแก _แแแขแแแแขแฃแ แ แแแแคแแแฃแ แแ แแแ</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:4
msgid "<b>_Manual proxy configuration</b>"
msgstr "<b>แแ แแฅแกแแก _แฎแแแแ แแแแคแแแฃแ แแ แแแ</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:5
msgid "<b>_Use authentication</b>"
msgstr "<b>แแฃแแแแขแแคแแแแชแแก _แแแแแงแแแแแ</b>"
#: ../capplets/network/gnome-network-preferences.glade.h:6
msgid "Autoconfiguration _URL:"
msgstr "แแแขแแแแแคแแแฃแ แแชแแแก _แแแกแแแแ แแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:7
msgid "HTTP Proxy Details"
msgstr "HTTP แแ แแฅแกแแก แแแขแแแแแ"
#: ../capplets/network/gnome-network-preferences.glade.h:8
msgid "H_TTP proxy:"
msgstr "H_TTP แแ แแฅแกแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:9
msgid "Ignored Hosts"
msgstr "แแแแแ แแ แแแฃแแ แฐแแกแขแแแ"
#: ../capplets/network/gnome-network-preferences.glade.h:10
msgid "Network Proxy Preferences"
msgstr "แฅแกแแแแก แแ แแฅแกแแก แแแ แแแแขแ แแแ"
#: ../capplets/network/gnome-network-preferences.glade.h:11
msgid "Port:"
msgstr "แแแ แขแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:12
msgid "Proxy Configuration"
msgstr "แแ แแฅแกแแก แแแแคแแแฃแ แแชแแ"
#: ../capplets/network/gnome-network-preferences.glade.h:13
msgid "S_ocks host:"
msgstr "Socks _แฐแแกแขแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:14
msgid "U_sername:"
msgstr "_แกแแฎแแแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:15
msgid "_Details"
msgstr "_แชแแแแแแ"
#: ../capplets/network/gnome-network-preferences.glade.h:16
msgid "_FTP proxy:"
msgstr "_FTP แแ แแฅแกแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:17
msgid "_Password:"
msgstr "_แแแ แแแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:18
msgid "_Secure HTTP proxy:"
msgstr "แฃแกแแคแ แแฎแ _HTTP แแ แแฅแกแ:"
#: ../capplets/network/gnome-network-preferences.glade.h:19
msgid "_Use the same proxy for all protocols"
msgstr "แงแแแแ แแ แแขแแแแแแกแแแแก แแแแแ แแ แแฅแกแแก _แแแแแงแแแแแ"
#: ../capplets/sound/gnome-settings-sound.desktop.in.in.h:1
msgid "Enable sound and associate sounds with events"
msgstr "แฎแแแก แฉแแ แแแ แแ แแแก แกแแกแขแแแแก แแแแแแแแแแแ แแกแแชแแแชแแ"
#: ../capplets/sound/mixer-support.c:79
#, c-format
msgid "Unknown Volume Control %d"
msgstr "แฃแชแแแแ แฎแแแก แกแแแซแแแแ แแก แ แแแฃแแแขแแ แ %d"
#: ../capplets/sound/pipeline-tests.c:84
#, c-format
msgid "Failed to construct test pipeline for '%s'"
msgstr "แจแแชแแแแ แขแแกแขแฃแ แ แแแแแแ แจแแฅแแแแกแแก '%s'"
#: ../capplets/sound/sound-properties-capplet.c:260
#: ../capplets/sound/sound-properties-capplet.c:381
msgid "Not connected"
msgstr "แแ แแแแแแ แ แแแแจแแ แ"
#: ../capplets/sound/sound-properties-capplet.c:829
msgid "Autodetect"
msgstr "แแแขแแแแแชแแแแ"
#: ../capplets/sound/sound-properties-capplet.c:834
#: ../capplets/sound/sound-properties-capplet.c:835
msgid "ALSA - Advanced Linux Sound Architecture"
msgstr "ALSA - Advanced Linux Sound Architecture"
#: ../capplets/sound/sound-properties-capplet.c:836
msgid "Artsd - ART Sound Daemon"
msgstr "Artsd - ART Sound Daemon"
#: ../capplets/sound/sound-properties-capplet.c:837
#: ../capplets/sound/sound-properties-capplet.c:838
msgid "ESD - Enlightened Sound Daemon"
msgstr "ESD - Enlightened Sound Daemon"
#: ../capplets/sound/sound-properties-capplet.c:841
#: ../capplets/sound/sound-properties-capplet.c:844
msgid "OSS - Open Sound System"
msgstr "OSS - Open Sound System"
#: ../capplets/sound/sound-properties-capplet.c:846
#: ../capplets/sound/sound-properties-capplet.c:847
msgid "PulseAudio Sound Server"
msgstr "PulseAudio Sound Server"
#: ../capplets/sound/sound-properties-capplet.c:848
msgid "Test Sound"
msgstr "แขแแกแข แฎแแ"
#: ../capplets/sound/sound-properties-capplet.c:849
msgid "Silence"
msgstr "แกแแฉแฃแแ"
#: ../capplets/sound/sound-properties-capplet.c:1202
msgid "- GNOME Sound Preferences"
msgstr "- แแแแแแก แฎแแแก แแแ แแแแขแ แแแ"
#: ../capplets/sound/sound-properties.glade.h:1
msgid "<b>Alerts and Sound Effects</b>"
msgstr "<b>แแแแแแจแ แแ แฎแแแแแแ แแคแแฅแขแแแ</b>"
#: ../capplets/sound/sound-properties.glade.h:2
msgid "<b>Audio Conferencing</b>"
msgstr "<b>แแฃแแแ แแแแคแแ แแแชแแ</b>"
#: ../capplets/sound/sound-properties.glade.h:3
msgid "<b>Default Mixer Tracks</b>"
msgstr "<b>แแแฅแจแแ แแก แแแแฃแแแกแฎแแแแ แแ แฎแแแ</b>"
#: ../capplets/sound/sound-properties.glade.h:4
msgid "<b>Music and Movies</b>"
msgstr "<b>แแฃแกแแแ แแ แคแแแแ</b>"
#: ../capplets/sound/sound-properties.glade.h:5
msgid "<b>Sound Events</b>"
msgstr "<b>แฎแแแแแแ แแแแแแแแแ</b>"
#: ../capplets/sound/sound-properties.glade.h:6
msgid "<b>Sound Theme</b>"
msgstr "<b>แฎแแแแแแ แแแแแแแแแ</b>"
#: ../capplets/sound/sound-properties.glade.h:7
msgid "<span weight=\"bold\" size=\"x-large\">Testing...</span>"
msgstr "<span weight=\"bold\" size=\"larger\">แจแแแแฌแแแแ...</span>"
#: ../capplets/sound/sound-properties.glade.h:8
msgid "Click OK to finish."
msgstr "\"แแแแฎ\" แขแแกแขแแก แแแกแ แฃแแแแแกแแแแก."
#: ../capplets/sound/sound-properties.glade.h:9
msgid "Devices"
msgstr "แแแฌแงแแแแแแแ"
#: ../capplets/sound/sound-properties.glade.h:10
msgid "Play _alert sound"
msgstr "แกแแกแขแแแฃแ แ แฎแแแก _แแแแแ แ"
#: ../capplets/sound/sound-properties.glade.h:11
msgid "Play _sound effects when buttons are clicked"
msgstr ""
#: ../capplets/sound/sound-properties.glade.h:12
msgid "S_ound playback:"
msgstr "แฎ_แแแก แแแแแแ แแแ:"
#: ../capplets/sound/sound-properties.glade.h:13
msgid ""
"Select the device and tracks to control with the keyboard. Use the Shift and "
"Control keys to select multiple tracks if required."
msgstr ""
"แแแฌแงแแแแแแแแแแก แแ แแ แฎแแแแก แแแแ แฉแแแ แแแแแแแขแฃแ แแก แแแฎแแแ แแแแ แฎแแแแ. แแแแแแงแแแแ "
"Shift แแ Control แฆแแแแแแแ, แแ แแ แแ แแแขแ แแ แฎแแก แแแแกแแ แฉแแแแ."
#: ../capplets/sound/sound-properties.glade.h:14
msgid "So_und playback:"
msgstr "แฎ_แแแก แแแแแ แ:"
#: ../capplets/sound/sound-properties.glade.h:15
msgid "Sou_nd capture:"
msgstr "แฎแแแก แฉแแฌแ_แ แ:"
#: ../capplets/sound/sound-properties.glade.h:16
#: ../capplets/sound/sound-theme.c:461 ../capplets/sound/sound-theme.c:1016
msgid "Sound Preferences"
msgstr "แฎแแแก แแแ แแแแขแ แแแ"
#: ../capplets/sound/sound-properties.glade.h:17
msgid "Sounds"
msgstr "แฎแแแแ"
#: ../capplets/sound/sound-properties.glade.h:18
msgid "Test"
msgstr "แจแแแแฌแแแแ"
#: ../capplets/sound/sound-properties.glade.h:19
msgid "Testing Pipeline"
msgstr "แแแ แแแแขแ แแแแก แจแแแแฌแแแแ"
#: ../capplets/sound/sound-properties.glade.h:20
msgid "_Device:"
msgstr "_แแแฌแงแแแแแแแ:"
#: ../capplets/sound/sound-properties.glade.h:21
msgid "_Play alerts and sound effects"
msgstr ""
#: ../capplets/sound/sound-properties.glade.h:22
msgid "_Sound playback:"
msgstr "แฎแแ_แก แแแแแ แ:"
#. Bell
#: ../capplets/sound/sound-theme-definition.h:46
msgctxt "Sound event"
msgid "Alert sound"
msgstr "แแแแแแจแแก แฎแแ"
#: ../capplets/sound/sound-theme-definition.h:47
msgctxt "Sound event"
msgid "Visual alert"
msgstr "แแแแฃแแแฃแ แ แแแแแแจแ"
#. Windows and buttons
#: ../capplets/sound/sound-theme-definition.h:49
msgctxt "Sound event"
msgid "Windows and Buttons"
msgstr "แคแแแฏแ แแแ แแ แฆแแแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:50
msgctxt "Sound event"
msgid "Button clicked"
msgstr "แแแญแแ แแแ แฆแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:51
msgctxt "Sound event"
msgid "Toggle button clicked"
msgstr ""
#: ../capplets/sound/sound-theme-definition.h:52
msgctxt "Sound event"
msgid "Window maximized"
msgstr "แแแแแแแแฃแแ แคแแแฏแแ แ"
#: ../capplets/sound/sound-theme-definition.h:53
msgctxt "Sound event"
msgid "Window unmaximized"
msgstr ""
#: ../capplets/sound/sound-theme-definition.h:54
msgctxt "Sound event"
msgid "Window minimised"
msgstr "แแแแแขแแ แแแแแฃแแ แคแแแฏแแ แ"
#. Desktop
#: ../capplets/sound/sound-theme-definition.h:56
msgctxt "Sound event"
msgid "Desktop"
msgstr "แกแแแฃแจแแ แแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:57
msgctxt "Sound event"
msgid "Login"
msgstr "แจแแกแแแ"
#: ../capplets/sound/sound-theme-definition.h:58
msgctxt "Sound event"
msgid "Logout"
msgstr "แแแแแกแแแ"
#: ../capplets/sound/sound-theme-definition.h:59
msgctxt "Sound event"
msgid "New e-mail"
msgstr "แแฎแแแ แแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:60
msgctxt "Sound event"
msgid "Empty trash"
msgstr "แกแแแแแแ แงแฃแแแก แแแชแแ แแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:61
msgctxt "Sound event"
msgid "Long action completed (download, CD burning, etc.)"
msgstr ""
#. Alerts?
#: ../capplets/sound/sound-theme-definition.h:63
msgctxt "Sound event"
msgid "Alerts"
msgstr "แแแคแ แแฎแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:64
msgctxt "Sound event"
msgid "Information or question"
msgstr ""
#: ../capplets/sound/sound-theme-definition.h:65
msgctxt "Sound event"
msgid "Warning"
msgstr "แจแแขแงแแแแแแแ"
#: ../capplets/sound/sound-theme-definition.h:66
msgctxt "Sound event"
msgid "Error"
msgstr "แจแแชแแแแ"
#: ../capplets/sound/sound-theme-definition.h:67
msgctxt "Sound event"
msgid "Battery warning"
msgstr "แแแแแแก แแแแแแแขแแก แจแแขแงแแแแแแแ"
#: ../capplets/sound/sound-theme.c:437 ../capplets/sound/sound-theme.c:563
msgid "Flash screen"
msgstr "แแแ แแแแก แชแแแชแแแ"
#: ../capplets/sound/sound-theme.c:441 ../capplets/sound/sound-theme.c:567
msgid "Flash window"
msgstr "แคแแแฏแ แแก แชแแแชแแแ"
#: ../capplets/sound/sound-theme.c:463 ../capplets/sound/sound-theme.c:1018
#, fuzzy
msgid "Testing event sound"
msgstr "แขแแกแข แฎแแ"
#: ../capplets/sound/sound-theme.c:482
msgid "Select Sound File"
msgstr "แฎแแแแแแ แคแแแแแก แแ แฉแแแ"
#: ../capplets/sound/sound-theme.c:493
msgid "Sound files"
msgstr "แฎแแแแแแ แคแแแแแแ"
#: ../capplets/sound/sound-theme.c:547
msgid "Custom..."
msgstr "แแ_แแแ แแแ..."
#: ../capplets/windows/gnome-window-properties.c:344
msgid "Cannot start the preferences application for your window manager"
msgstr "แจแแฃแซแแแแแแแ แคแแแฏแ แแแแก แแแแ แแแแแแกแแแแก แแแ แแแแขแ แแแแก แแแจแแแแ"
#. translators: this is the Control key
#: ../capplets/windows/gnome-window-properties.c:602
msgid "C_ontrol"
msgstr "_Ctrl"
#: ../capplets/windows/gnome-window-properties.c:607
msgid "_Alt"
msgstr "_Alt"
#: ../capplets/windows/gnome-window-properties.c:613
msgid "H_yper"
msgstr "_แขแแ แ"
#: ../capplets/windows/gnome-window-properties.c:620
msgid "S_uper (or \"Windows logo\")"
msgstr "_แแแแ (แแ \"แคแแแฏแ แแก แแแแ\")"
#: ../capplets/windows/gnome-window-properties.c:627
msgid "_Meta"
msgstr "_แแแขแ"
#: ../capplets/windows/gnome-window-properties.glade.h:1
msgid "<b>Movement Key</b>"
msgstr "<b>แแแซแ แแแแแก แฆแแแแแ</b>"
#: ../capplets/windows/gnome-window-properties.glade.h:2
msgid "<b>Titlebar Action</b>"
msgstr "<b>แแแแกแแ แแก แแแฅแแแแแแ</b>"
#: ../capplets/windows/gnome-window-properties.glade.h:3
msgid "<b>Window Selection</b>"
msgstr "<b>แแแแแจแแแ แคแแแฏแแ แแจแ</b>"
#: ../capplets/windows/gnome-window-properties.glade.h:4
msgid "To move a window, press-and-hold this key then grab the window:"
msgstr "แคแแแฏแแ แแก แแแแแกแแแแแแแแแแแ, แแแแญแแ แแ แแ แแแญแแ แแแแ แแแแแแขแแแแ แคแแแฏแแ แ:"
#: ../capplets/windows/gnome-window-properties.glade.h:5
msgid "Window Preferences"
msgstr "แคแแแฏแแ แแก แแแ แแแแขแ แแแ"
#: ../capplets/windows/gnome-window-properties.glade.h:6
msgid "_Double-click titlebar to perform this action:"
msgstr "แ_แ แฏแแ แแแแฌแแแแแ แคแแแฏแ แแก แแแแกแแ แแก, แ แแ แจแแแกแ แฃแแแ แแก แแแฅแแแแแแ:"
#: ../capplets/windows/gnome-window-properties.glade.h:7
msgid "_Interval before raising:"
msgstr "_แแแขแแ แแแแ แแแแฌแแแแแแ"
#: ../capplets/windows/gnome-window-properties.glade.h:8
msgid "_Raise selected windows after an interval"
msgstr "แแแแแจแแฃแแ แคแแแฏแ แแก _แแแแขแแแ แแแขแแ แแแแแก แแแ แ"
#: ../capplets/windows/gnome-window-properties.glade.h:9
msgid "_Select windows when the mouse moves over them"
msgstr "แคแแแฏแ แแก แแแแแจแแแ แแแ แแแแแแก แแแแแขแแ แแแแกแแก"
#: ../capplets/windows/gnome-window-properties.glade.h:10
msgid "seconds"
msgstr "แฌแแแ"
#: ../capplets/windows/window-properties.desktop.in.in.h:1
msgid "Set your window properties"
msgstr "แแฅแแแแ แคแแแฏแ แแก แแแ แแแแขแ แแแแก แแแแแแแแ"
#: ../capplets/windows/window-properties.desktop.in.in.h:2
msgid "Windows"
msgstr "แคแแแฏแ แแแ"
#. make start action
#: ../libslab/application-tile.c:372
#, c-format
msgid "<b>Start %s</b>"
msgstr "<b>แแแจแแแแ %s</b>"
#: ../libslab/application-tile.c:391 ../libslab/bookmark-agent.c:1056
msgid "Help"
msgstr "แแแฎแแแ แแแ"
#: ../libslab/application-tile.c:438
msgid "Upgrade"
msgstr "แแแแแฎแแแแ"
#: ../libslab/application-tile.c:453
msgid "Uninstall"
msgstr "แแแแจแแ"
#: ../libslab/application-tile.c:780 ../libslab/document-tile.c:710
msgid "Remove from Favorites"
msgstr "แ แฉแแฃแแแแแแแ แแแแจแแ"
#: ../libslab/application-tile.c:782 ../libslab/document-tile.c:712
msgid "Add to Favorites"
msgstr "แ แฉแแฃแแแแจแ แแแแแขแแแ"
#: ../libslab/application-tile.c:867
msgid "Remove from Startup Programs"
msgstr "แแแขแแแแจแแแแแแแ แแแแจแแ"
#: ../libslab/application-tile.c:869
msgid "Add to Startup Programs"
msgstr "<แแแขแแแแจแแแแแจแ แแแแแขแแแ"
#: ../libslab/app-shell.c:750
#, c-format
msgid ""
"<span size=\"large\"><b>No matches found.</b> </span><span>\n"
"\n"
" Your filter \"<b>%s</b>\" does not match any items.</span>"
msgstr ""
"<span size=\"large\"><b>แแ แแแแแแ แ แแแแแแแ แแแแแฎแแแแ.</b> </span><span>\n"
"\n"
" แแ แช แแ แแ แแแแแแแขแ แแ แจแแแกแแแแแแแ แแฅแแแแก แคแแแขแ แก. \"<b>%s</b>\"</span>"
#: ../libslab/app-shell.c:900
msgid "Other"
msgstr "แกแฎแแ"
#: ../libslab/bookmark-agent.c:1058
msgid "Lock Screen"
msgstr "แแแ แแแแก แแแแแแแแ"
#: ../libslab/bookmark-agent.c:1060
msgid "Logout"
msgstr "แแแแแกแแแ"
#: ../libslab/bookmark-agent.c:1062
msgid "Shutdown"
msgstr "แแแแแ แแแ"
#: ../libslab/bookmark-agent.c:1087
msgid "New Spreadsheet"
msgstr "แแฎแแแ แแแชแฎแ แแแ"
#: ../libslab/bookmark-agent.c:1092
msgid "New Document"
msgstr "แแฎแแแ แแแแฃแแแแขแ"
#: ../libslab/bookmark-agent.c:1143
msgid "Home"
msgstr "แกแแฎแแ"
#: ../libslab/bookmark-agent.c:1148
msgid "Documents"
msgstr "แแแแฃแแแแขแแแ"
#: ../libslab/bookmark-agent.c:1161
msgid "File System"
msgstr "แคแแแแฃแ แ แกแแกแขแแแ"
#: ../libslab/bookmark-agent.c:1165
msgid "Network Servers"
msgstr "แฅแกแแแแก แกแแ แแแ แแแ"
#: ../libslab/bookmark-agent.c:1194
msgid "Search"
msgstr "แซแแแแ"
#. make open with default action
#: ../libslab/directory-tile.c:171
#, c-format
msgid "<b>Open</b>"
msgstr "<b>แแแฎแกแแ</b>"
#. make rename action
#: ../libslab/directory-tile.c:190 ../libslab/document-tile.c:230
msgid "Rename..."
msgstr "แแแแแ แฅแแแแ..."
#: ../libslab/directory-tile.c:204 ../libslab/directory-tile.c:213
#: ../libslab/document-tile.c:244 ../libslab/document-tile.c:253
msgid "Send To..."
msgstr "แแแแแแแแ..."
#. make move to trash action
#: ../libslab/directory-tile.c:228 ../libslab/document-tile.c:279
msgid "Move to Trash"
msgstr "แกแแแแแแ แงแฃแแจแ แแแแแขแแแ"
#: ../libslab/directory-tile.c:238 ../libslab/directory-tile.c:456
#: ../libslab/document-tile.c:289 ../libslab/document-tile.c:826
msgid "Delete"
msgstr "แฌแแจแแ"
#: ../libslab/directory-tile.c:532 ../libslab/document-tile.c:974
#, c-format
msgid "Are you sure you want to permanently delete \"%s\"?"
msgstr ""
#: ../libslab/directory-tile.c:533 ../libslab/document-tile.c:975
msgid "If you delete an item, it is permanently lost."
msgstr ""
#: ../libslab/document-tile.c:191
#, c-format
msgid "<b>Open with \"%s\"</b>"
msgstr "<b>แแแฎแกแแ แแแจแแแแแแ \"%s\"</b>"
#: ../libslab/document-tile.c:203
msgid "Open with Default Application"
msgstr "แแแแฃแแแกแฎแแแแ แแ แแแ แแแแ แแแฎแกแแ"
#: ../libslab/document-tile.c:214
msgid "Open in File Manager"
msgstr "แคแแแแแ แแแแ แแแแแจแ แแแฎแกแแ"
#: ../libslab/document-tile.c:606
msgid "?"
msgstr "?"
#: ../libslab/document-tile.c:613
msgid "%l:%M %p"
msgstr "%l:%M %p"
#: ../libslab/document-tile.c:621
msgid "Today %l:%M %p"
msgstr "แแฆแแก %l:%M %p"
#: ../libslab/document-tile.c:631
msgid "Yesterday %l:%M %p"
msgstr "แแฃแจแแ %l:%M %p"
#: ../libslab/document-tile.c:643
msgid "%a %l:%M %p"
msgstr "%a %l:%M %p"
#: ../libslab/document-tile.c:651
msgid "%b %d %l:%M %p"
msgstr "%b %d %l:%M %p"
#: ../libslab/document-tile.c:653
msgid "%b %d %Y"
msgstr "%b %d %Y"
#: ../libslab/search-bar.c:255
msgid "Find Now"
msgstr "แแงแแกแแ แแแแแ"
#: ../libslab/system-tile.c:128
#, c-format
msgid "<b>Open %s</b>"
msgstr "<b>แแแฎแกแแ %s</b>"
#: ../libslab/system-tile.c:141
#, c-format
msgid "Remove from System Items"
msgstr "แกแแกแขแแแฃแ แ แแแแแแแขแแแแแแ แแแแฆแแแ"
#: ../libwindow-settings/gnome-wm-manager.c:318
#, c-format
msgid "Window manager \"%s\" has not registered a configuration tool\n"
msgstr "แคแแแฏแ แแแแก แแแแ แแแแแแ \"%s\" แแ แแแแ แแแแกแขแ แแ แ แแแแคแแแฃแ แแ แแแแก แฎแแแกแแฌแงแ\n"
#: ../libwindow-settings/metacity-window-manager.c:402
msgid "Maximize"
msgstr "แแแจแแ"
#: ../libwindow-settings/metacity-window-manager.c:403
msgid "Maximize Vertically"
msgstr "แแแ แขแแแแแฃแ แแ แแแแแแแแ"
#: ../libwindow-settings/metacity-window-manager.c:404
msgid "Maximize Horizontally"
msgstr "แฐแแ แแแแแขแแแฃแ แแ แแแแแแแแ"
#: ../libwindow-settings/metacity-window-manager.c:405
msgid "Minimize"
msgstr "แฉแแแแชแแ"
#: ../libwindow-settings/metacity-window-manager.c:406
msgid "Roll up"
msgstr "แแแแแ แแแแชแแ"
#: ../libwindow-settings/metacity-window-manager.c:407
msgid "None"
msgstr "แแ แ"
#: ../shell/control-center.c:62
#, c-format
msgid "key not found [%s]\n"
msgstr "แแแ แแแแซแแแแ แแแกแแฆแแแ [%s]\n"
#: ../shell/control-center.c:159
msgid "Filter"
msgstr "แคแแแขแ แ"
#: ../shell/control-center.c:159
msgid "Groups"
msgstr "แฏแแฃแคแแแ"
#: ../shell/control-center.c:159
msgid "Common Tasks"
msgstr "แกแแแ แแ แแแแชแแแแแ"
#: ../shell/control-center.c:163 ../shell/gnomecc.desktop.in.in.h:1
#: ../shell/gnomecc.directory.in.h:1
msgid "Control Center"
msgstr "แแแ แแแแก แชแแแขแ แ"
#: ../shell/control-center.schemas.in.h:1
msgid "Close the control-center when a task is activated"
msgstr "แแแ แแแแก แชแแแขแ แแก แแแฎแฃแ แแ, แแแแชแแแแก แแฅแขแแแแ แแแแกแแก"
#: ../shell/control-center.schemas.in.h:2
msgid "Exit shell on add or remove action performed"
msgstr ""
#: ../shell/control-center.schemas.in.h:3
msgid "Exit shell on help action performed"
msgstr ""
#: ../shell/control-center.schemas.in.h:4
msgid "Exit shell on start action performed"
msgstr ""
#: ../shell/control-center.schemas.in.h:5
msgid "Exit shell on upgrade or uninstall action performed"
msgstr ""
#: ../shell/control-center.schemas.in.h:6
msgid "Indicates whether to close the shell when a help action is performed."
msgstr ""
#: ../shell/control-center.schemas.in.h:7
msgid "Indicates whether to close the shell when a start action is performed."
msgstr ""
#: ../shell/control-center.schemas.in.h:8
msgid ""
"Indicates whether to close the shell when an add or remove action is "
"performed."
msgstr ""
#: ../shell/control-center.schemas.in.h:9
msgid ""
"Indicates whether to close the shell when an upgrade or uninstall action is "
"performed."
msgstr ""
#: ../shell/control-center.schemas.in.h:10
msgid "Task names and associated .desktop files"
msgstr ""
#: ../shell/control-center.schemas.in.h:11
msgid ""
"The task name to be displayed in the control-center followed by a \";\" "
"separator then the filename of an associated .desktop file to launch for "
"that task."
msgstr ""
#. Translators: The format of this string is the task name to be displayed (translate that part) followed by a ";" separator then the filename (DONT translate the file name) of a .desktop file to launch. Multiple entries are separated by a ","
#: ../shell/control-center.schemas.in.h:13
#, fuzzy
msgid ""
"[Change Theme;gtk-theme-selector.desktop,Set Preferred Applications;default-"
"applications.desktop,Add Printer;gnome-cups-manager.desktop]"
msgstr ""
"[แแแแแแแก แคแแแแก แจแแชแแแ;background.desktop,แแแคแแ แแแแแก แจแแชแแแ;gtk-theme-"
"selector.desktop,แกแแกแฃแ แแแแ แแ แแแ แแแแแแก แแแแกแแแฆแแ แ;default-applications."
"desktop,แแ แแแขแแ แแก แแแแแขแแแ;gnome-cups-manager.desktop]"
#: ../shell/control-center.schemas.in.h:14
#, fuzzy
msgid ""
"if true, the control-center will close when a \"Common Task\" is activated."
msgstr "แแแ แแแแก แชแแแขแ แแก แแแฎแฃแ แแ, แแแแชแแแแก แแฅแขแแแแ แแแแกแแก"
#: ../shell/gnomecc.desktop.in.in.h:2
msgid "The GNOME configuration tool"
msgstr "แแแแแแก แแแแคแแแฃแ แแชแแแก แฎแแแกแแฌแงแ"
#: ../typing-break/drw-break-window.c:189
msgid "_Postpone Break"
msgstr "/_แแแกแแแแแแแก แแแแแแแแ"
#: ../typing-break/drw-break-window.c:245
msgid "Take a break!"
msgstr "แชแแขแ แแแแกแแแแแ!"
#. { N_("/_Enabled"), NULL, GIF_CB (popup_enabled_cb), POPUP_ITEM_ENABLED, "<ToggleItem>", NULL },
#. translators: keep the initial "/"
#: ../typing-break/drwright.c:130
msgid "/_Preferences"
msgstr "/แแแ แแแ_แขแ แแแ"
#: ../typing-break/drwright.c:131
msgid "/_About"
msgstr "/แแ แแแ แแแแก _แจแแกแแฎแแ"
#: ../typing-break/drwright.c:133
msgid "/_Take a Break"
msgstr "/แแ_แกแแแแแแ"
#: ../typing-break/drwright.c:489
#, c-format
msgid "%d minute until the next break"
msgid_plural "%d minutes until the next break"
msgstr[0] "%d แฌแฃแแ แแแแแแแ แแแฃแแแแแ"
#: ../typing-break/drwright.c:493
#, c-format
msgid "Less than one minute until the next break"
msgstr "แ แฉแแแ แฌแฃแแแ แแแแแแแ แแแแแแแ แแแฃแแแแแ"
#: ../typing-break/drwright.c:580
#, c-format
msgid ""
"Unable to bring up the typing break properties dialog with the following "
"error: %s"
msgstr ""
#: ../typing-break/drwright.c:599
msgid "Written by Richard Hult <richard@imendio.com>"
msgstr "แแแขแแ แ Richard Hult <richard@imendio.com>"
#: ../typing-break/drwright.c:600
msgid "Eye candy added by Anders Carlsson"
msgstr "แแแแแแแ Anders Carlsson"
#: ../typing-break/drwright.c:609
msgid "A computer break reminder."
msgstr "แแแกแแแแแแแก แจแแขแงแแแแแแแแก แแ แแแ แแแ"
#: ../typing-break/drwright.c:611
msgid "translator-credits"
msgstr "Vladimer Sichinava แแแแแแแแ แกแแญแแแแแ <vlsichinava@gmail.com>"
#: ../typing-break/main.c:61
msgid "Enable debugging code"
msgstr "แแแแแ แแแแก แแแแแแแขแแแ แแแแแก แฉแแ แแแ"
#: ../typing-break/main.c:63
msgid "Don't check whether the notification area exists"
msgstr ""
#: ../typing-break/main.c:89
msgid "Typing Monitor"
msgstr "แแแญแแแแก แแแแแขแแ แ"
#: ../typing-break/main.c:105
msgid ""
"The typing monitor uses the notification area to display information. You "
"don't seem to have a notification area on your panel. You can add it by "
"right-clicking on your panel and choosing 'Add to panel', selecting "
"'Notification area' and clicking 'Add'."
msgstr ""
#~ msgid " "
#~ msgstr "."
#~ msgid " "
#~ msgstr " "
#~ msgid "Enable support for GNOME assistive technologies at login"
#~ msgstr ""
#~ "แกแแกแขแแแแจแ แจแแแแกแแแแกแแแแแแ, แแแแแแก แแแแฎแแแ แ แขแแฅแแแแแแแแแแก แแฎแแ แแแญแแ แแก "
#~ "แฉแแ แแแ"
#~ msgid "There was an error launching the mouse preferences dialog: %s"
#~ msgstr "แแแแจแแ แจแแชแแแแ แแแแฃแแแก แแแ แแแแขแ แแแแก แแแจแแแแแกแแก: %s"
#~ msgid "Unable to import AccessX settings from file '%s'"
#~ msgstr "แจแแฃแซแแแแแแแ AccessX-แแก แแแ แแแแขแ แแแแก '%s' แคแแแแแแแ แแแแแ แขแแ แแแ"
#~ msgid "Import Feature Settings File"
#~ msgstr "แแแ แแแแขแ แแแแก แคแแแแแก แแแแแ แขแแ แแแ"
#~ msgid "_Import"
#~ msgstr "_แแแแแ แขแ"
#~ msgid "Set your keyboard accessibility preferences"
#~ msgstr "แแแแแแแขแฃแ แแ แฌแแแแแแก แแแ แแแแขแ แแแแก แแแงแแแแแ"
#~ msgid ""
#~ "This system does not seem to have the XKB extension. The keyboard "
#~ "accessibility features will not operate without it."
#~ msgstr ""
#~ "แกแแกแขแแแแก แแ แแแแฉแแแ XKB-แแก แแแคแแ แแแแแ. แแแก แแแ แแจแ แจแแฃแซแแแแแแแ แแแแแแแขแฃแ แแก "
#~ "แกแแแช แจแแกแแซแแแแแแแแแแก แแแฃแจแแแแแ."
#~ msgid "<b>Enable _Mouse Keys</b>"
#~ msgstr "<b>แแแ_แฃแแแก แแแแแแจแแแแก แฉแแ แแแ</b>"
#~ msgid "<b>Enable _Repeat Keys</b>"
#~ msgstr "<b>แแแแแแจแแแแก แ_แแแแแ แแแแก แฉแแ แแแ</b>"
#~ msgid "<b>Features</b>"
#~ msgstr "<b>แคแฃแแฅแชแแแแ</b>"
#~ msgid "<b>Toggle Keys</b>"
#~ msgstr "<b>แแแแแแ แแแแแ แแแแแแจแแแ</b>"
#~ msgid "Basic"
#~ msgstr "แซแแ แแแแแ"
#~ msgid "Beep when an LED is turned on and two beeps when one is turned off."
#~ msgstr "แแแแแแ, แ แแแแกแแช แแแแฃแ แแก LED-แ แแ แแแแแ, 2แฏแแ แแแแแแ แ แแแแกแแช แแแแจแแแ."
#~ msgid "Delay between keypress and pointer mo_vement:"
#~ msgstr "แแแงแแแแแแ แฆแแแแแแ แแแญแแ แแกแ แแ แแฃแ แกแแ แแก แ_แแซแ แแแแแก แจแแ แแก:"
#~ msgid "E_nable Toggle Keys"
#~ msgstr "แแแแแแ แแแแแ แแแแแแจแแแแก แแ_แแฅแขแแฃแ แแแ"
#~ msgid "Filters"
#~ msgstr "แคแแแขแ แแแ"
#~ msgid ""
#~ "Ignore all subsequent presses of the SAME key if they happen within a "
#~ "user selectable period of time."
#~ msgstr ""
#~ "แแ แแ แแ แแแแแ แแแแแแจแแก แแแแแแแแแแ แฃแแ แแแญแแ แแก แแแแแ แแ แแแ, แแแแฎแแแ แแแแแก "
#~ "แแแแ แแแแแแแแฃแแ แแ แแแก แแแ แแแแจแ."
#~ msgid "Keyboard Accessibility Preferences (AccessX)"
#~ msgstr "แแแแแแแขแฃแ แแก แกแแแช แกแแจแฃแแแแแแแแก แแแ แแแแขแ แแแแก แแแแแ แแแ (AccessX)"
#~ msgid "Ma_ximum pointer speed:"
#~ msgstr "แ_แฃแ แกแแ แแก แแแฅแกแแแแแฃแ แ แกแแฉแฅแแ แ:"
#~ msgid "Mouse _Preferences..."
#~ msgstr "แแแแแแก _แแแ แแแแขแ แแแ..."
#~ msgid ""
#~ "Only accept keys after they have been pressed and held for a user "
#~ "adjustable amount of time."
#~ msgstr ""
#~ "แแฎแแแแ แแ แแแแแแจแแแแก แแแจแแแแ, แ แแแแแแกแแช แแแแญแแ แแ แแแแฎแแแ แแแแแก แแแแ "
#~ "แแแแกแแแฆแแ แฃแแ แแ แแแก แแแ แ."
#~ msgid ""
#~ "Perform multiple simultaneous key press operations by pressing modifier "
#~ "keys in sequence."
#~ msgstr ""
#~ "แแ แแแแแ แแ แแแ แแฃแแ แแแแแแจแแแแก แแแญแแ แ, แแแแแคแแแแขแแ แแก แแแแแแจแแแแก "
#~ "แแแแแแแ แแแแแ แแแญแแ แแกแแก"
#~ msgid "Time to acce_lerate to maximum speed:"
#~ msgstr "แแฉแฅแแ แแแแก แแ แ แแแฅแกแแแ_แแฃแ แกแแฉแฅแแ แแแแ:"
#~ msgid "Turn the numeric keypad into a mouse control pad."
#~ msgstr "แชแแคแ แฃแแ แแแแแก แแแแแแจแแแแก แแแแแแก แแแแ แแแแแแ แฉแแ แแแ."
#~ msgid "_Disable if unused for:"
#~ msgstr "_แแแแแจแแ, แแฃ แแ แแแแแแงแแแแแ:"
#~ msgid "_Enable keyboard accessibility features"
#~ msgstr "แแแแแแแขแฃแ แแ แฌแแแแแแก แจแแกแแซแแแแแแแแแแก แแแจ_แแแแ"
#~ msgid "_Import Feature Settings..."
#~ msgstr "แจแแกแแซแแแแแแแแแแก แแแ แแแแขแ แแแแก _แแแแแ แขแ..."
#~ msgid "_accepted"
#~ msgstr "แ_แแฆแแแฃแแ"
#~ msgid "_pressed"
#~ msgstr "_แแแญแแ แแแ"
#~ msgid "_rejected"
#~ msgstr "_แฃแแ แงแแคแแแ"
#~ msgid "characters/second"
#~ msgstr "แแกแ-แแแจแแแ แฌแแแจแ"
#~ msgid "milliseconds"
#~ msgstr "แแแแแฌแแแแแ"
#~ msgid "pixels/second"
#~ msgstr "แแแฅแกแแแ/แฌแแแจแ"
#~ msgid ""
#~ "Centered\n"
#~ "Fill screen\n"
#~ "Scaled\n"
#~ "Zoom\n"
#~ "Tiled"
#~ msgstr ""
#~ "แชแแแขแ แจแ\n"
#~ "แแแ แแแแก แจแแแกแแแ\n"
#~ "แแแจแขแแแแ แแแฃแแ\n"
#~ "แแแแแแแแฃแแ\n"
#~ "แแแแแแแแกแแแ แ"
#~ msgid "Go _to Fonts Folder"
#~ msgstr "แจแ แแคแขแแแแก แแแก_แขแแจแ แแแแแกแแแ"
#~ msgid "The theme is an engine. You need to compile it."
#~ msgstr "แแแคแแ แแแแ แแแแแก แฌแงแแ แแก แฌแแ แแแแแแแแก. แกแแญแแ แแ แแแกแ แแแแแแแแ แแแ."
#~ msgid "The file format is invalid"
#~ msgstr "แคแแแแแก แคแแ แแแขแ แแชแแแ แแ"
#~ msgid "This theme is not in a supported format."
#~ msgstr "แแก แแแแ แแ แแ แแก แแฎแแ แแแญแแ แแแ แคแแ แแแขแแก."
#~ msgid ""
#~ "%s is the path where the theme files will be installed. This can not be "
#~ "selected as the source location"
#~ msgstr ""
#~ "%s แแก แแ แแก แแแแแแ แแแแ, แกแแแแช แแแแแก แคแแแแแแ แแแงแแแแแแ. แแก แแ แจแแแซแแแแ "
#~ "แแแแ แฉแแฃแ แแฅแแแก, แ แแแแ แช แฌแงแแ แแก แแแแแแ แแแแ"
#~ msgid "The file format is invalid."
#~ msgstr "แคแแแแแก แแ แแแแ แแแแฃแแ แคแแ แแแขแ."
#~ msgid "Just apply settings and quit"
#~ msgstr "แแฎแแแแ แแแงแแแแแฃแแแก แแแแแงแแแแแ แแ แแแกแแแ"
#~ msgid "Connecting..."
#~ msgstr "แแแแแแจแแ แแแ...."
#~ msgid "Autostart the preferred AT"
#~ msgstr "แแ แฉแแฃแแ AT-แก แแแขแแแแจแแแแ"
#~ msgid "Evolution Mail Reader 1.4"
#~ msgstr "Evolution แกแแคแแกแขแ แแแแแแขแ 1.4"
#~ msgid "Evolution Mail Reader 1.5"
#~ msgstr "Evolution แกแแคแแกแขแ แแแแแแขแ 1.5"
#~ msgid "Evolution Mail Reader 1.6"
#~ msgstr "Evolution แกแแคแแกแขแ แแแแแแขแ 1.6"
#~ msgid "Evolution Mail Reader 2.0"
#~ msgstr "Evolution แกแแคแแกแขแ แแแแแแขแ 2.0"
#~ msgid "Evolution Mail Reader 2.2"
#~ msgstr "Evolution แกแแคแแกแขแ แแแแแแขแ 2.2"
#~ msgid "Evolution Mail Reader 2.4"
#~ msgstr "Evolution แกแแคแแกแขแ แแแแแแขแ 2.4"
#~ msgid "Links Text Browser"
#~ msgstr "Links แขแแฅแกแข แแ แแฃแแแ แ"
#~ msgid "Lynx Text Browser"
#~ msgstr "Lynx แขแแฅแกแข แแ แแฃแแแ แ"
#~ msgid "Simple OnScreen Keyboard"
#~ msgstr "แฉแแแฃแแแแ แแแ แแแ แแ แแแแแแแขแฃแ แ"
#~ msgid "W3M Text Browser"
#~ msgstr "แขแแฅแกแขแฃแ แ แแ แแฃแแแ แ W3M"
#~ msgid "Inverted"
#~ msgstr "แแแแแ แขแแ แแแฃแแ"
#~ msgid "Default Settings"
#~ msgstr "แแแแฃแแแกแฎแแแแ แแแ แแแแขแ แแแ"
#~ msgid "Screen %d Settings\n"
#~ msgstr "แแแ แแแแก แแแ แแแแขแ แแแ %d\n"
#~ msgid "Screen Resolution Preferences"
#~ msgstr "แแแ แแแแก แแแ แฉแแแแแแแแก แแแ แแแแขแ แแแ"
#~ msgid "_Make default for this computer (%s) only"
#~ msgstr "แ_แฅแชแแ แแแแฃแแแกแฎแแแแแ แแฎแแแแ แแ (%s) แแแแแแฃแขแแ แแกแแแแก"
#~ msgid "Options"
#~ msgstr "แแแ แแแแขแ แแแ"
#~ msgid ""
#~ "Testing the new settings. If you don't respond in %d second the previous "
#~ "settings will be restored."
#~ msgid_plural ""
#~ "Testing the new settings. If you don't respond in %d seconds the previous "
#~ "settings will be restored."
#~ msgstr[0] ""
#~ "แแแแแแแแ แแแแก แแฎแแแ แแแ แแแแขแ แแแแก แขแแกแขแแ แแแ. แแฃ แแ แฃแแแกแฃแฎแแแ %d แฌแแแจแ, "
#~ "แแฆแแแแแ แแแแแแแแ แแแแ แแแ แแแแขแ แแแ."
#~ msgid "Keep Resolution"
#~ msgstr "แแแ แฉแแแแแแแแก แแแขแแแแแ"
#~ msgid "Do you want to keep this resolution?"
#~ msgstr "แแแแแแแ แแแชแแแฃแแ แแแ แฉแแแแแแแแก แแแขแแแแแ?"
#~ msgid "Use _previous resolution"
#~ msgstr "แฌแแแ แแแ แฉแแแแแแแแก แแแแแง_แแแแแ"
#~ msgid "_Keep resolution"
#~ msgstr "_แแแ แฉแแแแแแแแก แแแขแแแแแ"
#~ msgid ""
#~ "The version of the XRandR extension is incompatible with this program. "
#~ "Runtime changes to the display size are not available."
#~ msgstr ""
#~ "XRandR แแแคแแ แแแแแแแก แแแ แกแแ แแ แแ แแแ แแแแกแแแ แจแแฃแแแแกแแแแแแ. X-แแก แแฅแขแแฃแ "
#~ "แแแแแแแ แแแแแจแ แงแแคแแแก แแ แแก แจแแฃแซแแแแแแแ แแแ แฉแแแแแแแแก แแแกแฌแแ แแแ."
#~ msgid "New accelerator..."
#~ msgstr "แแฎแแแ แแแแฉแฅแแ แแแแแ..."
#~ msgid "Error setting new accelerator in configuration database: %s\n"
#~ msgstr "แจแแชแแแแ แแฎแแแ แแแแฉแฅแแ แแแแแก แแแงแแแแแแกแแก แแแแคแแแฃแ แแชแแแก แแแแแจแ: %s\n"
#~ msgid "There was an error launching the keyboard tool: %s"
#~ msgstr "แแแแแแแขแฃแ แแก แแแกแขแ แฃแแแแขแแก แแแจแแแแแกแแก แจแแชแแแแ แแแฎแแ: %s"
#~ msgid "Choose..."
#~ msgstr "แแแแ แฉแแแ..."
#~ msgid "Microsoft Natural Keyboard"
#~ msgstr "แแแแแ แแกแแคแขแแก แแแแแแแขแฃแ แ"
#~ msgid "_Accessibility..."
#~ msgstr "_แแแแฎแแแ แ แกแแจแฃแแแแแแแ."
#~ msgid "_Layouts:"
#~ msgstr "_แแแแแแแแแแแ:"
#~ msgid "%d millisecond"
#~ msgid_plural "%d milliseconds"
#~ msgstr[0] "%d แแแแแฌแแแ"
#~ msgid "<i>Fast</i>"
#~ msgstr "<i>แกแฌแ แแคแ</i>"
#~ msgid "<i>High</i>"
#~ msgstr "<i>แแแฆแแแ</i>"
#~ msgid "<i>Large</i>"
#~ msgstr "<i>แแแแ</i>"
#~ msgid "<i>Low</i>"
#~ msgstr "<i>แแแแแแ</i>"
#~ msgid "<i>Slow</i>"
#~ msgstr "<i>แแแแ</i>"
#~ msgid "<i>Small</i>"
#~ msgstr "<i>แแแขแแ แ</i>"
#~ msgid "Buttons"
#~ msgstr "แฆแแแแแแแ"
#~ msgid "Motion"
#~ msgstr "แแแซแ แแแแ"
#~ msgid " "
#~ msgstr "......"
#~ msgid "Advanced Configuration"
#~ msgstr "แแแแแขแแแแแ แแแ แแแแขแ แแแ"
#~ msgid "E_nable software sound mixing (ESD)"
#~ msgstr "แฎแแแก แแ แแแ แแแฃแแ แแแฅแจแแ แแแแก _แแแจแแแแ (ESD)"
#~ msgid "System Beep"
#~ msgstr "แกแแกแขแแแฃแ แ แแแแแแ"
#~ msgid "_Enable system beep"
#~ msgstr "_แกแแกแขแแแฃแ แ แแแแแแแก แแแจแแแแ"
#~ msgid "Volume"
#~ msgstr "แฎแแแก แกแแแแฆแแ"
#~ msgid "Slow Keys Alert"
#~ msgstr "แแแแ แแแแแแจแแแแก แจแแขแงแแแแแแแ"
#~ msgid ""
#~ "You just held down the Shift key for 8 seconds. This is the shortcut for "
#~ "the Slow Keys feature, which affects the way your keyboard works."
#~ msgstr ""
#~ "แแฅแแแ แแแฌแแ แแ Shift แแแแแแจแแ 8 แฌแแแ, แแก แแแแแแงแแแแแ แแแแ แแแแแแจแแแแก "
#~ "แจแแกแแซแแแแแแแแแแกแแแแก, แ แแช แแฅแแแแ แแแแแแแขแฃแ แแก แแฃแจแแแแแก แกแขแแแแ แแฎแแแแก "
#~ "แแแแแแแแก."
#~ msgid "Do you want to activate Slow Keys?"
#~ msgstr "แแแแแแแ แแแแ แแแแแแจแแแแก แฉแแ แแแ?"
#~ msgid "Do you want to deactivate Slow Keys?"
#~ msgstr "แแแแแแแ แแแแ แแแแแแจแแแแก แแแแแ แแแ?"
#~ msgid "_Activate"
#~ msgstr "แฉ_แแ แแแ"
#~ msgid "_Deactivate"
#~ msgstr "_แแแแแ แแแ"
#~ msgid "Do_n't activate"
#~ msgstr "แ_แ แฉแแ แแ"
#~ msgid "Do_n't deactivate"
#~ msgstr "แ_แ แแแแแ แแ"
#~ msgid "Sticky Keys Alert"
#~ msgstr "แแแ แญแแแแแ แแแแแแจแแแแก แจแแขแงแแแแแแแ"
#~ msgid ""
#~ "You just pressed the Shift key 5 times in a row. This is the shortcut "
#~ "for the Sticky Keys feature, which affects the way your keyboard works."
#~ msgstr ""
#~ "แแฅแแแ 5-แฏแแ แแแงแแแแแแ แแแแญแแ แแ Shift แแแแแแจแก, แแก แแแแแแงแแแแแ แแแ แญแแแแแ "
#~ "แแแแแแจแแแแก แจแแกแแซแแแแแแแแแแกแแแแแก, แ แแช แแฅแแแแ แแแแแแขแฃแ แแก แแฃแจแแแแแก แกแขแแแแ "
#~ "แแฎแแแแก แแแแแแแแก."
#~ msgid ""
#~ "You just pressed two keys at once, or pressed the Shift key 5 times in a "
#~ "row. This turns off the Sticky Keys feature, which affects the way your "
#~ "keyboard works."
#~ msgstr ""
#~ "แแฅแแแ แแแแญแแ แแ แแ แแแแแแจแก แแ แแ แแฃแแแ แแ 5-แฏแแ แแแงแแแแแแ แแแแญแแ แแ Shift "
#~ "แแแแแแจแก. แแก แแแจแแแก แแแ แญแแแแแ แแแแแแจแแแแก แจแแกแแซแแแแแแแแแก, แ แแช แแฅแแแแ "
#~ "แแแแแแแขแฃแ แแก แแฃแจแแแแแก แกแขแแแแ แแฎแแแแก แแแแแแแแก."
#~ msgid "Do you want to activate Sticky Keys?"
#~ msgstr "แแแแแแแ \"แฌแแแแแแแ\" แแแแแแจแแแแก แแแแฅแขแแฃแ แแแ?"
#~ msgid "Do you want to deactivate Sticky Keys?"
#~ msgstr "แแแแแแแ \"แฌแแแแแแแ\" แแแแแแจแแแแก แแแแแ แแแ?"
#~ msgid ""
#~ "Cannot create the directory \"%s\".\n"
#~ "This is needed to allow changing the mouse pointer theme."
#~ msgstr ""
#~ "แจแแฃแซแแแแแแแ \"%s\" แแแกแขแแก แจแแฅแแแ.\n"
#~ "แกแแญแแ แแ แแฃแ แกแแ แแก แแแคแแ แแแแแก แแแแแก แจแแกแแชแแแแแแ."
#~ msgid ""
#~ "Cannot create the directory \"%s\".\n"
#~ "This is needed to allow changing cursors."
#~ msgstr ""
#~ "แจแแฃแซแแแแแแแ แแแกแขแแก แจแแฅแแแ \"%s\".\n"
#~ "แกแแญแแ แแ แแฃแ แกแแ แแก แจแแชแแแแกแแแแแก."
#~ msgid "Key Binding (%s) has its action defined multiple times\n"
#~ msgstr "แฆแแแแแแแแก แแแแแแแแชแแ (%s) แแแแกแแแฆแแ แฃแแแ แแแแแแ แแ แฅแแแแแแแกแแแแก.\n"
#~ msgid "Key Binding (%s) has its binding defined multiple times\n"
#~ msgstr "แฆแแแแแแแแก แแแแแแแแชแแ (%s) แแแแกแแแฆแแ แฃแแแ แ แแแแแแแฏแแ แแ\n"
#~ msgid "Key Binding (%s) is incomplete\n"
#~ msgstr "แฆแแแแแแแแก แแแแแแแแชแแ (%s) แแ แแ แแก แแแแกแแแฆแแ แฃแแ\n"
#~ msgid "Key Binding (%s) is invalid\n"
#~ msgstr "แฆแแแแแแแแก แแแแแแแแชแแ (%s) แแแฃแจแแแแแแแ\n"
#~ msgid "It seems that another application already has access to key '%u'."
#~ msgstr "แจแแกแแซแแแแแแแ แ แแ แกแฎแแ แแ แแแ แแแ แฃแแแ แแงแแแแแก '%u' แฆแแแแแก."
#~ msgid "Key Binding (%s) is already in use\n"
#~ msgstr "แฆแแแแแแแแก แแแแแแแแชแแ (%s) แฃแแแ แแแแแงแแแแแแจแแ\n"
#~ msgid ""
#~ "Error while trying to run (%s)\n"
#~ "which is linked to the key (%s)"
#~ msgstr ""
#~ "แจแแชแแแแ (%s)-แแก แแแจแแแแแก แแชแแแแแแแกแแก\n"
#~ "แ แแแแแแช แจแแแกแแแแแแแ แฆแแแแแก (%s)"
#~ msgid ""
#~ "You are using XFree 4.3.0.\n"
#~ "There are known problems with complex XKB configurations.\n"
#~ "Try using a simpler configuration or taking a fresher version of XFree "
#~ "software."
#~ msgstr ""
#~ "You are using XFree 4.3.0.\n"
#~ "There are known problems with complex XKB configurations.\n"
#~ "Try using a simpler configuration or taking a fresher version of XFree "
#~ "software."
#~ msgid "Do _not show this warning again"
#~ msgstr "แแฆ_แแ แแแฉแแแแ แแแชแแแฃแแ แแแคแ แแฎแแแแแแก แจแแขแงแแแแแแแ"
#~ msgid ""
#~ "<b>The X system keyboard settings differ from your current GNOME keyboard "
#~ "settings.</b>\n"
#~ "\n"
#~ "Expected was %s, but the the following settings were found: %s.\n"
#~ "\n"
#~ "Which set would you like to use?"
#~ msgstr ""
#~ "<b>X แกแแกแขแแแแก แแแแแแแขแฃแ แ แแแแแแแแแ แแแแกแฎแแแแแแแ แแฅแแแแก GNOME แแแแแแแขแฃแ แแก "
#~ "แแแแแแแแแแกแแแ.</b>\n"
#~ "\n"
#~ "แแแกแแแแแแแแ แแงแ %s, แแแแ แแ แแแแแแแแ: %s.\n"
#~ "\n"
#~ "แ แแแแแก แแแแแงแแแแแ แแกแฃแ แ?"
#~ msgid "Use X settings"
#~ msgstr "X-แแก แแแ แแแแขแ แแแแก แแแแแงแแแแแ"
#~ msgid "Keep GNOME settings"
#~ msgstr "แแแแแแก แแแ แแแแขแ แแแแก แแแขแแแแแ"
#~ msgid ""
#~ "Could not get default terminal. Verify that your default terminal command "
#~ "is set and points to a valid application."
#~ msgstr ""
#~ "แแแ แแ แแแ แแแแฃแแแกแฎแแแ แขแแ แแแแแแก. แแแ แฌแแฃแแแแ แ แแ แแฅแแแแ แแแแฃแแแกแฎแแแแ "
#~ "แขแแ แแแแแแแก แแ แแแ แแแ แแแแแจแแฃแแแ."
#~ msgid ""
#~ "Couldn't execute command: %s\n"
#~ "Verify that this is a valid command."
#~ msgstr ""
#~ "แจแแฃแซแแแแแแแ แแ แซแแแแแแก แแแจแแแแ: %s\n"
#~ "แจแแแแแฌแแแ แจแแงแแแแแแ แแ แซแแแแแแก แแแ แแแแฃแแแแแจแ."
#~ msgid ""
#~ "Couldn't put the machine to sleep.\n"
#~ "Verify that the machine is correctly configured."
#~ msgstr ""
#~ "แจแแฃแซแแแแแแแ แแซแแแแ แ แ แแแแแจแ แแแแแกแแแ.\n"
#~ "แแแ แฌแแฃแแแแ แ แแ แแแแแแฃแขแแ แ แกแฌแแ แแแแ แแแแคแแแฃแ แแ แแแฃแแ."
#~ msgid ""
#~ "There was an error starting up the screensaver:\n"
#~ "\n"
#~ "%s\n"
#~ "\n"
#~ "Screensaver functionality will not work in this session."
#~ msgstr ""
#~ "แแแแจแแ แจแแชแแแแ แแแ แแแแแแแแก แแแจแแแแแกแแก:\n"
#~ "\n"
#~ "%s\n"
#~ "\n"
#~ "แแแแแแแแ แ แกแแกแแแจแ แแแ แแแแแแแ แแแ แแแฃแจแแแแแก."
#~ msgid "_Do not show this message again"
#~ msgstr "_แแ แแแแฎแ แฎแแแแฎแแ แแแชแแแฃแแ แจแแขแงแแแแแแแ"
#~ msgid "Couldn't load sound file %s as sample %s"
#~ msgstr "แจแแฃแซแแแแแแแ แฎแแแแแแ แคแแแแแก %s แแแจแแแแ, แแแแแแแแแ:%s"
#~ msgid "Cannot determine user's home directory"
#~ msgstr "แจแแฃแซแแแแแแแ แแแแฎแแแ แแแแแก แกแแฎแแแก แแแกแขแแก แแแแแแแ"
#~ msgid "GConf key %s set to type %s but its expected type was %s\n"
#~ msgstr ""
#~ "GConf แแแกแแฆแแแ %s-แแก แแแแจแแแแแแแ %s-แแ, แแแแ แแ แแแกแแแแแแแแ แแแแจแแแแแแแ %s-"
#~ "แแ\n"
#~ msgid "A_vailable files:"
#~ msgstr "แฎแแแแแกแแฌ_แแแแแ แคแแแแแแ:"
#~ msgid "Do _not show this warning again."
#~ msgstr "แแ แ_แแแฎแ แฎแแแแฎแแ แแแชแแแฃแแ แแแคแ แแฎแแแแแแก แจแแขแงแแแแแแแ."
#~ msgid "Load modmap files"
#~ msgstr "modmap แคแแแแแแแก แฉแแขแแแ แแแ"
#~ msgid "Would you like to load the modmap file(s)?"
#~ msgstr "แแแแแแแ modmap แคแแแแแแแก แฉแแขแแแ แแแ?"
#~ msgid "_Load"
#~ msgstr "_แฉแแขแแแ แแแ"
#~ msgid "_Loaded files:"
#~ msgstr "แฉแแขแแแ แแฃแแ แคแแ_แแแแ:"
#~ msgid "Error creating signal pipe."
#~ msgstr "แจแแชแแแแ แกแแแแแแฃแ แ แแ แฎแแก แจแแฅแแแแกแแก."
#~ msgid "Type"
#~ msgstr "แขแแแ"
#~ msgid "Preview Width"
#~ msgstr "แแกแแแแแก แกแแแแแ"
#~ msgid "Preview Height"
#~ msgstr "แแกแแแแแก แกแแแแฆแแ"
#~ msgid "Edited %m/%d/%Y"
#~ msgstr "แจแแชแแแแแ %m/%d/%Y"
#~ msgid "Unexpected attribute '%s' for element '%s'"
#~ msgstr "แแแฃแแแแแแแ แแขแ แแแฃแขแ '%s' แแแแแแแข '%s'-แแแแก"
#~ msgid "Attribute '%s' of element '%s' not found"
#~ msgstr "แแขแ แแแฃแขแ'%s' แแแแแแแขแแกแแแแก '%s' แแแ แแแแซแแแแ"
#~ msgid "Unexpected tag '%s', tag '%s' expected"
#~ msgstr "แฃแชแแแแ แญแแ '%s', แแแกแแแแแแแแ แแงแ '%s'"
#~ msgid "Unexpected tag '%s' inside '%s'"
#~ msgstr "แฃแชแแแแ แญแแ '%s' - '%s'"
#~ msgid "No valid bookmark file found in data dirs"
#~ msgstr "แแแแแชแแแแ แแแกแขแแแจแ แแแ แแแแฃแแ แกแแแแแแซแ แคแแแแ แแแ แแแแซแแแแ"
#~ msgid "A bookmark for URI '%s' already exists"
#~ msgstr "URI '%s' แกแแแแจแแ แฃแแแ แแ แกแแแแแก"
#~ msgid "No bookmark found for URI '%s'"
#~ msgstr "URI '%s' แกแแแแจแแ แแแ แแแแซแแแแ"
#~ msgid "No MIME type defined in the bookmark for URI '%s'"
#~ msgstr "URI '%s' แกแแแแจแแแจแ MIME แขแแแ แแ แแแแแแแแฃแแ"
#~ msgid "No private flag has been defined in bookmark for URI '%s'"
#~ msgstr "URI '%s' แกแแแแจแแแจแ แแแ แแแ แแแแแ แแ แแแแแแแแฃแแ"
#~ msgid "No groups set in bookmark for URI '%s'"
#~ msgstr "URI '%s' แกแแแแจแแแจแ แฏแแฃแคแแแ แแ แแแแแแแแฃแแ"
#~ msgid "No application with name '%s' registered a bookmark for '%s'"
#~ msgstr "แแ แแแ แแแแกแแแแก แกแแฎแแแฌแแแแแแ '%s' แแ แแแแแแแแฃแแ แกแแแแจแแ '%s'"
#~ msgid "Boing"
#~ msgstr "แแแแแแ"
#~ msgid "Siren"
#~ msgstr "แกแแ แแแ"
#~ msgid "Clink"
#~ msgstr "แฌแแแแฃแแ"
#~ msgid "Beep"
#~ msgstr "แแแแแแ"
#~ msgid "No sound"
#~ msgstr "แแ แแแแแแ แ แฎแแ"
#~ msgid "Sound not set for this event."
#~ msgstr "แแ แแแแแแ แ แฎแแ แแแชแแแฃแแ แแแแแแแแกแแแแก."
#~ msgid ""
#~ "The sound file for this event does not exist.\n"
#~ "You may want to install the gnome-audio package for a set of default "
#~ "sounds."
#~ msgstr ""
#~ "แแ แแ แกแแแแแก แฎแแแแแแ แคแแแแ แแแชแแแฃแแ แแแแแแแแกแแแแก.\n"
#~ "แกแแญแแ แแ gnome-audio แแแแแขแแก แแแงแแแแแ, แกแขแแแแแ แขแฃแแ แฎแแแแแกแแแแก."
#~ msgid "The sound file for this event does not exist."
#~ msgstr "แแ แแ แกแแแแแก แฎแแแแแแ แคแแแแ แแแชแแแฃแแ แแแแแแแแกแแแแก."
#~ msgid "The file %s is not a valid wav file"
#~ msgstr "แคแแแแ %s แแ แแแแ แแแแฃแแ wav แคแแแแแ"
#~ msgid "Select sound file..."
#~ msgstr "แฎแแแแแแ แคแแแแแก แแ แฉแแแ..."
#~ msgid "System Sounds"
#~ msgstr "แกแแกแขแแแฃแ แ แฎแแแแ"
#~ msgid "E-mail"
#~ msgstr "แแแคแแกแขแ"
#~ msgid "E-mail's shortcut."
#~ msgstr "แแแคแแกแขแแก แแ แแแ แแแแก แแแแกแแฎแแแแ."
#~ msgid "Eject"
#~ msgstr "แแแฎแกแแ"
#~ msgid "Home folder"
#~ msgstr "แกแแฎแแแก แแแกแขแ"
#~ msgid "Home folder's shortcut."
#~ msgstr "แกแแฎแแแก แแแกแขแแก แแแแกแแฎแแแแ."
#~ msgid "Launch help browser"
#~ msgstr "แแแฎแแแ แแแแก แแ แแฃแแแ แแก แแแจแแแแ"
#~ msgid "Launch help browser's shortcut."
#~ msgstr "แแแฎแแแ แแแแก แแ แแฃแแแ แแก แแแแกแแฎแแแแ."
#~ msgid "Launch web browser"
#~ msgstr "แแแ แแ แแฃแแแ แแก แแแจแแแแ"
#~ msgid "Launch web browser's shortcut."
#~ msgstr "แแแ แแ แแฃแแแ แแก แแแแกแแฎแแแแแก แแแจแแแแ."
#~ msgid "Lock screen's shortcut."
#~ msgstr "แแแ แแแแก แแแแแแ แแแแก แแแแกแแฎแแแแ."
#~ msgid "Log out"
#~ msgstr "แแแกแแแ"
#~ msgid "Log out's shortcut."
#~ msgstr "แกแแแแกแแก แแแกแ แฃแแแแแก แแแแกแแฎแแแแ."
#~ msgid "Media player"
#~ msgstr "แแแแแ แแแแแแ แแแ"
#~ msgid "Media player key's shortcut."
#~ msgstr "แแแแแ แแแแแแ แแแแก แแแแกแแฎแแแแ"
#~ msgid "Next track key's shortcut."
#~ msgstr "แจแแแแแแ แแฃแแแแแแแแแ แแแแแกแแแแก แแแแกแแฎแแแแ."
#~ msgid "Pause"
#~ msgstr "แแแฃแแ"
#~ msgid "Pause key's shortcut."
#~ msgstr "แแแฃแแแก แแแแกแแฎแแแแ."
#~ msgid "Play (or play/pause)"
#~ msgstr "แแแแแ แ (แแ แแแแแ แ/แแแฃแแ)"
#~ msgid "Play (or play/pause) key's shortcut."
#~ msgstr "แแแแแ แ (แแ แแแแแ แ/แแแฃแแ) แแแแกแแฎแแแแ."
#~ msgid "Previous track key's shortcut."
#~ msgstr "แฌแแแ แแฃแแแแแแแแแ แแแแแกแแแแก แแแแกแแฎแแแแ."
#~ msgid "Search's shortcut."
#~ msgstr "แซแแแแแก แแแแกแแฎแแแแ."
#~ msgid "Skip to next track"
#~ msgstr "แจแแแแแ แแฃแแแแแแแแแ แแแแแกแแแ"
#~ msgid "Skip to previous track"
#~ msgstr "แฌแแแ แแฃแแแแแแแแแ แแแแแกแแแ"
#~ msgid "Sleep"
#~ msgstr "แแซแแแแ แ แ แแแแแ"
#~ msgid "Sleep's shortcut."
#~ msgstr "แแซแแแแ แ แ แแแแแจแ แแแแแกแแแแก แแแแกแแฎแแแแ"
#~ msgid "Stop playback key"
#~ msgstr "แจแแฉแแ แแแแก แฆแแแแแ"
#~ msgid "Stop playback key's shortcut."
#~ msgstr "แจแแฉแแ แแแแก แแแแกแแฎแแแแ."
#~ msgid "Volume down"
#~ msgstr "แฎแแแก แฉแแฌแแแ"
#~ msgid "Volume down's shortcut."
#~ msgstr "แฎแแแก แฉแแฌแแแแก แแแแแฎแแแแ."
#~ msgid "Volume mute"
#~ msgstr "แฎแแแก แแแแแจแแ"
#~ msgid "Volume mute's shortcut."
#~ msgstr "แฎแแแก แแแแแจแแแก แแแแกแแฎแแแแ."
#~ msgid "Volume step"
#~ msgstr "แฎแแแก แ แแแฃแแแชแแแก แแแฏแ"
#~ msgid "Volume step as percentage of volume."
#~ msgstr "แฎแแแก แชแแแแก แแ แแชแแแขแแแแก แกแแฎแแ."
#~ msgid "Volume up"
#~ msgstr "แฎแแแก แแฌแแแ"
#~ msgid "Volume up's shortcut."
#~ msgstr "แฎแแแก แแฌแแแแก แแแแกแแฎแแแแ."
#~ msgid "Display a dialog when there are errors running the screensaver"
#~ msgstr ""
#~ "แแแแแแ แกแแ แแแแแก แแแแแกแแฎแแ, แแแ แแแแแแแแก แแแจแแแแแก แแ แแก แฌแแ แแแฉแแแแแ "
#~ "แจแแชแแแแแแแก แจแแแแฎแแแแแจแ"
#~ msgid "Run screensaver at login"
#~ msgstr "แกแแแแกแแก แแแฌแงแแแแกแแแแแแ แแแ แแแแแแแแก แแแจแแแแ"
#~ msgid "Show Startup Errors"
#~ msgstr "แกแแกแขแแแแก แแแจแแแแแกแแก แจแแชแแแแแแแก แฉแแแแแแ"
#~ msgid "Start screensaver"
#~ msgstr "แแแ แแแแแแแแก แแแจแแแแ"
#~ msgid "Set as Application Font"
#~ msgstr "แแแแแขแแแแแ แจแ แแคแขแแก แกแแฎแแ แแแแแแแแ"
#~ msgid "Sets the default application font"
#~ msgstr "แแ แแแ แแแแแแก แแแแฃแแแกแฎแแแแ แจแ แแคแขแแก แกแแฎแแ แแแแแแแแ"
#~ msgid "The quick brown fox jumps over the lazy dog. 0123456789"
#~ msgstr "แแงแ แแ แแแแแก แ แแกแขแแแแ, แแแคแ แฆแแ แแแกแแแแ แกแแแแแ! 0123456789"
#~ msgid "Name:"
#~ msgstr "แกแแฎแแแ:"
#~ msgid "Style:"
#~ msgstr "แกแขแแแ:"
#~ msgid "Type:"
#~ msgstr "แขแแแ:"
#~ msgid "Size:"
#~ msgstr "แแแแ:"
#~ msgid "Version:"
#~ msgstr "แแแ แกแแ:"
#~ msgid "Copyright:"
#~ msgstr "แกแแแแขแแ แ แฃแคแแแแ:"
#~ msgid "Description:"
#~ msgstr "แแฆแฌแแ แ:"
#~ msgid "usage: %s fontfile\n"
#~ msgstr "แแแแแงแแแแแ: %s _แจแ แแคแขแแก แคแแแแ\n"
#~ msgid "GNOME Font Viewer"
#~ msgstr "แแแแแแก แจแ แแคแขแแก แแแแฎแแแแ"
#~ msgid "Text to thumbnail (default: Aa)"
#~ msgstr "แแกแแแแแก แขแแฅแกแขแ (default: Aa)"
#~ msgid "TEXT"
#~ msgstr "แขแแฅแกแขแ"
#~ msgid "Font size (default: 64)"
#~ msgstr "แจแ แแคแขแแก แแแแ (แแแแฃแแแกแฎแแแแ: 64)"
#~ msgid "SIZE"
#~ msgstr "SIZE"
#~ msgid "FONT-FILE OUTPUT-FILE"
#~ msgstr "FONT-FILE OUTPUT-FILE"
#~ msgid "<span weight=\"bold\" size=\"larger\">Apply new font?</span>"
#~ msgstr ""
#~ "<span weight=\"bold\" size=\"larger\">แแแแแแแ แแฎแแแ แจแ แแคแขแแก แแแแแงแแแแแ?</"
#~ "span>"
#~ msgid "Do _not apply font"
#~ msgstr "แจแ แแคแขแแก แฃแ_แ แงแแคแ"
#~ msgid ""
#~ "The theme you have selected suggests a new font. A preview of the font is "
#~ "shown below."
#~ msgstr ""
#~ "แแฅแแแแก แแแแ แแแแ แฉแแฃแแ แแแคแแ แแแแแก แกแญแแ แแแแ แแฎแแแ แจแ แแคแขแ. แจแ แแคแขแแก แแกแแแแ "
#~ "แแฎแแแแ แฅแแแแแ."
#~ msgid "_Apply font"
#~ msgstr "แจแ แแคแขแแก _แแแแแงแแแแแ"
#~ msgid "Themes"
#~ msgstr "แแแคแแ แแแแ"
#~ msgid "Description"
#~ msgstr "แแฆแฌแแ แแแแแ"
#~ msgid "Window border theme"
#~ msgstr "แคแแแฏแ แแก แฉแแ แฉแแก แแแคแแ แแแแ"
#~ msgid "Icon theme"
#~ msgstr "แฎแแขแฃแแแก แแแคแแ แแแแ"
#~ msgid "Thumbnail command for installed themes"
#~ msgstr "แแแคแแ แแแแแก แแกแแแแแแแก แจแแแฅแแแแแ แแ แแแ แแแ แแแงแแแแแฃแแ แแแคแแ แแแแแกแแแแก"
#~ msgid "Thumbnail command for themes"
#~ msgstr "แแแคแแ แแแแแก แแกแแแแแแแก แจแแแฅแแแแแ แแ แแแ แแแ"
#~ msgid "Whether to thumbnail installed themes"
#~ msgstr "แแแคแแ แแแแแก แแกแแแแแแแก แฉแแแแแแ/แแ แฉแแแแแแ"
#~ msgid "Whether to thumbnail themes"
#~ msgstr "แแแคแแ แแแแแก แแกแแแแแแแก แจแแฅแแแ/แแ แจแแฅแแแ"
#~ msgid "ABCDEFG"
#~ msgstr "แ แกแขแฃแคแฅแฆแงแจแฉแช"
#~ msgid "[FILE]"
#~ msgstr "[FILE]"
#~ msgid "Apply theme"
#~ msgstr "แแแคแแ แแแแแก แแแแแงแแแแแ"
#~ msgid "Sets the default theme"
#~ msgstr "แแงแแแแแก แแแแฃแแแกแฎแแแ แแแคแแ แแแแแก"
|