File: my.po

package info (click to toggle)
gedit 3.30.2-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 35,836 kB
  • sloc: ansic: 48,529; python: 6,973; xml: 5,967; sh: 5,043; makefile: 1,240; perl: 30
file content (4971 lines) | stat: -rw-r--r-- 148,240 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
# Burmese Translations of gedit
# Copyright (C) 2011 Myanmar L10n Team
# This file is distributed under the same license as the eog package.
# Hpone Myint Khaing <phonemyintkhaing@gmail.com>, 2011.
msgid ""
msgstr ""
"Project-Id-Version: gedit\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-11-14 22:24+0100\n"
"PO-Revision-Date: 2011-08-16 19:28-0700\n"
"Last-Translator: phonemyintkhaing <minnyoonthit@gmail.com>\n"
"Language-Team: Burmese <LL@li.org>\n"
"Language: my\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-Poedit-Language: Burmese\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-Country: MYANMAR\n"
"X-Generator: Narro 0.9.4 on http://translate.libreworks.info\n"

#: ../data/gedit.desktop.in.in.h:1
msgid "Edit text files"
msgstr "စာသားဖိုင်များပြင်ဆင်ရန်"

#: ../data/gedit.desktop.in.in.h:2 ../gedit/gedit-print-job.c:759
msgid "Text Editor"
msgstr "စာသားအယ်ဒီတာ"

#: ../data/gedit.desktop.in.in.h:3
msgid "gedit"
msgstr "gedit"

#: ../data/gedit.desktop.in.in.h:4
msgid "gedit Text Editor"
msgstr "gedit စာသားအယ်ဒီတာ"

#: ../data/gedit.schemas.in.in.h:1
msgid ""
"A custom font that will be used for the editing area. This will only take "
"effect if the \"Use Default Font\" option is turned off."
msgstr ""

#: ../data/gedit.schemas.in.in.h:2
msgid "Active plugins"
msgstr "အပိုဆောင်းတန်ဆာပလာများကို အတည်ပြု"

#: ../data/gedit.schemas.in.in.h:3
msgid "Automatic indent"
msgstr "အလိုအလျောက် indent ထည့်"

#: ../data/gedit.schemas.in.in.h:4
msgid "Automatically Detected Encodings"
msgstr "အက္ခရာဆိုင်ရာ ဖော်ပြခြင်းနည်းစနစ်ကို အလိုအလျောက် သိရှိခြင်း"

#: ../data/gedit.schemas.in.in.h:5
msgid "Autosave"
msgstr "အလိုလျောက်သိမ်းဆည်း"

#: ../data/gedit.schemas.in.in.h:6
msgid "Autosave Interval"
msgstr "အကြား အလိုလျောက်သိမ်းဆည်း"

#: ../data/gedit.schemas.in.in.h:7
msgid "Body Font for Printing"
msgstr "စာထုတ်ရန် ကိုယ်ထည် စာလုံးဖောင့်"

#: ../data/gedit.schemas.in.in.h:8
msgid "Bottom Panel is Visible"
msgstr "အောက်ဘက်ခြမ်း ဘောင်ကွက်သည် မြင်နေရသည်"

#: ../data/gedit.schemas.in.in.h:9
msgid "Create Backup Copies"
msgstr "မိတ္တူပွား တစ်ခု ဖန်တီး"

#: ../data/gedit.schemas.in.in.h:10
msgid "Display Line Numbers"
msgstr "လိုင်းနံပါတ်များကို ဖော်ပြ"

#: ../data/gedit.schemas.in.in.h:11
msgid "Display Right Margin"
msgstr "ညာဘက် မျဉ်းဘောင်ကို ဖော်ပြ"

#: ../data/gedit.schemas.in.in.h:12
msgid "Editor Font"
msgstr "အယ်ဒီတာဖောင့်"

#: ../data/gedit.schemas.in.in.h:13
msgid "Enable Search Highlighting"
msgstr "အရောင်မျဉ်းဖြင့် ရှာနိုင်အောင် ပြုလုပ်"

#: ../data/gedit.schemas.in.in.h:14
msgid "Enable Syntax Highlighting"
msgstr "စာလုံး၊စာသားများ အရောင်မျဉ်းတားခြင်း ပြုလုပ်"

#: ../data/gedit.schemas.in.in.h:15
msgid "Encodings shown in menu"
msgstr "မီနျူးတွင်ဖော်ပြထားသော စာလုံးဖော်ပြစနစ်"

#: ../data/gedit.schemas.in.in.h:16
msgid "Header Font for Printing"
msgstr "စာထုတ်ဖို့ ခေါင်းစဉ်ဖောင့်"

#: ../data/gedit.schemas.in.in.h:17
msgid "Highlight Current Line"
msgstr "လက်ရှိလိုင်းကို အရောင်မျဉ်းတား"

#: ../data/gedit.schemas.in.in.h:18
msgid "Highlight Matching Bracket"
msgstr "ကိုက်ညီသော ကွင်းကို အရောင်မျဉ်းဖြင့်ပြ"

#: ../data/gedit.schemas.in.in.h:19
msgid ""
"If this value is 0, then no line numbers will be inserted when printing a "
"document. Otherwise, gedit will print line numbers every such number of "
"lines."
msgstr "တနည်းအားဖြင့်"

#: ../data/gedit.schemas.in.in.h:20
msgid "Insert spaces"
msgstr ""

#: ../data/gedit.schemas.in.in.h:21
msgid "Line Number Font for Printing"
msgstr ""

#: ../data/gedit.schemas.in.in.h:22
msgid "Line Wrapping Mode"
msgstr ""

#: ../data/gedit.schemas.in.in.h:23
msgid ""
"List of VFS schemes gedit supports in write mode. The 'file' scheme is "
"writable by default."
msgstr ""

#: ../data/gedit.schemas.in.in.h:24
msgid ""
"List of active plugins. It contains the \"Location\" of the active plugins. "
"See the .gedit-plugin file for obtaining the \"Location\" of a given plugin."
msgstr ""

#: ../data/gedit.schemas.in.in.h:25
msgid ""
"List of encodings shown in the Character Encoding menu in open/save file "
"selector. Only recognized encodings are used."
msgstr ""

#: ../data/gedit.schemas.in.in.h:26
msgid "Maximum Number of Undo Actions"
msgstr "နောက်ပြန်ပြုလုပ်ခြင်း၏ အမြင့်ဆုံးဂဏန်းအရေတွက်"

#: ../data/gedit.schemas.in.in.h:27
msgid "Maximum Recent Files"
msgstr "လတ်တစ်လောဖိုင်များ၏ အမြင့်ဆုံး အရေတွက်"

#: ../data/gedit.schemas.in.in.h:28
msgid ""
"Maximum number of actions that gedit will be able to undo or redo. Use "
"\"-1\" for unlimited number of actions."
msgstr "\"-1\" ကိုအသုံးပြုပါ"

#: ../data/gedit.schemas.in.in.h:29
msgid ""
"Maximum number of actions that gedit will be able to undo or redo. Use "
"\"-1\" for unlimited number of actions. Deprecated since 2.12.0"
msgstr ""

#. Translators: This is the Editor Font.
#. This is a Pango font
#: ../data/gedit.schemas.in.in.h:32
msgid "Monospace 12"
msgstr ""

#. Translators: This is the Body font for printing.
#. This is a Pango font.
#: ../data/gedit.schemas.in.in.h:35
msgid "Monospace 9"
msgstr ""

#: ../data/gedit.schemas.in.in.h:36
msgid ""
"Number of minutes after which gedit will automatically save modified files. "
"This will only take effect if the \"Autosave\" option is turned on."
msgstr ""

#: ../data/gedit.schemas.in.in.h:37
msgid "Print Header"
msgstr "ခေါင်းကြီးပိုင်းကို စာထုတ်"

#: ../data/gedit.schemas.in.in.h:38
msgid "Print Line Numbers"
msgstr "လိုင်းနံပါတ်များကို စာထုတ်"

#: ../data/gedit.schemas.in.in.h:39
msgid "Print Syntax Highlighting"
msgstr "အရောင်မျဉ်းတားထားသော စာသား၊ စာလုံးများကို စာထုတ်"

#: ../data/gedit.schemas.in.in.h:40
msgid "Printing Line Wrapping Mode"
msgstr ""

#: ../data/gedit.schemas.in.in.h:41
msgid "Restore Previous Cursor Position"
msgstr ""

#: ../data/gedit.schemas.in.in.h:42
msgid "Right Margin Position"
msgstr "ညာဘက် မျဉ်းဘောင်အနေအထား"

#. Translators: This is the Header font for printing.
#. This is a Pango font.
#: ../data/gedit.schemas.in.in.h:45
msgid "Sans 11"
msgstr ""

#. Translators: This is the Line Number font for printing.
#. This is a Pango font.
#: ../data/gedit.schemas.in.in.h:48
msgid "Sans 8"
msgstr ""

#: ../data/gedit.schemas.in.in.h:49
msgid "Side Pane is Visible"
msgstr "ဘေးကွက် သည် မြင်နေရသည်"

#: ../data/gedit.schemas.in.in.h:50
msgid "Smart Home End"
msgstr ""

#: ../data/gedit.schemas.in.in.h:51
msgid ""
"Sorted list of encodings used by gedit for automatically detecting the "
"encoding of a file. \"CURRENT\" represents the current locale encoding. Only "
"recognized encodings are used."
msgstr ""

#: ../data/gedit.schemas.in.in.h:52
msgid ""
"Specifies how the cursor moves when the HOME and END keys are pressed. Use "
"\"DISABLED\" to always move at the start/end of the line, \"AFTER\" to move "
"to the start/end of the line the first time the keys are pressed and to the "
"start/end of the text ignoring whitespaces the second time the keys are "
"pressed, \"BEFORE\" to move to the start/end of the text before moving to "
"the start/end of the line and \"ALWAYS\" to always move to the start/end of "
"the text instead of the start/end of the line."
msgstr ""

#: ../data/gedit.schemas.in.in.h:53
msgid ""
"Specifies how to wrap long lines for printing. Use \"GTK_WRAP_NONE\" for no "
"wrapping, \"GTK_WRAP_WORD\" for wrapping at word boundaries, and "
"\"GTK_WRAP_CHAR\" for wrapping at individual character boundaries. Note that "
"the values are case-sensitive, so make sure they appear exactly as mentioned "
"here."
msgstr ""

#: ../data/gedit.schemas.in.in.h:54
msgid ""
"Specifies how to wrap long lines in the editing area. Use \"GTK_WRAP_NONE\" "
"for no wrapping, \"GTK_WRAP_WORD\" for wrapping at word boundaries, and "
"\"GTK_WRAP_CHAR\" for wrapping at individual character boundaries. Note that "
"the values are case-sensitive, so make sure they appear exactly as mentioned "
"here."
msgstr ""

#: ../data/gedit.schemas.in.in.h:55
msgid ""
"Specifies the font to use for a document's body when printing documents."
msgstr ""

#: ../data/gedit.schemas.in.in.h:56
msgid ""
"Specifies the font to use for line numbers when printing. This will only "
"take effect if the \"Print Line Numbers\" option is non-zero."
msgstr ""

#: ../data/gedit.schemas.in.in.h:57
msgid ""
"Specifies the font to use for page headers when printing a document. This "
"will only take effect if the \"Print Header\" option is turned on."
msgstr ""

#: ../data/gedit.schemas.in.in.h:58
msgid ""
"Specifies the maximum number of recently opened files that will be displayed "
"in the \"Recent Files\" submenu."
msgstr ""

#: ../data/gedit.schemas.in.in.h:59
msgid ""
"Specifies the number of spaces that should be displayed instead of Tab "
"characters."
msgstr ""

#: ../data/gedit.schemas.in.in.h:60
msgid "Specifies the position of the right margin."
msgstr ""

#: ../data/gedit.schemas.in.in.h:61
msgid "Status Bar is Visible"
msgstr "အခြေအနေပြ ဘားတန်းသည် မြင်နေရသည်"

#: ../data/gedit.schemas.in.in.h:62
msgid "Style Scheme"
msgstr ""

#: ../data/gedit.schemas.in.in.h:63
msgid ""
"Style for the toolbar buttons. Possible values are \"GEDIT_TOOLBAR_SYSTEM\" "
"to use the system's default style, \"GEDIT_TOOLBAR_ICONS\" to display icons "
"only, \"GEDIT_TOOLBAR_ICONS_AND_TEXT\" to display both icons and text, and "
"\"GEDIT_TOOLBAR_ICONS_BOTH_HORIZ\" to display prioritized text beside icons. "
"Note that the values are case-sensitive, so make sure they appear exactly as "
"mentioned here."
msgstr ""

#: ../data/gedit.schemas.in.in.h:64
msgid "Tab Size"
msgstr ""

#: ../data/gedit.schemas.in.in.h:65
msgid "The ID of a GtkSourceView Style Scheme used to color the text."
msgstr ""

#: ../data/gedit.schemas.in.in.h:66
msgid "Toolbar Buttons Style"
msgstr ""

#: ../data/gedit.schemas.in.in.h:67
msgid "Toolbar is Visible"
msgstr ""

#: ../data/gedit.schemas.in.in.h:68
msgid "Undo Actions Limit (DEPRECATED)"
msgstr ""

#: ../data/gedit.schemas.in.in.h:69
msgid "Use Default Font"
msgstr "မူရင်း ဖောင့်ကို အသုံးပြု"

#: ../data/gedit.schemas.in.in.h:70
msgid ""
"Whether gedit should automatically save modified files after a time "
"interval. You can set the time interval with the \"Autosave Interval\" "
"option."
msgstr ""

#: ../data/gedit.schemas.in.in.h:71
msgid ""
"Whether gedit should create backup copies for the files it saves. You can "
"set the backup file extension with the \"Backup Copy Extension\" option."
msgstr ""

#: ../data/gedit.schemas.in.in.h:72
msgid "Whether gedit should display line numbers in the editing area."
msgstr ""

#: ../data/gedit.schemas.in.in.h:73
msgid "Whether gedit should display the right margin in the editing area."
msgstr ""

#: ../data/gedit.schemas.in.in.h:74
msgid "Whether gedit should enable automatic indentation."
msgstr ""

#: ../data/gedit.schemas.in.in.h:75
msgid "Whether gedit should enable syntax highlighting."
msgstr ""

#: ../data/gedit.schemas.in.in.h:76
msgid ""
"Whether gedit should highlight all the occurrences of the searched text."
msgstr ""

#: ../data/gedit.schemas.in.in.h:77
msgid "Whether gedit should highlight the bracket matching the selected one."
msgstr ""

#: ../data/gedit.schemas.in.in.h:78
msgid "Whether gedit should highlight the current line."
msgstr ""

#: ../data/gedit.schemas.in.in.h:79
msgid "Whether gedit should include a document header when printing documents."
msgstr ""

#: ../data/gedit.schemas.in.in.h:80
msgid "Whether gedit should insert spaces instead of tabs."
msgstr ""

#: ../data/gedit.schemas.in.in.h:81
msgid "Whether gedit should print syntax highlighting when printing documents."
msgstr ""

#: ../data/gedit.schemas.in.in.h:82
msgid ""
"Whether gedit should restore the previous cursor position when a file is "
"loaded."
msgstr ""

#: ../data/gedit.schemas.in.in.h:83
msgid ""
"Whether the bottom panel at the bottom of editing windows should be visible."
msgstr ""

#: ../data/gedit.schemas.in.in.h:84
msgid "Whether the side pane at the left of editing windows should be visible."
msgstr ""

#: ../data/gedit.schemas.in.in.h:85
msgid ""
"Whether the status bar at the bottom of editing windows should be visible."
msgstr ""

#: ../data/gedit.schemas.in.in.h:86
msgid "Whether the toolbar should be visible in editing windows."
msgstr ""

#: ../data/gedit.schemas.in.in.h:87
msgid ""
"Whether to use the system's default fixed width font for editing text "
"instead of a font specific to gedit. If this option is turned off, then the "
"font named in the \"Editor Font\" option will be used instead of the system "
"font."
msgstr ""

#: ../data/gedit.schemas.in.in.h:88
msgid "Writable VFS schemes"
msgstr ""

#. Translators: This is the list of encodings shown by default in the Character Encoding
#. menu in open/save file selector. Only recognized encodings are displayed.
#: ../data/gedit.schemas.in.in.h:91
msgid "[ISO-8859-15]"
msgstr ""

