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
|
# translation of po_gnome-terminal-km.po to Khmer
# Khmer translation for gnome-terminal
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the gnome-terminal package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
# Khoem Sokhem <khoemsokhem@khmeros.info>, 2012.
# sutha <sutha@khmeros.info>, 2012.
# Sophea Sok <sophea@open.org.kh>, 2014.
msgid ""
msgstr ""
"Project-Id-Version: po_gnome-terminal-km\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-terminal&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2014-04-02 20:07+0000\n"
"PO-Revision-Date: 2014-04-10 12:04+0700\n"
"Last-Translator: Sophea Sok <sophea@open.org.kh>\n"
"Language-Team: Khmer <>\n"
"Language: km\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: WordForge 0.8 RC1\n"
"X-Language: km-KH\n"
#: ../gnome-terminal.appdata.xml.in.h:1 ../gnome-terminal.desktop.in.in.h:1
#: ../src/server.c:116 ../src/terminal-accels.c:191 ../src/terminal.c:242
#: ../src/terminal-screen.c:740 ../src/terminal-screen.c:1587
#: ../src/terminal-window.c:2652 ../src/terminal-window.c:2977
msgid "Terminal"
msgstr "ααααΆααΈα"
#: ../gnome-terminal.appdata.xml.in.h:2 ../gnome-terminal.desktop.in.in.h:2
msgid "Use the command line"
msgstr "ααααΎβαααααΆααβααΆααααααααΆ"
#: ../gnome-terminal.appdata.xml.in.h:3
msgid ""
"GNOME Terminal is a terminal emulator application for accessing a UNIX shell "
"environment which can be used to run programs available on your system."
msgstr ""
"ααααΆααΈα GNOME ααΊααΆβααααΆααΈαβαααααα·ααΈβαα·αααα·αβαααααΆααβα
αΌαβααααΎαααΆαβααα·ααααΆα "
"UNIX ααα αααβα’αΆα
βααααΌαβααΆαβααααΎβααΎααααΈβααααΎαααΆαβαααααα·ααΈβαααβααΆαβαα
βααΎβααααα"
"αααβααααβα’αααα"
#: ../gnome-terminal.appdata.xml.in.h:4
msgid ""
"It supports several profiles, multiple tabs and implements several keyboard "
"shortcuts."
msgstr ""
"ααΆβααΆααααβααααααβα
αααΎα ααααΆααβα
αααΎα "
"αα·αβα’αα»ααααβααααΆααα
α»α
βααααΌαααΆααβααΆα
αααΎαβααβαααα"
#: ../gnome-terminal.desktop.in.in.h:3
msgid "shell;prompt;command;commandline;"
msgstr "ααα;αααα’ααβαααα
αΌα;ααΆαααβαααααΆ;αααααΆααβααΆαααβαααααΆ;"
#: ../src/client.c:91
msgid "COMMAND"
msgstr "COMMAND"
#: ../src/client.c:96
#, c-format
#| msgid ""
#| "Commands:\n"
#| " help Shows this information\n"
#| " open Create a new terminal\n"
#| "\n"
#| "Use \"%s COMMAND --help\" to get help on each command.\n"
msgid ""
"Commands:\n"
" help Shows this information\n"
" run Create a new terminal running the specified command\n"
" shell Create a new terminal running the user shell\n"
"\n"
"Use \"%s COMMAND --help\" to get help on each command.\n"
msgstr ""
"ααΆαααβαααααΆα\n help αααα αΆαβααααααΆαβααα\n run "
"αααααΎαβααααΆααΈαβααααΈβαααβααααΎαααΆαβααΆαααβαααααΆβααΆααααΆαα\n shell "
"αααααΎαβααααΆααΈαβααααΈβαααβααααΎαααΆαβαααβααααβα’αααααααΎ\n\nααααΎ \"%s COMMAND "
"--help\" ααΎααααΈβααΎαβαααα½αβα’αααΈβααΆαααβαααααΆβααΈαα½ααα\n"
#: ../src/client.c:200 ../src/terminal-options.c:683
#, c-format
msgid "\"%s\" is not a valid zoom factor"
msgstr "\"%s\" αα·ααααβααΆβαααααΆβαααααΈαβααααΉαααααΌα"
#: ../src/client.c:331
msgid "Be quiet"
msgstr "ααααΆαα"
#: ../src/client.c:342 ../src/terminal-options.c:1095
#| msgid "Maximise the window"
msgid "Maximize the window"
msgstr "αααααΈαβαααα’α½α
βα’αα·ααααΆ"
#: ../src/client.c:344 ../src/terminal-options.c:1104
msgid "Full-screen the window"
msgstr "ααααΎα²ααβαααα’α½α
βαααβα’αααααα"
#: ../src/client.c:346 ../src/terminal-options.c:1113
msgid ""
"Set the window size; for example: 80x24, or 80x24+200+200 (COLSxROWS+X+Y)"
msgstr "αααααβααα αββαααα’α½α
α§ααΆα αααα 80x24, α¬ 80x24+200+200 (COLSxROWS+X+Y)"
#: ../src/client.c:347 ../src/terminal-options.c:1114
msgid "GEOMETRY"
msgstr "ααααΈααΆααα"
#: ../src/client.c:349 ../src/terminal-options.c:1122
msgid "Set the window role"
msgstr "αααααβαα½ααΆααΈβαααα’α½α
"
#: ../src/client.c:349 ../src/terminal-options.c:1123
msgid "ROLE"
msgstr "αα½ααΆααΈ"
#: ../src/client.c:355 ../src/terminal-options.c:1153
msgid "Use the given profile instead of the default profile"
msgstr "ααααΎβααααααβαααβααΆαβααααα αααα½αβααααααβααααΆαααΎα"
#: ../src/client.c:356
msgid "UUID"
msgstr "UUID"
#: ../src/client.c:358 ../src/terminal-options.c:1162
msgid "Set the terminal title"
msgstr "αααααβα
αααααΎαβααααΆααΈα"
#: ../src/client.c:358 ../src/terminal-options.c:1163
msgid "TITLE"
msgstr "α
αααααΎα"
#: ../src/client.c:360 ../src/terminal-options.c:1171
msgid "Set the working directory"
msgstr "αααααβααβααααΎααΆα"
#: ../src/client.c:360 ../src/terminal-options.c:1172
msgid "DIRNAME"
msgstr "αααααβαα"
#: ../src/client.c:362 ../src/terminal-options.c:1180
msgid "Set the terminal's zoom factor (1.0 = normal size)"
msgstr "αααααβαααααΆβαααααΈαβααααβααααΆααΈα (α‘.α = ααα αβααααααΆ)"
#: ../src/client.c:363 ../src/terminal-options.c:1181
msgid "ZOOM"
msgstr "αααααΈα"
#: ../src/client.c:369
msgid "Forward stdin"
msgstr "αααααΌαβαααα stdin"
#: ../src/client.c:371
msgid "Forward stdout"
msgstr "αααααΌαβαααα stdout"
#: ../src/client.c:373
msgid "Forward stderr"
msgstr "αααααΌαβαααα stderr"
#: ../src/client.c:375
msgid "Forward file descriptor"
msgstr "αααααΌαβαααααα·ααΈβαα·αααααΆβα―αααΆαβαααα"
#: ../src/client.c:375
msgid "FD"
msgstr "FD"
#: ../src/client.c:381
msgid "Wait until the child exits"
msgstr "αααα
αΆαβαα αΌαβαααβααΌαβα
αα"
#: ../src/client.c:391
msgid "GNOME Terminal Client"
msgstr "αααΆαααΈαβααΌαβααααΆααΈα GNOME"
#: ../src/client.c:395
msgid "Global options:"
msgstr "αααααΎαβαααα"
#: ../src/client.c:396
msgid "Show global options"
msgstr "αααα αΆαβαααααΎαβααα"
#: ../src/client.c:404
msgid "Server options:"
msgstr "αααααΎαββαααΆαααΈαβααα"
#: ../src/client.c:405
msgid "Show server options"
msgstr "αααα αΆαβαααααΎαβαααΆαααΈαβαα"
#: ../src/client.c:413
msgid "Window options:"
msgstr "αααααΎαβαααα’α½α
α"
#: ../src/client.c:414
msgid "Show window options"
msgstr "αααα αΆαβαααααΎαβαααα’α½α
"
#: ../src/client.c:422
msgid "Terminal options:"
msgstr "αααααΎαβααααΆααΈαα"
#: ../src/client.c:423 ../src/terminal-options.c:1287
msgid "Show terminal options"
msgstr "αααα αΆαβαααααΎαβααααΆααΈα"
#: ../src/client.c:431
msgid "Exec options:"
msgstr "αααααΎαβααααα·ααααα·α"
#: ../src/client.c:432
msgid "Show exec options"
msgstr "αααα αΆαβαααααΎαβααααα·ααααα·"
#: ../src/client.c:440
msgid "Processing options:"
msgstr "αααααΎαβββααααΎαααΆαα"
#: ../src/client.c:441
msgid "Show processing options"
msgstr "αααα αΆαβαααααΎαβααααΎαααΆα"
#: ../src/find-dialog.ui.h:1 ../src/terminal-accels.c:132
#: ../src/terminal-accels.c:190
msgid "Find"
msgstr "αα"
#: ../src/find-dialog.ui.h:2
msgid "_Search for:"
msgstr "αααααααα"
#: ../src/find-dialog.ui.h:3
msgid "_Match case"
msgstr "ααααΈβααααΌα
"
#: ../src/find-dialog.ui.h:4
msgid "Match _entire word only"
msgstr "ααααΌααααβααβααΆαααβααΆααααΌαβααα»ααααα"
#: ../src/find-dialog.ui.h:5
msgid "Match as _regular expression"
msgstr "ααααΌααααβααΆβααααααβααααααΆ"
#: ../src/find-dialog.ui.h:6
msgid "Search _backwards"
msgstr "αααααααβααααααα"
#: ../src/find-dialog.ui.h:7
msgid "_Wrap around"
msgstr "αα»αβαα»ααα·α"
#: ../src/migration.c:388
msgid "Default"
msgstr "ααααΆαααΎα"
#: ../src/migration.c:388 ../src/terminal-prefs.c:99
msgid "Unnamed"
msgstr "αααβααααΆαβααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:1
#| msgid "Unnamed"
msgctxt "visible-name"
msgid "'Unnamed'"
msgstr "'αααβααααΆαβααααα'"
#: ../src/org.gnome.Terminal.gschema.xml.h:2
msgid "Human-readable name of the profile"
msgstr "αααααβααααααβαααβααα»αααβα’αΆα
βα’αΆαβααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:3
msgid "Human-readable name of the profile."
msgstr "αααααβααααααβαααβααα»αααβα’αΆα
βα’αΆαβααΆαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:4
msgid "Default color of text in the terminal"
msgstr "αααβααααΆαααΎαβααααβα’αααααβαα
βαααα»αβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:5
msgid ""
"Default color of text in the terminal, as a color specification (can be HTML-"
"style hex digits, or a color name such as \"red\")."
msgstr ""
"αααβααααΆαααΎαβααααβα’αααααβαα
βαααα»αβααααΆααΈα ααΌα
ααΆβααΆαβαααααΆααβαααβααΆααΎα (α’αΆα
βααΆβαα½αααβαααβαααβααααΆααα½αβααααβ"
"αα
ααΆααααα HTML α¬βαααααβαααβααΌα
ααΆ \"αααα α\") α"
#: ../src/org.gnome.Terminal.gschema.xml.h:6
msgid "Default color of terminal background"
msgstr "αααβααααΆαααΎαβααββααααααΆααααααβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:7
msgid ""
"Default color of terminal background, as a color specification (can be HTML-"
"style hex digits, or a color name such as \"red\")."
msgstr ""
"αααβααααΆαααΎαβααβααααααΆααααααβααααΆααΈα ααΌα
ααΆβααΆαβαααααΆααβααα (α’αΆα
βααΆβαα½αααβαααβαααβααααΆααα½αβααααβαα
ααΆααααα HTML "
"α¬βαααααβαααβααΌα
ααΆ \"αααα α\") α"
#: ../src/org.gnome.Terminal.gschema.xml.h:8
msgid "Default color of bold text in the terminal"
msgstr "αααβααααΆαααΎαβααβα’αααααβαα·αβαα
βαααα»αβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:9
msgid ""
"Default color of bold text in the terminal, as a color specification (can be "
"HTML-style hex digits, or a color name such as \"red\"). This is ignored if "
"bold_color_same_as_fg is true."
msgstr ""
"αααβααααΆαααΎαβααβα’αααααβαα·αβαα
βαααα»αβααααΆααΈα ααΌα
ααΆβααΆαβαααααΆααβααα "
"(α’αΆα
βααΆβαα½αααβαααβαααβααααΆααα½αβααααβαα
ααΆααααα HTML α¬βαααααβααα ααΌα
ααΆ "
"\"αααα α\") α ααΆβααΉαβααααΌαβααΆαβαα·αβα’αΎααΎ ααααα·αααΎ bold_color_same_as_fg αα·αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:10
msgid "Whether bold text should use the same color as normal text"
msgstr "ααΆβααΎβα’αααααβαα·αβαα½αβααααΎβαααβααΌα
ααααΆβααΉαβα’αααααβααααααΆβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:11
msgid ""
"If true, boldface text will be rendered using the same color as normal text."
msgstr ""
"ααααα·αααΎβαα·α "
"α’αααααβαα·αβααΉαβααααΌαβααΆαβαααα αΆαβαααβααααΎβαααβααΌα
βααααΆβααΉαβα’αααααβααααααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:12
#| msgid "Terminal"
msgctxt "title"
msgid "'Terminal'"
msgstr "'ααααΆααΈα'"
#: ../src/org.gnome.Terminal.gschema.xml.h:13
msgid "Title for terminal"
msgstr "α
αααααΎαβαααααΆααβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:14
msgid ""
"Title to display for the terminal window or tab. This title may be replaced "
"by or combined with the title set by the application inside the terminal, "
"depending on the title_mode setting."
msgstr ""
"α
αααααΎαβαααβααααΌαβαααα αΆαβαααααΆααβαααα’α½α
α¬βααααΆααβααααΆααΈαα "
"α
αααααΎαβαααβα’αΆα
βααααΌαβααΆαβαααα½α "
"α¬βαααααββααΆαα½αβα
αααβααΎαβαααβααΆαβαααααβαααββαααααα·ααΈβαα
ββααΆααααα»αβααααΆααΈα "
"α’αΆαααααβααΎβααΆαβαααααβ title_mode α"
#: ../src/org.gnome.Terminal.gschema.xml.h:15
msgid "Whether to allow bold text"
msgstr "ααΆβααΎβααααΌαβα’αα»ααααΆαβα²ααβααΆαβα’αααααβαα·αβαααβα¬αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:16
msgid "If true, allow applications in the terminal to make text boldface."
msgstr "ααααα·αααΎβαα·α α’αα»ααααΆαβα²ααβαααααα·ααΈβαα
βαααα»αβααααΆααΈαβαααααΎαβα’αααααβαα·αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:17
msgid "Whether to ring the terminal bell"
msgstr "ααΆβααΎβααααΌαββααΌαααααΉαββααααΆααΈαββαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:18
msgid "Characters that are considered \"part of a word\""
msgstr "αα½α’ααααβαααβααΆαβα
αΆααβαα»αβααΆβααΆ \"αααααβααβααΆααα\""
#: ../src/org.gnome.Terminal.gschema.xml.h:19
msgid ""
"When selecting text by word, sequences of these characters are considered "
"single words. Ranges can be given as \"A-Z\". Literal hyphen (not expressing "
"a range) should be the first character given."
msgstr ""
"αα
βαααβααααΎαβα’αααααββααΆαβααΆααα "
"ααααΆααβαα½α’ααααβααΆαααααβααΉαβααααΌαβααΆαβα
αΆααβαα»αβααΆβααΆβααΆαααβαααα½αα "
"αα½αβα’αΆα
βααααΌαβααΆαβαααααβααΆ \"A-Z\" α αα αααααΆ (αα·αβαααα αΆαβαα½α) "
"αα½αααβααΆβαα½α’ααααβαααβααΆαβαααααβααααΌαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:20
msgid "Whether to show menubar in new windows/tabs"
msgstr "ααΆβααΎβααααΌαβαααα αΆαβαααΆαβαααΊαα»αβαα
βαααα»αβαααα’α½α
/ααααΆααβααααΈβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:21
msgid "True if the menubar should be shown in new window"
msgstr "ααααα·αααΎβαα·α αααΆαβαααΊαα»αβααΉαβααααΌαβααΆαβαααα αΆαβαα
βαααα»αβαααα’α½α
βααααΈ"
#: ../src/org.gnome.Terminal.gschema.xml.h:22
msgid "Whether to use custom terminal size for new windows"
msgstr "ααΆββααΎβααααΌαβααααΎβααα αβααααΆααΈαβααααΆαααααα½αβαααααΆααβαααα’α½α
βααααΈβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:23
msgid ""
"If true, newly created terminal windows will have custom size specified by "
"default_size_columns and default_size_rows."
msgstr ""
"ααααα·αααΎβαα·α αααα’α½α
βααααΆααΈαβαααβααΆαβαααααΎαβααααΈαβααΉαβααΆαβααα αβααααΆαααααα½αβαααβαααααΆααβααα "
"default_size_columns αα·α default_size_rows α"
#: ../src/org.gnome.Terminal.gschema.xml.h:24
msgid "Default number of columns"
msgstr "α
ααα½αβαα½αααβααααΆαααΎα"
#: ../src/org.gnome.Terminal.gschema.xml.h:25
msgid ""
"Number of columns in newly created terminal windows. Has no effect if "
"use_custom_default_size is not enabled."
msgstr ""
"α
ααα½αβαα½αααβαα
βαααα»αβαααα’α½α
βααααΆααΈαβαααββααΎαβαααααΎαβααααΈα "
"ααΆβααΉαβααααΆαβααααααβαα ααααα·αααΎβαα·αβααΆαβααΎα use_custom_default_size α"
#: ../src/org.gnome.Terminal.gschema.xml.h:26
msgid "Default number of rows"
msgstr "α
ααα½αβαα½ααααβααααΆαααΎα"
#: ../src/org.gnome.Terminal.gschema.xml.h:27
msgid ""
"Number of rows in newly created terminal windows. Has no effect if "
"use_custom_default_size is not enabled."
msgstr ""
"α
ααα½αβαα½ααααβαα
βαααα»αβαααα’α½α
βααααΆααΈαβαααβααΎαααβααΆαβαααααΎαββααααΈβα α "
"ααΉαβααααΆαβααααααβαα ααααα·αααΎβαα·αβααΆαβααΎα use_custom_default_size α"
#: ../src/org.gnome.Terminal.gschema.xml.h:28
msgid "When to show the scrollbar"
msgstr "αα
βαααβαααα αΆαβαααΆαβαααΌα"
#: ../src/org.gnome.Terminal.gschema.xml.h:29
msgid "Number of lines to keep in scrollback"
msgstr "α
ααα½αβαααααΆααβαααβββααααΌαβαααααΆαα»αβαααα»αβαααΌαβααααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:30
msgid ""
"Number of scrollback lines to keep around. You can scroll back in the "
"terminal by this number of lines; lines that don't fit in the scrollback are "
"discarded. If scrollback_unlimited is true, this value is ignored."
msgstr ""
"α
ααα½αβαααααΆααβαααβαααΌαβαααααααβααααΌαβαααααΆαα»αα "
"α’αααβα’αΆα
βαααΌαβαααααααβαα
βαααα»αβααααΆααΈαβααΆαβα
ααα½αβαααααΆααββααα "
"αααααΆααββαααβαα·αβααααΌαβααΆαβαααΌαβααααααα ααΆβααΉαβααααΌαβααΆαβααααααα ααααα·αααΎ "
"scrollback_unlimited αα·α αααααβαααβααΉαβααααΌαβααΆαβαα·αβα’αΎααΎα"
#: ../src/org.gnome.Terminal.gschema.xml.h:31
msgid "Whether an unlimited number of lines should be kept in scrollback"
msgstr "ααΆβααΎβααααΌαβαααααΆαα»αβα
ααα½αβαααααΆααβββαααβααααΆαβαααααβαα
βαααα»αβαααΌαβαααααααβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:32
msgid ""
"If true, scrollback lines will never be discarded. The scrollback history is "
"stored on disk temporarily, so this may cause the system to run out of disk "
"space if there is a lot of output to the terminal."
msgstr ""
"ααααα·αααΎβαα·α αααααΆααβαααΌαβαααααααβααΉαβαα·αβαααβααααΌαβααΆαβααααααβααα "
"αααααααα·βαααΌαβαααααααβααΊβααααΌαβααΆαβαααααΆαα»αβαα
βααΎβααΆαβααααααβα’αΆαααα "
"ααΌα
ααααβααΆβα’αΆα
βααΉαβααααΎα²ααβααααααααβα’ααβααα αβααΆαβααααα "
"ααααα·αααΎβααΆαβααααααββα
αααΎαβαα
ααΆααβααααΆααΈαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:33
msgid "Whether to scroll to the bottom when a key is pressed"
msgstr "ααΆβααΎβααααΌαβαααΌαβαα
βαααααβαααβα¬αα αααβααΆαβα
α»α
βααααΆααα
α»α
"
#: ../src/org.gnome.Terminal.gschema.xml.h:34
msgid "If true, pressing a key jumps the scrollbar to the bottom."
msgstr "ααααα·αααΎβαα·α ααΆαβα
α»α
βααααΆααα
α»α
βααΉαβααααΎα²ααβαααΆαβααΌαβαααβαα
βαααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:35
msgid "Whether to scroll to the bottom when there's new output"
msgstr "ααΆβααΎβααααΌαβαααΌαβαα
βαααααβαααβα¬αα αααβααΆαβααααααβααααΈ"
#: ../src/org.gnome.Terminal.gschema.xml.h:36
msgid ""
"If true, whenever there's new output the terminal will scroll to the bottom."
msgstr "ααααα·αααΎβαα·α ααααΆααΈαβααΉαβαααΌαβαα
βαααααβαα
βαααβααΆβαααβααΆαβααααααβααααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:37
msgid "What to do with the terminal when the child command exits"
msgstr "α’αααΈβαααβααααΌαβααααΎβααΆαα½αβααααΆααΈα αα
βαααβααΆαααβαααααΆβααβα
αΆαα
αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:38
msgid ""
"Possible values are \"close\" to close the terminal, and \"restart\" to "
"restart the command."
msgstr ""
"αααααβαααβα’αΆα
βααααΎβααΆαβααΊ \"αα·α\" αααααΆααβαα·αβααααΆααΈα αα·α \"α
αΆααααααΎαβα‘αΎααα·α\" "
"αααααΆααβα
αΆααααααΎαβααΆαααβαααααΆβα‘αΎααα·αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:39
msgid "Whether to launch the command in the terminal as a login shell"
msgstr ""
"ααΆβααΎβααααΌαβα
αΆααααααΎαβββααΆαααβαααααΆβαα
βαααα»αβααααΆααΈαβαααβα¬αα αααβα
αΌαβααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:40
#| msgid ""
#| "If true, the command inside the terminal will be launched as a login "
#| "shell. (argv[0] will have a hyphen in front of it.)"
msgid ""
"If true, the command inside the terminal will be launched as a login shell "
"(argv[0] will have a hyphen in front of it)."
msgstr ""
"ααααα·αααΎβαα·α ααΆαααβαααααΆβαα
βααΆαβαααα»αβααααΆααΈαβααΉαβααααΌαβααΆαβα
αΆα ααααΎα "
"αααβα
αΌαβαααα (argv[0] ααΉαβααΆαβαα αααααΆβαα
βααΈαα»αβααΆ)α"
#: ../src/org.gnome.Terminal.gschema.xml.h:41
msgid "Whether to update login records when launching terminal command"
msgstr ""
"ααΆβααΎβααααΌαβααααΎβαα
αα
α»ααααααααΆαβαααααααααΆβα
αΌαβαααβα¬αα "
"αααβα
αΆααααααΎαβααΆαααβαααααΆβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:42
msgid ""
"If true, the system login records utmp and wtmp will be updated when the "
"command inside the terminal is launched."
msgstr ""
"ααααα·αααΎβαα·α ααααααααβαααααααααΆβα
αΌα utmp αα·α wtmp "
"ααΉαβααααΌαβααΆαβααααΎβαα
αα
α»ααααααααΆα "
"αααβααΆαααβαααααΆβαα
βααΆααααα»αβααααΆααΈαβααααΌαβααΆαβα
αΆααααααΎαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:43
msgid "Whether to run a custom command instead of the shell"
msgstr "ααΆβααΎβααααΌαβααααΎαααΆαβααΆαααβαααααΆβααααΆαααααα½αβαααα½αβαααβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:44
msgid ""
"If true, the value of the custom_command setting will be used in place of "
"running a shell."
msgstr ""
"ααααα·αααΎβαα·α αααααβααβααΆαβααααα custom_command "
"ααΉαβααααΌαβααΆαβααααΎβαααα½αβα²ααβααΆαβααααΎαααΆαβαααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:45
msgid "Whether to blink the cursor"
msgstr "ααΆβααΎβααααΌαβααααΎα²ααβααααααααααα·α
βαααβααααΉααααααβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:46
msgid ""
"The possible values are \"system\" to use the global cursor blinking "
"settings, or \"on\" or \"off\" to set the mode explicitly."
msgstr ""
"αααααβαααβα’αΆα
βααααΎβααΆαβααΊ \"system\" "
"αααααΆααβααααΎβαααα»αβααΆαβαααααβα²ααβααααααααααα·α
βαααβααααΉααααααβααΆαα α¬ \"on\" αα·α "
"\"off\" αααααΆααβαααααβααααβααΆααααΆααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:47
msgid "The cursor appearance"
msgstr "ααΌαααΆαβααααααααααα·α
"
#: ../src/org.gnome.Terminal.gschema.xml.h:48
msgid "Custom command to use instead of the shell"
msgstr "ααΆαααβαααααΆβααααΆαααααα½αβαααβααααΌαβααααΎβαααα½αβααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:49
msgid "Run this command in place of the shell, if use_custom_command is true."
msgstr ""
"ααααΎαααΆαβααΆαααβαααααΆβαααβαααα½αβα²ααβααα "
"ααααα·αααΎβααΆαβαααααβααΆαβααααΎβααΆαααβαααααΆβααααΆαααααα½αβααΆβαα·αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:50
msgid "Palette for terminal applications"
msgstr "ααααΆαβααΆαβαααβαααααΆααβαααααα·ααΈβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:51
#| msgid "A pango font name and size"
msgid "A Pango font name and size"
msgstr "ααα α αα·αββαααααβαα»αααβα’αααα Pango"
#: ../src/org.gnome.Terminal.gschema.xml.h:52
msgid "The code sequence the Backspace key generates"
msgstr "ααααΆααβααΌαββααααΆααα
α»α
βαα»αβαααααααβαααααΎαβααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:53
msgid "The code sequence the Delete key generates"
msgstr "ααααΆααβααΌαβααααΆααα
α»α
βαα»αβαααααΎαβααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:54
msgid "Whether to use the colors from the theme for the terminal widget"
msgstr "ααΆββααΎβααααΌαβααααΎβαααβααΈβααΌαααΆαβαααααΆααβααΆαα»βααααΆα ααα·αβααααΆααΈαβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:55
msgid "Whether to use the system monospace font"
msgstr "ααΆβααΎβααααΌαβααααΎβαα»αααα’ααααβ monospace ααααααααβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:56
#| msgid "Whether to use custom terminal size for new windows"
msgid "Whether to rewrap the terminal contents on window resize"
msgstr ""
"ααΆββααΎβααααΌαβαα»αβααΆαα·ααΆβααααΆααΈαβα‘αΎααα·αβαααβα¬αα αααβααααΌαβααα αβαααα’α½α
βααααΈ"
#: ../src/org.gnome.Terminal.gschema.xml.h:57
msgid "Which encoding to use"
msgstr "ααΆαβααααααβααΆβααΌαβαααβααααΌαβααααΎ"
#: ../src/org.gnome.Terminal.gschema.xml.h:58
msgid "Keyboard shortcut to open a new tab"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααΎαβααααΆααβααααΈ"
#: ../src/org.gnome.Terminal.gschema.xml.h:59
msgid "Keyboard shortcut to open a new window"
msgstr "ααααΆααα
α»α
βααααΌαβααΆααβαααααΆααβααΎαβαααα’α½α
βααααΈ"
#: ../src/org.gnome.Terminal.gschema.xml.h:60
msgid "Keyboard shortcut to create a new profile"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαααααΎαβααααααβααααΈ"
#: ../src/org.gnome.Terminal.gschema.xml.h:61
msgid "Keyboard shortcut to save the current tab contents to file"
msgstr ""
"ααααΆααβα
α»α
βααααΌαααΆααβαααααΆααβαααααΆαα»αβααΆαα·ααΆβααααΆααβαα
αα
α»ααααααβαα
βα―αααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:62
msgid "Keyboard shortcut to close a tab"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαα·αβααααΆαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:63
msgid "Keyboard shortcut to close a window"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαα·αβαααα’α½α
"
#: ../src/org.gnome.Terminal.gschema.xml.h:64
msgid "Keyboard shortcut to copy text"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβα
ααααβα’ααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:65
msgid "Keyboard shortcut to paste text"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαα·αααααΆααβα’ααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:66
msgid "Keyboard shortcut to toggle full screen mode"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαα·α/ααΎαβααααβαααβα’αααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:67
msgid "Keyboard shortcut to toggle the visibility of the menubar"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαα·α/ααΎαβααΆαβααΎαβααΎαβααβαααΆαβαααΊαα»α"
#: ../src/org.gnome.Terminal.gschema.xml.h:68
msgid "Keyboard shortcut to set the terminal title"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαααααβα
αααααΎαβααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:69
msgid "Keyboard shortcut to reset the terminal"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαααααβααααΆααΈαβα‘αΎααα·α"
#: ../src/org.gnome.Terminal.gschema.xml.h:70
msgid "Keyboard shortcut to reset and clear the terminal"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαααα’αΆα αα·αβαααααβααααΆααΈαβα‘αΎααα·α"
#: ../src/org.gnome.Terminal.gschema.xml.h:71
#| msgid "Keyboard shortcut to reset the terminal"
msgid "Keyboard shortcut to open the search dialog"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααΎα αα·αβαααααααβαααα’ααβαααα
αΌα"
#: ../src/org.gnome.Terminal.gschema.xml.h:72
#| msgid "Keyboard shortcut to save the current tab contents to file"
msgid "Keyboard shortcut to find the next occurrence of the search term"
msgstr ""
"ααααΆααβα
α»α
βααααΌαααΆααβαααααΆααβαααααααβααΆαβααΎαα‘αΎαβαααααΆααβααβααΆαααβααααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:73
#| msgid "Keyboard shortcut to switch to the previous tab"
msgid "Keyboard shortcut to find the previous occurrence of the search term"
msgstr "ααααΆααβα
α»α
βααααΌαααΆααβαααααΆααβαααααααβααΆαβααΎαα‘αΎαβααΈαα»αβααβααΆαααβααααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:74
#| msgid "Keyboard shortcut to set the terminal title"
msgid "Keyboard shortcut to clear the find highlighting"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαααα’αΆα αα·αβααααΎαβααααα
"
#: ../src/org.gnome.Terminal.gschema.xml.h:75
msgid "Keyboard shortcut to switch to the previous tab"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΌαβαα
βααααΆααβαα»α"
#: ../src/org.gnome.Terminal.gschema.xml.h:76
msgid "Keyboard shortcut to switch to the next tab"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΌαβαα
βααααΆααβαααααΆαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:77
#| msgid "Keyboard shortcut to save the current tab contents to file"
msgid "Keyboard shortcut to move the current tab to the left"
msgstr "ααααΆααβα
α»α
βααααΌαααΆααβαααααΆααβααααΆααααΈβααααΆααβαα
αα
α»ααααααβαα
βααΆαααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:78
#| msgid "Keyboard shortcut to save the current tab contents to file"
msgid "Keyboard shortcut to move the current tab to the right"
msgstr "ααααΆααβα
α»α
βααααΌαααΆααβαααααΆααβααααΆααααΈβααααΆααβαα
αα
α»ααααααβαα
βααΆαααααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:79
#| msgid "Keyboard shortcut to switch to tab 1"
msgid "Keyboard shortcut to detach current tab"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆα
αβααααΆααβαα
αα
α»αααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:80
#| msgid "Keyboard shortcut to switch to the next tab"
msgid "Keyboard shortcut to switch to the numbered tab"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΌαβαα
βααααΆααβααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:81
msgid "Keyboard shortcut to launch help"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααΎαβαααα½α"
#: ../src/org.gnome.Terminal.gschema.xml.h:82
msgid "Keyboard shortcut to make font larger"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΎα²ααβααα αβαα»αααα’ααααβαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:83
msgid "Keyboard shortcut to make font smaller"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΎα²ααβααα αβαα»αααα’ααααβααΌα
"
#: ../src/org.gnome.Terminal.gschema.xml.h:84
msgid "Keyboard shortcut to make font normal-size"
msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΎα²ααβαα»αααα’ααααβααΆαβααα αβααααααΆ"
#: ../src/org.gnome.Terminal.gschema.xml.h:85
msgid "Whether the menubar has access keys"
msgstr "ααΆβααΎβαααΆαβαααΊαα»αβααΆαβααααΆααα
α»α
ββα
αΌαβααααΎαααΆαβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:86
msgid ""
"Whether to have Alt+letter access keys for the menubar. They may interfere "
"with some applications run inside the terminal so it's possible to turn them "
"off."
msgstr ""
"ααΆβααΎβααααΌαβααΆαβααααΆααα
α»α
βα
αΌαβααααΎαααΆα Alt+letter "
"αααααΆααβαααΆαβαααΊαα»αβαααβα¬βααα "
"αα½αααΆβα’αΆα
βαααα’αΆααββαααααα·ααΈβααααΎαααΆαβαα½αβα
ααα½αβαα
βαααα»αβααααΆααΈα "
"ααΌα
ααααβαα½αααβαα·αβαα½αααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:87
msgid "Whether the standard GTK shortcut for menubar access is enabled"
msgstr ""
"ααΆβααΎβααααΌαβααΎαβααααΆααα
α»α
βααααΌαααΆαα GTK "
"αααααααΆαβαααααΆααβααΆαβα
αΌαβααααΎαααΆαβαααΆαβαααΊαα»αβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:88
msgid ""
"Normally you can access the menubar with F10. This can also be customized "
"via gtkrc (gtk-menu-bar-accel = \"whatever\"). This option allows the "
"standard menubar accelerator to be disabled."
msgstr ""
"ααΆαβααααααΆβ α’αααβα’αΆα
βα
αΌαβααααΎαααΆαβαααΆαβαααΊαα»αβαααβααααΎβααααΆααα
α»α
F10 α "
"α’αααβα’αΆα
βααααΌαβααΆβααΆαβαααααΌαααΆαβααΆαβαααβααααΎ gtkrc (gtk-menu-bar-accel = "
"\"whatever\") α αααααΎαβαααβααΉαβαα·αβααααΆααα
α»α
βααααΌαααΆααβαααΆαβαααΊαα»αβαααααααΆαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:89
msgid "Whether the shell integration is enabled"
msgstr "ααΆβααΎβααααΌαβααΎαβααΆαβαα½ααααα
αΌαβαααβαααβα¬αα"
#: ../src/org.gnome.Terminal.gschema.xml.h:90
msgid "List of available encodings"
msgstr "αααααΈβααΆαβααααααβααΆβααΌαβαααβα’αΆα
βααααΎβααΆα"
#: ../src/org.gnome.Terminal.gschema.xml.h:91
msgid ""
"A subset of possible encodings are presented in the Encoding submenu. This "
"is a list of encodings to appear there. The special encoding name \"current"
"\" means to display the encoding of the current locale."
msgstr ""
"αααα»αβααβααβααΆαβααααααβααΆβααΌαβαααβα’αΆα
βααααΎβααΆα "
"ααΊβαααα αΆαβαα
βαααα»αβαααΊαα»αβααβααβααΆαβααααααβααΆβααΌαα "
"αααβααΆβαααααΈβααβααΆαβααααααβααΆααΌαβαααβααααΌαβααα
βα‘αΎαβαα
βααΈαααα "
"ααΆαβααααααβααΆβααΌαβαα·αααβααααα \"αα
αα
α»αααααα\" ααΆααααααΆ "
"ααΎααααΈβαααα αΆαβααΆαβααααααβααΆβααΌαβααβααΆαβααααααββαα
αα
α»ααααααα"
#: ../src/org.gnome.Terminal.gschema.xml.h:92
msgid "Whether to ask for confirmation before closing a terminal"
msgstr "ααΆββααΎβααααΌαβαα½αβααβααΆαβαααααΆααβαααβα¬αα αα
βαα»αβαααβαα·αβαααα’α½α
βααααΆααΈα"
#: ../src/org.gnome.Terminal.gschema.xml.h:93
#| msgid "Whether to show menubar in new windows/tabs"
msgid "Whether to show the menubar in new windows"
msgstr "ααΆβααΎβααααΌαβαααα αΆαβαααΆαβαααΊαα»αβαα
βαααα»αβαααα’α½α
βααααΈβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:94
#| msgid "Whether to use the system monospace font"
msgid "Whether to use a dark theme variant"
msgstr "ααΆβααΎβααααΌαβααααΎβαααΆαααααβααΌαααΆαβαααΉαβαααβα¬βαα"
#: ../src/org.gnome.Terminal.gschema.xml.h:95
#| msgid "Whether to show menubar in new windows/tabs"
msgid "Whether to open new terminals as windows or tabs"
msgstr "ααΆβααΎβααααΌαβααΎαβααααΆααΈαβααααΈβααΆβααααΆαα α¬βαααα’α½α
βαααβα¬βαα"
#. Open new terminal in new window
#: ../src/preferences.ui.h:2
#| msgid "New Window"
msgid "Window"
msgstr "αααα’α½α
"
#. Open new terminal in new tab
#: ../src/preferences.ui.h:4
#| msgid "Tabs"
msgid "Tab"
msgstr "ααααΆαα"
#: ../src/preferences.ui.h:5
#| msgid "_Preferences"
msgid "Preferences"
msgstr "α
αααΌαα
α·ααα"
#: ../src/preferences.ui.h:6
msgid "Show _menubar by default in new terminals"
msgstr "αααα αΆαβαααΆαβαααΊαα»αβααΆαβααααΆαααΎαβαα
βαααα»αβααααΆααΈαβααααΈ"
#: ../src/preferences.ui.h:7
#| msgid "_Enable menu access keys (such as Alt+F to open the File menu)"
msgid "_Enable mnemonics (such as Alt+F to open the File menu)"
msgstr "ααΎαβαααα½α (ααΌα
ααΆ Alt+F ααΎααααΈβααΎαβαααΊαα»αα―αααΆα)"
#: ../src/preferences.ui.h:8
#| msgid "Enable the _menu shortcut key (F10 by default)"
msgid "Enable the _menu accelerator key (F10 by default)"
msgstr "ααΎαβααααΆααα
α»α
βααααΌαααΆααβαααΊαα»α (ααΆαβααααΆαααΎαβααΊ F10)"
#: ../src/preferences.ui.h:9
msgid "Use _dark theme variant"
msgstr "ααααΎβαααΆαααααβααΌαααΆαβαααΉα"
#: ../src/preferences.ui.h:10
#| msgid "Open a terminal"
msgid "Open _new terminals in:"
msgstr "ααΎαβααααΆααΈαβααααΈβαα
βαααα»αα"
#: ../src/preferences.ui.h:11 ../src/profile-preferences.ui.h:58
msgid "General"
msgstr "ααΌαα
"
#: ../src/preferences.ui.h:12
#| msgid "_Shortcut keys:"
msgid "Shortcuts"
msgstr "ααααΌαααΆαα"
#: ../src/preferences.ui.h:13
msgid "_Clone"
msgstr "ααααΌα"
#: ../src/preferences.ui.h:14
msgid "_Profile used when launching a new terminal:"
msgstr "ααααααβαααβααααΌαβααααΎ αααβα
αΆααααααΎαβααααΆααΈαβααααΈα"
#: ../src/preferences.ui.h:15
msgid "Profiles"
msgstr "αααααα"
#: ../src/preferences.ui.h:16
msgid "E_ncodings shown in menu:"
msgstr "ααΆαβααααααβααΆβααΌαβααααΌαβααΆαβαααα αΆαβαα
βαααα»αβαααΊαα»αα"
#: ../src/preferences.ui.h:17
#| msgid "_Encoding"
msgid "Encodings"
msgstr "ααΆαβααααααβααΆβααΌα"
#: ../src/profile-editor.c:48
msgid "Black on light yellow"
msgstr "αααα
βαα
βααΎβααΏαβααααΆα"
#: ../src/profile-editor.c:52
msgid "Black on white"
msgstr "αααα
βαα
βααΎαααα"
#: ../src/profile-editor.c:56
msgid "Gray on black"
msgstr "ααααααβαα
βααΎβαααα
"
#: ../src/profile-editor.c:60
msgid "Green on black"
msgstr "ααααβαα
βααΎβαααα
"
#: ../src/profile-editor.c:64
msgid "White on black"
msgstr "αβαα
βααΎβαααα
"
#: ../src/profile-editor.c:428
#, c-format
msgid "Error parsing command: %s"
msgstr "ααα α»αβαααα»αβααΆαβαααβααΆαααβαααααΆα %s"
#. This is the name of a colour scheme
#: ../src/profile-editor.c:459 ../src/profile-preferences.ui.h:32
msgid "Custom"
msgstr "ααααΆαααααα½α"
#: ../src/profile-editor.c:573
#, c-format
msgid "Editing Profile β%sβ"
msgstr "ααααααα½αβαααααα β%sβ"
#: ../src/profile-editor.c:772
#, c-format
msgid "Choose Palette Color %d"
msgstr "ααααΎαβαααβααααΆα %d"
#: ../src/profile-editor.c:776
#, c-format
msgid "Palette entry %d"
msgstr "ααΆαα»βααααΆαααα %d"
#. Cursor shape
#: ../src/profile-preferences.ui.h:2
msgid "Block"
msgstr "αααα»α"
#. Cursor shape
#: ../src/profile-preferences.ui.h:4
msgid "I-Beam"
msgstr "I-Beam"
#. Cursor shape
#: ../src/profile-preferences.ui.h:6
msgid "Underline"
msgstr "ααΌααααααΆααβααααα"
#. When terminal commands set their own titles
#: ../src/profile-preferences.ui.h:8
msgid "Replace initial title"
msgstr "αααα½αβα
αααααΎαββααααΌα"
#. When terminal commands set their own titles
#: ../src/profile-preferences.ui.h:10
msgid "Append initial title"
msgstr "ααααααβα
αααααΎαββααααΌαβαα
βα
α»α"
#. When terminal commands set their own titles
#: ../src/profile-preferences.ui.h:12
msgid "Prepend initial title"
msgstr "ααααααβα
αααααΎαβααααΌαβαα
βααΎα"
#. When terminal commands set their own titles
#: ../src/profile-preferences.ui.h:14
msgid "Keep initial title"
msgstr "αααααΆβα
αααααΎαβααααΌα"
#. When command exits
#: ../src/profile-preferences.ui.h:16
msgid "Exit the terminal"
msgstr "αα·αβααααΆααΈα"
#. When command exits
#: ../src/profile-preferences.ui.h:18
msgid "Restart the command"
msgstr "α
αΆααααααΎαβααΆαααβαααααΆβα‘αΎααα·α"
#. When command exits
#: ../src/profile-preferences.ui.h:20
msgid "Hold the terminal open"
msgstr "αα»αα²ααβααααΆααΈαβαα
βααΎα"
#. This is the name of a colour scheme
#: ../src/profile-preferences.ui.h:22
msgid "Tango"
msgstr "Tango"
#. This is the name of a colour scheme
#: ../src/profile-preferences.ui.h:24
msgid "Linux console"
msgstr "αα»αααΌαβααΈαα»α
"
#. This is the name of a colour scheme
#: ../src/profile-preferences.ui.h:26
msgid "XTerm"
msgstr "XTerm"
#. This is the name of a colour scheme
#: ../src/profile-preferences.ui.h:28
msgid "Rxvt"
msgstr "Rxvt"
#. This is the name of a colour scheme
#: ../src/profile-preferences.ui.h:30
msgid "Solarized"
msgstr "Solarized"
#. This refers to the Delete keybinding option
#: ../src/profile-preferences.ui.h:34
msgid "Automatic"
msgstr "ααααααααααααα·"
#. This refers to the Delete keybinding option
#: ../src/profile-preferences.ui.h:36
msgid "Control-H"
msgstr "Control-H"
#. This refers to the Delete keybinding option
#: ../src/profile-preferences.ui.h:38
msgid "ASCII DEL"
msgstr "ASCII DEL"
#. This refers to the Delete keybinding option
#: ../src/profile-preferences.ui.h:40
msgid "Escape sequence"
msgstr "ααααΆααβααα
"
#. This refers to the Delete keybinding option
#: ../src/profile-preferences.ui.h:42
msgid "TTY Erase"
msgstr "ααΆαβαα»α TTY"
#: ../src/profile-preferences.ui.h:43
msgid "Profile Editor"
msgstr "αααααα·ααΈβααααααα½αβαααααα"
#: ../src/profile-preferences.ui.h:44
msgid "_Profile name:"
msgstr "αααααβααααααα"
#: ../src/profile-preferences.ui.h:45
#| msgid "Profiles"
msgid "Profile ID:"
msgstr "αααβαααααΆααβααααααα"
#: ../src/profile-preferences.ui.h:46
msgid "_Use the system fixed width font"
msgstr "ααααΎβαα»αααα’ααααβαααΉαβαααβααααβαααααααα"
#: ../src/profile-preferences.ui.h:47
msgid "_Font:"
msgstr "αα»αααα’ααααα"
#: ../src/profile-preferences.ui.h:48
msgid "Choose A Terminal Font"
msgstr "ααααΎαβαα»αααα’ααααβααααΆααΈα"
#: ../src/profile-preferences.ui.h:49
msgid "_Allow bold text"
msgstr "α’αα»ααααΆαββα’αααααβαα·α"
#: ../src/profile-preferences.ui.h:50
msgid "Terminal _bell"
msgstr "ααΆαβααΌαααααΉαβααααΆααΈα"
#: ../src/profile-preferences.ui.h:51
msgid "Cursor _shape:"
msgstr "ααΌαααΆαβααααααααααα·α
α"
#: ../src/profile-preferences.ui.h:52
msgid "Select-by-_word characters:"
msgstr "αα½α’ααααβαααβααΆαβααααΎαβααΆαβααΆαααα"
#: ../src/profile-preferences.ui.h:53
msgid "Use custom default terminal si_ze"
msgstr "ααααΎβααα αβααααΆααΈαβααααΆαααΎαβααααΆαααααα½α"
#: ../src/profile-preferences.ui.h:54
msgid "Default size:"
msgstr "ααα αβααααΆαααΎαα"
#: ../src/profile-preferences.ui.h:55
msgid "columns"
msgstr "αα½ααα"
#: ../src/profile-preferences.ui.h:56
msgid "rows"
msgstr "αα½αααα"
#: ../src/profile-preferences.ui.h:57
msgid "_Rewrap on resize"
msgstr "αα»αβα‘αΎααα·αβαααβααααΌαβααα α"
#: ../src/profile-preferences.ui.h:59
#| msgid "_Title:"
msgid "Title"
msgstr "α
αααααΎα"
#: ../src/profile-preferences.ui.h:60 ../src/terminal-window.c:775
msgid "_Title:"
msgstr "α
αααααΎαα"
#: ../src/profile-preferences.ui.h:61
#| msgid "<b>Command</b>"
msgid "Command"
msgstr "ααΆαααβαααααΆ"
#: ../src/profile-preferences.ui.h:62
msgid "_Run command as a login shell"
msgstr "ααααΎαααΆαβααΆαααβαααααΆβαααβα
αΌαβααα"
#: ../src/profile-preferences.ui.h:63
msgid "_Update login records when command is launched"
msgstr "ααααΎβαα
αα
α»ααααααααΆαβαααααααααΆβα
αΌα αααβααααΎαααΆαβααΆαααβαααααΆ"
#: ../src/profile-preferences.ui.h:64
msgid "Ru_n a custom command instead of my shell"
msgstr "ααααΎαααΆαβααΆαααβαααααΆβααααΆαααααα½α αααα½αβα²ααβαααβααααβαααα»α"
#: ../src/profile-preferences.ui.h:65
msgid "Custom co_mmand:"
msgstr "ααΆαααβαααααΆβααααΆαααααα½αα"
#: ../src/profile-preferences.ui.h:66
msgid "When command _exits:"
msgstr "αα
βαααβαα·αβααΆαααβαααααΆα"
#: ../src/profile-preferences.ui.h:67
msgid "Title and Command"
msgstr "α
αααααΎα αα·αβααΆααααααααΆ"
#: ../src/profile-preferences.ui.h:68
#| msgid "Choose Terminal Background Color"
msgid "Text and Background Color"
msgstr "α’ααααα αα·αβαααβααααβααΆαααααα"
#: ../src/profile-preferences.ui.h:69
msgid "_Use colors from system theme"
msgstr "ααααΎβαααβααΈβααΌαααΆαβαααααααα"
#: ../src/profile-preferences.ui.h:70
msgid "Built-in sche_mes:"
msgstr "αααααααΆαααβαααβααΆααβααβααααΆααα"
#: ../src/profile-preferences.ui.h:71
msgid "_Text color:"
msgstr "αααβα’αααααα"
#: ../src/profile-preferences.ui.h:72
msgid "_Background color:"
msgstr "αααβααααβααΆααααααα"
#: ../src/profile-preferences.ui.h:73
msgid "Choose Terminal Background Color"
msgstr "ααααΎαβαααβααααβααΆααααααββααααΆααΈα"
#: ../src/profile-preferences.ui.h:74
msgid "Choose Terminal Text Color"
msgstr "ααααΎαβαααβα’αααααβααααΆααΈα"
#: ../src/profile-preferences.ui.h:75
msgid "_Underline color:"
msgstr "αααβαααααΆααβααΈβαααααα"
#: ../src/profile-preferences.ui.h:76
msgid "_Same as text color"
msgstr "ααΌα
βαααβα’ααααα"
#: ../src/profile-preferences.ui.h:77
msgid "Bol_d color:"
msgstr "αααβαα·αα"
#: ../src/profile-preferences.ui.h:78
#| msgid "<b>Palette</b>"
msgid "Palette"
msgstr "ααααΆαβααα"
#: ../src/profile-preferences.ui.h:79
msgid "Built-in _schemes:"
msgstr "αααααααΆαααβαααβααΆααβααβααααΆααα"
#: ../src/profile-preferences.ui.h:80
#| msgid ""
#| "<small><i><b>Note:</b> Terminal applications have these colors available "
#| "to them.</i></small>"
msgid "<b>Note:</b> Terminal applications have these colors available to them."
msgstr "<b>α
αααΆαα</b> αααααα·ααΈβααααΆααΈαβααΆαβαααβααΆαααααβαααααΆααβαα½αααΆα"
#: ../src/profile-preferences.ui.h:81
msgid "Color p_alette:"
msgstr "αααβααααΆαα"
#: ../src/profile-preferences.ui.h:82
msgid "Colors"
msgstr "ααα"
#: ../src/profile-preferences.ui.h:83
msgid "Scroll_back:"
msgstr "αααΌαβαααααααα"
#: ../src/profile-preferences.ui.h:84
msgid "Scroll on _keystroke"
msgstr "αααΌαβαααβααααααβααααΆααα
α»α
"
#: ../src/profile-preferences.ui.h:85
msgid "Scroll on _output"
msgstr "αααΌαβαααβαααα αΆα"
#: ../src/profile-preferences.ui.h:86
msgid "_Unlimited"
msgstr "ααααΆαβαααβααααα"
#: ../src/profile-preferences.ui.h:87
msgid "lines"
msgstr "αααααΆαα"
#: ../src/profile-preferences.ui.h:88
#| msgid "_Scrollbar is:"
msgid "_Show scrollbar"
msgstr "αααα αΆααβααΆαβαααΌα"
#: ../src/profile-preferences.ui.h:89
msgid "Scrolling"
msgstr "αααΌα"
#: ../src/profile-preferences.ui.h:90
#| msgid ""
#| "<small><i><b>Note:</b> These options may cause some applications to "
#| "behave incorrectly. They are only here to allow you to work around "
#| "certain applications and operating systems that expect different terminal "
#| "behavior.</i></small>"
msgid ""
"<b>Note:</b> These options may cause some applications to behave "
"incorrectly. They are only here to allow you to work around certain "
"applications and operating systems that expect different terminal behavior."
msgstr ""
"<b>α
αααΆαα</b> "
"αααααΎαβααΆαααααβα’αΆα
βααααβα²ααβαααααα·ααΈβαα½αβα
ααα½αβααααΎαααΆαβαα·αβααααΉαααααΌαα "
"αα½αααΆβαα
βααΈαααβααΊβααΎααααΈα²ααβα’αααβααααΎααΆαβααβααΆαα½αβαααααα·ααΈ αα·αβααααααααβαααα"
"α·ααααα·ααΆαβααΆααααΆααβαααβα’αΆα
βααΉαβααΆαβα₯αα·ααΆααβααααΆααΈαβαααααααααΆβααα»αααααα"
#: ../src/profile-preferences.ui.h:91
msgid "_Delete key generates:"
msgstr "ααααΆααα
α»α
βαα»α (Delete) αααααΎαα"
#: ../src/profile-preferences.ui.h:92
msgid "_Backspace key generates:"
msgstr "ααααΆααα
α»α
βαα»αβααααααα (Backspace) αααααΎαα"
#: ../src/profile-preferences.ui.h:93
msgid "_Reset Compatibility Options to Defaults"
msgstr "αααααβαααααΎαβααβααααΆβα‘αΎααα·αβαα
βααααΆαααΎα"
#: ../src/profile-preferences.ui.h:94
msgid "Compatibility"
msgstr "ααΆαβααβααααΆ"
#: ../src/terminal-accels.c:116
#| msgid "New Terminal"
msgid "New Terminal in New Tab"
msgstr "ααααΆααΈαβααααΈβαααα»αβααααΆααβααααΈ"
#: ../src/terminal-accels.c:117
#| msgid "New Terminal"
msgid "New Terminal in New Window"
msgstr "ααααΆααΈαβααααΈβαααα»αβαααα’α½α
βααααΈ"
#: ../src/terminal-accels.c:118
msgid "New Profile"
msgstr "ααααααβααααΈ"
#: ../src/terminal-accels.c:120
msgid "Save Contents"
msgstr "αααααΆαα»αβααΆαα·ααΆ"
#: ../src/terminal-accels.c:122
#| msgid "C_lose Terminal"
msgid "Close Terminal"
msgstr "αα·αβααααΆααΈα"
#: ../src/terminal-accels.c:123
#| msgid "C_lose Terminal"
msgid "Close All Terminals"
msgstr "αα·αβααααΆααΈαβααΆααα’αα"
#. Edit menu
#: ../src/terminal-accels.c:127 ../src/terminal-window.c:2475
#: ../src/terminal-window.c:2590
msgid "Copy"
msgstr "α
αααα"
#: ../src/terminal-accels.c:128 ../src/terminal-window.c:2478
#: ../src/terminal-window.c:2593
msgid "Paste"
msgstr "αα·αααααΆαα"
#: ../src/terminal-accels.c:133
#| msgid "Find Ne_xt"
msgid "Find Next"
msgstr "ααβαααααΆαα"
#: ../src/terminal-accels.c:134
#| msgid "Find Pre_vious"
msgid "Find Previous"
msgstr "ααβαα»α"
#: ../src/terminal-accels.c:135
#| msgid "_Clear Highlight"
msgid "Clear Find Highlight"
msgstr "αααα’αΆαβααΆαβααβααααα
"
#: ../src/terminal-accels.c:139
#| msgid "Hide and Show menubar"
msgid "Hide and Show toolbar"
msgstr "ααΆαα αα·αβαααα αΆαβαααΆαβα§ααααα"
#: ../src/terminal-accels.c:140
msgid "Full Screen"
msgstr "αααβα’αααααα"
#. View menu
#: ../src/terminal-accels.c:141 ../src/terminal-window.c:2495
msgid "Zoom In"
msgstr "αααααΈα"
#: ../src/terminal-accels.c:142 ../src/terminal-window.c:2498
msgid "Zoom Out"
msgstr "ααααα½α"
#: ../src/terminal-accels.c:143 ../src/terminal-window.c:2501
msgid "Normal Size"
msgstr "ααα αβααααααΆ"
#: ../src/terminal-accels.c:147 ../src/terminal-window.c:758
msgid "Set Title"
msgstr "αααααβα
αααααΎα"
#: ../src/terminal-accels.c:148
msgid "Reset"
msgstr "αααααβα‘αΎααα·α"
#: ../src/terminal-accels.c:149
msgid "Reset and Clear"
msgstr "αααααβα‘αΎααα·α βαα·αβαααα’αΆα"
#: ../src/terminal-accels.c:153
#| msgid "Switch to Previous Tab"
msgid "Switch to Previous Terminal"
msgstr "ααααΌαβαα
βααααΆααΈαβαα»α"
#: ../src/terminal-accels.c:154
#| msgid "Switch to Next Tab"
msgid "Switch to Next Terminal"
msgstr "ααααΌαβαα
βααααΆααΈαβαααααΆαα"
#: ../src/terminal-accels.c:155
#| msgid "Move Tab to the Left"
msgid "Move Terminal to the Left"
msgstr "ααααΆααααΈβααααΆααΈαβαα
βααααα"
#: ../src/terminal-accels.c:156
#| msgid "Move Tab to the Right"
msgid "Move Terminal to the Right"
msgstr "ααααΆααααΈβααααΆααΈβαα
βααααΆα"
#: ../src/terminal-accels.c:157
#| msgid "New Terminal"
msgid "Detach Terminal"
msgstr "ααααΆα
αβααααΆααΈα"
#: ../src/terminal-accels.c:180
msgid "Contents"
msgstr "ααΆαα·ααΆ"
#: ../src/terminal-accels.c:187
msgid "File"
msgstr "α―αααΆα"
#: ../src/terminal-accels.c:188
msgid "Edit"
msgstr "ααααααα½α"
#: ../src/terminal-accels.c:189
msgid "View"
msgstr "ααΎα"
#: ../src/terminal-accels.c:192
msgid "Tabs"
msgstr "ααααΆαα"
#: ../src/terminal-accels.c:193
msgid "Help"
msgstr "αααα½α"
#: ../src/terminal-accels.c:277
#, c-format
#| msgid "Switch to Tab 1"
msgid "Switch to Tab %d"
msgstr "ααααΌαβαα
βααααΆαα %d"
#: ../src/terminal-accels.c:494
msgid "_Action"
msgstr "αααααααΆα"
#: ../src/terminal-accels.c:512
msgid "Shortcut _Key"
msgstr "ααααΆααα
α»α
βααααΌαααΆαα"
#: ../src/terminal-app.c:650
msgid "User Defined"
msgstr "αααααβαααβα’αααααααΎ"
#: ../src/terminal-appmenu.ui.h:1
#| msgid "New Terminal"
msgid "_New Terminal"
msgstr "ααααΆααΈαβααααΈ"
#: ../src/terminal-appmenu.ui.h:2
msgid "_Preferences"
msgstr "α
αααΌαα
α·αααβ"
#: ../src/terminal-appmenu.ui.h:3 ../src/terminal-window.c:2447
msgid "_Help"
msgstr "αααα½α"
#: ../src/terminal-appmenu.ui.h:4 ../src/terminal-window.c:2566
msgid "_About"
msgstr "α’αααΈ"
#: ../src/terminal-appmenu.ui.h:5
msgid "_Quit"
msgstr "α
αα"
#: ../src/terminal.c:235
#, c-format
msgid "Failed to parse arguments: %s\n"
msgstr "ααΆαβαααΆαααβαααα»αβααΆαβαααβα’αΆαα»αααααα %s\n"
#: ../src/terminal-encoding.c:52 ../src/terminal-encoding.c:65
#: ../src/terminal-encoding.c:79 ../src/terminal-encoding.c:101
#: ../src/terminal-encoding.c:112
msgid "Western"
msgstr "αααβααΆααα·α
"
#: ../src/terminal-encoding.c:53 ../src/terminal-encoding.c:80
#: ../src/terminal-encoding.c:91 ../src/terminal-encoding.c:110
msgid "Central European"
msgstr "α’αΊααα»αβαααααΆα"
#: ../src/terminal-encoding.c:54
msgid "South European"
msgstr "α’αΊααα»αβααΆαααααΌα"
#: ../src/terminal-encoding.c:55 ../src/terminal-encoding.c:63
#: ../src/terminal-encoding.c:117
msgid "Baltic"
msgstr "ααΆαααα·α"
#: ../src/terminal-encoding.c:56 ../src/terminal-encoding.c:81
#: ../src/terminal-encoding.c:87 ../src/terminal-encoding.c:88
#: ../src/terminal-encoding.c:93 ../src/terminal-encoding.c:111
msgid "Cyrillic"
msgstr "αααΈααΈαα·α"
#: ../src/terminal-encoding.c:57 ../src/terminal-encoding.c:84
#: ../src/terminal-encoding.c:90 ../src/terminal-encoding.c:116
msgid "Arabic"
msgstr "α’αΆαααΆαα"
#: ../src/terminal-encoding.c:58 ../src/terminal-encoding.c:96
#: ../src/terminal-encoding.c:113
msgid "Greek"
msgstr "αααα·α"
#: ../src/terminal-encoding.c:59
msgid "Hebrew Visual"
msgstr "α’ααΈααααΆα’ααβααΎαααΎα"
#: ../src/terminal-encoding.c:60 ../src/terminal-encoding.c:83
#: ../src/terminal-encoding.c:99 ../src/terminal-encoding.c:115
msgid "Hebrew"
msgstr "α’ααΈααααΆα’αα"
#: ../src/terminal-encoding.c:61 ../src/terminal-encoding.c:82
#: ../src/terminal-encoding.c:103 ../src/terminal-encoding.c:114
msgid "Turkish"
msgstr "αα½αααΈ"
#: ../src/terminal-encoding.c:62
msgid "Nordic"
msgstr "ααααα·α"
#: ../src/terminal-encoding.c:64
msgid "Celtic"
msgstr "ααααα·α"
#: ../src/terminal-encoding.c:66 ../src/terminal-encoding.c:102
msgid "Romanian"
msgstr "ααΌαααΆααΈ"
#. These encodings do NOT pass-through ASCII, so are always rejected.
#. * FIXME: why are they in this table; or rather why do we need
#. * the ASCII pass-through requirement?
#.
#: ../src/terminal-encoding.c:67 ../src/terminal-encoding.c:124
#: ../src/terminal-encoding.c:125 ../src/terminal-encoding.c:126
#: ../src/terminal-encoding.c:127
msgid "Unicode"
msgstr "ααΌααΈααΌα"
#: ../src/terminal-encoding.c:68
msgid "Armenian"
msgstr "α’αΆααααΈ"
#: ../src/terminal-encoding.c:69 ../src/terminal-encoding.c:70
#: ../src/terminal-encoding.c:74
msgid "Chinese Traditional"
msgstr "α’ααααβα
α·αβααα"
#: ../src/terminal-encoding.c:71
msgid "Cyrillic/Russian"
msgstr "αααΈααΈαα·α/αα»αααααΈ"
#: ../src/terminal-encoding.c:72 ../src/terminal-encoding.c:85
#: ../src/terminal-encoding.c:105
msgid "Japanese"
msgstr "αααα»α"
#: ../src/terminal-encoding.c:73 ../src/terminal-encoding.c:86
#: ../src/terminal-encoding.c:108 ../src/terminal-encoding.c:128
msgid "Korean"
msgstr "ααΌααα"
#: ../src/terminal-encoding.c:75 ../src/terminal-encoding.c:76
#: ../src/terminal-encoding.c:77
msgid "Chinese Simplified"
msgstr "α’ααααβα
α·αβααΆαα"
#: ../src/terminal-encoding.c:78
msgid "Georgian"
msgstr "α αααα ααααΈ"
#: ../src/terminal-encoding.c:89 ../src/terminal-encoding.c:104
msgid "Cyrillic/Ukrainian"
msgstr "αααΈααΈαα·α/α’αα»αααααα"
#: ../src/terminal-encoding.c:92
msgid "Croatian"
msgstr "ααααΌα’αΆαααΈ"
#: ../src/terminal-encoding.c:94
msgid "Hindi"
msgstr "α α·ααααΌ"
#: ../src/terminal-encoding.c:95
msgid "Persian"
msgstr "ααΊααα"
#: ../src/terminal-encoding.c:97
msgid "Gujarati"
msgstr "α ααα»αααΆααΆααΈ"
#: ../src/terminal-encoding.c:98
msgid "Gurmukhi"
msgstr "αα»αα»αααΈ"
#: ../src/terminal-encoding.c:100
msgid "Icelandic"
msgstr "α’ααΈααααα"
#: ../src/terminal-encoding.c:106 ../src/terminal-encoding.c:109
#: ../src/terminal-encoding.c:118
msgid "Vietnamese"
msgstr "αααααΆα"
#: ../src/terminal-encoding.c:107
msgid "Thai"
msgstr "αα"
#: ../src/terminal-encoding.c:273
msgid "Current Locale"
msgstr "Locale αα
αα
α»αααααα"
#: ../src/terminal-nautilus.c:600
msgid "Open in _Remote Terminal"
msgstr "ααΎαβαα
βαααα»αβααααΆααΈαβααΈα
ααααΆα"
#: ../src/terminal-nautilus.c:602
msgid "Open in _Local Terminal"
msgstr "ααΎαβαα
βαααα»αβααααΆααΈαβααΌαααααΆα"
#: ../src/terminal-nautilus.c:606 ../src/terminal-nautilus.c:617
msgid "Open the currently selected folder in a terminal"
msgstr "ααΎαβααβαααβααΆαβααααΎαβαα
αα
α»ααααααβαα
βαααα»αβααααΆααΈα"
#: ../src/terminal-nautilus.c:608 ../src/terminal-nautilus.c:619
#: ../src/terminal-nautilus.c:629
msgid "Open the currently open folder in a terminal"
msgstr "ααΎαβααβαααβααΎαβαα
αα
α»ααααααβαα
βαααα»αβααααΆααΈα"
#: ../src/terminal-nautilus.c:614 ../src/terminal-nautilus.c:628
msgid "Open in T_erminal"
msgstr "ααΎαβαα
βαααα»αβααααΆααΈα"
#: ../src/terminal-nautilus.c:625
msgid "Open T_erminal"
msgstr "ααΎαβααααΆααΈα"
#: ../src/terminal-nautilus.c:626
msgid "Open a terminal"
msgstr "ααΎαβααααΆααΈα"
#: ../src/terminal-nautilus.c:644 ../src/terminal-nautilus.c:657
msgid "Open in _Midnight Commander"
msgstr "ααΎαβαα
βαααα»αβ Midnight Commander"
#: ../src/terminal-nautilus.c:646
msgid ""
"Open the currently selected folder in the terminal file manager Midnight "
"Commander"
msgstr ""
"ααΎαβααβαααβααΆαβααααΎαβαα
αα
α»ααααααβαα
βαααα»αβαααααα·ααΈβαααααααααβα―αααΆαβααααΆααΈα "
"Midnight Commander"
#: ../src/terminal-nautilus.c:648 ../src/terminal-nautilus.c:658
msgid ""
"Open the currently open folder in the terminal file manager Midnight "
"Commander"
msgstr ""
"ααΎαβααβαααβααΎαβαα
αα
α»ααααααβαα
βαααα»αβαααααα·ααΈβαααααααααβα―αααΆαβααααΆααΈα "
"Midnight Commander"
#: ../src/terminal-nautilus.c:654
msgid "Open _Midnight Commander"
msgstr "ααΎα Midnight Commander"
#: ../src/terminal-nautilus.c:655
msgid "Open the terminal file manager Midnight Commander"
msgstr "ααΎαβαααααα·ααΈβαααααααααβα―αααΆαβααααΆααΈα Midnight Commander"
#: ../src/terminal-options.c:224 ../src/terminal-options.c:237
#, c-format
msgid "Option \"%s\" is no longer supported in this version of gnome-terminal."
msgstr "αααααΎα \"%s\" αα·αβααΆααααβαα
βαααα»αβααααβααααΆααΈαβ gnome αααβαααβααα"
#: ../src/terminal-options.c:249 ../src/terminal-util.c:217
msgid "GNOME Terminal"
msgstr "ααααΆααΈα GNOME"
#: ../src/terminal-options.c:289
#, c-format
msgid "Argument to \"%s\" is not a valid command: %s"
msgstr "α’αΆαα»αααααβαααααΆαα \"%s\" αα·ααααβααΆβααΆαααβαααααΆβααααΉαααααΌαβααα %s"
#: ../src/terminal-options.c:438
msgid "Two roles given for one window"
msgstr "ααΆαβαααααβαα½ααΆααΈβααΈαβαααααΆααβαααα’α½α
βαα½α"
#: ../src/terminal-options.c:459 ../src/terminal-options.c:492
#, c-format
msgid "\"%s\" option given twice for the same window\n"
msgstr "αααααΎα \"%s\" ααααΌαβααΆαβαααααβααΈαβααβαααααΆααβαααα’α½α
βααΌα
ααααΆ\n"
#: ../src/terminal-options.c:690
#, c-format
msgid "Zoom factor \"%g\" is too small, using %g\n"
msgstr "αααααΆβαααααΈα \"%g\" ααΊβααΌα
βααα α
αΌαβααααΎ %g\n"
#: ../src/terminal-options.c:698
#, c-format
msgid "Zoom factor \"%g\" is too large, using %g\n"
msgstr "αααααΆβαααααΈα \"%g\" ααΊβααβααα α
αΌαβααααΎ %g\n"
#: ../src/terminal-options.c:736
#, c-format
msgid ""
"Option \"%s\" requires specifying the command to run on the rest of the "
"command line"
msgstr ""
"αααααΎα \"%s\" ααΆαααΆαβα²ααβαααααΆααβααΆαααβαααααΆβααΎααααΈβααααΎαααΆαβαα
βααΎβαααααβαααβα"
"α
αααβααβαααααΆααβααΆαααβαααααΆ"
#: ../src/terminal-options.c:871
msgid "Not a valid terminal config file."
msgstr "αα·ααααβααΆβα―αααΆαβαααααβαα
ααΆααααααααβααααΆααΈαβαααβααααΉαααααΌαα"
#: ../src/terminal-options.c:884
msgid "Incompatible terminal config file version."
msgstr "ααααβα―αααΆαβαααααβαα
ααΆααααααααβααααΆααΈαβαααβαα·αβααααααΆα"
#: ../src/terminal-options.c:1024
msgid ""
"Do not register with the activation nameserver, do not re-use an active "
"terminal"
msgstr ""
"αα»αβα
α»ααααααβααΆαα½αβαααΆαααΈαααβαααααβαααααΆααβααααΎα²ααβααααα "
"αα»αβααααΎβααααΆααΈαβαααααβα‘αΎααα·α"
#: ../src/terminal-options.c:1033
msgid "Load a terminal configuration file"
msgstr "αααα»αβα―αααΆαβααΆαβαααααββαα
ααΆααααααααβααααΆααΈα"
#: ../src/terminal-options.c:1034
msgid "FILE"
msgstr "α―αααΆα"
#: ../src/terminal-options.c:1055
msgid "Open a new window containing a tab with the default profile"
msgstr "ααΎαβαααα’α½α
βααααΈβαααβααΆαβααααΆααβααΆαα½αβααααααβααααΆαααΎα"
#: ../src/terminal-options.c:1064
msgid "Open a new tab in the last-opened window with the default profile"
msgstr ""
"ααΎαβααααΆααβααααΈβαα
βαααα»αβαααα’α½α
βαααβααΆαβααΎαβα
α»ααααααβααΆαα½αβααααααβααααΆαααΎα"
#: ../src/terminal-options.c:1077
msgid "Turn on the menubar"
msgstr "ααΎαβαααΆαβαααΊαα»α"
#: ../src/terminal-options.c:1086
msgid "Turn off the menubar"
msgstr "αα·αβαααΆαβαααΊαα»α"
#: ../src/terminal-options.c:1131
msgid "Set the last specified tab as the active one in its window"
msgstr ""
"αααααβααααΆααβαααβααΆαβαααααΆααβα
α»ααααααβααΆβααΆβααααΆααβαααααβαα
βαααα»αβαααα’α½α
βααα"
"αβααΆ"
#: ../src/terminal-options.c:1144
msgid "Execute the argument to this option inside the terminal"
msgstr "ααααα·ααααα·βα’αΆαα»αααααβαα
βααΆααβαααααΎαβαααβαα
βααΆααααα»αβααααΆααΈα"
#: ../src/terminal-options.c:1154
msgid "PROFILE-NAME"
msgstr "αααααβαααααα"
#: ../src/terminal-options.c:1269 ../src/terminal-options.c:1275
msgid "GNOME Terminal Emulator"
msgstr "ααααα»βααααΆααααΆαβααααΆααΈα GNOME"
#: ../src/terminal-options.c:1276
msgid "Show GNOME Terminal options"
msgstr "αααα αΆαβαααααΎαβααααΆααΈα GNOME"
#: ../src/terminal-options.c:1286
msgid ""
"Options to open new windows or terminal tabs; more than one of these may be "
"specified:"
msgstr "αααααΎαβαααααΆααβααΎαβαααα’α½α
α¬βααααΆααβααααΆααΈαβααααΈ α’αΆα
βαααααΆααβααΎαβααΈβαα½αα"
#: ../src/terminal-options.c:1295
msgid ""
"Window options; if used before the first --window or --tab argument, sets "
"the default for all windows:"
msgstr ""
"αααααΎαβαααα’α½α
ααααα·αααΎβααΆαβααααΎβααΈαα»α --window α¬ --tab argument ααααΌα "
"αααααβααααΆαααΎαβαααααΆααβαααα’α½α
βααΆααα’ααα"
#: ../src/terminal-options.c:1296
msgid "Show per-window options"
msgstr "αααα αΆαβαααααΎαβαααα»αβαα½αβαααα’α½α
"
#: ../src/terminal-options.c:1304
msgid ""
"Terminal options; if used before the first --window or --tab argument, sets "
"the default for all terminals:"
msgstr ""
"αααααΎαβααααΆααΈα ααααα·αααΎββααΆαβααααΎβααΈαα»α --window α¬ --tab argument ααααΌα "
"αααααβααααΆαααΎαβαααααΆααβααααΆααΈαβααΆααα’ααα"
#: ../src/terminal-options.c:1305
msgid "Show per-terminal options"
msgstr "αααα αΆαβαααααΎαβαααα»αβαα½αβααααΆααΈα"
#: ../src/terminal-prefs.c:214
msgid "Click button to choose profile"
msgstr "α
α»α
βαααΌαα»α ααΎααααΈβααααΎαβαααααα"
#: ../src/terminal-prefs.c:316
msgid "Profile list"
msgstr "αααααΈβαααααα"
#: ../src/terminal-prefs.c:371
#, c-format
msgid "Delete profile β%sβ?"
msgstr "αα»αβαααααα β%sβ?"
#: ../src/terminal-prefs.c:375 ../src/terminal-window.c:521
msgid "_Cancel"
msgstr "αααααα"
#: ../src/terminal-prefs.c:377
msgid "_Delete"
msgstr "αα»α"
#: ../src/terminal-prefs.c:387
msgid "Delete Profile"
msgstr "αα»αβαααααα"
#: ../src/terminal-prefs.c:695
msgid "Show"
msgstr "αααα αΆα"
#: ../src/terminal-prefs.c:706
msgid "_Encoding"
msgstr "ααΆαβααΆααβααΆβααΌα"
#: ../src/terminal-screen.c:1091
msgid "No command supplied nor shell requested"
msgstr "αα·αβααΆαβαααααβααΆαααβαααααΆ α¬βααααΎβααα"
#: ../src/terminal-screen.c:1347 ../src/terminal-window.c:2490
msgid "_Profile Preferences"
msgstr "α
αααΌαα
α·αααβαααααα"
#: ../src/terminal-screen.c:1348 ../src/terminal-screen.c:1696
msgid "_Relaunch"
msgstr "ααΎαβααααΎαααΆαβα‘αΎααα·α"
#: ../src/terminal-screen.c:1351
msgid "There was an error creating the child process for this terminal"
msgstr "ααΆαβααα α»αβαααα»αβααΆαβαααααΎαβααααΎαααΆαβααβαααααΆααβααααΆααΈαβααα"
#: ../src/terminal-screen.c:1700
#, c-format
msgid "The child process exited normally with status %d."
msgstr "ααααΎαααΆαβααβααΆαβα
αΆαα
ααβααΆαβααααααΆβααΆαα½αβααααΆαααΆα %d α"
#: ../src/terminal-screen.c:1703
#, c-format
msgid "The child process was aborted by signal %d."
msgstr "ααααΎαααΆαβααβααααΌαβααΆαβαααα
ααβαααβαααααΆ %d α"
#: ../src/terminal-screen.c:1706
msgid "The child process was aborted."
msgstr "ααααΎαααΆαβααβααααΌαβααΆαβαααα
ααα"
#: ../src/terminal-tab-label.c:197
msgid "Close tab"
msgstr "αα·αβααααΆαα"
#: ../src/terminal-tabs-menu.c:196
msgid "Switch to this tab"
msgstr "ααααΌαβαα
βααααΆααβααα"
#: ../src/terminal-util.c:147
msgid "There was an error displaying help"
msgstr "ααΆαβααα α»αβαααα»αβααΆαβαααα αΆαβαααα½α"
#: ../src/terminal-util.c:200
msgid "Contributors:"
msgstr "α’αααβα
αΌααα½αα"
#: ../src/terminal-util.c:219
msgid "A terminal emulator for the GNOME desktop"
msgstr "ααααα»βααααΆααααΆαβααααΆααΈαβαααααΆααβαααααα» GNOME"
#: ../src/terminal-util.c:227
msgid "translator-credits"
msgstr "ααΉα αα»ααα, ααα αα»ααααΆ, αα»α αα»ααΆ"
#: ../src/terminal-util.c:300
#, c-format
msgid "Could not open the address β%sβ"
msgstr "αα·αβα’αΆα
βααΎαβα’αΆααααααΆα β%sβ"
#: ../src/terminal-util.c:369
#| msgid ""
#| "GNOME Terminal is free software; you can redistribute it and/or modify it "
#| "under the terms of the GNU General Public License as published by the "
#| "Free Software Foundation; either version 3 of the License, or (at your "
#| "option) any later version."
msgid ""
"GNOME Terminal is free software: you can redistribute it and/or modify it "
"under the terms of the GNU General Public License as published by the Free "
"Software Foundation, either version 3 of the License, or (at your option) "
"any later version."
msgstr ""
"ααααΆααΈα GNOME ααΊααΆβαααααα·ααΈβα₯αβαα·αβααααα α’αααβα’αΆα
βα
ααα
αΆαβαααα "
"αα·α/α¬βααααααβααΆβαααβαααα·ααα
βαααααβααααααααβα’αΆααααΆαααααβααΆααΆαααβααΌαα
GNU "
"ααΌα
βαααβααΆαβααααα»αααααααΆαβαααβααΌααα·αα·βαααααα·ααΈβα₯αβαα·αβαααα ααΆααβααααβααΈα£ α¬ "
"(ααΆαβαααααΎαββααααβα’ααα) ααααβαααααβααΆαα½αβαααα"
#: ../src/terminal-util.c:373
msgid ""
"GNOME Terminal is distributed in the hope that it will be useful, but "
"WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY "
"or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for "
"more details."
msgstr ""
"ααααΆααΈα GNOME ααααΌαβααΆαβα
ααα
αΆαβαααβαααααΉαβααΆβααΉαβααΆαβαααααααα "
"ααα»ααααβαα·αβααΆαβααΆαβααΆααΆβααΆαα½αβα‘αΎα ααΌααααΈββααΆαβααΆααΆβα’αααΈβααΆαβααααΎβα’αΆααΈααααα "
"α¬βαααααΆααβαααααααβαα·αααβααΆαα½αβαααααα αααααΆααβααααααΆαβαααα’α·α "
"ααΌαβααΎαβα’αΆααααΆαααααβααΆααΆαααβααΌαα
GNU α"
#: ../src/terminal-util.c:377
#| msgid ""
#| "You should have received a copy of the GNU General Public License along "
#| "with GNOME Terminal; if not, write to the Free Software Foundation, Inc., "
#| "51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA"
msgid ""
"You should have received a copy of the GNU General Public License along with "
"GNOME Terminal. If not, see <http://www.gnu.org/licenses/>."
msgstr ""
"α’αααβαα½αααβααα½αβααΆαβα
αααΆααβα
ααααβα’αΆααααΆαααααβααΆααΆαααβααΌαα
GNU "
"αααβααΆααβααβααΆαα½αβααααΆααΈα GNOME α ααααα·αααΎβαα·αβααΆαβααα½αβαα ααΌαβα
αΌαβαα
"
"<http://www.gnu.org/licenses/> α"
#: ../src/terminal-window.c:496
msgid "Could not save contents"
msgstr "αα·αβα’αΆα
βαααααΆαα»αβααΆαα·ααΆ"
#: ../src/terminal-window.c:518
#| msgid "Save as..."
msgid "Save asβ¦"
msgstr "αααααΆαα»αβααΆ..."
#: ../src/terminal-window.c:522
msgid "_Save"
msgstr "αααααΆαα»α"
#. Translators: This is the label of a menu item to choose a profile.
#. * _%d is used as the accelerator (with d between 1 and 9), and
#. * the %s is the name of the terminal profile.
#.
#: ../src/terminal-window.c:1283
#, c-format
msgid "_%d. %s"
msgstr "_%d. %s"
#. Translators: This is the label of a menu item to choose a profile.
#. * _%c is used as the accelerator (it will be a character between A and Z),
#. * and the %s is the name of the terminal profile.
#.
#: ../src/terminal-window.c:1289
#, c-format
msgid "_%c. %s"
msgstr "_%c. %s"
#. Toplevel
#: ../src/terminal-window.c:2440
msgid "_File"
msgstr "α―αααΆα"
#. File menu
#: ../src/terminal-window.c:2441 ../src/terminal-window.c:2452
#: ../src/terminal-window.c:2458 ../src/terminal-window.c:2599
msgid "Open _Terminal"
msgstr "ααΎαβααααΆααΈα"
#: ../src/terminal-window.c:2442
msgid "_Edit"
msgstr "ααααααα½α"
#: ../src/terminal-window.c:2443
msgid "_View"
msgstr "ααΎα"
#: ../src/terminal-window.c:2444
msgid "_Search"
msgstr "ααααααα"
#: ../src/terminal-window.c:2445
msgid "_Terminal"
msgstr "ααααΆααΈα"
#: ../src/terminal-window.c:2446
msgid "Ta_bs"
msgstr "ααααΆαα"
#: ../src/terminal-window.c:2455
msgid "Open Ta_b"
msgstr "ααΎαβααααΆαα"
#: ../src/terminal-window.c:2461
#| msgid "New Profile"
msgid "New _Profile"
msgstr "ααααααβααααΈ"
#: ../src/terminal-window.c:2464
msgid "_Save Contents"
msgstr "αααααΆαα»αβααΆαα·ααΆ"
#: ../src/terminal-window.c:2467 ../src/terminal-window.c:3679
msgid "C_lose Terminal"
msgstr "αα·αβααααΆααΈα"
#: ../src/terminal-window.c:2470
#| msgid "C_lose Terminal"
msgid "_Close All Terminals"
msgstr "αα·αβααααΆααΈαβααΆααα’αα"
#: ../src/terminal-window.c:2481 ../src/terminal-window.c:2596
msgid "Paste _Filenames"
msgstr "αα·αααααΆααβαααααβα―αααΆα"
#: ../src/terminal-window.c:2484
msgid "Select All"
msgstr "ααααΎαβααΆααα’αα"
#: ../src/terminal-window.c:2487
#| msgid "_Preferences"
msgid "Pre_ferences"
msgstr "α
αααΌαα
α·ααα"
#. Search menu
#: ../src/terminal-window.c:2506
#| msgid "Find"
msgid "_Findβ¦"
msgstr "αα..."
#: ../src/terminal-window.c:2509
msgid "Find Ne_xt"
msgstr "ααβαααααΆαα"
#: ../src/terminal-window.c:2512
msgid "Find Pre_vious"
msgstr "ααβαα»α"
#: ../src/terminal-window.c:2515
msgid "_Clear Highlight"
msgstr "αααα’αΆαβααΆαβααααα
"
#: ../src/terminal-window.c:2519
msgid "Go to _Line..."
msgstr "αα
ααΆααβαααααΆαα..."
#: ../src/terminal-window.c:2522
msgid "_Incremental Search..."
msgstr "αααααααβαααααα..."
#. Terminal menu
#: ../src/terminal-window.c:2528
msgid "Change _Profile"
msgstr "ααααΆααααααΌαβαααααα"
#: ../src/terminal-window.c:2529
msgid "_Set Titleβ¦"
msgstr "αααααβα
αααααΎαβ¦"
#: ../src/terminal-window.c:2532
msgid "Set _Character Encoding"
msgstr "αααααβααΆαβααΆααβαα½α’ααααβααΆβαααβααΌα"
#: ../src/terminal-window.c:2533
msgid "_Reset"
msgstr "αααααβα‘αΎααα·α"
#: ../src/terminal-window.c:2536
msgid "Reset and C_lear"
msgstr "αααααβα‘αΎααα·α α αΎαβαααα’αΆα"
#. Terminal/Encodings menu
#: ../src/terminal-window.c:2541
msgid "_Add or Removeβ¦"
msgstr "αααααα α¬βααα
ααβ¦"
#. Tabs menu
#: ../src/terminal-window.c:2546
#| msgid "_Previous Tab"
msgid "_Previous Terminal"
msgstr "ααααΆααΈαβαα»α"
#: ../src/terminal-window.c:2549
#| msgid "New Terminal"
msgid "_Next Terminal"
msgstr "ααααΆααΈαβαααααΆαα"
#: ../src/terminal-window.c:2552
#| msgid "Move Tab _Left"
msgid "Move Terminal _Left"
msgstr "ααααΆααααΈβααααΆααΈαβαα
βααααα"
#: ../src/terminal-window.c:2555
#| msgid "Move Tab _Right"
msgid "Move Terminal _Right"
msgstr "ααααΆααααΈβααααΆααΈαβαα
βααααΆα"
#: ../src/terminal-window.c:2558
#| msgid "_Terminal"
msgid "_Detach Terminal"
msgstr "ααααΆα
αβααααΆααΈα"
#. Help menu
#: ../src/terminal-window.c:2563
msgid "_Contents"
msgstr "ααΆαα·ααΆ"
#. Popup menu
#: ../src/terminal-window.c:2571
msgid "_Send Mail Toβ¦"
msgstr "ααααΎβα’ααΈαααβαα
ααΆααβ¦"
#: ../src/terminal-window.c:2574
msgid "_Copy E-mail Address"
msgstr "α
ααααβα’αΆααααααΆαβα’ααΈααα"
#: ../src/terminal-window.c:2577
msgid "C_all Toβ¦"
msgstr "α α
βαα
ααΆααβ¦"
#: ../src/terminal-window.c:2580
msgid "_Copy Call Address"
msgstr "α
ααααβα’αΆααααααΆαβα α
"
#: ../src/terminal-window.c:2583
msgid "_Open Link"
msgstr "ααΎαβααα"
#: ../src/terminal-window.c:2586
msgid "_Copy Link Address"
msgstr "α
ααααβα’αΆααααααΆαβααα"
#: ../src/terminal-window.c:2589
msgid "P_rofiles"
msgstr "αααααα"
#: ../src/terminal-window.c:2602
msgid "L_eave Full Screen"
msgstr "α
ααααΈβααααβαααβα’αααααα"
#. View Menu
#: ../src/terminal-window.c:2610
msgid "Show _Menubar"
msgstr "αααα αΆαβαααΆαβαααΊαα»α"
#: ../src/terminal-window.c:2614
msgid "_Full Screen"
msgstr "αααβα’αααααα"
#: ../src/terminal-window.c:3666
msgid "Close this window?"
msgstr "αα·αβαααα’α½α
βαααβα¬?"
#: ../src/terminal-window.c:3666
msgid "Close this terminal?"
msgstr "αα·αβααααΆααΈαβαααβα¬?"
#: ../src/terminal-window.c:3670
msgid ""
"There are still processes running in some terminals in this window. Closing "
"the window will kill all of them."
msgstr ""
"αα
βαααα»αβαααα’α½α
βααα ααααΆααΈαβαα½αβα
ααα½αβαα
βααΆαβααααΎαααΆαβαααα»αβααΎαββαα
βα‘αΎαα "
"ααΆαβαα·αβαααα’α½α
βααΉαβαααα
ααβααααΎαααΆαβααΆαααααα"
#: ../src/terminal-window.c:3674
msgid ""
"There is still a process running in this terminal. Closing the terminal will "
"kill it."
msgstr ""
"αα
βαααα»αβααααΆααΈαβααα ααΆαβααααΎαααΆαβαα½αβα
ααα½αβαααα»αβααΎαββαα
βα‘αΎαα "
"ααΆαβαα·αβααααΆααΈαβααΉαβαααα
ααβααααΎαααΆαβαααα"
#: ../src/terminal-window.c:3679
msgid "C_lose Window"
msgstr "αα·αβαααα’α½α
"
#~ msgid "Add or Remove Terminal Encodings"
#~ msgstr "αααααα α¬βααβααΆαβα’αα·αααΌαβααααΆααΈαβα
αα"
#~ msgid "A_vailable encodings:"
#~ msgstr "ααΆαβα’αα·αααΌαβαααβααΆα α"
#~ msgid "Always visible"
#~ msgstr "αααβα’αΆα
βααΎαβααΎαββααΆβαα·α
αα
"
#~ msgid "Visible only when necessary"
#~ msgstr "α’αΆα
βααΎαβααΎαββααβαα
βαααβα
αΆαααΆα
αβααα»ααααα"
#~ msgid "Hidden"
#~ msgstr "ααΆαβααΆαα"
#~ msgid "Keyboard Shortcuts"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
"
#~ msgid "What to do with dynamic title"
#~ msgstr "α’αααΈβαααβααααΌαβααααΎβααΆαα½αβα
αααααΎα"
#~ msgid ""
#~ "If the application in the terminal sets the title (most typically people "
#~ "have their shell set up to do this), the dynamically-set title can erase "
#~ "the configured title, go before it, go after it, or replace it. The "
#~ "possible values are \"replace\", \"before\", \"after\", and \"ignore\"."
#~ msgstr ""
#~ "ααααα·αααΎβαααααα·ααΈβαα
βαααα»αβααααΆααΈαβαααααβα
αααααΎα (ααΆαα
αααΎα α’αααααααΎβααΆαβαααβαααααΆααβαααααβααΆ) α
αααααΎαβαααβ"
#~ "ααΆαβαααααβααΆαβααΆαααααβα’αΆα
βαα»αβα
αααααΎαβαααβααΆαβαααααβαα
ααΆααααααααβ αα
βααΆααα»α αα
βααΆαααααα α¬βαααα½αβ α αααααβ"
#~ "αααβα’αΆα
βααααΎβααΆαβααΊ \"αααα½α\" \"ααΆααα»α\" \"ααΆαααααα\" αα·α \"αα·αβα’αΎααΎ\" α"
#~ msgid "C_reate"
#~ msgstr "αααααΎα"
#~ msgid "Profile _name:"
#~ msgstr "αααααβαααααα α"
#~ msgid "_Base on:"
#~ msgstr "α’αΆαααααβααΎ α"
#~ msgid ""
#~ "Block\n"
#~ "I-Beam\n"
#~ "Underline"
#~ msgstr ""
#~ "αααα»α\n"
#~ "I-Beam\n"
#~ "ααΌααααααΆααβααααα"
#~ msgid "<b>Title</b>"
#~ msgstr "<b>α
αααααΎα</b>"
#~ msgid "Initial _title:"
#~ msgstr "α
αααααΎαβααΎα α"
#~ msgid "When terminal commands set their o_wn titles:"
#~ msgstr "αα
βαααβααΆαααβαααααΆβααααΆααΈαβαααααβα
αααβααΎαβααααβααΆβααααΆαα α"
#~ msgid ""
#~ "Replace initial title\n"
#~ "Append initial title\n"
#~ "Prepend initial title\n"
#~ "Keep initial title"
#~ msgstr ""
#~ "αααα½αβα
αααααΎαβααΎα\n"
#~ "ααααααβα
αααααΎαβααΎαββααΆαα
α»α\n"
#~ "ααααααβα
αααααΎαβααΎαβααΆαααΎα\n"
#~ "αααααΆαα»αβα
αααααΎαβααΎα"
#~ msgid ""
#~ "Exit the terminal\n"
#~ "Restart the command\n"
#~ "Hold the terminal open"
#~ msgstr ""
#~ "α
αΆαα
ααβααΈβααααΆααΈα\n"
#~ "α
αΆααααααΎαβααΆαααβαααααΆβα‘αΎααα·α\n"
#~ "αα»αβα²ααβααααΆααΈαβααΎα"
#~ msgid "<b>Foreground, Background, Bold and Underline</b>"
#~ msgstr "<b>ααααβααΆααα»α ααααβααΆαααααα αα·α αα·αβααΌααααααΆααβααααα</b>"
#~ msgid ""
#~ "Always visible\n"
#~ "Visible only when necessary\n"
#~ "Hidden"
#~ msgstr ""
#~ "α’αΆα
βααΎαβααΎαβααΆαα·α
αα
\n"
#~ "α’αΆα
βααΎαβααΎαββααβαα
βαααβαααβα
αΆαααΆα
αβααα»ααααα\n"
#~ "ααΆαα"
#~ msgid ""
#~ "Automatic\n"
#~ "Control-H\n"
#~ "ASCII DEL\n"
#~ "Escape sequence\n"
#~ "TTY Erase"
#~ msgstr ""
#~ "ααααααααααααα·\n"
#~ "Control-H\n"
#~ "ASCII DEL\n"
#~ "ααααΆααβααα
\n"
#~ "ααΆαβαα»α TTY"
#~ msgid "New Tab"
#~ msgstr "ααααΆααβααααΈ"
#~ msgid "Close Tab"
#~ msgstr "αα·αβααααΆαα"
#~ msgid "Close Window"
#~ msgstr "αα·αβαααα’α½α
"
#~ msgid "Detach Tab"
#~ msgstr "ααααΆα
αβααααΆαα"
#~ msgid "Switch to Tab 2"
#~ msgstr "ααααΌαβαα
βααααΆαα α’"
#~ msgid "Switch to Tab 3"
#~ msgstr "ααααΌαβαα
βααααΆαα α£"
#~ msgid "Switch to Tab 4"
#~ msgstr "ααααΌαβαα
βααααΆαα α€"
#~ msgid "Switch to Tab 5"
#~ msgstr "ααααΌαβαα
βααααΆαα α₯"
#~ msgid "Switch to Tab 6"
#~ msgstr "ααααΌαβαα
βααααΆαα α¦"
#~ msgid "Switch to Tab 7"
#~ msgstr "ααααΌαβαα
βααααΆαα α§"
#~ msgid "Switch to Tab 8"
#~ msgstr "ααααΌαβαα
βααααΆαα α¨"
#~ msgid "Switch to Tab 9"
#~ msgstr "ααααΌαβαα
βααααΆαα α©"
#~ msgid "Switch to Tab 10"
#~ msgstr "ααααΌαβαα
βααααΆαα α‘α "
#~ msgid "Switch to Tab 11"
#~ msgstr "ααααΌαβαα
βααααΆαα α‘α‘"
#~ msgid "Switch to Tab 12"
#~ msgstr "ααααΌαβαα
βααααΆαα α‘α’"
#~ msgid ""
#~ "You already have a profile called β%sβ. Do you want to create another "
#~ "profile with the same name?"
#~ msgstr ""
#~ "α’αααβααΆαβααααααβαααβααΆαααααα β%sβ αα½α
α αΎα α βααΎβα’αααβα
ααβαααααΎαβααααααβααααααααβαααβααΆαβαααααβααΌα
ααααΆβ"
#~ "αααβα¬βαα ?"
#~ msgid "Choose base profile"
#~ msgstr "ααααΎαβααααααβααα"
#~ msgid "_Description"
#~ msgstr "ααα
ααααΈβαα·αααααΆ"
#~ msgid "New _Profileβ¦"
#~ msgstr "ααααααβααααΈβ¦"
#~ msgid "C_lose Tab"
#~ msgstr "αα·αβααααΆαα"
#~ msgid "_Close Window"
#~ msgstr "αα·αβαααα’α½α
"
#~ msgid "P_rofilesβ¦"
#~ msgstr "ααααααβ¦"
#~ msgid "_Keyboard Shortcutsβ¦"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
β¦"
#~ msgid "_Preferencesβ¦"
#~ msgstr "ααααΎαααΆαβ¦"
#~ msgid "_Find..."
#~ msgstr "αα..."
#~ msgid "_Next Tab"
#~ msgstr "ααααΆααβαααααΆαα"
#~ msgid "_Detach tab"
#~ msgstr "ααααΆα
αβααααΆαα"
#~ msgid "_Input Methods"
#~ msgstr "αα·ααΈααΆαααααβαααα
αΌα"
#~ msgid "Run;"
#~ msgstr "ααααΎαααΆα"
#~ msgid "Disable connection to session manager"
#~ msgstr "αα·αβααΆαβαααααΆααβαα
βααΆααβαααααα·ααΈβαααααααααβαααα"
#~ msgid "Specify file containing saved configuration"
#~ msgstr "αααααΆααβα―αααΆαβαααβααΆαβααΆαβαααααβαα
ααΆααααααααβαααβααΆααααααΆαα»α"
#~ msgid "Specify session management ID"
#~ msgstr "αααααΆααβαααβαααααΆααβααβααΆαβαααααααααβαααα"
#~ msgid "ID"
#~ msgstr "αααβαααααΆαα"
#~ msgid "Show session management options"
#~ msgstr "αααα αΆαβαααααΎαβαααααααααβαααα"
#~ msgid "List of profiles"
#~ msgstr "αααααΈβαααααα"
#~ msgid ""
#~ "List of profiles known to gnome-terminal. The list contains strings "
#~ "naming subdirectories relative to /apps/gnome-terminal/profiles."
#~ msgstr ""
#~ "αααααΈβααααααβαααβ gnome-terminal ααααΆαα α αααααΈβααΆαβααααβα’ααααββαααβαααααβαααααβααβααβααΆααααβααΉα /apps/"
#~ "gnome-terminal/profiles α"
#~ msgid "Profile to use for new terminals"
#~ msgstr "ααααααβααααΌαβααααΎ αααααΆααβααααΆααΈαβααααΈ"
#~ msgid ""
#~ "Profile to be used when opening a new window or tab. Must be in "
#~ "profile_list."
#~ msgstr "ααααααβααααΌαβααααΎ αα
βαααβααΎαβαααα’α½α
α¬βααααΆααβααααΈ α ααααΌαααβαααα·αβαα
βαααα»αβαααααΈβαααααα α"
#~ msgid "[UTF-8,current]"
#~ msgstr "[UTF-8,current]"
#~ msgid ""
#~ "Whether to ask for confirmation when closing a terminal window which has "
#~ "more than one open tab."
#~ msgstr "ααΆββααΎβααααΌαβαα½αβα’αααΈβααΆαβα’αα’αΆα αα
βαααβαα·αβαααα’α½α
βααααΆααΈαβαααβααΆαβααααΆααβααΎαβα
αααΎαβααΆαβαα½αβαααβα¬βαα α"
#~ msgid ""
#~ "If true, don't make a noise when applications send the escape sequence "
#~ "for the terminal bell."
#~ msgstr "ααααα·αααΎβαα·α αα»αβααααβααα‘αα αα
βαααβαααααα·ααΈβααααΎβααααΆααβααα
βαααααΆααβααααΆααΈα α"
#~ msgid ""
#~ "Where to put the terminal scrollbar. Possibilities are \"left\", \"right"
#~ "\", and \"hidden\"."
#~ msgstr ""
#~ "ααΈααΆααβααααΌαβααΆααβαααΆαβαααΌαββααααΆααΈα α αααααβαααβα’αΆα
βααααΌαβααααΎβααΊ \"ααααα\" \"ααααΆα\" αα·α \"ααΆαα\"β α"
#~ msgid "Whether to send keystrokes for alternate screen scrolling"
#~ msgstr "ααΆβααΎβααααΌαβααααΎβααΆαβα
α»α
βαααααΆααβααΆαβαααΌαβα’ααααααβαααα½αβαααβα¬βαα"
#~ msgid ""
#~ "If true, send Up/Down keystrokes for scrolling when using alternate "
#~ "screen or when scrolling is restricted."
#~ msgstr ""
#~ "ααααα·αααΎβαα·α ααααΎβααΆαβααααααβααααΆααα
α»α
βα‘αΎαααΎ/α
α»ααααααβαααααΆααβααΆαβαααΌα αα
βαααβααααΎβα’ααααααβαααα½αβ α¬βαα
βαααβ"
#~ "αααβααΆαβαααΌαβααααΌαβααΆαβααΆααβααααα·α α"
#~ msgid ""
#~ "The possible values are \"block\" to use a block cursor, \"ibeam\" to use "
#~ "a vertical line cursor, or \"underline\" to use an underline cursor."
#~ msgstr ""
#~ "αααααβαααβα’αΆα
βααααΎβααΆαβααΊ \"αααα»α\" αααααΆααβααααΎβββααααααααααα·α
βαααα»α \"ibeam\" αααααΆααβααααΎβααααααααααα·α
β"
#~ "αααααΆααβααααα α¬β \"ααΌαβαααααΆααβααααα\" αααααΆααβααααΎβααααααααααα·α
βααΌαβαααααΆααβααΈααααα α"
#~ msgid "Icon for terminal window"
#~ msgstr "ααΌαααααΆαβαααααΆααβαααα’α½α
βααααΆααΈα"
#~ msgid "Icon to use for tabs/windows containing this profile."
#~ msgstr "ααΌαααααΆαβααααΌαααααΎαααααΆααβααααΆαα/αααα’α½α
βαααβααΆαβααααααβααα α"
#~ msgid ""
#~ "Terminals have a 16-color palette that applications inside the terminal "
#~ "can use. This is that palette, in the form of a colon-separated list of "
#~ "color names. Color names should be in hex format e.g. \"#FF00FF\""
#~ msgstr ""
#~ "ααααΆααΈαβααΆαβααααΆαβααΆαβαααβα
ααα½αβ α‘α¦ αααβαααβαααααα·ααΈβαα
βααΆαβαααα»αβααααΆααΈαβα’αΆα
βααααΎβααΆα α ααααΆαβαααβααΆαβααααααβ"
#~ "αααααΈβααβαααααβαααβαααβαααααβαααβαααααΆ (:) α αααααβαααβαα½αααβααΆαβαααααααααΆαβααΆβαααβαααβααααΆααα½α α§. "
#~ "\"#FF00FF\""
#~ msgid "Font"
#~ msgstr "αα»αααα’αααα"
#~ msgid ""
#~ "An Pango font name. Examples are \"Sans 12\" or \"Monospace Bold 14\"."
#~ msgstr "αααααβαα»αααα’αααα Pango α α§ααΆα ααα \"Sans 12\" α¬ \"Monospace Bold 14\" α"
#~ msgid "Background type"
#~ msgstr "ααααααβααααααΆαααααα"
#~ msgid ""
#~ "Type of terminal background. May be \"solid\" for a solid color, \"image"
#~ "\" for an image, or \"transparent\" for either real transparency if a "
#~ "compositing window manager is running, or pseudo-transparency otherwise."
#~ msgstr ""
#~ "ααααααβααααβααΆααααααβααααΆααΈα α α’αΆα
\"ααΆαα\" αααααΆααβαααβααΆαα \"ααΌαααΆα\" αααααΆααβααΌαααΆα α¬ \"ααααΆ"
#~ "\" αααααΆααβααΆαβααααΆ ααααα·αααΎβαααααα·ααΈβαααααααααβαααα’α½α
βααααβαααα»αβααααΎαααΆα βα¬βααααα·αααΎβααΆβααΆ pseudo-"
#~ "transparency α"
#~ msgid "Background image"
#~ msgstr "ααΌαααΆαβααααααΆαααααα"
#~ msgid "Filename of a background image."
#~ msgstr "αααααβα―αααΆαβααΌαααΆαβααααααΆαααααα α"
#~ msgid "Whether to scroll background image"
#~ msgstr "ααΆβααΎβααααΌαβαααΌαβααΌαααΆαβααααααΆααααααβαααβα¬αα"
#~ msgid ""
#~ "If true, scroll the background image with the foreground text; if false, "
#~ "keep the image in a fixed position and scroll the text above it."
#~ msgstr ""
#~ "ααααα·αααΎβαα·α αααΌαβααΌαααΆαβααααααΆααααααβααΆαα½αβα’αααααβααααβααΆααα»α ααααα·αααΎβαα·αβαα·α αααααΆαα»αβααΌαααΆαβαααα»αββααΈααΆααβ"
#~ "αααβ α αΎαβαααΌαβα’αααααβαα
βααΆαααΎβααΆ α"
#~ msgid "How much to darken the background image"
#~ msgstr "ααααα·αβααααΎα²ααβααΌαααΆαβααααααΆααααααβαααΉα"
#~ msgid ""
#~ "A value between 0.0 and 1.0 indicating how much to darken the background "
#~ "image. 0.0 means no darkness, 1.0 means fully dark. In the current "
#~ "implementation, there are only two levels of darkness possible, so the "
#~ "setting behaves as a boolean, where 0.0 disables the darkening effect."
#~ msgstr ""
#~ "αααααβα
αααααβααΈ α α ααα α‘.α αααα αΆαβααααα·αβααααΎα²ααβααΌαααΆαβααααβααΆααααααβαααΉα α α .α ααΆαβαααβααΆβααααΆαβααΆαβ"
#~ "αααΉα α‘.α αααΉαβααααΆαα α αα
βαααα»αβααΆαβα’αα»ααααβαα
αα
α»αααααα ααΆαββααβααααα·αβαααΉαβα
ααα½αβααΈαβααα»ααααα αααββααΆαβαααααβααΎαβ"
#~ "αα½βααΆβαααΌααΈα α
αααα α .α αα·αβααααααβαααΉα α"
#~ msgid "Effect of the Backspace key"
#~ msgstr "ααααααβααβααααΆααα
α»α
βαα»αβααααααα (Backspace)"
#~ msgid ""
#~ "Sets what code the backspace key generates. Possible values are \"ascii-"
#~ "del\" for the ASCII DEL character, \"control-h\" for Control-H (AKA the "
#~ "ASCII BS character), \"escape-sequence\" for the escape sequence "
#~ "typically bound to backspace or delete. \"ascii-del\" is normally "
#~ "considered the correct setting for the Backspace key."
#~ msgstr ""
#~ "αααααβααααααβααΌαβαααβαααααΎαβααααΆααα
α»α
βαα»αβααααααα (backspace) α αααααβαααβα’αΆα
βααααΎβααΆα ααΊ \"ascii-"
#~ "del\" αααααΆααβαα½α’αααα ASCII DEL, \"control-h\" αααααΆαα Control-H (AKA ααΆβαα½α’αααα "
#~ "ASCII BS), \"escape-sequence\" αααααΆααβααααΆααβααα
βαααβααΆαβα
αβααααΆααβααΉαβααααΆααα
α»α
βααααααα "
#~ "(backspace) α¬βαα»α (delete) α \"ascii-del\" ααΆαβααααααΆ ααααΌαβααΆαβα
αΆααβαα»αβααΆβααΆβααΆαβαααααβαααβ"
#~ "ααααΉαααααΌαβαααααΆααβααααΆααα
α»α
βαα»αβααααααα (Backspace) α"
#~ msgid "Effect of the Delete key"
#~ msgstr "ααααααβααβααααΆααα
α»α
βαα»α (Delete)"
#~ msgid ""
#~ "Sets what code the delete key generates. Possible values are \"ascii-del"
#~ "\" for the ASCII DEL character, \"control-h\" for Control-H (AKA the "
#~ "ASCII BS character), \"escape-sequence\" for the escape sequence "
#~ "typically bound to backspace or delete. \"escape-sequence\" is normally "
#~ "considered the correct setting for the Delete key."
#~ msgstr ""
#~ "αααααβααααααβααΌαβαααβαααααΎαβααααΆααα
α»α
βαα»α (delete) α αααααβαααβα’αΆα
βααααΎβααΆαβααΊβ \"ascii-del\" "
#~ "αααααΆααβαα½α’αααα ASCII DEL , \"control-h\" αααααΆαα Control-H (AKA ααΆβαα½α’αααα ASCII "
#~ "BS), \"escape-sequence\" αααααΆααβααααΆααβααα
βαααβααααΌαβααΆαβα
αβααααΆααβαα
βααΉαβααααΆααα
α»α
βαα»αβααααααα "
#~ "(backspace) α¬βαα»α (delete) α \"escape-sequence\" ααΆαβααααααΆ ααααΌαβααΆαβα
αΆααβαα»αβααΆβααΆβααΆαβ"
#~ "αααααβαααβααααΉαααααΌαβαααααΆααβααααΆααα
α»α
βαα»α (Delete) α"
#~ msgid ""
#~ "If true, the theme color scheme used for text entry boxes will be used "
#~ "for the terminal, instead of colors provided by the user."
#~ msgstr ""
#~ "ααααα·αααΎβαα·α αααβα
αααα»αβααααβααΌαααΆαβαααββααααΌαβααΆαβααααΎβαααααΆααβαααα’ααβααΆαα»βα’αααααβααΉαβααααΌαβααΆαβααααΎβαααααΆααβααααΆααΈα "
#~ "αααα½αβαααβαααβααΆαβαααααβαααβα’αααααααΎ α"
#~ msgid ""
#~ "If true, the terminal will use the desktop-global standard font if it's "
#~ "monospace (and the most similar font it can come up with otherwise)."
#~ msgstr ""
#~ "ααααα·αααΎβαα·α ααααΆααΈαβααΉαβααααΎβαα»αααα’ααααβαααααααΆαβαααααΆααβαααααα»βαααβ ααααα·αααΎβααΆβααΆ monospace (α αΎαβ"
#~ "αα»αααα’ααααβααααααβααααΆβαααα»αβααβα’αΆα
βααΉαβααααΌαβααΆαβααααΎβααβααα) α"
#~ msgid "current"
#~ msgstr "αα
αα
α»αααααα"
#~ msgid "Default encoding"
#~ msgstr "ααΆαβα’αα·αααΌαβααααΆαααΎα"
#~ msgid ""
#~ "Default encoding. Can be either \"current\" to use the current locale's "
#~ "encoding, or else any of the known encodings."
#~ msgstr ""
#~ "ααΆαβα’αα·αααΌαβααααΆαααΎα α α’αΆα
βααΆ \"αα
αα
α»αααααα\" αααααΆααβααααΎβαααα»αβααΆαβα’αα·αααΌαβααααβααΌαααααΆαβ (locale) "
#~ "αα
αα
α»αααααα α¬βα’αΆα
βααΆβααααααβααβααΆαβα’αα·αααΌαβαααβααΆαβααααΆααβαααααααα α"
#~ msgid ""
#~ "Keyboard shortcut key for opening a new tab. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααβα
α»α
βααααΌαβααΆααβααααΆαα
α»α
ββαααααΆααβααΎαβααααΆααβααααΈ α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎβαααααΆααβ"
#~ "ααααΆαβααααα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβααααΆααα
α»α
β"
#~ "ααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for opening a new window. Expressed as a string in "
#~ "the same format used for GTK+ resource files. If you set the option to "
#~ "the special string \"disabled\", then there will be no keyboard shortcut "
#~ "for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααΎαβαααα’α½α
βααααΈ α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααββααΆαβααααΎβαααααΆααβ"
#~ "α―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβαα·αβααΆαβααααΆααα
α»α
β"
#~ "ααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for bringing up the dialog for profile creation. "
#~ "Expressed as a string in the same format used for GTK+ resource files. If "
#~ "you set the option to the special string \"disabled\", then there will be "
#~ "no keyboard shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααα αΆαβαααα’ααβαααααΎαββαααααα α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααααΆαβ"
#~ "ααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to save the current tab contents to a file. "
#~ "Expressed as a string in the same format used for GTK+ resource files. If "
#~ "you set the option to the special string \"disabled\", then there will be "
#~ "no keyboard shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααΆαα»αβααΆαα·ααΆβααααΆααβαα
αα
α»ααααααβαα
βα―αααΆα α ααΆβααααβα’ααααββααΆαβαααααααααΆαβ"
#~ "ααΌα
βααααΆβαααββααΆαβααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβ"
#~ "αα·α\" ααΉαβααααΆαβααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for closing a tab. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαα·αβααααΆαα α ααΆβααααβα’ααααααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎββαααααΆααβ"
#~ "α―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβααααΆααα
α»α
β"
#~ "ααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for closing a window. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαα·αβαααα’α½α
α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
βααααΆβαααβββααΆαβααααΎβαααααΆααβ"
#~ "α―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβααααΆααα
α»α
β"
#~ "ααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for copying selected text to the clipboard. "
#~ "Expressed as a string in the same format used for GTK+ resource files. If "
#~ "you set the option to the special string \"disabled\", then there will be "
#~ "no keyboard shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβα
ααααβα’αααααβαααβααΆαβααααΎαβαα
ααΆααβααααΆαααααααααααΆαα α ααΆβααααβα’ααααβββ"
#~ "ααΆαβαααααααααΆαβααΌα
βααααΆβαααβββααΆαβααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβ"
#~ "αα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for pasting the contents of the clipboard into the "
#~ "terminal. Expressed as a string in the same format used for GTK+ resource "
#~ "files. If you set the option to the special string \"disabled\", then "
#~ "there will be no keyboard shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαα·αααααΆααβααΆαα·ααΆβααααΆαααααααααααΆααβαα
βαααα»αβααααΆααΈα α ααΆβααααβα’ααααβββααΆαβ"
#~ "αααααααααΆαβααΌα
βααααΆβαααβββααΆαβααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβ"
#~ "αα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for toggling full screen mode. Expressed as a "
#~ "string in the same format used for GTK+ resource files. If you set the "
#~ "option to the special string \"disabled\", then there will be no keyboard "
#~ "shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαα·αβααΎαβααααβαααβα’αααααα α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
βααααΆβαααββααΆαβ"
#~ "ααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to toggle the visibility of the menubar. Expressed "
#~ "as a string in the same format used for GTK+ resource files. If you set "
#~ "the option to the special string \"disabled\", then there will be no "
#~ "keyboard shortcut for this action."
#~ msgstr ""
#~ "ααααΆααβα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαα·αβααΎαβααΆαβα’αΆα
βααΎαβααΎαβαααΆαβαααΊαα»α α ααΆβααααβα’ααααββααΆαβαααααααααΆαβ"
#~ "ααΌα
ααααΆαααβββααΆαβααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβ"
#~ "αα·α\" ααΉαβααααΆαβααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to set the terminal title. Expressed as a string in "
#~ "the same format used for GTK+ resource files. If you set the option to "
#~ "the special string \"disabled\", then there will be no keyboard shortcut "
#~ "for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααβα
αααααΎαβααααΆααΈα α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to reset the terminal. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααβααααΆααΈαβα‘αΎααα·α α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααββααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to reset and clear the terminal. Expressed as a "
#~ "string in the same format used for GTK+ resource files. If you set the "
#~ "option to the special string \"disabled\", then there will be no keyboard "
#~ "shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααα’αΆα αα·αβαααααβααααΆααΈαβα‘αΎααα·α α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααββ"
#~ "ααΆαβααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβ"
#~ "ααααΆαβααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to switch to the previous tab. Expressed as a "
#~ "string in the same format used for GTK+ resource files. If you set the "
#~ "option to the special string \"disabled\", then there will be no keyboard "
#~ "shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆααβαα»α α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key to switch to the next tab. Expressed as a string in "
#~ "the same format used for GTK+ resource files. If you set the option to "
#~ "the special string \"disabled\", then there will be no keyboard shortcut "
#~ "for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆααβαααααΆαα α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααβββααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Accelerator to move the current tab to the left."
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆααααΈβααααΆααβαα
αα
α»ααααααβαα
βααααα α"
#~ msgid ""
#~ "Accelerator key to move the current tab to the left. Expressed as a "
#~ "string in the same format used for GTK+ resource files. If you set the "
#~ "option to the special string \"disabled\", then there will be no "
#~ "keybinding for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆααααΈβααααΆααβαα
αα
α»ααααααβαα
βααααα α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααββααΆαβ"
#~ "ααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ αβ ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βα
αβαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Accelerator to move the current tab to the right."
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆααααΈβααααΆααβαα
αα
α»ααααααβαα
βααΆαβααααΆα α"
#~ msgid ""
#~ "Accelerator key to move the current tab to the right. Expressed as a "
#~ "string in the same format used for GTK+ resource files. If you set the "
#~ "option to the special string \"disabled\", then there will be no "
#~ "keybinding for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆααααΈβααααΆααβαα
αα
α»ααααααβαα
βααΆαβααααΆα α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβ"
#~ "ααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βα
αβαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Accelerator to detach current tab."
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆα
αβααααΆααβαα
αα
α»αααααα α"
#~ msgid ""
#~ "Accelerator key to detach current tab. Expressed as a string in the same "
#~ "format used for GTK+ resource files. If you set the option to the special "
#~ "string \"disabled\", then there will be no keybinding for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβααααΆα
αβααααΆααβαα
αα
α»αααααα α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααααΆαβααααΎβαααααΆααβ"
#~ "α―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβααααΆααα
α»α
βα
αβ"
#~ "αααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 1. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααββααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 2"
#~ msgstr "ααααΆααβα
α»α
βααααΌαααΆααβαααααΆααβααααΌαβαα
βααααΆαα α’"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 2. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α’ α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
βααααΆβαααβββααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 3"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α£"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 3. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α£ α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 4"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α€"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 4. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α€ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
ααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 5"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α₯"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 5. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α₯ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
ααααΆβαααααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 6"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α¦"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 6. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α¦ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 7"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α§"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 7. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α§ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααββααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 8"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α¨"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 8. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α¨ α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 9"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α©"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 9. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α© α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 10"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘α "
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 10. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘α α ααΆβααααβα’ααααββααΆαβαααααααααΆαβααΌα
ααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 11"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘α‘"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 11. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘α‘ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Keyboard shortcut to switch to tab 12"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘α’"
#~ msgid ""
#~ "Keyboard shortcut key for switch to tab 12. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΌαβαα
βααααΆαα α‘α’ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for launching help. Expressed as a string in the "
#~ "same format used for GTK+ resource files. If you set the option to the "
#~ "special string \"disabled\", then there will be no keyboard shortcut for "
#~ "this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααΎαβααααΎαααΆαβαααα½α α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
ααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for making font larger. Expressed as a string in "
#~ "the same format used for GTK+ resource files. If you set the option to "
#~ "the special string \"disabled\", then there will be no keyboard shortcut "
#~ "for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΎα²ααβαα»αααα’ααααβαα α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
βααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for making font smaller. Expressed as a string in "
#~ "the same format used for GTK+ resource files. If you set the option to "
#~ "the special string \"disabled\", then there will be no keyboard shortcut "
#~ "for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΎα²ααβαα»αααα’ααααβααΌα
α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
ααααΆβαααβααΆαβααααΎβ"
#~ "αααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" ααΉαβααααΆαβ"
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid ""
#~ "Keyboard shortcut key for making font the normal size. Expressed as a "
#~ "string in the same format used for GTK+ resource files. If you set the "
#~ "option to the special string \"disabled\", then there will be no keyboard "
#~ "shortcut for this action."
#~ msgstr ""
#~ "ααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβααααΎα²ααβαα»αααα’ααααβααΆαβααα αβααααααΆ α ααΆβααααβα’ααααβααΆαβαααααααααΆαβααΌα
ααααΆβ"
#~ "αααβααΆαβααααΎβαααααΆααβα―αααΆαβααααΆα GTK+ α ααααα·αααΎβα’αααβαααααβαααααΎαβααΆβααααβα’ααααβαα·ααα \"ααΆαβαα·α\" "
#~ "ααΉαβααααΆαβααααΆααα
α»α
βααααΌαααΆααβααααΆαα
α»α
βαααααΆααβαααααααΆαβαααβαααβαα α"
#~ msgid "Images"
#~ msgstr "ααΌαααΆα"
#~ msgid ""
#~ "Tango\n"
#~ "Linux console\n"
#~ "XTerm\n"
#~ "Rxvt\n"
#~ "Custom"
#~ msgstr ""
#~ "Tango\n"
#~ "αα»αααΌαβααΈαα»α
\n"
#~ "XTerm\n"
#~ "Rxvt\n"
#~ "ααααΆαααααα½α"
#~ msgid "_Solid color"
#~ msgstr "αααβααΆαα"
#~ msgid "_Background image"
#~ msgstr "ααΌαααΆαβααααααΆαααααα"
#~ msgid "Image _file:"
#~ msgstr "α―αααΆαβααΌαααΆα α"
#~ msgid "Select Background Image"
#~ msgstr "ααααΎαβααΌαααΆαβααααααΆαααααα"
#~ msgid "Background image _scrolls"
#~ msgstr "αααΌαβααΌαααΆαβααααααΆαααααα"
#~ msgid "_Transparent background"
#~ msgstr "ααααααΆααααααβααααΆ"
#~ msgid "S_hade transparent or image background:"
#~ msgstr "ααΆααβααααααβααααααΆααααααβααααΆ α¬βααααααΆααααααββααΌαααΆα α"
#~ msgid "<small><i>None</i></small>"
#~ msgstr "<small><i>ααααΆα</i></small>"
#~ msgid "<small><i>Maximum</i></small>"
#~ msgstr "<small><i>α’αα·ααααΆ</i></small>"
#~ msgid "Background"
#~ msgstr "ααααααΆαααααα"
#~ msgid "Use keystrokes to scroll on _alternate screen"
#~ msgstr "ααααΎβααΆαβααααααβααααΆααα
α»α
ααΎααααΈβαααΌαβαα
βααΎβα’ααααααβαααα½α"
#~ msgid ""
#~ "On the left side\n"
#~ "On the right side\n"
#~ "Disabled"
#~ msgstr ""
#~ "αα
βαααααβααΆαααααα\n"
#~ "αα
βαααααβααΆαααααΆα\n"
#~ "ααΆαβαα·α"
#~ msgid "The shortcut key β%sβ is already bound to the β%sβ action"
#~ msgstr "ααααΆααα
α»α
βααααΌαααΆαα β%sβ ααααΌαβααΆαβα
αβαα
βααΉαβαααααααΆα β%sβ αα½α
α αΎα"
#~ msgid "No such profile \"%s\", using default profile\n"
#~ msgstr "ααααΆαβαααααα \"%s\" αα ααααΎβααααααβααααΆαααΎα\n"
#~ msgid "Invalid geometry string \"%s\"\n"
#~ msgstr "ααααβα’ααααβααααΈααΆαααβαα·αβααααΉαααααΌα \"%s\"\n"
#~ msgid ""
#~ "Option \"%s\" is no longer supported in this version of gnome-terminal; "
#~ "you might want to create a profile with the desired setting, and use the "
#~ "new '--profile' option\n"
#~ msgstr ""
#~ "αααααΎα \"%s\" αα·αββααααΌαβααΆαβααΆααααβαα
βαααα»αβαααα gnome-terminal αααβαααβαα α’αααβαααα ααβααΆβα
ααβ"
#~ "αααααΎαβααααααβαααβααΆαβααΆαβαααααβααΆαβαααααΌαααΆα αα·αβααααΎβαααααΎα '--profile' ααααΈ\n"
#~ msgid "Save the terminal configuration to a file"
#~ msgstr "αααααΆαα»αβααΆαβαααααβαα
ααΆααααααααβααααΆααΈαβαα
βα―αααΆα"
#~ msgid "Pr_ofile Preferences"
#~ msgstr "α
αααΌαα
α·αααβαααααα"
#~ msgid "On the left side"
#~ msgstr "αα
βαααααβααΆαααααα"
#~ msgid "On the right side"
#~ msgstr "αα
βαααααβααΆαααααΆα"
#~ msgid "Disabled"
#~ msgstr "ααΆαβαα·α"
|