#. Translators: This is the sorted list of encodings used by gedit
#. for automatic detection of the file encoding. You may want to customize it adding
#. encodings that are common in your country, for instance the GB18030 encoding
#. for the Chinese	translation. You may also want to remove the ISO-8859-15 encoding
#. (covering English and most Western European languages) if you think people
#. in you country will rarely use it.
#. "CURRENT" is a magic value used by gedit and it represents the encoding
#. for the current locale, so please don't translate the "CURRENT" term.
#. Only recognized encodings are used.
#. See http://svn.gnome.org/viewcvs/gedit/trunk/gedit/gedit-encodings.c?view=markup for
#. a list of supported encodings
#: ../data/gedit.schemas.in.in.h:103
msgid "[UTF-8,CURRENT,ISO-8859-15,UTF-16]"
msgstr ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:140
msgid "Log Out _without Saving"
msgstr "_W မသိမ်းပဲ ထွက်ပါ"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:144
msgid "_Cancel Logout"
msgstr "_C မထွက်တော့"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:151
msgid "Close _without Saving"
msgstr "_W မသိမ်းဘဲ ပိတ်ပါ"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:212
msgid "Question"
msgstr "မေးခွန်း"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:412
#, c-format
msgid ""
"If you don't save, changes from the last %ld second will be permanently lost."
msgid_plural ""
"If you don't save, changes from the last %ld seconds will be permanently "
"lost."
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:421
msgid ""
"If you don't save, changes from the last minute will be permanently lost."
msgstr "မသိမ်းဘူးဆိုရင် နောက်ဆုံးမိနစ်မှာ ပြောင်းခဲ့တာတွေ အကုန်ပျောက်သွားလိမ့်မယ်"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:427
#, c-format
msgid ""
"If you don't save, changes from the last minute and %ld second will be "
"permanently lost."
msgid_plural ""
"If you don't save, changes from the last minute and %ld seconds will be "
"permanently lost."
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:437
#, c-format
msgid ""
"If you don't save, changes from the last %ld minute will be permanently lost."
msgid_plural ""
"If you don't save, changes from the last %ld minutes will be permanently "
"lost."
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:452
msgid "If you don't save, changes from the last hour will be permanently lost."
msgstr ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:458
#, c-format
msgid ""
"If you don't save, changes from the last hour and %d minute will be "
"permanently lost."
msgid_plural ""
"If you don't save, changes from the last hour and %d minutes will be "
"permanently lost."
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:473
#, c-format
msgid ""
"If you don't save, changes from the last %d hour will be permanently lost."
msgid_plural ""
"If you don't save, changes from the last %d hours will be permanently lost."
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:516
#, c-format
msgid "Changes to document \"%s\" will be permanently lost."
msgstr ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:521
#, c-format
msgid "Save changes to document \"%s\" before closing?"
msgstr ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:535
#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:746
msgid "Saving has been disabled by the system administrator."
msgstr ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:701
#, c-format
msgid "Changes to %d document will be permanently lost."
msgid_plural "Changes to %d documents will be permanently lost."
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:707
#, c-format
msgid "There is %d document with unsaved changes. Save changes before closing?"
msgid_plural ""
"There are %d documents with unsaved changes. Save changes before closing?"
msgstr[0] ""

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:725
msgid "Docum_ents with unsaved changes:"
msgstr "_E မသိမ်းဆည်းထားသော စာရွက်စာတမ်းများ"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:727
msgid "S_elect the documents you want to save:"
msgstr "_E သိမ်းလိုသော စာရွက်စာတမ်းများကို ရွေးပါ:"

#: ../gedit/dialogs/gedit-close-confirmation-dialog.c:748
msgid "If you don't save, all your changes will be permanently lost."
msgstr ""

#: ../gedit/dialogs/gedit-encodings-dialog.c:321
msgid "Character Encodings"
msgstr "အက္ခရာဆိုင်ရာ ဖော်ပြခြင်းနည်းစနစ်များ"

#: ../gedit/dialogs/gedit-encodings-dialog.c:385
#: ../gedit/dialogs/gedit-encodings-dialog.c:446
msgid "_Description"
msgstr "_D _ဖော်ပြချက်"

#: ../gedit/dialogs/gedit-encodings-dialog.c:394
#: ../gedit/dialogs/gedit-encodings-dialog.c:455
msgid "_Encoding"
msgstr "_E _အက္ခရာဖော်ပြခြင်းနည်းစနစ်"

#: ../gedit/dialogs/gedit-encodings-dialog.ui.h:1
msgid "A_vailable encodings:"
msgstr ""

#: ../gedit/dialogs/gedit-encodings-dialog.ui.h:2
msgid "Character encodings"
msgstr "အက္ခရာဆိုင်ရာ ဖော်ပြခြင်းနည်းစနစ်များ"

#: ../gedit/dialogs/gedit-encodings-dialog.ui.h:3
msgid "E_ncodings shown in menu:"
msgstr "_N မီနျူးတွင် ဖော်ပြထားသော အက္ခရာဖော်ပြခြင်းနည်းစနစ်"

#: ../gedit/dialogs/gedit-preferences-dialog.c:571
msgid "Click on this button to select the font to be used by the editor"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:581
#, c-format
msgid "_Use the system fixed width font (%s)"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:784
msgid "The selected color scheme cannot be installed."
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:809
msgid "Add Scheme"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:816
msgid "A_dd Scheme"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:824
msgid "Color Scheme Files"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:831
#: ../gedit/gedit-file-chooser-dialog.c:52
msgid "All Files"
msgstr "ဖိုင်များ အားလုံး"

#: ../gedit/dialogs/gedit-preferences-dialog.c:876
#, c-format
msgid "Could not remove color scheme \"%s\"."
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.c:1087
msgid "gedit Preferences"
msgstr "gedit အပြင်အဆင်များ"

#. ex:ts=4:et:
#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:1
#: ../plugins/docinfo/docinfo.ui.h:1
#: ../plugins/externaltools/tools/tools.ui.h:1
#: ../plugins/snippets/snippets/snippets.ui.h:1
#: ../plugins/time/gedit-time-dialog.ui.h:1
#: ../plugins/time/gedit-time-setup-dialog.ui.h:1
msgid "    "
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:2
msgid "Automatic Indentation"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:3
msgid "Bracket Matching"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:4
msgid "Color Scheme"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:5
msgid "Create a _backup copy of files before saving"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:6
msgid "Current Line"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:7
msgid "Display right _margin"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:8
#: ../gedit/gedit-print-preferences.ui.h:1
msgid "Do not _split words over two lines"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:9
msgid "Editor"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:10
msgid "Editor _font: "
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:11
#: ../gedit/gedit-print-preferences.ui.h:2
msgid "Enable text _wrapping"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:12
msgid "File Saving"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:13
msgid "Font"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:14
msgid "Font & Colors"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:15
msgid "Highlight current _line"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:16
msgid "Highlight matching _bracket"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:17
msgid "Insert _spaces instead of tabs"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:18
#: ../gedit/gedit-print-preferences.ui.h:5
msgid "Line Numbers"
msgstr "လိုင်းနံပါတ်များ"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:19
msgid "Pick the editor font"
msgstr "စာသားတည်းဖြတ် အယ်ဒီတာအတွက် ဖောင့်ရွေး"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:20
msgid "Plugins"
msgstr "ဖြည့်စွက်ကိရိယာ"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:21
msgid "Preferences"
msgstr "အပြင်အဆင်"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:22
msgid "Right Margin"
msgstr "ညာဘက် မျဉ်းဘောင်"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:23
msgid "Tab Stops"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:24
#: ../gedit/gedit-print-preferences.ui.h:11
msgid "Text Wrapping"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:25
msgid "View"
msgstr "မြင်ကွင်း"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:26
msgid "_Add..."
msgstr "_A ပေါင်းထည့်"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:27
msgid "_Autosave files every"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:28
#: ../gedit/gedit-view.c:1968
msgid "_Display line numbers"
msgstr "_D လိုင်းနံပါတ်များကို ဖော်ပြ"

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:29
msgid "_Enable automatic indentation"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:30
msgid "_Right margin at column:"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:31
msgid "_Tab width:"
msgstr ""

#: ../gedit/dialogs/gedit-preferences-dialog.ui.h:32
msgid "_minutes"
msgstr "_M မိနစ်များ"

#: ../gedit/dialogs/gedit-search-dialog.c:300
#: ../gedit/dialogs/gedit-search-dialog.ui.h:2 ../gedit/gedit-window.c:1522
msgid "Replace"
msgstr "အစားထိုး"

#: ../gedit/dialogs/gedit-search-dialog.c:311 ../gedit/gedit-window.c:1520
msgid "Find"
msgstr "ရှာဖွေရေး"

#: ../gedit/dialogs/gedit-search-dialog.c:415
msgid "Replace _All"
msgstr "_A အားလုံး အစားထိုး"

#: ../gedit/dialogs/gedit-search-dialog.c:416
#: ../gedit/gedit-commands-file.c:577
msgid "_Replace"
msgstr "_R အစားထိုးရန်"

#: ../gedit/dialogs/gedit-search-dialog.ui.h:1
msgid "Match _entire word only"
msgstr ""

#: ../gedit/dialogs/gedit-search-dialog.ui.h:3
msgid "Replace All"
msgstr "အားလုံးအစားထိုး"

#: ../gedit/dialogs/gedit-search-dialog.ui.h:4
msgid "Replace _with: "
msgstr "_W အကျယ်ဖြင့် အစားထိုး"

#: ../gedit/dialogs/gedit-search-dialog.ui.h:5
msgid "Search _backwards"
msgstr ""

#: ../gedit/dialogs/gedit-search-dialog.ui.h:6
msgid "_Match case"
msgstr "_M ကိုက်ညီသော စကားလုံး"

#: ../gedit/dialogs/gedit-search-dialog.ui.h:7
msgid "_Search for: "
msgstr "_S အတွက် ရှာဖွေရန်"

#: ../gedit/dialogs/gedit-search-dialog.ui.h:8
msgid "_Wrap around"
msgstr ""

#: ../gedit/gedit.c:126
msgid "Show the application's version"
msgstr "အပ္ပလီကေးရှင်း၏ ဗားရှင်းကို ဖော်ပြ"

#: ../gedit/gedit.c:129
msgid ""
"Set the character encoding to be used to open the files listed on the "
"command line"
msgstr "လိုင်း"

#: ../gedit/gedit.c:129
msgid "ENCODING"
msgstr "အက္ခရာဖော်ပြခြင်းနည်းစနစ်"

#: ../gedit/gedit.c:132
msgid "Display list of possible values for the encoding option"
msgstr "အက္ခရာဖော်ပြခြင်း နည်းစနစ် ပြင်ဆင်စရာ အတွက် ဖြစ်နိုင်ခြေရှိသော တန်ဖိုး စာရင်းကို ဖော်ပြ"

#: ../gedit/gedit.c:135
msgid "Create a new top-level window in an existing instance of gedit"
msgstr "လက်ရှိရှိနေသော gedit ၏ အမြင့်ဆုံးအဆင့် ဝင်းဒိုးအသစ်ကို ဖန်တီး"

#: ../gedit/gedit.c:138
msgid "Create a new document in an existing instance of gedit"
msgstr "လက်ရှိရှိနေသော gedit ၏ စာရွက်စာတမ်း အသစ်ကို ဖန်တီး"

#: ../gedit/gedit.c:141
msgid "[FILE...]"
msgstr "[ဖိုင်. . .]"

#: ../gedit/gedit.c:196
#, c-format
msgid "%s: invalid encoding.\n"
msgstr "%s: အကျုံးမဝင်သော အက္ခရာဖော်ပြခြင်းစနစ် \n"

#. Setup command line options
#: ../gedit/gedit.c:579
msgid "- Edit text files"
msgstr "- စာသားဖိုင်များကို တည်းဖြတ်"

#: ../gedit/gedit.c:615
#, c-format
msgid ""
"%s\n"
"Run '%s --help' to see a full list of available command line options.\n"
msgstr ""

#: ../gedit/gedit-commands-file.c:250
#, c-format
msgid "Loading file '%s'…"
msgstr ""

#: ../gedit/gedit-commands-file.c:259
#, c-format
msgid "Loading %d file…"
msgid_plural "Loading %d files…"
msgstr[0] ""

#. Translators: "Open Files" is the title of the file chooser window
#: ../gedit/gedit-commands-file.c:453
msgid "Open Files"
msgstr "ဖိုင်များ ဖွင့်"

#: ../gedit/gedit-commands-file.c:564
#, c-format
msgid "The file \"%s\" is read-only."
msgstr "ဤဖိုင် \"%s\" သည် ဖတ်ဖို့ သက်သက်"

#: ../gedit/gedit-commands-file.c:569
msgid "Do you want to try to replace it with the one you are saving?"
msgstr "ဤဖိုင်ကို သိမ်းဆည်းထားပြီးထား ဖိုင်နှင့် အစားထိုးလိုပါသလား။"

#: ../gedit/gedit-commands-file.c:638 ../gedit/gedit-commands-file.c:861
#, c-format
msgid "Saving file '%s'…"
msgstr "ဖိုင် သိမ်းနေသည် '%s'…"

#: ../gedit/gedit-commands-file.c:746
msgid "Save As…"
msgstr "အသစ် သိမ်းဆည်း"

#: ../gedit/gedit-commands-file.c:1075
#, c-format
msgid "Reverting the document '%s'…"
msgstr "စာရွက်စာတမ်းကို နဂိုအတိုင်း ပြန်လည်ပြုလုပ်ခြင်း '%s'…"

#: ../gedit/gedit-commands-file.c:1120
#, c-format
msgid "Revert unsaved changes to document '%s'?"
msgstr "မသိမ်းဆည်းထားသော စာရွက်စာတမ်း အပြောင်းအလဲကို နဂိုအတိုင်း ပြန်ပြောင်း '%s'?"

#: ../gedit/gedit-commands-file.c:1129
#, c-format
msgid ""
"Changes made to the document in the last %ld second will be permanently lost."
msgid_plural ""
"Changes made to the document in the last %ld seconds will be permanently "
"lost."
msgstr[0] ""
"နောက်ဆုံး %ld စက္ကန့် အတွင်း စာရွက်စာတမ်း အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင် ပျောက်ပျက်သွားလိမ့်မည်။"

#: ../gedit/gedit-commands-file.c:1138
msgid ""
"Changes made to the document in the last minute will be permanently lost."
msgstr "နောက်ဆုံမိနစ်အတွင်း စာရွက်စာတမ်းကို အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင် ပျောက်ပျက်သွားလိမ့်မည်။"

#: ../gedit/gedit-commands-file.c:1144
#, c-format
msgid ""
"Changes made to the document in the last minute and %ld second will be "
"permanently lost."
msgid_plural ""
"Changes made to the document in the last minute and %ld seconds will be "
"permanently lost."
msgstr[0] ""
"နောက်ဆုံး %ld မိနစ်  အတွင်း စာရွက်စာတမ်းကို အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင် ပျောက်ပျက်သွားလိမ့်မည်။"

#: ../gedit/gedit-commands-file.c:1154
#, c-format
msgid ""
"Changes made to the document in the last %ld minute will be permanently lost."
msgid_plural ""
"Changes made to the document in the last %ld minutes will be permanently "
"lost."
msgstr[0] ""
"နောက်ဆုံး %ld မိနစ် အတွင်း စာရွက်စာတမ်းကို အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင် ပျောက်ပျက်သွားလိမ့်မည်။"

#: ../gedit/gedit-commands-file.c:1169
msgid "Changes made to the document in the last hour will be permanently lost."
msgstr "နောက်ဆုံး နာရီ အတွင်း စာရွက်စာတမ်းကို အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင်  ပျောက်ပျက်သွားလိမ့်မည်"

#: ../gedit/gedit-commands-file.c:1175
#, c-format
msgid ""
"Changes made to the document in the last hour and %d minute will be "
"permanently lost."
msgid_plural ""
"Changes made to the document in the last hour and %d minutes will be "
"permanently lost."
msgstr[0] ""
"နောက်ဆုံး နာရီ နှင့် %Id မိနစ် အတွင်း စာရွက်စာတမ်းကို အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင် "
"ပျောက်ပျက်သွားလိမ့်မည်။"

#: ../gedit/gedit-commands-file.c:1190
#, c-format
msgid ""
"Changes made to the document in the last %d hour will be permanently lost."
msgid_plural ""
"Changes made to the document in the last %d hours will be permanently lost."
msgstr[0] ""
"နောက်ဆုံး %Id နာရီ အတွင်း စာရွက်စာတမ်းကို အပြောင်းလဲ ပြုလုပ်ခြင်းသည် အပြီးပိုင် ပျောက်ပျက်သွားမည်"

#: ../gedit/gedit-commands-file.c:1216
msgid "_Revert"
msgstr "_R နဂိုမူလအတိုင်း"

#: ../gedit/gedit-commands-help.c:83
msgid "gedit is a small and lightweight text editor for the GNOME Desktop"
msgstr "gedit သည် GNOME Desktop အတွက်  သေးငယ်ပြီး ပေါ့ပါးသော စာသား အယ်ဒီတာ ဖြစ်သည်။"

#: ../gedit/gedit-commands-help.c:108
msgid "translator-credits"
msgstr "ဘာသာပြန်သူ-ရည်ညွှန်း"

#: ../gedit/gedit-commands-search.c:111
#, c-format
msgid "Found and replaced %d occurrence"
msgid_plural "Found and replaced %d occurrences"
msgstr[0] "တွေ့ရှိချက်များကို ရှာဖွေ ပြီး အစားထိုး %d"

#: ../gedit/gedit-commands-search.c:121
msgid "Found and replaced one occurrence"
msgstr "တွေ့ရှိချက်များကို ရှာဖွေပြီး အစားထိုး"

#. Translators: %s is replaced by the text
#. entered by the user in the search box
#: ../gedit/gedit-commands-search.c:142
#, c-format
msgid "\"%s\" not found"
msgstr "\"%s\" မတွေ့ပါ"

#: ../gedit/gedit-document.c:1071 ../gedit/gedit-document.c:1086
#, c-format
msgid "Unsaved Document %d"
msgstr "မသိမ်းဆည်းရသေးသော စာရွက်စာတမ်း %dခု"

#: ../gedit/gedit-documents-panel.c:97 ../gedit/gedit-documents-panel.c:111
#: ../gedit/gedit-window.c:2271 ../gedit/gedit-window.c:2276
msgid "Read-Only"
msgstr "ဖတ်ရုံသက်သက်"

#: ../gedit/gedit-documents-panel.c:780 ../gedit/gedit-window.c:3670
msgid "Documents"
msgstr "စာရွက်စာတမ်းများ"

#: ../gedit/gedit-encodings.c:138 ../gedit/gedit-encodings.c:180
#: ../gedit/gedit-encodings.c:182 ../gedit/gedit-encodings.c:184
#: ../gedit/gedit-encodings.c:186 ../gedit/gedit-encodings.c:188
#: ../gedit/gedit-encodings.c:190 ../gedit/gedit-encodings.c:192
msgid "Unicode"
msgstr "ယူနီကုဒ်"

#: ../gedit/gedit-encodings.c:151 ../gedit/gedit-encodings.c:175
#: ../gedit/gedit-encodings.c:225 ../gedit/gedit-encodings.c:268
msgid "Western"
msgstr "အနောက်တိုင်း"

#: ../gedit/gedit-encodings.c:153 ../gedit/gedit-encodings.c:227
#: ../gedit/gedit-encodings.c:264
msgid "Central European"
msgstr "ဥရောပ အလယ်ပိုင်း"

#: ../gedit/gedit-encodings.c:155
msgid "South European"
msgstr "ဥရောပ တောင်ပိုင်း"

#: ../gedit/gedit-encodings.c:157 ../gedit/gedit-encodings.c:171
#: ../gedit/gedit-encodings.c:278
msgid "Baltic"
msgstr "ဘော့လ်တစ်"

#: ../gedit/gedit-encodings.c:159 ../gedit/gedit-encodings.c:229
#: ../gedit/gedit-encodings.c:242 ../gedit/gedit-encodings.c:246
#: ../gedit/gedit-encodings.c:248 ../gedit/gedit-encodings.c:266
msgid "Cyrillic"
msgstr "ဆီရီလစ်"

#: ../gedit/gedit-encodings.c:161 ../gedit/gedit-encodings.c:235
#: ../gedit/gedit-encodings.c:276
msgid "Arabic"
msgstr "အာရဗီ"

#: ../gedit/gedit-encodings.c:163 ../gedit/gedit-encodings.c:270
msgid "Greek"
msgstr "ဂရိ"

#: ../gedit/gedit-encodings.c:165
msgid "Hebrew Visual"
msgstr "ဟီဘရူး"

#: ../gedit/gedit-encodings.c:167 ../gedit/gedit-encodings.c:231
#: ../gedit/gedit-encodings.c:272
msgid "Turkish"
msgstr "တူရကီ"

#: ../gedit/gedit-encodings.c:169
msgid "Nordic"
msgstr "နောဒစ်"

#: ../gedit/gedit-encodings.c:173
msgid "Celtic"
msgstr "ဆဲလ်တစ်"

#: ../gedit/gedit-encodings.c:177
msgid "Romanian"
msgstr "ရိုမေနီယန်း"

#: ../gedit/gedit-encodings.c:195
msgid "Armenian"
msgstr "အာမေနီယန်း"

#: ../gedit/gedit-encodings.c:197 ../gedit/gedit-encodings.c:199
#: ../gedit/gedit-encodings.c:213
msgid "Chinese Traditional"
msgstr "တရုတ် ရိုးရာ"

#: ../gedit/gedit-encodings.c:201
msgid "Cyrillic/Russian"
msgstr "ဆီရီလစ်/ရုရှ"

#: ../gedit/gedit-encodings.c:204 ../gedit/gedit-encodings.c:206
#: ../gedit/gedit-encodings.c:208 ../gedit/gedit-encodings.c:238
#: ../gedit/gedit-encodings.c:253
msgid "Japanese"
msgstr "ဂျပန်"

#: ../gedit/gedit-encodings.c:211 ../gedit/gedit-encodings.c:240
#: ../gedit/gedit-encodings.c:244 ../gedit/gedit-encodings.c:259
msgid "Korean"
msgstr "ကိုရီးယား"

#: ../gedit/gedit-encodings.c:216 ../gedit/gedit-encodings.c:218
#: ../gedit/gedit-encodings.c:220
msgid "Chinese Simplified"
msgstr "တရုတ်"

#: ../gedit/gedit-encodings.c:222
msgid "Georgian"
msgstr "ဂျော်ဂျီယာ"

#: ../gedit/gedit-encodings.c:233 ../gedit/gedit-encodings.c:274
msgid "Hebrew"
msgstr "ဟီဘရူး"

#: ../gedit/gedit-encodings.c:250
msgid "Cyrillic/Ukrainian"
msgstr "ဆီရီလစ်/ယူကရိန်း"

#: ../gedit/gedit-encodings.c:255 ../gedit/gedit-encodings.c:261
#: ../gedit/gedit-encodings.c:280
msgid "Vietnamese"
msgstr "ဗီယက်နမ်"

#: ../gedit/gedit-encodings.c:257
msgid "Thai"
msgstr "ထိုင်း"

#: ../gedit/gedit-encodings.c:431
msgid "Unknown"
msgstr "အမည်မသိ"

#: ../gedit/gedit-encodings-combo-box.c:276
msgid "Automatically Detected"
msgstr "အလိုလျောက် သိရှိ"

#: ../gedit/gedit-encodings-combo-box.c:292
#: ../gedit/gedit-encodings-combo-box.c:307
#, c-format
msgid "Current Locale (%s)"
msgstr "လက်ရှိ ဒေသန္တရ ဘာသာစကား (%s)"

#: ../gedit/gedit-encodings-combo-box.c:357
msgid "Add or Remove..."
msgstr "ပေါင်းထည့် သို့ ဖယ်ထုတ်..."

#: ../gedit/gedit-file-chooser-dialog.c:53
msgid "All Text Files"
msgstr "စာသားဖိုင်အားလုံး"

#: ../gedit/gedit-file-chooser-dialog.c:81
msgid "C_haracter Encoding:"
msgstr "_H အက္ခရာ အန်ကုဒ်ဒင်း"

#: ../gedit/gedit-file-chooser-dialog.c:146
msgid "L_ine Ending:"
msgstr "_I လိုင်းအဆုံး"

#: ../gedit/gedit-file-chooser-dialog.c:165
msgid "Unix/Linux"
msgstr ""

#: ../gedit/gedit-file-chooser-dialog.c:171
msgid "Mac OS Classic"
msgstr ""

#: ../gedit/gedit-file-chooser-dialog.c:177
msgid "Windows"
msgstr ""

#: ../gedit/gedit-help.c:104
msgid "There was an error displaying the help."
msgstr "အကူညီ ဖော်ပြခြင်း အမှား ဖြစ်နေပါသည်။"

#: ../gedit/gedit-io-error-message-area.c:196
#: ../gedit/gedit-io-error-message-area.c:201
#: ../gedit/gedit-io-error-message-area.c:505
#: ../gedit/gedit-io-error-message-area.c:528
msgid "_Retry"
msgstr "_R ပြန်ကြိုးစားပါ။"

#: ../gedit/gedit-io-error-message-area.c:223
#, c-format
msgid "Could not find the file %s."
msgstr "ဖိုင် %s ကိုရှာမတွေ့ပါ"

#: ../gedit/gedit-io-error-message-area.c:225
#: ../gedit/gedit-io-error-message-area.c:264
#: ../gedit/gedit-io-error-message-area.c:271
msgid "Please check that you typed the location correctly and try again."
msgstr "ရိုက်ထည့်လိုက်သော တည်နေရာမှန်ကို စစ်ဆေးပြီး၊ "

#. Translators: %s is a URI scheme (like for example http:, ftp:, etc.)
#: ../gedit/gedit-io-error-message-area.c:240
#, c-format
msgid "gedit cannot handle %s locations."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:246
msgid "gedit cannot handle this location."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:254
msgid "The location of the file cannot be mounted."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:258
msgid "The location of the file cannot be accessed because it is not mounted."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:262
#, c-format
msgid "%s is a directory."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:269
#, c-format
msgid "%s is not a valid location."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:299
#, c-format
msgid ""
"Host %s could not be found. Please check that your proxy settings are "
"correct and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:312
#, c-format
msgid ""
"Hostname was invalid. Please check that you typed the location correctly and "
"try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:320
#, c-format
msgid "%s is not a regular file."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:325
msgid "Connection timed out. Please try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:348
msgid "The file is too big."
msgstr "ဖိုင်အရမ်းကြီး နေသည်"

#: ../gedit/gedit-io-error-message-area.c:389
#, c-format
msgid "Unexpected error: %s"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:425
msgid "gedit cannot find the file. Perhaps it has recently been deleted."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:435
#, c-format
msgid "Could not revert the file %s."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:461
msgid "Ch_aracter Encoding:"
msgstr ""

#. Translators: the access key chosen for this string should be
#. different from other main menu access keys (Open, Edit, View...)
#: ../gedit/gedit-io-error-message-area.c:512
#: ../gedit/gedit-io-error-message-area.c:537
#: ../gedit/gedit-io-error-message-area.c:815
#: ../gedit/gedit-io-error-message-area.c:825
msgid "Edit Any_way"
msgstr ""

#. Translators: the access key chosen for this string should be
#. different from other main menu access keys (Open, Edit, View...)
#: ../gedit/gedit-io-error-message-area.c:515
#: ../gedit/gedit-io-error-message-area.c:542
#: ../gedit/gedit-io-error-message-area.c:818
#: ../gedit/gedit-io-error-message-area.c:830
msgid "D_on't Edit"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:638
msgid ""
"The number of followed links is limited and the actual file could not be "
"found within this limit."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:642
msgid "You do not have the permissions necessary to open the file."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:648
msgid "gedit has not been able to detect the character encoding."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:650
#: ../gedit/gedit-io-error-message-area.c:672
msgid "Please check that you are not trying to open a binary file."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:651
msgid "Select a character encoding from the menu and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:657
#, c-format
msgid "There was a problem opening the file %s."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:659
msgid ""
"The file you opened has some invalid characters. If you continue editing "
"this file you could make this document useless."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:662
msgid "You can also choose another character encoding and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:669
#, c-format
msgid "Could not open the file %s using the %s character encoding."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:673
#: ../gedit/gedit-io-error-message-area.c:748
msgid "Select a different character encoding from the menu and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:683
#, c-format
msgid "Could not open the file %s."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:743
#, c-format
msgid "Could not save the file %s using the %s character encoding."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:746
msgid ""
"The document contains one or more characters that cannot be encoded using "
"the specified character encoding."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:845
#, c-format
msgid "This file (%s) is already open in another gedit window."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:859
msgid ""
"gedit opened this instance of the file in a non-editable way. Do you want to "
"edit it anyway?"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:918
#: ../gedit/gedit-io-error-message-area.c:928
#: ../gedit/gedit-io-error-message-area.c:1024
#: ../gedit/gedit-io-error-message-area.c:1034
msgid "S_ave Anyway"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:922
#: ../gedit/gedit-io-error-message-area.c:932
#: ../gedit/gedit-io-error-message-area.c:1028
#: ../gedit/gedit-io-error-message-area.c:1038
msgid "D_on't Save"
msgstr ""

#. FIXME: review this message, it's not clear since for the user the "modification"
#. could be interpreted as the changes he made in the document. beside "reading" is
#. not accurate (since last load/save)
#: ../gedit/gedit-io-error-message-area.c:950
#, c-format
msgid "The file %s has been modified since reading it."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:965
msgid "If you save it, all the external changes could be lost. Save it anyway?"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1056
#, c-format
msgid "Could not create a backup file while saving %s"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1059
#, c-format
msgid "Could not create a temporary backup file while saving %s"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1075
msgid ""
"gedit could not back up the old copy of the file before saving the new one. "
"You can ignore this warning and save the file anyway, but if an error occurs "
"while saving, you could lose the old copy of the file. Save anyway?"
msgstr ""

#. Translators: %s is a URI scheme (like for example http:, ftp:, etc.)
#: ../gedit/gedit-io-error-message-area.c:1135
#, c-format
msgid ""
"gedit cannot handle %s locations in write mode. Please check that you typed "
"the location correctly and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1143
msgid ""
"gedit cannot handle this location in write mode. Please check that you typed "
"the location correctly and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1152
#, c-format
msgid ""
"%s is not a valid location. Please check that you typed the location "
"correctly and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1158
msgid ""
"You do not have the permissions necessary to save the file. Please check "
"that you typed the location correctly and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1164
msgid ""
"There is not enough disk space to save the file. Please free some disk space "
"and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1169
msgid ""
"You are trying to save the file on a read-only disk. Please check that you "
"typed the location correctly and try again."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1175
msgid "A file with the same name already exists. Please use a different name."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1180
msgid ""
"The disk where you are trying to save the file has a limitation on length of "
"the file names. Please use a shorter name."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1187
msgid ""
"The disk where you are trying to save the file has a limitation on file "
"sizes. Please try saving a smaller file or saving it to a disk that does not "
"have this limitation."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1203
#, c-format
msgid "Could not save the file %s."
msgstr ""

#. FIXME: review this message, it's not clear since for the user the "modification"
#. could be interpreted as the changes he made in the document. beside "reading" is
#. not accurate (since last load/save)
#: ../gedit/gedit-io-error-message-area.c:1247
#, c-format
msgid "The file %s changed on disk."
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1252
msgid "Do you want to drop your changes and reload the file?"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1254
msgid "Do you want to reload the file?"
msgstr ""

#: ../gedit/gedit-io-error-message-area.c:1260
#: ../gedit/gedit-io-error-message-area.c:1271
msgid "_Reload"
msgstr ""

#: ../gedit/gedit-panel.c:360 ../gedit/gedit-panel.c:532
msgid "Empty"
msgstr ""

#: ../gedit/gedit-panel.c:422
msgid "Hide panel"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:54
msgid "Plugin"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:55
msgid "Enabled"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:504
msgid "_About"
msgstr "_A အကြောင်းအရာ"

#: ../gedit/gedit-plugin-manager.c:512
msgid "C_onfigure"
msgstr "_O ပုံစံပြင်"

#: ../gedit/gedit-plugin-manager.c:521
msgid "A_ctivate"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:532
msgid "Ac_tivate All"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:537
msgid "_Deactivate All"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:800
msgid "Active _Plugins:"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:825
msgid "_About Plugin"
msgstr ""

#: ../gedit/gedit-plugin-manager.c:829
msgid "C_onfigure Plugin"
msgstr ""

#: ../gedit/gedit-prefs-manager.c:170
msgid "Cannot initialize preferences manager."
msgstr ""

#: ../gedit/gedit-prefs-manager.c:1138
#, c-format
msgid "Expected `%s', got `%s' for key %s"
msgstr ""

#: ../gedit/gedit-print-job.c:541
#, c-format
msgid "File: %s"
msgstr ""

#: ../gedit/gedit-print-job.c:550
msgid "Page %N of %Q"
msgstr ""

#: ../gedit/gedit-print-job.c:809
msgid "Preparing..."
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:3
msgid "Fonts"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:4
msgid "He_aders and footers:"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:6
msgid "Page header"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:7
msgid "Print line nu_mbers"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:8
msgid "Print page _headers"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:9
msgid "Print synta_x highlighting"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:10
msgid "Syntax Highlighting"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:12
msgid "_Body:"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:13
msgid "_Line numbers:"
msgstr ""

#. 'Number every' from 'Number every 3 lines' in the 'Text Editor' tab of the print preferences.
#: ../gedit/gedit-print-preferences.ui.h:15
msgid "_Number every"
msgstr ""

#: ../gedit/gedit-print-preferences.ui.h:16
msgid "_Restore Default Fonts"
msgstr ""

#. 'lines' from 'Number every 3 lines' in the 'Text Editor' tab of the print preferences.
#: ../gedit/gedit-print-preferences.ui.h:18
msgid "lines"
msgstr ""

#: ../gedit/gedit-print-preview.c:565
msgid "Show the previous page"
msgstr ""

#: ../gedit/gedit-print-preview.c:577
msgid "Show the next page"
msgstr ""

#: ../gedit/gedit-print-preview.c:593
msgid "Current page (Alt+P)"
msgstr ""

#. Translators: the "of" from "1 of 19" in print preview.
#: ../gedit/gedit-print-preview.c:616
msgid "of"
msgstr ""

#: ../gedit/gedit-print-preview.c:624
msgid "Page total"
msgstr ""

#: ../gedit/gedit-print-preview.c:625
msgid "The total number of pages in the document"
msgstr ""

#: ../gedit/gedit-print-preview.c:642
msgid "Show multiple pages"
msgstr ""

#: ../gedit/gedit-print-preview.c:655
msgid "Zoom 1:1"
msgstr ""

#: ../gedit/gedit-print-preview.c:664
msgid "Zoom to fit the whole page"
msgstr ""

#: ../gedit/gedit-print-preview.c:673
msgid "Zoom the page in"
msgstr ""

#: ../gedit/gedit-print-preview.c:682
msgid "Zoom the page out"
msgstr ""

#: ../gedit/gedit-print-preview.c:694
msgid "_Close Preview"
msgstr ""

#: ../gedit/gedit-print-preview.c:697
msgid "Close print preview"
msgstr ""

#: ../gedit/gedit-print-preview.c:767
#, c-format
msgid "Page %d of %d"
msgstr ""

#: ../gedit/gedit-print-preview.c:951
msgid "Page Preview"
msgstr ""

#: ../gedit/gedit-print-preview.c:952
msgid "The preview of a page in the document to be printed"
msgstr ""

#: ../gedit/gedit-smart-charset-converter.c:319
msgid "It is not possible to detect the encoding automatically"
msgstr ""

#: ../gedit/gedit-statusbar.c:70 ../gedit/gedit-statusbar.c:76
msgid "OVR"
msgstr ""

#: ../gedit/gedit-statusbar.c:70 ../gedit/gedit-statusbar.c:76
msgid "INS"
msgstr ""

#. Translators: "Ln" is an abbreviation for "Line", Col is an abbreviation for "Column". Please,
#. use abbreviations if possible to avoid space problems.
#: ../gedit/gedit-statusbar.c:332
#, c-format
msgid "  Ln %d, Col %d"
msgstr ""

#: ../gedit/gedit-statusbar.c:431
#, c-format
msgid "There is a tab with errors"
msgid_plural "There are %d tabs with errors"
msgstr[0] ""

#: ../gedit/gedit-style-scheme-manager.c:207
#, c-format
msgid "Directory '%s' could not be created: g_mkdir_with_parents() failed: %s"
msgstr ""

#. Translators: the first %s is a file name (e.g. test.txt) the second one
#. is a directory (e.g. ssh://master.gnome.org/home/users/paolo)
#: ../gedit/gedit-tab.c:660
#, c-format
msgid "Reverting %s from %s"
msgstr ""

#: ../gedit/gedit-tab.c:667
#, c-format
msgid "Reverting %s"
msgstr ""

#. Translators: the first %s is a file name (e.g. test.txt) the second one
#. is a directory (e.g. ssh://master.gnome.org/home/users/paolo)
#: ../gedit/gedit-tab.c:683
#, c-format
msgid "Loading %s from %s"
msgstr ""

#: ../gedit/gedit-tab.c:690
#, c-format
msgid "Loading %s"
msgstr ""

#. Translators: the first %s is a file name (e.g. test.txt) the second one
#. is a directory (e.g. ssh://master.gnome.org/home/users/paolo)
#: ../gedit/gedit-tab.c:773
#, c-format
msgid "Saving %s to %s"
msgstr ""

#: ../gedit/gedit-tab.c:780
#, c-format
msgid "Saving %s"
msgstr ""

#. Read only
#: ../gedit/gedit-tab.c:1673
msgid "RO"
msgstr ""

#: ../gedit/gedit-tab.c:1720
#, c-format
msgid "Error opening file %s"
msgstr ""

#: ../gedit/gedit-tab.c:1725
#, c-format
msgid "Error reverting file %s"
msgstr ""

#: ../gedit/gedit-tab.c:1730
#, c-format
msgid "Error saving file %s"
msgstr ""

#: ../gedit/gedit-tab.c:1751
msgid "Unicode (UTF-8)"
msgstr ""

#: ../gedit/gedit-tab.c:1758
msgid "Name:"
msgstr ""

#: ../gedit/gedit-tab.c:1759
msgid "MIME Type:"
msgstr ""

#: ../gedit/gedit-tab.c:1760
msgid "Encoding:"
msgstr ""

#: ../gedit/gedit-tab-label.c:285
msgid "Close document"
msgstr ""

#. Toplevel
#: ../gedit/gedit-ui.h:47
msgid "_File"
msgstr "_F ဖိုင်"

#: ../gedit/gedit-ui.h:48
msgid "_Edit"
msgstr "_E တည်းဖြတ်"

#: ../gedit/gedit-ui.h:49
msgid "_View"
msgstr "_V မြင်ကွင်း"

#: ../gedit/gedit-ui.h:50
msgid "_Search"
msgstr "_S ရှာဖွေရေး"

#: ../gedit/gedit-ui.h:51
msgid "_Tools"
msgstr "_T တန်ဆာပလာ"

#: ../gedit/gedit-ui.h:52
msgid "_Documents"
msgstr "_D စာရွက်စာတမ်း"

#: ../gedit/gedit-ui.h:53
msgid "_Help"
msgstr "_H အကူအညီ"

#: ../gedit/gedit-ui.h:57
msgid "Create a new document"
msgstr "စာရွက်စာတမ်း အသစ်ဖန်တီး"

#: ../gedit/gedit-ui.h:58
msgid "_Open..."
msgstr "_O ဖွင့်"

#: ../gedit/gedit-ui.h:59 ../gedit/gedit-window.c:1450
msgid "Open a file"
msgstr "ဖိုင်ဖွင့်"

#. Edit menu
#: ../gedit/gedit-ui.h:62
msgid "Pr_eferences"
msgstr "_E အပြင်အဆင်များ"

#: ../gedit/gedit-ui.h:63
msgid "Configure the application"
msgstr ""

#. Help menu
#: ../gedit/gedit-ui.h:66
msgid "_Contents"
msgstr "_C မာတိကာ"

#: ../gedit/gedit-ui.h:67
msgid "Open the gedit manual"
msgstr "gedit သုံးစွဲနည်းလမ်းညွှန်ကို ဖွင့်ပါ"

#: ../gedit/gedit-ui.h:69
msgid "About this application"
msgstr "ဤ အက်ပလီကေးရှင်း အကြောင်း"

#: ../gedit/gedit-ui.h:73
msgid "Leave fullscreen mode"
msgstr "မျက်နှာပြင် အပြည့်မှ ထွက်ပါ"

#: ../gedit/gedit-ui.h:81
msgid "Save the current file"
msgstr "လက်ရှိဖိုင်ကို သိမ်းပါ"

#: ../gedit/gedit-ui.h:82
msgid "Save _As..."
msgstr "_A ပြောင်းသိမ်းရန်..."

#: ../gedit/gedit-ui.h:83
msgid "Save the current file with a different name"
msgstr "တစ်ခြားနာမည်ဖြင့် လက်ရှိဖိုင်ကို သိမ်းဆည်း"

#: ../gedit/gedit-ui.h:85
msgid "Revert to a saved version of the file"
msgstr "သိမ်းဆည်းထားပြီး ဖိုင်၏ ဗားရှင်းသို့ နဂိုအသွင်ပြန်ပြောင်း"

#: ../gedit/gedit-ui.h:87
msgid "Page Set_up..."
msgstr "_U စာမျက်နှာ အပြင်အဆင်"

#: ../gedit/gedit-ui.h:88
msgid "Set up the page settings"
msgstr "စာမျက်နှာပြင်ဆင်သည့် အပြင်အဆင်"

#: ../gedit/gedit-ui.h:90
msgid "Print Previe_w"
msgstr "_W စာမထုတ်မှီ မြင်ကွင်း"

#: ../gedit/gedit-ui.h:91
msgid "Print preview"
msgstr "စာမထုတ်မှီမြင်ကွင်း"

#: ../gedit/gedit-ui.h:92
msgid "_Print..."
msgstr "_P စာထုတ်"

#: ../gedit/gedit-ui.h:93
msgid "Print the current page"
msgstr "လက်ရှိစာမျက်နှာကို စာထုတ်"

#: ../gedit/gedit-ui.h:97
msgid "Undo the last action"
msgstr "နောက်ဆုံး လုပ်ဆောင်ချက်ကို မပြုလုပ်တော့"

#: ../gedit/gedit-ui.h:99
msgid "Redo the last undone action"
msgstr "နောက်ဆုံး လုပ်ဆောင်ချက်ကို ပြန်လုပ်"

#: ../gedit/gedit-ui.h:101
msgid "Cut the selection"
msgstr ""

#: ../gedit/gedit-ui.h:103
msgid "Copy the selection"
msgstr ""

#: ../gedit/gedit-ui.h:105
msgid "Paste the clipboard"
msgstr ""

#: ../gedit/gedit-ui.h:107
msgid "Delete the selected text"
msgstr ""

#: ../gedit/gedit-ui.h:108
msgid "Select _All"
msgstr "_A ားလုံး ရွေးချယ်"

#: ../gedit/gedit-ui.h:109
msgid "Select the entire document"
msgstr "လတ်တစ်လော စာရွက်စာတမ်းကို ရွေးချယ်"

#. View menu
#: ../gedit/gedit-ui.h:112
msgid "_Highlight Mode"
msgstr "_H ရောင်မျဉ်းတားခြင်း"

#. Search menu
#: ../gedit/gedit-ui.h:115
msgid "_Find..."
msgstr "_F ရှာဖွေ"

#: ../gedit/gedit-ui.h:116
msgid "Search for text"
msgstr "စာသား ရှာရန်"

#: ../gedit/gedit-ui.h:117
msgid "Find Ne_xt"
msgstr "_X နောက်တစ်ခု ရှာဖွေ"

#: ../gedit/gedit-ui.h:118
msgid "Search forwards for the same text"
msgstr "ရှေ့ဆက်၍ စာသားတူများအား ရှာပါ"

#: ../gedit/gedit-ui.h:119
msgid "Find Pre_vious"
msgstr "_V အရင်ဟာ ပြန်ရှာ"

#: ../gedit/gedit-ui.h:120
msgid "Search backwards for the same text"
msgstr ""

#: ../gedit/gedit-ui.h:122 ../gedit/gedit-ui.h:125
msgid "_Replace..."
msgstr "_R အစားထိုး"

#: ../gedit/gedit-ui.h:123 ../gedit/gedit-ui.h:126
msgid "Search for and replace text"
msgstr "ရှာ၍ စာသားအစားထိုး"

#: ../gedit/gedit-ui.h:128
msgid "_Clear Highlight"
msgstr "_C အရောင်မျဉ်းကို ရှင်းလင်း"

#: ../gedit/gedit-ui.h:129
msgid "Clear highlighting of search matches"
msgstr "ကိုက်ညီသော ရှာဖွေမှုများ၏ အရောင်မျဉ်းများကို ရှင်းလင်း"

#: ../gedit/gedit-ui.h:130
msgid "Go to _Line..."
msgstr "_L လိုင်းကိုသွားပါ"

#: ../gedit/gedit-ui.h:131
msgid "Go to a specific line"
msgstr "လိုင်းအတိအကျကို သွားပါ"

#: ../gedit/gedit-ui.h:132
msgid "_Incremental Search..."
msgstr "_I အဆင့်ဆင့် တိုးမြှင့် ရှာဖွေ"

#: ../gedit/gedit-ui.h:133
msgid "Incrementally search for text"
msgstr "စာသားအတွက် အဆင့်ဆင့် တိုးမြှင့် ရှာဖွေ"

#. Documents menu
#: ../gedit/gedit-ui.h:136
msgid "_Save All"
msgstr "_S အားလုံးသိမ်းဆည်း"

#: ../gedit/gedit-ui.h:137
msgid "Save all open files"
msgstr "ဖွင့်ထားတဲ့ ဖိုင်အားလုံး သိမ်းဆည်း"

#: ../gedit/gedit-ui.h:138
msgid "_Close All"
msgstr "_C အားလုံးပိတ်"

#: ../gedit/gedit-ui.h:139
msgid "Close all open files"
msgstr "ဖွင့်ထားတဲ့ဖိုင်များ အားလုံးပိတ်"

#: ../gedit/gedit-ui.h:140
msgid "_Previous Document"
msgstr "_P ယခင် စာရွက်စာတမ်း"

#: ../gedit/gedit-ui.h:141
msgid "Activate previous document"
msgstr "ယခင် စာရွက်စာတမ်းကို အတည်ပြုပါ"

#: ../gedit/gedit-ui.h:142
msgid "_Next Document"
msgstr "_N နောက်ထပ် စာရွက်စာတမ်း"

#: ../gedit/gedit-ui.h:143
msgid "Activate next document"
msgstr "နောက်ထပ် စာရွက်စာတမ်းကို အတည်ပြုပါ"

#: ../gedit/gedit-ui.h:144
msgid "_Move to New Window"
msgstr "_M ဝင်းဒိုးအသစ်သို့ ရွှေ့ပါ"

#: ../gedit/gedit-ui.h:145
msgid "Move the current document to a new window"
msgstr "လက်ရှိ စာရွက်စာတမ်းအား ဝင်းဒိုးအသစ်သို့ ရွှေ့"

#: ../gedit/gedit-ui.h:152
msgid "Close the current file"
msgstr "လက်ရှိဖိုင်ကိုပိတ်"

#: ../gedit/gedit-ui.h:159
msgid "Quit the program"
msgstr "ပရိုဂရမ်က ထွက်"

#: ../gedit/gedit-ui.h:164
msgid "_Toolbar"
msgstr "_T ကိရိယာဘားတန်း"

#: ../gedit/gedit-ui.h:165
msgid "Show or hide the toolbar in the current window"
msgstr "လက်ရှိဝင်းဒိုးရှိ ကိရိယာဘားကို ဖော်ပြ သို့ ဝှက်ထား"

#: ../gedit/gedit-ui.h:167
msgid "_Statusbar"
msgstr "_S အခြေအနေပြ ဘားတန်း"

#: ../gedit/gedit-ui.h:168
msgid "Show or hide the statusbar in the current window"
msgstr "လက်ရှိ ဝင်းဒိုးမှာ ရှိတဲ့ အခြေအနေဘားတန်းကို ပြထား သို့မဟုတ် ဝှက်ထား"

#: ../gedit/gedit-ui.h:171
msgid "Edit text in fullscreen"
msgstr "မျက်နှာပြင်ပြည့် စာသားတည်းဖြတ်"

#: ../gedit/gedit-ui.h:178
msgid "Side _Pane"
msgstr "_P ဘေးဘက်ခြမ်း ဘောင်ကွက်"

#: ../gedit/gedit-ui.h:179
msgid "Show or hide the side pane in the current window"
msgstr "လက်ရှိ ဝင်းဒိုးမှာရှိတဲ့ ဘေးဘက်ခြမ်း ဘောင်ကွက်ကို ပြထား သို့မဟုတ် ဝှက်ထား"

#: ../gedit/gedit-ui.h:181
msgid "_Bottom Pane"
msgstr "_B အောက်ဘက်ခြမ်း ဘောင်ကွက်"

#: ../gedit/gedit-ui.h:182
msgid "Show or hide the bottom pane in the current window"
msgstr "လက်ရှိ ဝင်းဒိုးမှာရှိတဲ့ အောက်ဘက်ခြမ်း ဘောင်ကွက်ကို ပြထား သို့မဟုတ် ဝှက်ထား"

#: ../gedit/gedit-utils.c:1071
msgid "Please check your installation."
msgstr "ထည့်သွင်းတပ်ဆင်ခြင်းကို ပြန်လည်စစ်ဆေးပါ"

#: ../gedit/gedit-utils.c:1140
#, c-format
msgid "Unable to open UI file %s. Error: %s"
msgstr ""

#: ../gedit/gedit-utils.c:1160
#, c-format
msgid "Unable to find the object '%s' inside file %s."
msgstr ""

#. Translators: '/ on <remote-share>'
#: ../gedit/gedit-utils.c:1320
#, c-format
msgid "/ on %s"
msgstr ""

#. create "Wrap Around" menu item.
#: ../gedit/gedit-view.c:1218
msgid "_Wrap Around"
msgstr ""

#. create "Match Entire Word Only" menu item.
#: ../gedit/gedit-view.c:1228
msgid "Match _Entire Word Only"
msgstr "_E ကိုက်ညီသော စကားလုံး သက်သက်သာ"

#. create "Match Case" menu item.
#: ../gedit/gedit-view.c:1238
msgid "_Match Case"
msgstr "_M ကိုက်ညီသော စကားလုံး"

#: ../gedit/gedit-view.c:1352
msgid "String you want to search for"
msgstr ""

#: ../gedit/gedit-view.c:1361
msgid "Line you want to move the cursor to"
msgstr ""

#: ../gedit/gedit-window.c:1003
#, c-format
msgid "Use %s highlight mode"
msgstr "%s အရောင်မျဉ်းတား ပြုလုပ်ခြင်းကို အသုံးပြု"

#. add the "Plain Text" item before all the others
#. Translators: "Plain Text" means that no highlight mode is selected in the
#. * "View->Highlight Mode" submenu and so syntax highlighting is disabled
#: ../gedit/gedit-window.c:1060 ../gedit/gedit-window.c:1972
#: ../plugins/externaltools/tools/manager.py:121
#: ../plugins/externaltools/tools/manager.py:419
#: ../plugins/externaltools/tools/manager.py:529
#: ../plugins/externaltools/tools/manager.py:844
msgid "Plain Text"
msgstr "စာသား သက်သက်"

#: ../gedit/gedit-window.c:1061
msgid "Disable syntax highlighting"
msgstr "စာသား၊ စာလုံးများ အရောင်မျဉ်းတားခြင်းကို မပြုလုပ်"

#. Translators: %s is a URI
#: ../gedit/gedit-window.c:1347
#, c-format
msgid "Open '%s'"
msgstr "ဖွင့် '%s'"

#: ../gedit/gedit-window.c:1452
msgid "Open a recently used file"
msgstr "လတ်တလော အသုံးပြုပြီးတဲ့ဖိုင်ကို ဖွင့်"

#: ../gedit/gedit-window.c:1458
msgid "Open"
msgstr "ဖွင့်"

#: ../gedit/gedit-window.c:1516
msgid "Save"
msgstr "သိမ်းဆည်း"

#: ../gedit/gedit-window.c:1518
msgid "Print"
msgstr "စာထုတ်ရန်"

#. Translators: %s is a URI
#: ../gedit/gedit-window.c:1697
#, c-format
msgid "Activate '%s'"
msgstr "အတည်ပြု '%s'"

#: ../gedit/gedit-window.c:1950
msgid "Use Spaces"
msgstr ""

#: ../gedit/gedit-window.c:2021
msgid "Tab Width"
msgstr ""

#: ../gedit/gedit-window.c:3874
msgid "About gedit"
msgstr "gedit အကြောင်း"

#: ../plugins/changecase/changecase.gedit-plugin.desktop.in.h:1
msgid "Change Case"
msgstr "စာလုံးအကြီးသေးပြောင်း"

#: ../plugins/changecase/changecase.gedit-plugin.desktop.in.h:2
msgid "Changes the case of selected text."
msgstr "ရွေးချယ်ထားသော စာသားကို အကြီးအသေးပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:222
msgid "C_hange Case"
msgstr "_H စာလုံးအကြီးသေးပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:223
msgid "All _Upper Case"
msgstr "_U အားလုံး စာလုံးအကြီးပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:224
msgid "Change selected text to upper case"
msgstr "ရွေးချယ်ထားသော စာသားကို စာလုံးအကြီးပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:226
msgid "All _Lower Case"
msgstr "_L အားလုံး စာလုံးအသေးပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:227
msgid "Change selected text to lower case"
msgstr "ရွေးချယ်ထားသော စာသားကို စာလုံးအသေးပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:229
msgid "_Invert Case"
msgstr "_I စာလုံးပုံစံ နဂိုအတိုင်း ပြန်ပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:230
msgid "Invert the case of selected text"
msgstr "ရွေးချယ်ထားသော စာသားကို စာလုံးအကြီးအသေး နဂိုအတိုင်း ပြန်ပြောင်း"

#: ../plugins/changecase/gedit-changecase-plugin.c:232
msgid "_Title Case"
msgstr "_T ခေါင်းစဉ်အကြီးအသေး"

#: ../plugins/changecase/gedit-changecase-plugin.c:233
msgid "Capitalize the first letter of each selected word"
msgstr ""

#: ../plugins/checkupdate/checkupdate.gedit-plugin.desktop.in.h:1
msgid "Check for latest version of gedit"
msgstr "gedit နောက်ဆုံးဗားရှင်းအတွက် စစ်ဆေး"

#: ../plugins/checkupdate/checkupdate.gedit-plugin.desktop.in.h:2
msgid "Check update"
msgstr "နောက်ဆုံးရ အသစ်ကို စစ်ဆေးပါ"

#: ../plugins/checkupdate/gedit-check-update-plugin.c:246
msgid "There was an error displaying the URI."
msgstr ""

#: ../plugins/checkupdate/gedit-check-update-plugin.c:293
#: ../plugins/checkupdate/gedit-check-update-plugin.c:308
msgid "_Download"
msgstr "_D ဒေါင်းလုပ်ဆွဲချပါ"

#: ../plugins/checkupdate/gedit-check-update-plugin.c:297
#: ../plugins/checkupdate/gedit-check-update-plugin.c:316
msgid "_Ignore Version"
msgstr "_I ဗားရှင်းကို လစ်လျူရှု"

#: ../plugins/checkupdate/gedit-check-update-plugin.c:332
msgid "There is a new version of gedit"
msgstr "gedit ၏ ဗားရှင်းအသစ်များ"

#: ../plugins/checkupdate/gedit-check-update-plugin.c:336
msgid ""
"You can download the new version of gedit by clicking on the download button "
"or ignore that version and wait for a new one"
msgstr ""

#: ../plugins/checkupdate/gedit-check-update.schemas.in.h:1
msgid "Version to ignore until the next version is released"
msgstr ""

#: ../plugins/docinfo/docinfo.gedit-plugin.desktop.in.h:1
msgid ""
"Analyzes the current document and reports the number of words, lines, "
"characters and non-space characters in it."
msgstr ""

#: ../plugins/docinfo/docinfo.gedit-plugin.desktop.in.h:2
#: ../plugins/docinfo/docinfo.ui.h:6
msgid "Document Statistics"
msgstr "စာရွက်စာတမ်း၏ အချက်အလက်များ"

#: ../plugins/docinfo/docinfo.ui.h:2
msgid "Bytes"
msgstr ""

#: ../plugins/docinfo/docinfo.ui.h:3
msgid "Characters (no spaces)"
msgstr ""

#: ../plugins/docinfo/docinfo.ui.h:4
msgid "Characters (with spaces)"
msgstr ""

#: ../plugins/docinfo/docinfo.ui.h:5
msgid "Document"
msgstr "စာရွက်စာတမ်း"

#: ../plugins/docinfo/docinfo.ui.h:7
msgid "File Name"
msgstr "ဖိုင်နာမည်"

#: ../plugins/docinfo/docinfo.ui.h:8
msgid "Lines"
msgstr "လိုင်းများ"

#: ../plugins/docinfo/docinfo.ui.h:9
msgid "Selection"
msgstr "ရွေးချယ်မှု"

#: ../plugins/docinfo/docinfo.ui.h:10
msgid "Words"
msgstr "စာလုံးများ"

#: ../plugins/docinfo/docinfo.ui.h:11
msgid "_Update"
msgstr "_U နောက်ဆုံးရ အသစ်"

#: ../plugins/docinfo/gedit-docinfo-plugin.c:422
msgid "_Document Statistics"
msgstr "_D စာရွက်စာတမ်း၏ အချက်အလက်များ"

#: ../plugins/docinfo/gedit-docinfo-plugin.c:424
msgid "Get statistical information on the current document"
msgstr ""

#: ../plugins/externaltools/data/open-terminal-here-osx.desktop.in.h:1
#: ../plugins/externaltools/data/open-terminal-here.desktop.in.h:1
msgid "Open a terminal in the document location"
msgstr ""

#: ../plugins/externaltools/data/open-terminal-here-osx.desktop.in.h:2
#: ../plugins/externaltools/data/open-terminal-here.desktop.in.h:2
msgid "Open terminal here"
msgstr ""

#: ../plugins/externaltools/externaltools.gedit-plugin.desktop.in.h:1
msgid "Execute external commands and shell scripts."
msgstr ""

#: ../plugins/externaltools/externaltools.gedit-plugin.desktop.in.h:2
msgid "External Tools"
msgstr ""

#: ../plugins/externaltools/tools/__init__.py:172
msgid "Manage _External Tools..."
msgstr ""

#: ../plugins/externaltools/tools/__init__.py:174
msgid "Opens the External Tools Manager"
msgstr ""

#: ../plugins/externaltools/tools/__init__.py:178
msgid "External _Tools"
msgstr ""

#: ../plugins/externaltools/tools/__init__.py:180
msgid "External tools"
msgstr ""

#: ../plugins/externaltools/tools/__init__.py:212
msgid "Shell Output"
msgstr ""

#: ../plugins/externaltools/tools/capture.py:93
#, python-format
msgid "Could not execute command: %s"
msgstr ""

#: ../plugins/externaltools/tools/functions.py:162
msgid "You must be inside a word to run this command"
msgstr ""

#: ../plugins/externaltools/tools/functions.py:267
msgid "Running tool:"
msgstr ""

#: ../plugins/externaltools/tools/functions.py:292
msgid "Done."
msgstr "ပြီးပြီ"

#: ../plugins/externaltools/tools/functions.py:294
msgid "Exited"
msgstr ""

#: ../plugins/externaltools/tools/manager.py:119
msgid "All languages"
msgstr "ဘာသာစကား အားလုံး"

#: ../plugins/externaltools/tools/manager.py:518
#: ../plugins/externaltools/tools/manager.py:522
#: ../plugins/externaltools/tools/manager.py:842
#: ../plugins/externaltools/tools/tools.ui.h:2
msgid "All Languages"
msgstr "ဘာသာစကား အားလုံး"

#: ../plugins/externaltools/tools/manager.py:628
msgid "New tool"
msgstr ""

#: ../plugins/externaltools/tools/manager.py:759
#, python-format
msgid "This accelerator is already bound to %s"
msgstr ""

#: ../plugins/externaltools/tools/manager.py:810
msgid "Type a new accelerator, or press Backspace to clear"
msgstr ""

#: ../plugins/externaltools/tools/manager.py:812
msgid "Type a new accelerator"
msgstr ""

#: ../plugins/externaltools/tools/outputpanel.py:105
msgid "Stopped."
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:3
msgid "All documents"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:4
msgid "All documents except untitled ones"
msgstr "ခေါင်းစဉ်မဲ့များမှ လွဲ၍ စာရွက်စာတမ်းအားလုံး"

#: ../plugins/externaltools/tools/tools.ui.h:5
msgid "Append to current document"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:6
msgid "Create new document"
msgstr "စာရွက်စာတမ်းအသစ် ဖန်တီး"

#: ../plugins/externaltools/tools/tools.ui.h:7
msgid "Current document"
msgstr "လက်ရှိ စာရွက်စာတမ်း"

#: ../plugins/externaltools/tools/tools.ui.h:8
msgid "Current line"
msgstr "လက်ရှိ လိုင်း"

#: ../plugins/externaltools/tools/tools.ui.h:9
msgid "Current selection"
msgstr "လက်ရှိ ရွေးချယ်ထားမှု"

#: ../plugins/externaltools/tools/tools.ui.h:10
msgid "Current selection (default to document)"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:11
msgid "Current word"
msgstr "လက်ရှိစာလုံး"

#: ../plugins/externaltools/tools/tools.ui.h:12
msgid "Display in bottom pane"
msgstr "အောက်ခြေဘောင်ကွက်ကို ဖော်ပြ"

#: ../plugins/externaltools/tools/tools.ui.h:13
msgid "External Tools Manager"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:14
msgid "Insert at cursor position"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:15
msgid "Local files only"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:16
msgid "Nothing"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:17
msgid "Remote files only"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:18
msgid "Replace current document"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:19
msgid "Replace current selection"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:20
msgid "Untitled documents only"
msgstr "ခေါင်းစဉ်မဲ့ စာရွက်စာတမ်း သက်သက်"

#: ../plugins/externaltools/tools/tools.ui.h:21
msgid "_Applicability:"
msgstr ""

#: ../plugins/externaltools/tools/tools.ui.h:22
#: ../plugins/snippets/snippets/snippets.ui.h:12
msgid "_Edit:"
msgstr "_E တည်းဖြတ်"

#: ../plugins/externaltools/tools/tools.ui.h:23
msgid "_Input:"
msgstr "_I အသွင်း"

#: ../plugins/externaltools/tools/tools.ui.h:24
msgid "_Output:"
msgstr "_O အထုတ်"

#: ../plugins/externaltools/tools/tools.ui.h:25
msgid "_Save:"
msgstr "_S သိမ်းဆည်း"

#: ../plugins/externaltools/tools/tools.ui.h:26
msgid "_Shortcut Key:"
msgstr "_S အတိုချုံး ကီး:"

#: ../plugins/externaltools/tools/tools.ui.h:27
msgid "_Tools:"
msgstr "_T ကိရိယာများ"

#: ../plugins/externaltools/data/build.desktop.in.h:1
msgid "Build"
msgstr "တည်ဆောက်"

#: ../plugins/externaltools/data/build.desktop.in.h:2
msgid "Run \"make\" in the document directory"
msgstr ""

#: ../plugins/externaltools/data/remove-trailing-spaces.desktop.in.h:1
msgid "Remove trailing spaces"
msgstr ""

#: ../plugins/externaltools/data/remove-trailing-spaces.desktop.in.h:2
msgid "Remove useless trailing spaces in your file"
msgstr ""

#: ../plugins/externaltools/data/run-command.desktop.in.h:1
msgid "Execute a custom command and put its output in a new document"
msgstr ""

#: ../plugins/externaltools/data/run-command.desktop.in.h:2
msgid "Run command"
msgstr ""

#: ../plugins/filebrowser/filebrowser.gedit-plugin.desktop.in.h:1
msgid "Easy file access from the side pane"
msgstr ""

#: ../plugins/filebrowser/filebrowser.gedit-plugin.desktop.in.h:2
msgid "File Browser Pane"
msgstr ""

#: ../plugins/filebrowser/gedit-file-bookmarks-store.c:235
msgid "File System"
msgstr ""

#. ex:ts=8:noet:
#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:1
msgid "Enable Restore of Remote Locations"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:2
msgid "File Browser Filter Mode"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:3
msgid "File Browser Filter Pattern"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:4
msgid "File Browser Root Directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:5
msgid "File Browser Virtual Root Directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:6
msgid ""
"If TRUE the file browser plugin will view the directory of the first opened "
"document given that the file browser hasn't been used yet. (Thus this "
"generally applies to opening a document from the command line or opening it "
"with Nautilus, etc.)"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:7
msgid "Open With Tree View"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:8
msgid ""
"Open the tree view when the file browser plugin gets loaded instead of the "
"bookmarks view"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:9
msgid "Set Location to First Document"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:10
msgid "Sets whether to enable restoring of remote locations."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:11
msgid ""
"The file browser root directory to use when loading the file browser plugin "
"and onload/tree_view is TRUE."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:12
msgid ""
"The file browser virtual root directory to use when loading the file browser "
"plugin when onload/tree_view is TRUE. The virtual root must always be below "
"the actual root."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:13
msgid ""
"The filter pattern to filter the file browser with. This filter works on top "
"of the filter_mode."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser.schemas.in.h:14
msgid ""
"This value determines what files get filtered from the file browser. Valid "
"values are: none (filter nothing), hidden (filter hidden files), binary "
"(filter binary files) and hidden_and_binary (filter both hidden and binary "
"files)."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:597
msgid "_Set root to active document"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:599
msgid "Set the root to the active document location"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:604
msgid "_Open terminal here"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:606
msgid "Open a terminal at the currently opened directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:742
msgid "File Browser"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:873
msgid "An error occurred while creating a new directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:876
msgid "An error occurred while creating a new file"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:881
msgid "An error occurred while renaming a file or directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:886
msgid "An error occurred while deleting a file or directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:891
msgid "An error occurred while opening a directory in the file manager"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:895
msgid "An error occurred while setting a root directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:899
msgid "An error occurred while loading a directory"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:902
msgid "An error occurred"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:1194
msgid ""
"Cannot move file to trash, do you\n"
"want to delete permanently?"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:1198
#, c-format
msgid "The file \"%s\" cannot be moved to the trash."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:1201
msgid "The selected files cannot be moved to the trash."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:1234
#, c-format
msgid "Are you sure you want to permanently delete \"%s\"?"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:1237
msgid "Are you sure you want to permanently delete the selected files?"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-plugin.c:1240
msgid "If you delete an item, it is permanently lost."
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-store.c:1667
msgid "(Empty)"
msgstr "(အလွတ်)"

#: ../plugins/filebrowser/gedit-file-browser-store.c:3305
msgid ""
"The renamed file is currently filtered out. You need to adjust your filter "
"settings to make the file visible"
msgstr ""

#. Translators: This is the default name of new files created by the file browser pane.
#: ../plugins/filebrowser/gedit-file-browser-store.c:3544
msgid "file"
msgstr "ဖိုင်"

#: ../plugins/filebrowser/gedit-file-browser-store.c:3568
msgid ""
"The new file is currently filtered out. You need to adjust your filter "
"settings to make the file visible"
msgstr ""

#. Translators: This is the default name of new directories created by the file browser pane.
#: ../plugins/filebrowser/gedit-file-browser-store.c:3597
msgid "directory"
msgstr "ဖိုင်လမ်းကြောင်း"

#: ../plugins/filebrowser/gedit-file-browser-store.c:3617
msgid ""
"The new directory is currently filtered out. You need to adjust your filter "
"settings to make the directory visible"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-widget.c:709
msgid "Bookmarks"
msgstr "မှတ်တမ်းမှတ်ရာများ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:790
msgid "_Filter"
msgstr "_F စီစစ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:795
msgid "_Move to Trash"
msgstr "_M အမှိုက်ပုံးထဲသို့ ရွှေ့"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:796
msgid "Move selected file or folder to trash"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-widget.c:798
msgid "_Delete"
msgstr "_D ဖျက်ပစ်ပါ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:799
msgid "Delete selected file or folder"
msgstr "ရွေးချယ်ထားပြီးသော ဖိုင် သို့ ဖိုလ်ဒါကို ဖျက်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:806
msgid "Open selected file"
msgstr "ရွေးထားပြီးသား ဖိုင်ကို ဖွင့်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:812
msgid "Up"
msgstr "အပေါ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:813
msgid "Open the parent folder"
msgstr "မူရင်း ဖိုလ်ဒါကိုဖွင့်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:818
msgid "_New Folder"
msgstr "_N ဖိုလ်ဒါအသစ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:819
msgid "Add new empty folder"
msgstr "ဖိုလ်ဒါအလွတ်ကို ပေါင်းထည့်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:821
msgid "New F_ile"
msgstr "_I ဖိုင်အသစ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:822
msgid "Add new empty file"
msgstr "ဖိုင် အလွတ်ကို ပေါင်းထည့်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:827
msgid "_Rename"
msgstr "_R အမည်ပြန်ပေး"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:828
msgid "Rename selected file or folder"
msgstr "ရွေးချယ်ထားသော ဖိုင် သို့ ဖိုလ်ဒါကို အမည်ပြန်ပေး"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:834
msgid "_Previous Location"
msgstr "_P နေရာအဟောင်း"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:836
msgid "Go to the previous visited location"
msgstr "ရောက်ခဲ့သော နေရာဟောင်းကို ပြန်သွား"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:838
msgid "_Next Location"
msgstr "_N နောက်ထပ် နေရာအသစ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:839
msgid "Go to the next visited location"
msgstr "နောက်ထပ် သွားမည့် နေရာကို သွား"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:840
msgid "Re_fresh View"
msgstr "_F မြင်ကွင်းကို ပြန်လည်ပြုလုပ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:841
msgid "Refresh the view"
msgstr "မြင်ကွင်းကို ပြန်လည်ပြုလုပ်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:842
#: ../plugins/filebrowser/gedit-file-browser-widget.c:860
msgid "_View Folder"
msgstr "_V ဖိုလ်ဒါကို ပြ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:843
#: ../plugins/filebrowser/gedit-file-browser-widget.c:861
msgid "View folder in file manager"
msgstr "ဖိုင် မန်နေဂျာထဲမှာ ဖိုလ်ဒါကိုပြ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:850
msgid "Show _Hidden"
msgstr "_H ဝှက်ထားတာကို ဖော်ပြ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:851
msgid "Show hidden files and folders"
msgstr "ဝှက်ထားသော ဖိုင် နှင့် ဖိုလ်ဒါများကို ဖော်ပြ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:853
msgid "Show _Binary"
msgstr "_B ဘိုင်နရီကို ဖော်ပြ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:854
msgid "Show binary files"
msgstr "ဘိုင်နရီ ဖိုင်များကို ဖော်ပြ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:986
#: ../plugins/filebrowser/gedit-file-browser-widget.c:995
#: ../plugins/filebrowser/gedit-file-browser-widget.c:1016
msgid "Previous location"
msgstr "နေရာဟောင်း"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:988
msgid "Go to previous location"
msgstr "နေရာဟောင်းကို ပြန်သွား"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:990
#: ../plugins/filebrowser/gedit-file-browser-widget.c:1011
msgid "Go to a previously opened location"
msgstr "ဖွင့်ထားခဲ့သော နေရာဟောင်းကို ပြန်သွား"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:1007
msgid "Next location"
msgstr "နောက်ထပ် နေရာ"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:1009
msgid "Go to next location"
msgstr "နောက်ထပ် နေရာကို သွား"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:1221
msgid "_Match Filename"
msgstr "_M ကိုက်ညီသော ဖိုင်နာမည်"

#: ../plugins/filebrowser/gedit-file-browser-widget.c:2123
#, c-format
msgid "No mount object for mounted volume: %s"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-widget.c:2203
#, c-format
msgid "Could not open media: %s"
msgstr ""

#: ../plugins/filebrowser/gedit-file-browser-widget.c:2250
#, c-format
msgid "Could not mount volume: %s"
msgstr ""

#. ex:ts=8:noet:
#: ../plugins/modelines/modelines.gedit-plugin.desktop.in.h:1
msgid "Emacs, Kate and Vim-style modelines support for gedit."
msgstr ""

#: ../plugins/modelines/modelines.gedit-plugin.desktop.in.h:2
msgid "Modelines"
msgstr ""

#: ../plugins/pythonconsole/pythonconsole.gedit-plugin.desktop.in.h:1
msgid "Interactive Python console standing in the bottom panel"
msgstr ""

#: ../plugins/pythonconsole/pythonconsole.gedit-plugin.desktop.in.h:2
#: ../plugins/pythonconsole/pythonconsole/__init__.py:50
msgid "Python Console"
msgstr ""

#. ex:et:ts=4:
#: ../plugins/pythonconsole/pythonconsole/config.ui.h:1
msgid "C_ommand color:"
msgstr "_O ကွန်မန့် အရောင်"

#: ../plugins/pythonconsole/pythonconsole/config.ui.h:2
msgid "_Error color:"
msgstr "_E အရောင် အမှား"

#. ex:ts=8:et:
#: ../plugins/quickopen/quickopen/popup.py:35
#: ../plugins/quickopen/quickopen.gedit-plugin.desktop.in.h:1
msgid "Quick Open"
msgstr "အမြန်ဖွင့်"

#: ../plugins/quickopen/quickopen/windowhelper.py:69
msgid "Quick open"
msgstr "အမြန်ဖွင့်"

#: ../plugins/quickopen/quickopen/windowhelper.py:70
msgid "Quickly open documents"
msgstr "စာရွက်စာတမ်းများကို အမြန်ဖွင့်"

#: ../plugins/quickopen/quickopen.gedit-plugin.desktop.in.h:2
msgid "Quickly open files"
msgstr "ဖိုင်များကို အမြန်ဖွင့်"

#: ../plugins/snippets/snippets.gedit-plugin.desktop.in.h:1
msgid "Insert often-used pieces of text in a fast way"
msgstr ""

#: ../plugins/snippets/snippets.gedit-plugin.desktop.in.h:2
#: ../plugins/snippets/snippets/Document.py:58
msgid "Snippets"
msgstr "အချက်အလက်အတိုထွာများ"

#: ../plugins/snippets/snippets/snippets.ui.h:2
msgid "Activation"
msgstr "အတည်ပြုခြင်း"

#: ../plugins/snippets/snippets/snippets.ui.h:3
msgid "Create new snippet"
msgstr "အချက်အလက်အတိုထွာများ အသစ်ဖန်တီး"

#: ../plugins/snippets/snippets/snippets.ui.h:4
#: ../plugins/snippets/snippets/Manager.py:412
msgid "Delete selected snippet"
msgstr "ရွေးထားသော အချက်အလက်အတိုထွာကို ဖျက်ပစ်"

#: ../plugins/snippets/snippets/snippets.ui.h:5
msgid "Export selected snippets"
msgstr "ရွေးထားသော အချက်အလက်အတိုထွာများကို ထုတ်လုပ်"

#: ../plugins/snippets/snippets/snippets.ui.h:6
#: ../plugins/snippets/snippets/Manager.py:800
msgid "Import snippets"
msgstr "အချက်အလက်အတိုထွာများကို ထည့်သွင်း"

#: ../plugins/snippets/snippets/snippets.ui.h:7
msgid "S_hortcut key:"
msgstr "_H အတိုချုံး ကီး"

#: ../plugins/snippets/snippets/snippets.ui.h:8
msgid "Shortcut key with which the snippet is activated"
msgstr ""

#. self['hbox_tab_trigger'].set_spacing(0)
#: ../plugins/snippets/snippets/snippets.ui.h:9
#: ../plugins/snippets/snippets/Manager.py:689
msgid "Single word the snippet is activated with after pressing Tab"
msgstr ""

#: ../plugins/snippets/snippets/snippets.ui.h:10
msgid "Snippets Manager"
msgstr "ကုဒ်မှတ်စု မန်နေဂျာ"

#: ../plugins/snippets/snippets/snippets.ui.h:11
msgid "_Drop targets:"
msgstr ""

#: ../plugins/snippets/snippets/snippets.ui.h:13
msgid "_Snippets:"
msgstr "_S ကုဒ်မှတ်စုတိုများ:"

#: ../plugins/snippets/snippets/snippets.ui.h:14
msgid "_Tab trigger:"
msgstr ""

#: ../plugins/snippets/snippets/WindowHelper.py:130
msgid "Manage _Snippets..."
msgstr ""

#: ../plugins/snippets/snippets/WindowHelper.py:131
msgid "Manage snippets"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:46
msgid "Snippets archive"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:71
msgid "Add a new snippet..."
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:121
msgid "Global"
msgstr "အထွေထွေ"

#: ../plugins/snippets/snippets/Manager.py:409
msgid "Revert selected snippet"
msgstr ""

#. self['hbox_tab_trigger'].set_spacing(3)
#: ../plugins/snippets/snippets/Manager.py:682
msgid ""
"This is not a valid Tab trigger. Triggers can either contain letters or a "
"single (non-alphanumeric) character like: {, [, etc."
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:779
#, python-format
msgid "The following error occurred while importing: %s"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:786
msgid "Import successfully completed"
msgstr "အောင်မြင်စွာ ထည့်သွင်းပြီးပြီ"

#: ../plugins/snippets/snippets/Manager.py:805
#: ../plugins/snippets/snippets/Manager.py:891
#: ../plugins/snippets/snippets/Manager.py:954
msgid "All supported archives"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:806
#: ../plugins/snippets/snippets/Manager.py:892
#: ../plugins/snippets/snippets/Manager.py:955
msgid "Gzip compressed archive"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:807
#: ../plugins/snippets/snippets/Manager.py:893
#: ../plugins/snippets/snippets/Manager.py:956
msgid "Bzip2 compressed archive"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:808
msgid "Single snippets file"
msgstr "ကုဒ်မှတ်စု ဖိုင်တစ်ဖိုင်"

#: ../plugins/snippets/snippets/Manager.py:809
#: ../plugins/snippets/snippets/Manager.py:895
#: ../plugins/snippets/snippets/Manager.py:958
msgid "All files"
msgstr "ဖိုင်တွေအားလုံး"

#: ../plugins/snippets/snippets/Manager.py:821
#, python-format
msgid "The following error occurred while exporting: %s"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:825
msgid "Export successfully completed"
msgstr "အောင်မြင်စွာ ထုတ်ပြီးပြီ"

#. Ask if system snippets should also be exported
#: ../plugins/snippets/snippets/Manager.py:865
#: ../plugins/snippets/snippets/Manager.py:932
msgid "Do you want to include selected <b>system</b> snippets in your export?"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:880
#: ../plugins/snippets/snippets/Manager.py:950
msgid "There are no snippets selected to be exported"
msgstr ""

#: ../plugins/snippets/snippets/Manager.py:885
#: ../plugins/snippets/snippets/Manager.py:923
msgid "Export snippets"
msgstr "ကုဒ်မှတ်စုကို ထုတ်"

#: ../plugins/snippets/snippets/Manager.py:1062
msgid "Type a new shortcut, or press Backspace to clear"
msgstr "shortcut အသစ်ရိုက်ပါ၊ သို့ ရှင်းလင်းရန် Backspace ကို နှိပ်ပါ"

#: ../plugins/snippets/snippets/Manager.py:1064
msgid "Type a new shortcut"
msgstr "shortcut အသစ်ရိုက်ပါ"

#: ../plugins/snippets/snippets/Exporter.py:65
#, python-format
msgid "The archive \"%s\" could not be created"
msgstr "ဖိုင်ထုပ် \"%s\" ကို ဖန်တီးလို့ မရနိုင်ပါ"

#: ../plugins/snippets/snippets/Exporter.py:82
#, python-format
msgid "Target directory \"%s\" does not exist"
msgstr "ရည်ညွှန်းရာ ဖိုင်လမ်းကြောင်း \"%s\" မရှိပါ"

#: ../plugins/snippets/snippets/Exporter.py:85
#, python-format
msgid "Target directory \"%s\" is not a valid directory"
msgstr "ရည်ညွှန်းရာ ဖိုင်လမ်းကြောင်း \"%s\" မရှိပါ"

#: ../plugins/snippets/snippets/Importer.py:29
#: ../plugins/snippets/snippets/Importer.py:83
#, python-format
msgid "File \"%s\" does not exist"
msgstr "ဖိုင် \"%s\" မရှိပါ"

#: ../plugins/snippets/snippets/Importer.py:32
#, python-format
msgid "File \"%s\" is not a valid snippets file"
msgstr "ဤဖိုင် \"%s\"သည် အကျုံးဝင်သော အတိုထွာဖိုင် မဟုတ်ပါ"

#: ../plugins/snippets/snippets/Importer.py:42
#, python-format
msgid "Imported file \"%s\" is not a valid snippets file"
msgstr "သွင်းလိုက်သော ဖိုင် \"%s\" သည် အကျုံးဝင်သော ကုဒ်မှတ်စုဖိုင် မဟုတ်ပါ"

#: ../plugins/snippets/snippets/Importer.py:52
#, python-format
msgid "The archive \"%s\" could not be extracted"
msgstr "ဤအချက်အလက်အစုဝေး \"%s\" အား ဖြန့်မထုတ်နိုင်ပါ"

#: ../plugins/snippets/snippets/Importer.py:70
#, python-format
msgid "The following files could not be imported: %s"
msgstr "အောက်ပါဖိုင်များကို ထည့်သွင်း၍ မရနိုင်ပါ: %s"

#: ../plugins/snippets/snippets/Importer.py:86
#: ../plugins/snippets/snippets/Importer.py:99
#, python-format
msgid "File \"%s\" is not a valid snippets archive"
msgstr "ဤဖိုင် \"%s\" သည် အတိုချုံး အချက်အလက်အစုဝေး အဖြစ် အကျုံးမဝင်ပါ "

#: ../plugins/snippets/snippets/Placeholder.py:594
#, python-format
msgid ""
"Execution of the Python command (%s) exceeds the maximum time, execution "
"aborted."
msgstr ""

#: ../plugins/snippets/snippets/Placeholder.py:602
#, python-format
msgid "Execution of the Python command (%s) failed: %s"
msgstr "Python command (%s) လုပ်ဆောင်မှု မအောင်မြင်ပါ: %s"

#: ../plugins/sort/gedit-sort-plugin.c:88
msgid "S_ort..."
msgstr "_O စီပါ..."

#: ../plugins/sort/gedit-sort-plugin.c:90
msgid "Sort the current document or selection"
msgstr "လက်ရှိ စာရွက်စာတမ်း သို့မဟုတ် ရွေးချယ်ထားတာကို စီပါ"

#: ../plugins/sort/sort.gedit-plugin.desktop.in.h:1
#: ../plugins/sort/sort.ui.h:3
msgid "Sort"
msgstr "စီပါ"

#: ../plugins/sort/sort.gedit-plugin.desktop.in.h:2
msgid "Sorts a document or selected text."
msgstr "စာရွက်စာတမ်း သို့မဟုတ် ရွေးချယ်ထားတဲ့ စာသားကို စီပါ"

#: ../plugins/sort/sort.ui.h:1
msgid "R_emove duplicates"
msgstr "_E ထပ်နေတာတွေ ဖယ်ထုတ်"

#: ../plugins/sort/sort.ui.h:2
msgid "S_tart at column:"
msgstr "_T ကော်လံမှ စ"

#: ../plugins/sort/sort.ui.h:4
msgid "You cannot undo a sort operation"
msgstr "စီထားသော လုပ်ဆောင်မှုကို နောက်ပြန်လုပ်၍ မရတော့ပါ"

#: ../plugins/sort/sort.ui.h:5
msgid "_Ignore case"
msgstr "_I အကြီးသေး လစ်လျူရှု"

#: ../plugins/sort/sort.ui.h:6
msgid "_Reverse order"
msgstr "_R ပြောင်းပြန် အစီအစဉ်"

#: ../plugins/sort/sort.ui.h:7
msgid "_Sort"
msgstr "_S _စီပါ"

#. Translators: Displayed in the "Check Spelling" dialog if there are no suggestions for the current misspelled word
#. Translators: Displayed in the "Check Spelling" dialog if there are no suggestions
#. * for the current misspelled word
#: ../plugins/spell/gedit-automatic-spell-checker.c:420
#: ../plugins/spell/gedit-spell-checker-dialog.c:455
msgid "(no suggested words)"
msgstr "(အကြံပြုချက်စာလုံးမရှိ)"

#: ../plugins/spell/gedit-automatic-spell-checker.c:444
msgid "_More..."
msgstr "_M ထပ်ပြီး. . ."

#. Ignore all
#: ../plugins/spell/gedit-automatic-spell-checker.c:499
msgid "_Ignore All"
msgstr "_I အားလုံး လစ်လျူရှု"

#. + Add to Dictionary
#: ../plugins/spell/gedit-automatic-spell-checker.c:514
msgid "_Add"
msgstr "_A ပေါင်းထည့်ရန်"

#: ../plugins/spell/gedit-automatic-spell-checker.c:553
msgid "_Spelling Suggestions..."
msgstr "_S စာလုံးပေါင်း အကြံပြုချက်များ. . ."

#: ../plugins/spell/gedit-spell-checker-dialog.c:270
msgid "Check Spelling"
msgstr "စာလုံးပေါင်းစစ်"

#: ../plugins/spell/gedit-spell-checker-dialog.c:281
msgid "Suggestions"
msgstr "အကြံပြုချက်များ"

#. Translators: Displayed in the "Check Spelling" dialog if the current word isn't misspelled
#: ../plugins/spell/gedit-spell-checker-dialog.c:562
msgid "(correct spelling)"
msgstr "(စာလုံးပေါင်းအမှန်ပြင်)"

#: ../plugins/spell/gedit-spell-checker-dialog.c:705
msgid "Completed spell checking"
msgstr "စာလုံးပေါင်း စစ်ပြီးပြီ"

#. Translators: the first %s is the language name, and
#. * the second %s is the locale name. Example:
#. * "French (France)"
#.
#: ../plugins/spell/gedit-spell-checker-language.c:285
#: ../plugins/spell/gedit-spell-checker-language.c:291
#, c-format
msgctxt "language"
msgid "%s (%s)"
msgstr "%s (%s)"

#. Translators: this refers to an unknown language code
#. * (one which isn't in our built-in list).
#.
#: ../plugins/spell/gedit-spell-checker-language.c:300
#, c-format
msgctxt "language"
msgid "Unknown (%s)"
msgstr "မသိ(%s)"

#. Translators: this refers the Default language used by the
#. * spell checker
#.
#: ../plugins/spell/gedit-spell-checker-language.c:406
msgctxt "language"
msgid "Default"
msgstr "မူရင်းအတိုင်း"

#: ../plugins/spell/gedit-spell-language-dialog.c:141
#: ../plugins/spell/languages-dialog.ui.h:2
msgid "Set language"
msgstr "ဘာသာစကား ပြင်ဆင်"

#: ../plugins/spell/gedit-spell-language-dialog.c:196
msgid "Languages"
msgstr "ဘာသာစကားများ"

#: ../plugins/spell/gedit-spell-plugin.c:86
msgid "_Check Spelling..."
msgstr "_C စာလုံးပေါင်းစစ်"

#: ../plugins/spell/gedit-spell-plugin.c:88
msgid "Check the current document for incorrect spelling"
msgstr "လက်ရှိစာရွက်စာတမ်းရှိ စာလုံးပေါင်းအမှားတွေကို စစ်ဆေး"

#: ../plugins/spell/gedit-spell-plugin.c:94
msgid "Set _Language..."
msgstr "_L ဘာသာစကားရွေး"

#: ../plugins/spell/gedit-spell-plugin.c:96
msgid "Set the language of the current document"
msgstr "လက်ရှိ စာရွက်စာတမ်း၏ ဘာသာစကားကိုရွေး"

#: ../plugins/spell/gedit-spell-plugin.c:105
msgid "_Autocheck Spelling"
msgstr "_A အလိုအလျောက် စာလုံးပေါင်းစစ်"

#: ../plugins/spell/gedit-spell-plugin.c:107
msgid "Automatically spell-check the current document"
msgstr "လက်ရှိ စာရွက်စာတမ်းအား အလိုအလျောက် စာလုံးပေါင်းစစ်"

#: ../plugins/spell/gedit-spell-plugin.c:752
msgid "The document is empty."
msgstr "စာရွက်စာတမ်း အလွတ်ဖြစ်ပါတယ်"

#: ../plugins/spell/gedit-spell-plugin.c:782
msgid "No misspelled words"
msgstr "စာလုံးပေါင်းမှားနေတယ်"

#: ../plugins/spell/languages-dialog.ui.h:1
msgid "Select the _language of the current document."
msgstr "_L လက်ရှိ စာရွက်စာတမ်း၏ ဘာသာစကားကိုရွေးပါ"

#: ../plugins/spell/spell-checker.ui.h:1
msgid "Add w_ord"
msgstr "_O စာလုံးပေါင်းထည့်"

#: ../plugins/spell/spell-checker.ui.h:2
msgid "Cha_nge"
msgstr "_N ပြောင်း_n"

#: ../plugins/spell/spell-checker.ui.h:3
msgid "Change A_ll"
msgstr "_L အားလုံးပြောင်း"

#: ../plugins/spell/spell-checker.ui.h:4
msgid "Change _to:"
msgstr "_T သို့ ပြောင်း:"

#: ../plugins/spell/spell-checker.ui.h:5
msgid "Check _Word"
msgstr "_W စာလုံးကို စစ်ဆေး"

#: ../plugins/spell/spell-checker.ui.h:6
msgid "Check spelling"
msgstr "စာလုံးပေါင်းစစ်"

#: ../plugins/spell/spell-checker.ui.h:7
msgid "Ignore _All"
msgstr "_A အားလုံး ဒီတိုင်းထား"

#: ../plugins/spell/spell-checker.ui.h:8
msgid "Language"
msgstr "ဘာသာစကား"

#: ../plugins/spell/spell-checker.ui.h:9
msgid "Language:"
msgstr "ဘာသာစကား:"

#: ../plugins/spell/spell-checker.ui.h:10
msgid "Misspelled word:"
msgstr "စကားလုံး အမှား:"

#: ../plugins/spell/spell-checker.ui.h:11
msgid "User dictionary:"
msgstr "အသုံးပြုသူ အဘိဓာန်:"

#: ../plugins/spell/spell-checker.ui.h:12
msgid "_Ignore"
msgstr "_I လစ်လျူရှု"

#: ../plugins/spell/spell-checker.ui.h:13
msgid "_Suggestions:"
msgstr "_S အကြံပြုချက်များ:"

#: ../plugins/spell/spell-checker.ui.h:14
msgid "word"
msgstr "စကားလုံး"

#: ../plugins/spell/spell.gedit-plugin.desktop.in.h:1
msgid "Checks the spelling of the current document."
msgstr "လက်ရှိ စာရွက်စာတမ်း၏ စာလုံးပေါင်းကို စစ်ဆေး"

#: ../plugins/spell/spell.gedit-plugin.desktop.in.h:2
msgid "Spell Checker"
msgstr "စာလုံးပေါင်း စစ်ဆေးသည့် အရာ"

#: ../plugins/taglist/gedit-taglist-plugin.c:98
#: ../plugins/taglist/gedit-taglist-plugin-panel.c:694
#: ../plugins/taglist/gedit-taglist-plugin-panel.c:710
msgid "Tags"
msgstr ""

#: ../plugins/taglist/gedit-taglist-plugin-panel.c:605
msgid "Select the group of tags you want to use"
msgstr ""

#: ../plugins/taglist/gedit-taglist-plugin-panel.c:624
msgid "_Preview"
msgstr "_P ကြိုတင်ကြည့်ရှု"

#: ../plugins/taglist/gedit-taglist-plugin-panel.c:691
msgid "Available Tag Lists"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:1
msgid "Abbreviated form"
msgstr "အတိုချုံးပုံစံ"

#: ../plugins/taglist/HTML.tags.xml.in.h:2
msgid "Abbreviation"
msgstr "အတိုချုံး"

#: ../plugins/taglist/HTML.tags.xml.in.h:3
msgid "Above"
msgstr "အပေါ်ဘက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:4
msgid "Accessibility key character"
msgstr "အသုံးပြုနိုင်သော ကီးအက္ခရာများ"

#: ../plugins/taglist/HTML.tags.xml.in.h:5
msgid "Acronym"
msgstr "အတိုကောက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:6
msgid "Align"
msgstr "ညှိ"

#: ../plugins/taglist/HTML.tags.xml.in.h:7
msgid "Alignment character"
msgstr "အက္ခရာ ညှိ"

#: ../plugins/taglist/HTML.tags.xml.in.h:8
msgid "Alternative"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:9
msgid "Anchor"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:10
msgid "Anchor URI"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:11
msgid "Applet class file code"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:13
msgid "Applet class file code (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:14
msgid "Array"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:15
msgid "Associated information"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:16
msgid "Author info"
msgstr "စာရေးသူ၏ သတင်းအချက်အလက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:17
msgid "Axis related headers"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:18
msgid "Background color"
msgstr "နောက်ခံအရောင်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:20
msgid "Background color (deprecated)"
msgstr "နောက်ခံ အရောင်"

#: ../plugins/taglist/HTML.tags.xml.in.h:21
msgid "Background texture tile"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:23
msgid "Background texture tile (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:24
msgid "Base URI"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:25
msgid "Base font"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:27
msgid "Base font (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:28
msgid "Bold"
msgstr "စာလုံးထူ"

#: ../plugins/taglist/HTML.tags.xml.in.h:29
msgid "Border"
msgstr "အနားသတ်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:31
msgid "Border (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:32
msgid "Border color"
msgstr "အနားသတ် အရောင်"

#: ../plugins/taglist/HTML.tags.xml.in.h:33
msgid "Cell rowspan"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:34
msgid "Center"
msgstr "အလယ်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:36
msgid "Center (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:37
msgid "Character encoding of linked resource"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:38
msgid "Checked (state)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:39
msgid "Checked state"
msgstr "စစ်ဆေးပြီး အခြေအနေ"

#: ../plugins/taglist/HTML.tags.xml.in.h:40
msgid "Citation"
msgstr "ရည်ညွှန်းကိုးကားချက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:41
msgid "Cite reason for change"
msgstr "ပြောင်းလဲမှုအတွက် ရည်ညွှန်းကိုးကား အကြောင်းပြချက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:42
msgid "Class implementation ID"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:43
msgid "Class list"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:44
msgid "Clear text flow control"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:45
msgid "Code content type"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:46
msgid "Color of selected links"
msgstr "ရွေးထားသော လင့်ခ်၏ အရောင်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:48
msgid "Color of selected links (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:49
msgid "Column span"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:50
msgid "Columns"
msgstr "ကော်လံများ"

#: ../plugins/taglist/HTML.tags.xml.in.h:51
msgid "Comment"
msgstr "မှတ်ချက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:52
msgid "Computer code fragment"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:53
msgid "Content scheme"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:54
msgid "Content type"
msgstr ""

#. The "type" attribute is deprecated for the "ol" tag only,
#. since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:57
msgid "Content type (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:58
msgid "Coordinates"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:59
msgid "DIV Style container"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:60
msgid "DIV container"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:61
msgid "Date and time of change"
msgstr ""

#. NOTE: used in "object" tag
#: ../plugins/taglist/HTML.tags.xml.in.h:63
msgid "Declare flag"
msgstr ""

#. Translators: DEFER is an optional attribute of the <script> tag.
#. It indicates that the script is not going to generate any document
#. content. The browser can continue parsing and drawing the page.
#: ../plugins/taglist/HTML.tags.xml.in.h:67
msgid "Defer attribute"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:68
msgid "Definition description"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:69
msgid "Definition list"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:70
msgid "Definition term"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:71
msgid "Deleted text"
msgstr "ဖျက်ပြီးသား စာသား"

#: ../plugins/taglist/HTML.tags.xml.in.h:72
msgid "Direction"
msgstr "ဉီးတည်ရာ"

#: ../plugins/taglist/HTML.tags.xml.in.h:73
msgid "Directionality"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:75
msgid "Directionality (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:76
msgid "Directory list"
msgstr "ဖိုင်လမ်းကြောင်း စာရင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:77
msgid "Disabled"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:78
msgid "Document base"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:79
msgid "Document body"
msgstr "စာရွက်စာတမ်း ကိုယ်ထည်"

#: ../plugins/taglist/HTML.tags.xml.in.h:80
msgid "Document head"
msgstr "စာရွက်စာတမ်း ခေါင်းကြီးပိုင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:81
msgid "Document title"
msgstr "စာရွက်စာတမ်း ခေါင်းစဉ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:82
msgid "Document type"
msgstr "စာရွက်စာတမ်း အမျိုးအစား"

#: ../plugins/taglist/HTML.tags.xml.in.h:83
msgid "Element ID"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:84
msgid "Embedded object"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:85
#: ../plugins/taglist/Latex.tags.xml.in.h:9
msgid "Emphasis"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:86
msgid "Encode type"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:87
msgid "Figure"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:88
msgid "Font face"
msgstr "ဖောင့်ပုံစံ"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:90
msgid "Font face (deprecated)"
msgstr "ဖောင့်ပုံစံ"

#: ../plugins/taglist/HTML.tags.xml.in.h:91
msgid "For label"
msgstr "အမည်တပ်ခြင်း အတွက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:92
msgid "Forced line break"
msgstr "လိုင်းခြားနားခြင်း မဖြစ်မနေလုပ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:93
msgid "Form"
msgstr "ဖောင်"

#: ../plugins/taglist/HTML.tags.xml.in.h:94
msgid "Form action handler"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:95
msgid "Form control group"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:96
msgid "Form field label text"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:97
msgid "Form input"
msgstr "ဖောင်အသွင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:98
msgid "Form input type"
msgstr "ဖောင် အသွင်းပုံစံ"

#: ../plugins/taglist/HTML.tags.xml.in.h:99
msgid "Form method"
msgstr "ဖောင် နည်းလမ်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:100
msgid "Forward link"
msgstr "ရှေ့သို့သွားမည့် လင့်ခ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:101
msgid "Frame"
msgstr "ဘောင်"

#: ../plugins/taglist/HTML.tags.xml.in.h:102
msgid "Frame border"
msgstr "ဘောင် အနားသတ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:103
msgid "Frame render parts"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:104
msgid "Frame source"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:105
msgid "Frame spacing"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:106
msgid "Frame target"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:107
msgid "Frameborder"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:108
msgid "Frameset"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:109
msgid "Frameset columns"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:110
msgid "Frameset rows"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:111
msgid "Framespacing"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:112
msgid "Generic embedded object"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:113
msgid "Generic metainformation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:114
msgid "Generic span"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:115
msgid "HREF URI"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:116
msgid "HTML - Special Characters"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:117
msgid "HTML - Tags"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:118
msgid "HTML root element"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:119
msgid "HTML version"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:120
msgid "HTTP header name"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:121
msgid "Header cell IDs"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:122
msgid "Heading"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:123
msgid "Heading 1"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:124
msgid "Heading 2"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:125
msgid "Heading 3"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:126
msgid "Heading 4"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:127
msgid "Heading 5"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:128
msgid "Heading 6"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:129
msgid "Height"
msgstr "အမြင့်"

#: ../plugins/taglist/HTML.tags.xml.in.h:130
msgid "Horizontal rule"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:131
msgid "Horizontal space"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:133
msgid "Horizontal space (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:134
msgid "I18N BiDi override"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:135
msgid "Image"
msgstr "ပုံရိပ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:136
msgid "Image map"
msgstr "ပုံရိပ်မြေပုံ"

#: ../plugins/taglist/HTML.tags.xml.in.h:137
msgid "Image map area"
msgstr "ပုံရိပ်မြေပုံ ဧရိယာ"

#: ../plugins/taglist/HTML.tags.xml.in.h:138
msgid "Image map name"
msgstr "ပုံရိပ် မြေပုံ အမည်"

#: ../plugins/taglist/HTML.tags.xml.in.h:139
msgid "Image source"
msgstr "ပုံရိပ် အရင်းမြစ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:140
msgid "Inline frame"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:141
msgid "Inline layer"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:142
msgid "Inserted text"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:143
msgid "Instance definition"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:144
msgid "Italic text"
msgstr "စာလုံး အစောင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:145
msgid "Java applet"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:147
msgid "Java applet (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:148
msgid "Label"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:149
msgid "Language code"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:150
msgid "Large text style"
msgstr "စာလုံးစတိုင် အကြီး"

#: ../plugins/taglist/HTML.tags.xml.in.h:151
msgid "Layer"
msgstr "အလွှာ"

#: ../plugins/taglist/HTML.tags.xml.in.h:152
msgid "Link color"
msgstr "လင့်ခ် အရောင်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:154
msgid "Link color (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:155
msgid "List item"
msgstr "စာရင်းအချက်အလက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:156
msgid "List of MIME types for file upload"
msgstr "ဖိုင်တင်ရန် MIME အမျိုးစားများ စာရင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:157
msgid "List of supported character sets"
msgstr "လက်ခံသော အက္ခရာအစုဝေး စာရင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:158
msgid "Listing"
msgstr "စာရင်းပြုခြင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:159
msgid "Local change to font"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:160
msgid "Long description link"
msgstr "ဖော်ပြချက်ရှည်လျားသော လင့်ခ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:161
msgid "Long quotation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:162
msgid "Mail link"
msgstr "မေးလ် လင့်ခ်"

#. Supported in XHTML 1.0 Frameset DTD only.
#: ../plugins/taglist/HTML.tags.xml.in.h:164
msgid "Margin pixel height"
msgstr ""

#. Supported in XHTML 1.0 Frameset DTD only.
#: ../plugins/taglist/HTML.tags.xml.in.h:166
msgid "Margin pixel width"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:167
msgid "Marquee"
msgstr "ရွေ့လျားလှုပ်ရှား"

#: ../plugins/taglist/HTML.tags.xml.in.h:168
msgid "Maximum length of text field"
msgstr "စာသားနေရာ၏ အမြင့်ဆုံး အရှည်"

#. Here I take some liberties: There's no mandatory attributes,
#. but those are most common, and will likely be used.
#: ../plugins/taglist/HTML.tags.xml.in.h:171
msgid "Media-independent link"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:172
msgid "Menu list"
msgstr "မီနျူး စာရင်း"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:174
msgid "Menu list (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:175
msgid "Multi-line text field"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:176
msgid "Multicolumn"
msgstr "ကော်လံစုံ"

#: ../plugins/taglist/HTML.tags.xml.in.h:177
msgid "Multiple"
msgstr "အမျိုးမျိုး"

#: ../plugins/taglist/HTML.tags.xml.in.h:178
msgid "Name"
msgstr "အမည်"

#: ../plugins/taglist/HTML.tags.xml.in.h:179
msgid "Named property value"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:180
msgid "Next ID"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:181
msgid "No URI"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:182
msgid "No embedded objects"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:183
msgid "No frames"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:184
msgid "No layers"
msgstr "အလွှာများ မရှိ"

#: ../plugins/taglist/HTML.tags.xml.in.h:185
msgid "No line break"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:186
msgid "No resize"
msgstr "ဆိုက်ဒ်ပြန်ပြောင်းခြင်း မရှိ"

#: ../plugins/taglist/HTML.tags.xml.in.h:187
msgid "No script"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:188
msgid "No shade"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:190
msgid "No shade (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:191
msgid "No word wrap"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:193
msgid "No word wrap (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:194
msgid "Non-breaking space"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:195
msgid "Note"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:196
msgid "Object applet file"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:198
msgid "Object applet file (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:199
msgid "Object data reference"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:200
msgid "Offset for alignment character"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:201
msgid "OnBlur event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:202
msgid "OnChange event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:203
msgid "OnClick event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:204
msgid "OnDblClick event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:205
msgid "OnFocus event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:206
msgid "OnKeyDown event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:207
msgid "OnKeyPress event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:208
msgid "OnKeyUp event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:209
msgid "OnLoad event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:210
msgid "OnMouseDown event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:211
msgid "OnMouseMove event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:212
msgid "OnMouseOut event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:213
msgid "OnMouseOver event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:214
msgid "OnMouseUp event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:215
msgid "OnReset event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:216
msgid "OnSelect event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:217
msgid "OnSubmit event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:218
msgid "OnUnload event"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:219
msgid "Option group"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:220
msgid "Option selector"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:221
msgid "Ordered list"
msgstr "အစီအစဉ်တကျ စာရင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:222
msgid "Output media"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:223
msgid "Paragraph"
msgstr "စာပိုဒ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:224
msgid "Paragraph class"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:225
msgid "Paragraph style"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:226
msgid "Preformatted listing"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:227
msgid "Preformatted text"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:228
msgid "Profile metainfo dictionary"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:229
msgid "Prompt message"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:230
msgid "Push button"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:231
msgid "Quote"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:232
msgid "Range"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:233
msgid "ReadOnly text and password"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:234
msgid "Reduced spacing"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:236
msgid "Reduced spacing (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:237
msgid "Reverse link"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:238
msgid "Root"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:239
msgid "Rows"
msgstr "အတန်းများ"

#: ../plugins/taglist/HTML.tags.xml.in.h:240
msgid "Rulings between rows and columns"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:241
msgid "Sample program output, scripts"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:242
msgid "Scope covered by header cells"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:244
msgid "Script language name"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:245
msgid "Script statements"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:246
msgid "Scrollbar"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:247
msgid "Selectable option"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:248
msgid "Selected"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:249
msgid "Server-side image map"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:250
msgid "Shape"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:251
msgid "Short inline quotation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:252
msgid "Single line prompt"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:253
msgid "Size"
msgstr "ဆိုက်ဒ်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:255
msgid "Size (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:256
msgid "Small text style"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:257
msgid "Soft line break"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:258
msgid "Sound"
msgstr "အသံ"

#: ../plugins/taglist/HTML.tags.xml.in.h:259
msgid "Source"
msgstr "အရင်းမြစ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:260
msgid "Space-separated archive list"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:261
msgid "Spacer"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:262
msgid "Spacing between cells"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:263
msgid "Spacing within cells"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:264
msgid "Span"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:265
msgid "Square root"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:266
msgid "Standby load message"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:267
msgid "Starting sequence number"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:269
msgid "Starting sequence number (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:270
msgid "Strike-through text"
msgstr "စာလုံးပေါ်ရှိ ကန့်လန့်ဖြတ် မျဉ်း"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:272
msgid "Strike-through text (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:273
msgid "Strike-through text style"
msgstr "စာသား ကန့်လန့်ဖြတ် မျဉ်း"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:275
msgid "Strike-through text style (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:276
msgid "Strong emphasis"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:277
msgid "Style info"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:278
msgid "Subscript"
msgstr "အောက်ခြေစာလုံးသေး"

#: ../plugins/taglist/HTML.tags.xml.in.h:279
msgid "Superscript"
msgstr "အပေါ်ဘက် စာလုံးသေး"

#: ../plugins/taglist/HTML.tags.xml.in.h:280
msgid "Tab order position"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:281
msgid "Table"
msgstr "ဇယားကွက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:282
msgid "Table body"
msgstr "ဇယားကွက် ကိုယ်ထည်"

#: ../plugins/taglist/HTML.tags.xml.in.h:283
msgid "Table caption"
msgstr "ဇယားကွက် ခေါင်းစဉ်ကြီး"

#: ../plugins/taglist/HTML.tags.xml.in.h:284
msgid "Table column group properties"
msgstr "ဇယားကွက် ကော်လံအုပ်စု၏ ဂုဏ်သတ္တိ"

#: ../plugins/taglist/HTML.tags.xml.in.h:285
msgid "Table column properties"
msgstr "ဇယားကွက် ကော်လံ၏ ဂုဏ်သတ္တိ"

#: ../plugins/taglist/HTML.tags.xml.in.h:286
msgid "Table data cell"
msgstr "ဇယားကွက် အချက်အလက် ဆဲလ်အကွက်"

#: ../plugins/taglist/HTML.tags.xml.in.h:287
msgid "Table footer"
msgstr "ဇယားကွက် အောက်ခြေ"

#: ../plugins/taglist/HTML.tags.xml.in.h:288
msgid "Table header"
msgstr "ဇယားကွက် ခေါင်းစဉ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:289
msgid "Table header cell"
msgstr "ဇယားကွက် ဆဲလ်အကွက်၏ ခေါင်းစဉ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:290
msgid "Table row"
msgstr "ဇယားကွက် အတန်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:291
msgid "Table summary"
msgstr "ဇယားကွက် အကျဉ်းချုပ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:292
msgid "Target - Blank"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:293
msgid "Target - Parent"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:294
msgid "Target - Self"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:295
msgid "Target - Top"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:296
msgid "Teletype or monospace text style"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:297
msgid "Text"
msgstr "စာသား"

#: ../plugins/taglist/HTML.tags.xml.in.h:298
msgid "Text color"
msgstr "စာသား အရောင်"

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:300
msgid "Text color (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:301
msgid "Text entered by user"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:302
msgid "Title"
msgstr "ခေါင်းကြီး"

#: ../plugins/taglist/HTML.tags.xml.in.h:303
msgid "Top margin in pixels"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:304
msgid "URL"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:305
msgid "Underlined text style"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:306
msgid "Unordered list"
msgstr "အစီစဉ်တကျ မဟုတ်သော စာရင်း"

#: ../plugins/taglist/HTML.tags.xml.in.h:307
msgid "Use image map"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:308
msgid "Value"
msgstr "တန်ဖိုး"

#: ../plugins/taglist/HTML.tags.xml.in.h:309
msgid "Value interpretation"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:310
msgid "Variable or program argument"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:311
msgid "Vertical cell alignment"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:312
msgid "Vertical space"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:314
msgid "Vertical space (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:315
msgid "Visited link color"
msgstr ""

#. Deprecated since HTML 4.01, not supported in XHTML 1.0 Strict DTD.
#: ../plugins/taglist/HTML.tags.xml.in.h:317
msgid "Visited link color (deprecated)"
msgstr ""

#: ../plugins/taglist/HTML.tags.xml.in.h:318
msgid "Width"
msgstr "အကျယ်"

#: ../plugins/taglist/HTML.tags.xml.in.h:319
msgid "XHTML 1.0 - Tags"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:1
msgid "Bibliography (cite)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:2
msgid "Bibliography (item)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:3
msgid "Bibliography (shortcite)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:4
msgid "Bibliography (thebibliography)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:5
msgid "Brackets ()"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:6
msgid "Brackets <>"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:7
msgid "Brackets []"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:8
msgid "Brackets {}"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:10
msgid "File input"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:11
msgid "Footnote"
msgstr "အောက်ခြေမှတ်စု"

#: ../plugins/taglist/Latex.tags.xml.in.h:12
msgid "Function cosine"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:13
msgid "Function e^"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:14
msgid "Function exp"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:15
msgid "Function log"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:16
msgid "Function log10"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:17
msgid "Function sine"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:18
msgid "Greek alpha"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:19
msgid "Greek beta"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:20
msgid "Greek epsilon"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:21
msgid "Greek gamma"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:22
msgid "Greek lambda"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:23
msgid "Greek rho"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:24
msgid "Greek tau"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:25
msgid "Header 0 (chapter)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:26
msgid "Header 0 (chapter*)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:27
msgid "Header 1 (section)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:28
msgid "Header 1 (section*)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:29
msgid "Header 2 (subsection)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:30
msgid "Header 2 (subsection*)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:31
msgid "Header 3 (subsubsection)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:32
msgid "Header 3 (subsubsection*)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:33
msgid "Header 4 (paragraph)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:34
msgid "Header appendix"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:35
msgid "Item"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:36
msgid "Item with label"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:37
msgid "Latex - Tags"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:38
msgid "List description"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:39
msgid "List enumerate"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:40
msgid "List itemize"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:41
msgid "Maths (display)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:42
msgid "Maths (inline)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:43
msgid "Operator fraction"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:44
msgid "Operator integral (display)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:45
msgid "Operator integral (inline)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:46
msgid "Operator sum (display)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:47
msgid "Operator sum (inline)"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:48
msgid "Reference label"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:49
msgid "Reference ref"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:50
msgid "Symbol <<"
msgstr "သကေင်္တ <<"

#: ../plugins/taglist/Latex.tags.xml.in.h:51
msgid "Symbol <="
msgstr "သကေင်္တ <="

#: ../plugins/taglist/Latex.tags.xml.in.h:52
msgid "Symbol >="
msgstr "သကေင်္တ >="

#: ../plugins/taglist/Latex.tags.xml.in.h:53
msgid "Symbol >>"
msgstr "သကေင်္တ >>"

#: ../plugins/taglist/Latex.tags.xml.in.h:54
msgid "Symbol and"
msgstr "သကေင်္တ နှင့်"

#: ../plugins/taglist/Latex.tags.xml.in.h:55
msgid "Symbol const"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:56
msgid "Symbol d-by-dt"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:57
msgid "Symbol d-by-dt-partial"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:58
msgid "Symbol d2-by-dt2-partial"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:59
msgid "Symbol dagger"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:60
msgid "Symbol em-dash ---"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:61
msgid "Symbol en-dash --"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:62
msgid "Symbol equiv"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:63
msgid "Symbol infinity"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:64
msgid "Symbol mathspace ,"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:65
msgid "Symbol mathspace ."
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:66
msgid "Symbol mathspace _"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:67
msgid "Symbol mathspace __"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:68
msgid "Symbol simeq"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:69
msgid "Symbol star"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:70
msgid "Typeface bold"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:71
msgid "Typeface italic"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:72
msgid "Typeface slanted"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:73
msgid "Typeface type"
msgstr ""

#: ../plugins/taglist/Latex.tags.xml.in.h:74
msgid "Unbreakable text"
msgstr ""

#: ../plugins/taglist/taglist.gedit-plugin.desktop.in.h:1
msgid ""
"Provides a method to easily insert commonly used tags/strings into a "
"document without having to type them."
msgstr ""

#: ../plugins/taglist/taglist.gedit-plugin.desktop.in.h:2
msgid "Tag list"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:1
msgid "XSLT - Axes"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:2
msgid "XSLT - Elements"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:3
msgid "XSLT - Functions"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:4
msgid "ancestor"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:5
msgid "ancestor-or-self"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:6
msgid "attribute"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:7
msgid "child"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:8
msgid "descendant"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:9
msgid "descendant-or-self"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:10
msgid "following"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:11
msgid "following-sibling"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:12
msgid "namespace"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:13
msgid "parent"
msgstr "နဂိုမူရင်း"

#: ../plugins/taglist/XSLT.tags.xml.in.h:14
msgid "preceding"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:15
msgid "preceding-sibling"
msgstr ""

#: ../plugins/taglist/XSLT.tags.xml.in.h:16
msgid "self"
msgstr "ကိုယ်တိုင်"

#: ../plugins/taglist/XUL.tags.xml.in.h:1
msgid "XUL - Tags"
msgstr ""

#: ../plugins/time/gedit-time-plugin.c:182
msgid "In_sert Date and Time..."
msgstr "_S နေ့ရက်နှင့် အချိန်ထည့်"

#: ../plugins/time/gedit-time-plugin.c:184
msgid "Insert current date and time at the cursor position"
msgstr ""

#: ../plugins/time/gedit-time-plugin.c:613
msgid "Available formats"
msgstr "ရရှိနိုင်သော ပုံစံများ"

#: ../plugins/time/gedit-time-plugin.c:766
msgid "Configure insert date/time plugin..."
msgstr ""

#: ../plugins/time/time.gedit-plugin.desktop.in.h:1
msgid "Insert Date/Time"
msgstr "နေ့ရက်/အချိန် ထည့်"

#: ../plugins/time/time.gedit-plugin.desktop.in.h:2
msgid "Inserts current date and time at the cursor position."
msgstr ""

#. Translators: Use the more common date format in your locale
#: ../plugins/time/gedit-time-dialog.ui.h:3
#: ../plugins/time/gedit-time-setup-dialog.ui.h:4
#, no-c-format
msgid "%d/%m/%Y %H:%M:%S"
msgstr ""

#. Translators: This example should follow the date format defined in the entry above
#: ../plugins/time/gedit-time-dialog.ui.h:4
#: ../plugins/time/gedit-time-setup-dialog.ui.h:6
msgid "01/11/2009 17:52:00"
msgstr "၀၁/၁၁/၂၀၀၉ ၁၇:၅၂:၀၀"

#: ../plugins/time/gedit-time-dialog.ui.h:5
msgid "Insert Date and Time"
msgstr "နေ့ရက်နှင့် အချိန်ထည့်"

#: ../plugins/time/gedit-time-dialog.ui.h:6
#: ../plugins/time/gedit-time-setup-dialog.ui.h:8
msgid "Use the _selected format"
msgstr "_S ရွေးထားတဲ့ ပုံစံကိုသုံး"

#: ../plugins/time/gedit-time-dialog.ui.h:7
msgid "_Insert"
msgstr "_I ထည့်ရန်"

#: ../plugins/time/gedit-time-dialog.ui.h:8
#: ../plugins/time/gedit-time-setup-dialog.ui.h:11
msgid "_Use custom format"
msgstr "_U ကိုယ်ပိုင် ပုံစံအသုံးပြု"

#: ../plugins/time/gedit-time-setup-dialog.ui.h:7
msgid "Configure date/time plugin"
msgstr ""

#: ../plugins/time/gedit-time-setup-dialog.ui.h:9
msgid "When inserting date/time..."
msgstr ""

#: ../plugins/time/gedit-time-setup-dialog.ui.h:10
msgid "_Prompt for a format"
msgstr "_P ပုံစံအတွက် ပြသ"