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
|
# Shavian translation of Marco.
# This file is distributed under the same licence as the marco package.
msgid ""
msgstr ""
"Project-Id-Version: marco\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=marco&component=general\n"
"POT-Creation-Date: 2010-05-09 15:37+0000\n"
"PO-Revision-Date: 2010-05-12 18:37 -0400\n"
"Last-Translator: Thomas Thurman <tthurman@gnome.org>\n"
"Language-Team: Shavian <ubuntu-l10n-en-shaw@launchpad.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
#: ../src/50-marco-desktop-key.xml.in.h:1
msgid "Desktop"
msgstr "ðð§ððððªð"
#: ../src/50-marco-key.xml.in.h:1
msgid "Window Management"
msgstr "ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ð¥ð©ð¯ð"
#: ../src/core/bell.c:294
msgid "Bell event"
msgstr "ðð§ð€ ðŠðð§ð¯ð"
#, c-format
#: ../src/core/core.c:206
msgid "Unknown window information request: %d"
msgstr "ð³ð¯ðŽð¯ ð¢ðŠð¯ððŽ ðŠð¯ððŒð¥ð±ðð©ð¯ ð®ðŠðð¢ð§ðð: %d"
#. Translators: %s is a window title
#, c-format
#: ../src/core/delete.c:96
msgid "<tt>%s</tt> is not responding."
msgstr "<tt>%s</tt> ðŠð ð¯ðªð ð®ð°ðððªð¯ððŠð."
#: ../src/core/delete.c:101
msgid ""
"You may choose to wait a short while for it to continue or force the "
"application to quit entirely."
msgstr ""
"ð¿ ð¥ð± ððµð ð ð¢ð±ð ð© ðð¹ð ð¢ð²ð€ ðð¹ ðŠð ð ðð©ð¯ððŠð¯ð¿ ð¹ ðð¹ð ð ð©ðð€ðŠðð±ðð©ð¯ ð ðð¢ðŠð ð§ð¯ðð²ðŒð€ðŠ."
#: ../src/core/delete.c:110
msgid "_Wait"
msgstr "_ð¢ð±ð"
#: ../src/core/delete.c:110
msgid "_Force Quit"
msgstr "_ðð¹ð ðð¢ðŠð"
#, c-format
#: ../src/core/delete.c:208
msgid "Failed to get hostname: %s\n"
msgstr "ðð±ð€ð ð ðð§ð ð£ðŽððð¯ð±ð¥: %s\n"
#, c-format
#: ../src/core/display.c:258
msgid "Missing %s extension required for compositing"
msgstr "ð¥ðŠððŠð %s ð©ðððð§ð¯ðð©ð¯ ð®ðŠðð¢ð²ðŒð ðð¹ ðð©ð¥ððªðð©ððŠð"
#, c-format
#: ../src/core/display.c:336
msgid "Failed to open X Window System display '%s'\n"
msgstr "ðð±ð€ð ð ðŽðð©ð¯ X ð¢ðŠð¯ððŽ ððŠððð©ð¥ ðð©ððð€ð± '%s'\n"
#, c-format
#: ../src/core/errors.c:272
msgid ""
"Lost connection to the display '%s';\nmost likely the X server was shut down "
"or you killed/destroyed\nthe window manager.\n"
msgstr ""
"ð€ðªðð ðð©ð¯ð§ððð©ð¯ ð ð ððŠððð€ð± '%s';\nð¥ðŽðð ð€ð²ðð€ðŠ ð X ðð»ððŒ ð¢ðªð ðð³ð ðð¬ð¯ ð¹ ð¿ "
"ððŠð€ð/ðð©ððð®ð¶ð\nð ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ.\n"
#, c-format
#: ../src/core/errors.c:279
msgid "Fatal IO error %d (%s) on display '%s'.\n"
msgstr "ðð±ðð©ð€ IO ð»ðŒ %d (%s) ðªð¯ ððŠððð€ð± '%s'.\n"
#, c-format
#: ../src/core/keybindings.c:680
msgid ""
"Some other program is already using the key %s with modifiers %x as a "
"binding\n"
msgstr "ðð³ð¥ ð³ððŒ ðð®ðŽðð®ðšð¥ ðŠð ð·ð€ð®ð§ððŠ ð¿ððŠð ð ðð° %s ð¢ðŠð ð¥ðªððŠðð²ðŒð %x ðšð ð© ðð²ð¯ððŠð\n"
#. Displayed when a keybinding which is
#. * supposed to launch a program fails.
#.
#, c-format
#: ../src/core/keybindings.c:2294
msgid "There was an error running <tt>%s</tt>:\n\n%s"
msgstr "ððº ð¢ðªð ð©ð¯ ð»ðŒ ð®ð³ð¯ðŠð <tt>%s</tt>:\n\n%s"
#, c-format
#: ../src/core/keybindings.c:2383
msgid "No command %d has been defined.\n"
msgstr "ð¯ðŽ ðð©ð¥ðð¯ð %d ð£ðšð ðð°ð¯ ððŠðð²ð¯ð.\n"
#, c-format
#: ../src/core/keybindings.c:3337
msgid "No terminal command has been defined.\n"
msgstr "ð¯ðŽ ðð»ð¥ðŠð¯ð©ð€ ðð©ð¥ðð¯ð ð£ðšð ðð°ð¯ ððŠðð²ð¯ð.\n"
#, c-format
#: ../src/core/main.c:131
msgid ""
"marco %s\nCopyright (C) 2001-%s Havoc Pennington, Red Hat, Inc., and "
"others\nThis is free software; see the source for copying conditions.\nThere "
"is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR "
"PURPOSE.\n"
msgstr ""
"·ð¥ð§ððšððŠððŠ %s\nððªððŠð®ð²ð (C) 2001-%s ·ð£ðšðð©ð ·ðð§ð¯ðŠððð©ð¯, ·ð®ð§ð ·ð£ð©ð, ðŠðð., ð¯ "
"ð³ððŒð\nððŠð ðŠð ðð®ð° ððªððð¢ðº; ðð° ð ðð¹ð ðð¹ ððªððŠðŠð ðð©ð¯ððŠðð©ð¯ð.\nððº ðŠð ð¯ðŽ ð¢ðªð®ð©ð¯ððŠ; ð¯ðªð "
"ð°ðð©ð¯ ðð¹ ð¥ð»ðð©ð¯ð©ððŠð€ðŠððŠ ð¹ ððŠðð¯ð©ð ðð¹ ð© ððŒððŠðð¿ð€ðŒ ðð»ðð©ð.\n"
#: ../src/core/main.c:269
msgid "Disable connection to session manager"
msgstr "ððŠðð±ðð©ð€ ðð©ð¯ð§ððð©ð¯ ð ðð§ðð©ð¯ ð¥ðšð¯ð©ð¡ðŒ"
#: ../src/core/main.c:275
msgid "Replace the running window manager with Marco"
msgstr "ð®ðŠðð€ð±ð ð ð®ð³ð¯ðŠð ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ ð¢ðŠð ·ð¥ð§ððšððŠððŠ"
#: ../src/core/main.c:281
msgid "Specify session management ID"
msgstr "ððð§ððŠðð² ðð§ðð©ð¯ ð¥ðšð¯ð©ð¡ð¥ð©ð¯ð ID"
#: ../src/core/main.c:286
msgid "X Display to use"
msgstr "X ðð©ððð€ð± ð ð¿ð"
#: ../src/core/main.c:292
msgid "Initialize session from savefile"
msgstr "ðŠð¯ðŠðð©ð€ð²ð ðð§ðð©ð¯ ðð®ðªð¥ ðð±ððð²ð€"
#: ../src/core/main.c:298
msgid "Print version"
msgstr "ðð®ðŠð¯ð ðð»ð ð©ð¯"
#: ../src/core/main.c:304
msgid "Make X calls synchronous"
msgstr "ð¥ð±ð X ðð·ð€ð ððŠð¯ðð®ð©ð¯ð©ð"
#: ../src/core/main.c:310
msgid "Turn compositing on"
msgstr "ðð»ð¯ ðð©ð¥ððªðð©ððŠð ðªð¯"
#: ../src/core/main.c:316
msgid "Turn compositing off"
msgstr "ðð»ð¯ ðð©ð¥ððªðð©ððŠð ðªð"
#: ../src/core/main.c:322
msgid ""
"Don't make fullscreen windows that are maximized and have no decorations"
msgstr "ððð¯'ðð° ð¥ð±ð ðð«ð€ððð°ð¯ ð¢ðŠð¯ððŽð ððšð ðž ð¥ðšððð©ð¥ð²ðð ð¯ ð£ðšð ð¯ðŽ ðð§ððŒð±ðð©ð¯ð"
#, c-format
#: ../src/core/main.c:528
msgid "Failed to scan themes directory: %s\n"
msgstr "ðð±ð€ð ð ðððšð¯ ðð°ð¥ð ðð²ð®ð§ðððŒðŠ: %s\n"
#, c-format
#: ../src/core/main.c:544
msgid ""
"Could not find a theme! Be sure %s exists and contains the usual themes.\n"
msgstr "ðð«ð ð¯ðªð ðð²ð¯ð ð© ðð°ð¥! ðð° ðð«ðŒ %s ð§ðððŠððð ð¯ ðð©ð¯ðð±ð¯ð ð ð¿ð ð¿ð©ð€ ðð°ð¥ð.\n"
#, c-format
#: ../src/core/main.c:603
msgid "Failed to restart: %s\n"
msgstr "ðð±ð€ð ð ð®ð°ðððžð: %s\n"
#.
#. * We found it, but it was invalid. Complain.
#. *
#. * FIXME: This replicates the original behaviour, but in the future
#. * we might consider reverting invalid keys to their original values.
#. * (We know the old value, so we can look up a suitable string in
#. * the symtab.)
#. *
#. * (Empty comment follows so the translators don't see this.)
#.
#.
#, c-format
#: ../src/core/prefs.c:508 ../src/core/prefs.c:663
msgid "MateConf key '%s' is set to an invalid value\n"
msgstr "MateConf ðð° '%s' ðŠð ðð§ð ð ð©ð¯ ðŠð¯ððšð€ðŠð ððšð€ð¿\n"
#, c-format
#: ../src/core/prefs.c:589 ../src/core/prefs.c:832
msgid "%d stored in MateConf key %s is out of range %d to %d\n"
msgstr "%d ððð¹ð ðŠð¯ MateConf ðð° %s ðŠð ð¬ð ð ð®ð±ð¯ð¡ %d ð %d\n"
#, c-format
#: ../src/core/prefs.c:633 ../src/core/prefs.c:710 ../src/core/prefs.c:758
#: ../src/core/prefs.c:822 ../src/core/prefs.c:1115 ../src/core/prefs.c:1131
#: ../src/core/prefs.c:1148 ../src/core/prefs.c:1164
msgid "MateConf key \"%s\" is set to an invalid type\n"
msgstr "MateConf ðð° \"%s\" ðŠð ðð§ð ð ð©ð¯ ðŠð¯ððšð€ðŠð ðð²ð\n"
#: ../src/core/prefs.c:1234
msgid ""
"Workarounds for broken applications disabled. Some applications may not "
"behave properly.\n"
msgstr ""
"ð¢ð»ðð©ð®ð¬ð¯ðð ðð¹ ðð®ðŽðð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ð ððŠðð±ðð©ð€ð. ðð³ð¥ ð©ðð€ðŠðð±ðð©ð¯ð ð¥ð± ð¯ðªð ððŠð£ð±ð "
"ðð®ðªððŒð€ðŠ.\n"
#, c-format
#: ../src/core/prefs.c:1305
msgid "Could not parse font description \"%s\" from MateConf key %s\n"
msgstr "ðð«ð ð¯ðªð ððžð ððªð¯ð ððŠððð®ðŠððð©ð¯ \"%s\" ðð®ðªð¥ MateConf ðð° %s\n"
#, c-format
#: ../src/core/prefs.c:1367
msgid ""
"\"%s\" found in configuration database is not a valid value for mouse button "
"modifier\n"
msgstr ""
"\"%s\" ðð¬ð¯ð ðŠð¯ ðð©ð¯ððŠðððŒð±ðð©ð¯ ðð±ðð©ðð±ð ðŠð ð¯ðªð ð© ððšð€ðŠð ððšð€ð¿ ðð¹ ð¥ð¬ð ðð³ðð©ð¯ ð¥ðªððŠðð²ðŒ\n"
#, c-format
#: ../src/core/prefs.c:1788
msgid "Error setting number of workspaces to %d: %s\n"
msgstr "ð»ðŒ ðð§ððŠð ð¯ð³ð¥ððŒ ð ð¢ð»ðððð±ðð©ð ð %d: %s\n"
#, c-format
#: ../src/core/prefs.c:1953 ../src/core/prefs.c:2456
msgid "Workspace %d"
msgstr "ð¢ð»ðððð±ð %d"
#, c-format
#: ../src/core/prefs.c:1983 ../src/core/prefs.c:2161
msgid ""
"\"%s\" found in configuration database is not a valid value for keybinding "
"\"%s\"\n"
msgstr ""
"\"%s\" ðð¬ð¯ð ðŠð¯ ðð©ð¯ððŠðððŒð±ðð©ð¯ ðð±ðð©ðð±ð ðŠð ð¯ðªð ð© ððšð€ðŠð ððšð€ð¿ ðð¹ ðð°ðð²ð¯ððŠð \"%s\"\n"
#, c-format
#: ../src/core/prefs.c:2537
msgid "Error setting name for workspace %d to \"%s\": %s\n"
msgstr "ð»ðŒ ðð§ððŠð ð¯ð±ð¥ ðð¹ ð¢ð»ðððð±ð %d ð \"%s\": %s\n"
#, c-format
#: ../src/core/prefs.c:2741
msgid "Error setting compositor status: %s\n"
msgstr "ð»ðŒ ðð§ððŠð ððªð¥ððªððŠððŒ ððð±ðð«ð: %s\n"
#, c-format
#: ../src/core/screen.c:357
msgid "Screen %d on display '%s' is invalid\n"
msgstr "ððð®ð°ð¯ %d ðªð¯ ððŠððð€ð± '%s' ðŠð ðŠð¯ððšð€ðŠð\n"
#, c-format
#: ../src/core/screen.c:373
msgid ""
"Screen %d on display \"%s\" already has a window manager; try using the "
"--replace option to replace the current window manager.\n"
msgstr ""
"ððð®ð°ð¯ %d ðªð¯ ððŠððð€ð± \"%s\" ð·ð€ð®ð§ððŠ ð£ðšð ð© ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ; ðð®ð² ð¿ððŠð ð --replace "
"ðªððð©ð¯ ð ð®ðŠðð€ð±ð ð ðð³ð®ð©ð¯ð ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ.\n"
#, c-format
#: ../src/core/screen.c:400
msgid ""
"Could not acquire window manager selection on screen %d display \"%s\"\n"
msgstr "ðð«ð ð¯ðªð ð©ðð¢ð²ðŒ ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ ððŠð€ð§ððð©ð¯ ðªð¯ ððð®ð°ð¯ %d ðð©ððð€ð± \"%s\"\n"
#, c-format
#: ../src/core/screen.c:458
msgid "Screen %d on display \"%s\" already has a window manager\n"
msgstr "ððð®ð°ð¯ %d ðªð¯ ððŠððð€ð± \"%s\" ð·ð€ð®ð§ððŠ ð£ðšð ð© ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ\n"
#, c-format
#: ../src/core/screen.c:668
msgid "Could not release screen %d on display \"%s\"\n"
msgstr "ðð«ð ð¯ðªð ð®ðŠð€ð°ð ððð®ð°ð¯ %d ðªð¯ ððŠððð€ð± \"%s\"\n"
#. Translators: Please don't translate "Control", "Shift", etc, since these
#. * are hardcoded (in gtk/gtkaccelgroup.c; it's not marco's fault).
#. * "disabled" must also stay as it is.
#.
#: ../src/core/schema-bindings.c:169
msgid ""
"The format looks like \"<Control>a\" or \"<Shift><Alt>F1\".\n\nThe parser is "
"fairly liberal and allows lower or upper case, and also abbreviations such as "
"\"<Ctl>\" and \"<Ctrl>\". If you set the option to the special string "
"\"disabled\", then there will be no keybinding for this action."
msgstr ""
"ð ðð¹ð¥ðšð ð€ð«ðð ð€ð²ð \"<Control>a\" ð¹ \"<Shift><Alt>F1\".\n\nð ððžððŒ ðŠð ððºð€ðŠ "
"ð€ðŠððŒð©ð€ ð¯ ð©ð€ð¬ð ð€ðŽðŒ ð¹ ð³ðð» ðð±ð, ð¯ ð·ð€ððŽ ð©ðð®ð°ðð°ð±ðð©ð¯ð ðð³ð ðšð \"<Ctl>\" ð¯ "
"\"<Ctrl>\". ðŠð ð¿ ðð§ð ð ðªððð©ð¯ ð ð ððð§ðð©ð€ ððð®ðŠð \"disabled\", ðð§ð¯ ððº ð¢ðŠð€ ðð° ð¯ðŽ "
"ðð°ðð²ð¯ððŠð ðð¹ ððŠð ðšððð©ð¯."
#: ../src/core/schema-bindings.c:177
msgid ""
"The format looks like \"<Control>a\" or \"<Shift><Alt>F1\".\n\nThe parser is "
"fairly liberal and allows lower or upper case, and also abbreviations such as "
"\"<Ctl>\" and \"<Ctrl>\". If you set the option to the special string "
"\"disabled\", then there will be no keybinding for this action.\n\nThis "
"keybinding may be reversed by holding down the \"shift\" key; therefore, "
"\"shift\" cannot be one of the keys it uses."
msgstr ""
"ð ðð¹ð¥ðšð ð€ð«ðð ð€ð²ð \"<Control>a\" ð¹ \"<Shift><Alt>F1\".\n\nð ððžððŒ ðŠð ððºð€ðŠ "
"ð€ðŠððŒð©ð€ ð¯ ð©ð€ð¬ð ð€ðŽðŒ ð¹ ð³ðð» ðð±ð, ð¯ ð·ð€ððŽ ð©ðð®ð°ðð°ð±ðð©ð¯ð ðð³ð ðšð \"<Ctl>\" ð¯ "
"\"<Ctrl>\". ðŠð ð¿ ðð§ð ð ðªððð©ð¯ ð ð ððð§ðð©ð€ ððð®ðŠð \"disabled\", ðð§ð¯ ððº ð¢ðŠð€ ðð° ð¯ðŽ "
"ðð°ððŠð¯ððŠð ðð¹ ððŠð ðšððð©ð¯.\n\nððŠð ðð°ððŠð¯ððŠð ð¥ð± ðð° ð®ðŠðð»ðð ðð² ð£ðŽð€ððŠð ðð¬ð¯ ð \"ððŠðð\" "
"ðð°; ððºðð¹, \"ððŠðð\" ððšð¯ðªð ðð° ð¢ð³ð¯ ð ð ðð°ð ðŠð ð¿ðð©ð."
#, c-format
#: ../src/core/session.c:850 ../src/core/session.c:857
msgid "Could not create directory '%s': %s\n"
msgstr "ðð«ð ð¯ðªð ðð®ðŠð±ð ðð²ð®ð§ðððŒðŠ '%s': %s\n"
#, c-format
#: ../src/core/session.c:867
msgid "Could not open session file '%s' for writing: %s\n"
msgstr "ðð«ð ð¯ðªð ðŽðð©ð¯ ðð§ðð©ð¯ ðð²ð€ '%s' ðð¹ ð®ð²ððŠð: %s\n"
#, c-format
#: ../src/core/session.c:1008
msgid "Error writing session file '%s': %s\n"
msgstr "ð»ðŒ ð®ð²ððŠð ðð§ðð©ð¯ ðð²ð€ '%s': %s\n"
#, c-format
#: ../src/core/session.c:1013
msgid "Error closing session file '%s': %s\n"
msgstr "ð»ðŒ ðð€ðŽððŠð ðð§ðð©ð¯ ðð²ð€ '%s': %s\n"
#, c-format
#: ../src/core/session.c:1143
msgid "Failed to parse saved session file: %s\n"
msgstr "ðð±ð€ð ð ððžð ðð±ðð ðð§ðð©ð¯ ðð²ð€: %s\n"
#, c-format
#: ../src/core/session.c:1192
msgid "<marco_session> attribute seen but we already have the session ID"
msgstr "<marco_session> ð©ðð®ðŠðð¿ð ðð°ð¯ ðð³ð ð¢ð° ð·ð€ð®ð§ððŠ ð£ðšð ð ðð§ðð©ð¯ ID"
#, c-format
#: ../src/core/session.c:1205 ../src/core/session.c:1280
#: ../src/core/session.c:1312 ../src/core/session.c:1384
#: ../src/core/session.c:1444
msgid "Unknown attribute %s on <%s> element"
msgstr "ð³ð¯ðŽð¯ ðšðð®ðŠðð¿ð %s ðªð¯ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/core/session.c:1222
msgid "nested <window> tag"
msgstr "ð¯ð§ððð©ð <window> ððšð"
#, c-format
#: ../src/core/session.c:1464
msgid "Unknown element %s"
msgstr "ð³ð¯ðŽð¯ ð§ð€ð©ð¥ð©ð¯ð %s"
#: ../src/core/session.c:1816
msgid ""
"These windows do not support "save current setup" and will have to "
"be restarted manually next time you log in."
msgstr ""
"ðð°ð ð¢ðŠð¯ððŽð ððµ ð¯ðªð ðð©ðð¹ð "ðð±ð ðð³ð®ð©ð¯ð ðð§ðð³ð" ð¯ ð¢ðŠð€ ð£ðšð ð ðð° ð®ð°ðððžðð©ð "
"ð¥ðšð¯ðð«ð©ð€ðŠ ð¯ð§ððð ðð²ð¥ ð¿ ð€ðªð ðŠð¯."
#, c-format
#: ../src/core/util.c:101
msgid "Failed to open debug log: %s\n"
msgstr "ðð±ð€ð ð ðŽðð©ð¯ ðð°ðð³ð ð€ðªð: %s\n"
#, c-format
#: ../src/core/util.c:111
msgid "Failed to fdopen() log file %s: %s\n"
msgstr "ðð±ð€ð ð fdopen() ð€ðªð ðð²ð€ %s: %s\n"
#, c-format
#: ../src/core/util.c:117
msgid "Opened log file %s\n"
msgstr "ðŽðð©ð¯ð ð€ðªð ðð²ð€ %s\n"
#, c-format
#: ../src/core/util.c:136 ../src/tools/marco-message.c:176
msgid "Marco was compiled without support for verbose mode\n"
msgstr "·ð¥ð§ððšððŠððŠ ð¢ðªð ðð©ð¥ðð²ð€ð ð¢ðŠðð¬ð ðð©ðð¹ð ðð¹ ðð»ððŽð ð¥ðŽð\n"
#: ../src/core/util.c:236
msgid "Window manager: "
msgstr "ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ: "
#: ../src/core/util.c:388
msgid "Bug in window manager: "
msgstr "ðð³ð ðŠð¯ ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ: "
#: ../src/core/util.c:421
msgid "Window manager warning: "
msgstr "ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ ð¢ð¹ð¯ðŠð: "
#: ../src/core/util.c:449
msgid "Window manager error: "
msgstr "ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ ð»ðŒ: "
#. Translators: This is the title used on dialog boxes
#. eof all-keybindings.h
#: ../src/core/util.c:570 ../src/marco.desktop.in.h:1
#: ../src/marco-wm.desktop.in.h:1
msgid "Marco"
msgstr "·ð¥ð§ððšððŠððŠ"
#. first time through
#, c-format
#: ../src/core/window.c:5660
msgid ""
"Window %s sets SM_CLIENT_ID on itself, instead of on the WM_CLIENT_LEADER "
"window as specified in the ICCCM.\n"
msgstr ""
"ð¢ðŠð¯ððŽ %s ðð§ðð SM_CLIENT_ID ðªð¯ ðŠððð§ð€ð, ðŠð¯ððð§ð ð ðªð¯ ð WM_CLIENT_LEADER ð¢ðŠð¯ððŽ ðšð "
"ððð§ððŠðð²ð ðŠð¯ ð ICCCM.\n"
#. We ignore mwm_has_resize_func because WM_NORMAL_HINTS is the
#. * authoritative source for that info. Some apps such as mplayer or
#. * xine disable resize via MWM but not WM_NORMAL_HINTS, but that
#. * leads to e.g. us not fullscreening their windows. Apps that set
#. * MWM but not WM_NORMAL_HINTS are basically broken. We complain
#. * about these apps but make them work.
#.
#, c-format
#: ../src/core/window.c:6225
msgid ""
"Window %s sets an MWM hint indicating it isn't resizable, but sets min size "
"%d x %d and max size %d x %d; this doesn't make much sense.\n"
msgstr ""
"ð¢ðŠð¯ððŽ %s ðð§ðð ð©ð¯ MWM ð£ðŠð¯ð ðŠð¯ððŠðð±ððŠð ðŠð ðŠðð¯ð ð®ð°ðð²ðð©ðð©ð€, ðð³ð ðð§ðð ð¥ðŠð¯ ðð²ð %dx%d "
"ð¯ ð¥ðšðð ðð²ð %dx%d; ððŠð ðð³ðð¯ð ð¥ð±ð ð¥ð³ð ðð§ð¯ð.\n"
#, c-format
#: ../src/core/window-props.c:244
msgid "Application set a bogus _NET_WM_PID %lu\n"
msgstr "ð©ðð€ðŠðð±ðð©ð¯ ðð§ð ð© ððŽðð©ð _NET_WM_PID %lu\n"
#. Translators: the title of a window from another machine
#, c-format
#: ../src/core/window-props.c:388
msgid "%s (on %s)"
msgstr "%s (ðªð¯ %s)"
#. Simple case-- don't bother to look it up. It's root.
#, c-format
#: ../src/core/window-props.c:420
msgid "%s (as superuser)"
msgstr "%s (ðšð ððµððŒð¿ððŒ)"
#. Translators: the title of a window owned by another user
#. * on this machine
#, c-format
#: ../src/core/window-props.c:438
msgid "%s (as %s)"
msgstr "%s (ðšð %s)"
#. Translators: the title of a window owned by another user
#. * on this machine, whose name we don't know
#, c-format
#: ../src/core/window-props.c:444
msgid "%s (as another user)"
msgstr "%s (ðšð ð©ð¯ð³ððŒ ð¿ððŒ)"
#, c-format
#: ../src/core/window-props.c:1430
msgid "Invalid WM_TRANSIENT_FOR window 0x%lx specified for %s.\n"
msgstr "ðŠð¯ððšð€ðŠð WM_TRANSIENT_FOR ð¢ðŠð¯ððŽ 0x%lx ððð§ððŠðð²ð ðð¹ %s.\n"
#, c-format
#: ../src/core/xprops.c:155
msgid ""
"Window 0x%lx has property %s\nthat was expected to have type %s format "
"%d\nand actually has type %s format %d n_items %d.\nThis is most likely an "
"application bug, not a window manager bug.\nThe window has title=\"%s\" "
"class=\"%s\" name=\"%s\"\n"
msgstr ""
"ð¢ðŠð¯ððŽ 0x%lx ð£ðšð ðð®ðªððŒððŠ %s\nððšð ð¢ðªð ðŠðððð§ððð©ð ð ð£ðšð ðð²ð %s ðð¹ð¥ðšð %d\nð¯ "
"ðšððð«ð©ð€ðŠ ð£ðšð ðð²ð %s ðð¹ð¥ðšð %d n_items %d.\nððŠð ðŠð ð¥ðŽðð ð€ð²ðð€ðŠ ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ ðð³ð, "
"ð¯ðªð ð© ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ ðð³ð.\nð ð¢ðŠð¯ððŽ ð£ðšð ðð²ðð©ð€=\"%s\" ðð€ðð=\"%s\" ð¯ð±ð¥=\"%s\"\n"
#, c-format
#: ../src/core/xprops.c:401
msgid "Property %s on window 0x%lx contained invalid UTF-8\n"
msgstr "ðð®ðªððŒððŠ %s ðªð¯ ð¢ðŠð¯ððŽ 0x%lx ðð©ð¯ðð±ð¯ð ðŠð¯ððšð€ðŠð UTF-8\n"
#, c-format
#: ../src/core/xprops.c:484
msgid ""
"Property %s on window 0x%lx contained invalid UTF-8 for item %d in the list\n"
msgstr ""
"ðð®ðªððŒððŠ %s ðªð¯ ð¢ðŠð¯ððŽ 0x%lx ðð©ð¯ðð±ð¯ð ðŠð¯ððšð€ðŠð UTF-8 ðð¹ ð²ðð©ð¥ %d ðŠð¯ ð ð€ðŠðð\n"
#: ../src/include/all-keybindings.h:88
msgid "Switch to workspace 1"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 1"
#: ../src/include/all-keybindings.h:90
msgid "Switch to workspace 2"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 2"
#: ../src/include/all-keybindings.h:92
msgid "Switch to workspace 3"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 3"
#: ../src/include/all-keybindings.h:94
msgid "Switch to workspace 4"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 4"
#: ../src/include/all-keybindings.h:96
msgid "Switch to workspace 5"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 5"
#: ../src/include/all-keybindings.h:98
msgid "Switch to workspace 6"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 6"
#: ../src/include/all-keybindings.h:100
msgid "Switch to workspace 7"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 7"
#: ../src/include/all-keybindings.h:102
msgid "Switch to workspace 8"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 8"
#: ../src/include/all-keybindings.h:104
msgid "Switch to workspace 9"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 9"
#: ../src/include/all-keybindings.h:106
msgid "Switch to workspace 10"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 10"
#: ../src/include/all-keybindings.h:108
msgid "Switch to workspace 11"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 11"
#: ../src/include/all-keybindings.h:110
msgid "Switch to workspace 12"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð 12"
#: ../src/include/all-keybindings.h:122
msgid "Switch to workspace on the left of the current workspace"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð ðªð¯ ð ð€ð§ðð ð ð ðð³ð®ð©ð¯ð ð¢ð»ðððð±ð"
#: ../src/include/all-keybindings.h:126
msgid "Switch to workspace on the right of the current workspace"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð ðªð¯ ð ð®ð²ð ð ð ðð³ð®ð©ð¯ð ð¢ð»ðððð±ð"
#: ../src/include/all-keybindings.h:130
msgid "Switch to workspace above the current workspace"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð ð©ðð³ð ð ðð³ð®ð©ð¯ð ð¢ð»ðððð±ð"
#: ../src/include/all-keybindings.h:134
msgid "Switch to workspace below the current workspace"
msgstr "ðð¢ðŠð ð ð¢ð»ðððð±ð ðð©ð€ðŽ ð ðð³ð®ð©ð¯ð ð¢ð»ðððð±ð"
#: ../src/include/all-keybindings.h:150
msgid "Move between windows of an application, using a popup window"
msgstr "ð¥ðµð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð ð ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯, ð¿ððŠð ð© ððªðð³ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:153
msgid "Move backward between windows of an application, using a popup window"
msgstr "ð¥ðµð ððšðð¢ðŒð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð ð ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯, ð¿ððŠð ð© ððªðð³ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:157
msgid "Move between windows, using a popup window"
msgstr "ð¥ðµð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð, ð¿ððŠð ð© ððªðð³ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:160
msgid "Move backward between windows, using a popup window"
msgstr "ð¥ðµð ððšðð¢ðŒð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð, ð¿ððŠð ð© ððªðð³ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:163
msgid "Move between panels and the desktop, using a popup window"
msgstr "ð¥ðµð ððŠðð¢ð°ð¯ ððšð¯ð©ð€ð ð¯ ð ðð§ððððªð, ð¿ððŠð ð© ððªðð³ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:166
msgid "Move backward between panels and the desktop, using a popup window"
msgstr "ð¥ðµð ððšðð¢ðŒð ððŠðð¢ð°ð¯ ððšð¯ð©ð€ð ð¯ ð ðð§ððððªð, ð¿ððŠð ð© ððªðð³ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:171
msgid "Move between windows of an application immediately"
msgstr "ð¥ðµð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð ð ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ ðŠð¥ð°ððŸðð€ð°"
#: ../src/include/all-keybindings.h:174
msgid "Move backward between windows of an application immediately"
msgstr "ð¥ðµð ððšðð¢ðŒð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð ð ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ ðŠð¥ð°ððŸðð€ð°"
#: ../src/include/all-keybindings.h:177
msgid "Move between windows immediately"
msgstr "ð¥ðµð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð ðŠð¥ð°ððŸðð€ð°"
#: ../src/include/all-keybindings.h:180
msgid "Move backward between windows immediately"
msgstr "ð¥ðµð ððšðð¢ðŒð ððŠðð¢ð°ð¯ ð¢ðŠð¯ððŽð ðŠð¥ð°ððŸðð€ð°"
#: ../src/include/all-keybindings.h:183
msgid "Move between panels and the desktop immediately"
msgstr "ð¥ðµð ððŠðð¢ð°ð¯ ððšð¯ð©ð€ð ð¯ ð ðð§ððððªð ðŠð¥ð°ððŸðð€ð°"
#: ../src/include/all-keybindings.h:186
msgid "Move backward between panels and the desktop immediately"
msgstr "ð¥ðµð ððšðð¢ðŒð ððŠðð¢ð°ð¯ ððšð¯ð©ð€ð ð¯ ð ðð§ððððªð ðŠð¥ð°ððŸðð€ð°"
#: ../src/include/all-keybindings.h:191
msgid "Hide all normal windows and set focus to the desktop"
msgstr "ð£ð²ð ð·ð€ ð¯ð¹ð¥ð©ð€ ð¢ðŠð¯ððŽð ð¯ ðð§ð ððŽðð©ð ð ð ðð§ððððªð"
#: ../src/include/all-keybindings.h:194
msgid "Show the panel's main menu"
msgstr "ððŽ ð ððšð¯ð©ð€ð ð¥ð±ð¯ ð¥ð§ð¯ð¿"
#: ../src/include/all-keybindings.h:197
msgid "Show the panel's \"Run Application\" dialog box"
msgstr "ððŽ ð ððšð¯ð©ð€ð \"ð®ð³ð¯ ð©ðð€ðŠðð±ðð©ð¯\" ðð²ð©ð€ðªð ððªðð"
#: ../src/include/all-keybindings.h:238
msgid "Take a screenshot"
msgstr "ðð±ð ð© ððð®ð°ð¯ððªð"
#: ../src/include/all-keybindings.h:240
msgid "Take a screenshot of a window"
msgstr "ðð±ð ð© ððð®ð°ð¯ððªð ð ð© ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:242
msgid "Run a terminal"
msgstr "ð®ð³ð¯ ð© ðð»ð¥ðŠð¯ð©ð€"
#: ../src/include/all-keybindings.h:257
msgid "Activate the window menu"
msgstr "ðšðððŠðð±ð ð ð¢ðŠð¯ððŽ ð¥ð§ð¯ð¿"
#: ../src/include/all-keybindings.h:260
msgid "Toggle fullscreen mode"
msgstr "ððªðð©ð€ ðð«ð€ððð®ð°ð¯ ð¥ðŽð"
#: ../src/include/all-keybindings.h:262
msgid "Toggle maximization state"
msgstr "ððªðð©ð€ ð¥ðšðððŠð¥ðŠðð±ðð©ð¯ ððð±ð"
#: ../src/include/all-keybindings.h:264
msgid "Toggle whether a window will always be visible over other windows"
msgstr "ððªðð©ð€ ð¢ð§ððŒ ð© ð¢ðŠð¯ððŽ ð¢ðŠð€ ð·ð€ð¢ð±ð ðð° ððŠððŠðð©ð€ ðŽððŒ ð³ððŒ ð¢ðŠð¯ððŽð"
#: ../src/include/all-keybindings.h:266
msgid "Maximize window"
msgstr "ð¥ðšððð©ð¥ð²ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:268
msgid "Restore window"
msgstr "ð®ð©ððð¹ ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:270
msgid "Toggle shaded state"
msgstr "ððªðð©ð€ ðð±ðð©ð ððð±ð"
#: ../src/include/all-keybindings.h:272
msgid "Minimize window"
msgstr "ð¥ðŠð¯ð©ð¥ð²ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:274
msgid "Close window"
msgstr "ðð€ðŽð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:276
msgid "Move window"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:278
msgid "Resize window"
msgstr "ð®ð°ðð²ð ð¢ðŠð¯ððŽ"
#: ../src/include/all-keybindings.h:281
msgid "Toggle whether window is on all workspaces or just one"
msgstr "ððªðð©ð€ ð¢ð§ððŒ ð¢ðŠð¯ððŽ ðŠð ðªð¯ ð·ð€ ð¢ð»ðððð±ðð©ð ð¹ ð¡ð³ðð ð¢ð³ð¯"
#: ../src/include/all-keybindings.h:285
msgid "Move window to workspace 1"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 1"
#: ../src/include/all-keybindings.h:288
msgid "Move window to workspace 2"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 2"
#: ../src/include/all-keybindings.h:291
msgid "Move window to workspace 3"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 3"
#: ../src/include/all-keybindings.h:294
msgid "Move window to workspace 4"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 4"
#: ../src/include/all-keybindings.h:297
msgid "Move window to workspace 5"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 5"
#: ../src/include/all-keybindings.h:300
msgid "Move window to workspace 6"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 6"
#: ../src/include/all-keybindings.h:303
msgid "Move window to workspace 7"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 7"
#: ../src/include/all-keybindings.h:306
msgid "Move window to workspace 8"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 8"
#: ../src/include/all-keybindings.h:309
msgid "Move window to workspace 9"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 9"
#: ../src/include/all-keybindings.h:312
msgid "Move window to workspace 10"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 10"
#: ../src/include/all-keybindings.h:315
msgid "Move window to workspace 11"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 11"
#: ../src/include/all-keybindings.h:318
msgid "Move window to workspace 12"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð»ðððð±ð 12"
#: ../src/include/all-keybindings.h:330
msgid "Move window one workspace to the left"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð¢ð³ð¯ ð¢ð»ðððð±ð ð ð ð€ð§ðð"
#: ../src/include/all-keybindings.h:333
msgid "Move window one workspace to the right"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð¢ð³ð¯ ð¢ð»ðððð±ð ð ð ð®ð²ð"
#: ../src/include/all-keybindings.h:336
msgid "Move window one workspace up"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð¢ð³ð¯ ð¢ð»ðððð±ð ð³ð"
#: ../src/include/all-keybindings.h:339
msgid "Move window one workspace down"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð¢ð³ð¯ ð¢ð»ðððð±ð ðð¬ð¯"
#: ../src/include/all-keybindings.h:342
msgid "Raise window if it's covered by another window, otherwise lower it"
msgstr "ð®ð±ð ð¢ðŠð¯ððŽ ðŠð ðŠðð ðð³ððŒð ðð² ð©ð¯ð³ððŒ ð¢ðŠð¯ððŽ, ð³ððŒð¢ð²ð ð€ðŽðŒ ðŠð"
#: ../src/include/all-keybindings.h:344
msgid "Raise window above other windows"
msgstr "ð®ð±ð ð¢ðŠð¯ððŽ ð©ðð³ð ð³ððŒ ð¢ðŠð¯ððŽð"
#: ../src/include/all-keybindings.h:346
msgid "Lower window below other windows"
msgstr "ð€ðŽðŒ ð¢ðŠð¯ððŽ ðð©ð€ðŽ ð³ððŒ ð¢ðŠð¯ððŽð"
#: ../src/include/all-keybindings.h:350
msgid "Maximize window vertically"
msgstr "ð¥ðšððð©ð¥ð²ð ð¢ðŠð¯ððŽ ðð»ððŠðð©ð€ðŠ"
#: ../src/include/all-keybindings.h:354
msgid "Maximize window horizontally"
msgstr "ð¥ðšððð©ð¥ð²ð ð¢ðŠð¯ððŽ ð£ðªð®ðŠððªð¯ðð©ð€ðŠ"
#: ../src/include/all-keybindings.h:358
msgid "Move window to north-west (top left) corner"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¯ð¹ð-ð¢ð§ðð (ððªð ð€ð§ðð) ðð¹ð¯ðŒ"
#: ../src/include/all-keybindings.h:361
msgid "Move window to north-east (top right) corner"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¯ð¹ð-ð°ðð (ððªð ð®ð²ð) ðð¹ð¯ðŒ"
#: ../src/include/all-keybindings.h:364
msgid "Move window to south-west (bottom left) corner"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ðð¬ð-ð¢ð§ðð (ððªðð«ð¥ ð€ð§ðð) ðð¹ð¯ðŒ"
#: ../src/include/all-keybindings.h:367
msgid "Move window to south-east (bottom right) corner"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ðð¬ð-ð°ðð (ððªðð«ð¥ ð®ð²ð) ðð¹ð¯ðŒ"
#: ../src/include/all-keybindings.h:371
msgid "Move window to north (top) side of screen"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¯ð¹ð (ððªð) ðð²ð ð ððð®ð°ð¯"
#: ../src/include/all-keybindings.h:374
msgid "Move window to south (bottom) side of screen"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ðð¬ð (ððªðð«ð¥) ðð²ð ð ððð®ð°ð¯"
#: ../src/include/all-keybindings.h:377
msgid "Move window to east (right) side of screen"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð°ðð (ð®ð²ð) ðð²ð ð ððð®ð°ð¯"
#: ../src/include/all-keybindings.h:380
msgid "Move window to west (left) side of screen"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ð¢ð§ðð (ð€ð§ðð) ðð²ð ð ððð®ð°ð¯"
#: ../src/include/all-keybindings.h:383
msgid "Move window to center of screen"
msgstr "ð¥ðµð ð¢ðŠð¯ððŽ ð ðð§ð¯ððŒ ð ððð®ð°ð¯"
#: ../src/marco.schemas.in.in.h:1
msgid ""
"(Not implemented) Navigation works in terms of applications not windows"
msgstr "(ð¯ðªð ðŠð¥ðð€ð©ð¥ð§ð¯ðð©ð) ð¯ðšððŠðð±ðð©ð¯ ð¢ð»ðð ðŠð¯ ðð»ð¥ð ð ð©ðð€ðŠðð±ðð©ð¯ð ð¯ðªð ð¢ðŠð¯ððŽð"
#: ../src/marco.schemas.in.in.h:2
msgid ""
"A font description string describing a font for window titlebars. The size "
"from the description will only be used if the titlebar_font_size option is "
"set to 0. Also, this option is disabled if the titlebar_uses_desktop_font "
"option is set to true."
msgstr ""
"ð© ððªð¯ð ððŠððð®ðŠððð©ð¯ ððð®ðŠð ððŠððð®ð²ððŠð ð© ððªð¯ð ðð¹ ð¢ðŠð¯ððŽ ðð²ðð©ð€ððžð. ð ðð²ð ðð®ðªð¥ ð "
"ððŠððð®ðŠððð©ð¯ ð¢ðŠð€ ðŽð¯ð€ðŠ ðð° ð¿ðð ðŠð ð titlebar_font_size ðªððð©ð¯ ðŠð ðð§ð ð 0. ð·ð€ððŽ, "
"ððŠð ðªððð©ð¯ ðŠð ððŠðð±ðð©ð€ð ðŠð ð titlebar_uses_desktop_font ðªððð©ð¯ ðŠð ðð§ð ð ðð®ðµ."
#: ../src/marco.schemas.in.in.h:3
msgid "Action on title bar double-click"
msgstr "ðšððð©ð¯ ðªð¯ ðð²ðð©ð€ ððž ðð³ðð©ð€-ðð€ðŠð"
#: ../src/marco.schemas.in.in.h:4
msgid "Action on title bar middle-click"
msgstr "ðšððð©ð¯ ðªð¯ ðð²ðð©ð€ ððž ð¥ðŠðð©ð€-ðð€ðŠð"
#: ../src/marco.schemas.in.in.h:5
msgid "Action on title bar right-click"
msgstr "ðšððð©ð¯ ðªð¯ ðð²ðð©ð€ ððž ð®ð²ð-ðð€ðŠð"
#: ../src/marco.schemas.in.in.h:6
msgid "Arrangement of buttons on the titlebar"
msgstr "ðŒð±ð¯ð¡ð¥ð©ð¯ð ð ðð³ðð©ð¯ð ðªð¯ ð ðð²ðð©ð€ððž"
#: ../src/marco.schemas.in.in.h:7
msgid ""
"Arrangement of buttons on the titlebar. The value should be a string, such as "
"\"menu:minimize,maximize,spacer,close\"; the colon separates the left corner "
"of the window from the right corner, and the button names are "
"comma-separated. Duplicate buttons are not allowed. Unknown button names are "
"silently ignored so that buttons can be added in future marco versions "
"without breaking older versions. A special spacer tag can be used to insert "
"some space between two adjacent buttons."
msgstr ""
"ðŒð±ð¯ð¡ð¥ð©ð¯ð ð ðð³ðð©ð¯ð ðªð¯ ð ðð²ðð©ð€ððž. ð ððšð€ð¿ ðð«ð ðð° ð© ððð®ðŠð, ðð³ð ðšð "
"\"menu:minimize,maximize,spacer,close\"; ð ððŽð€ð©ð¯ ðð§ððŒð±ðð ð ð€ð§ðð ðð¹ð¯ð» ð ð "
"ð¢ðŠð¯ððŽ ðð®ðªð¥ ð ð®ð²ð ðð¹ð¯ð», ð¯ ð ðð³ðð©ð¯ ð¯ð±ð¥ð ðž ððªð¥ð©-ðð§ððŒð±ðð©ð. ðð¿ðð€ðŠðð±ð ðð³ðð©ð¯ð ðž ð¯ðªð "
"ð©ð€ð¬ð. ð³ð¯ðŽð¯ ðð³ðð©ð¯ ð¯ð±ð¥ð ðž ðð²ð€ð©ð¯ðð€ðŠ ðŠðð¯ð¹ð ððŽ ððšð ðð³ðð©ð¯ð ððšð¯ ðð° ðšðð©ð ðŠð¯ ðð¿ððŒ "
"·ð¥ð§ððšððŠððŠ ðð»ð ð©ð¯ð ð¢ðŠðð¬ð ðð®ð±ððŠð ðŽð€ððŒ ðð»ð ð©ð¯ð. ð© ððð§ðð©ð€ spacer ððšð ððšð¯ ðð° ð¿ðð ð "
"ðŠð¯ðð»ð ðð³ð¥ ððð±ð ððŠðð¢ð°ð¯ ððµ ð©ð¡ð±ðð©ð¯ð ðð³ðð©ð¯ð."
#: ../src/marco.schemas.in.in.h:8
msgid "Automatically raises the focused window"
msgstr "ð·ðð©ð¥ðšððŠðð€ðŠ ð®ð±ðð©ð ð ððŽðð©ðð ð¢ðŠð¯ððŽ"
#: ../src/marco.schemas.in.in.h:9
msgid ""
"Clicking a window while holding down this modifier key will move the window "
"(left click), resize the window (middle click), or show the window menu "
"(right click). The middle and right click operations may be swapped using the "
"\"resize_with_right_button\" key. Modifier is expressed as \"<Alt>\" or "
"\"<Super>\" for example."
msgstr ""
"ðð€ðŠððŠð ð© ð¢ðŠð¯ððŽ ð¢ð²ð€ ð£ðŽð€ððŠð ðð¬ð¯ ððŠð ð¥ðªððŠðð²ðŒ ðð° ð¢ðŠð€ ð¥ðµð ð ð¢ðŠð¯ððŽ (ð€ð§ðð ðð€ðŠð), "
"ð®ð°ðð²ð ð ð¢ðŠð¯ððŽ (ð¥ðŠðð©ð€ ðð€ðŠð), ð¹ ððŽ ð ð¢ðŠð¯ððŽ ð¥ð§ð¯ð¿ (ð®ð²ð ðð€ðŠð). ð ð¥ðŠðð©ð€ ð¯ ð®ð²ð "
"ðªððŒð±ðð©ð¯ð ð¥ð± ðð° ðð¢ðªðð ð¿ððŠð ð \"resize_with_right_button\" ðð°. ð¥ðªððŠðð²ðŒ ðŠð "
"ðŠðððð®ð§ðð ðšð \"<Alt>\" ð¹ \"<Super>\" ðð¹ ðŠðððð¥ðð©ð€."
#: ../src/marco.schemas.in.in.h:10
msgid "Commands to run in response to keybindings"
msgstr "ðð©ð¥ðð¯ðð ð ð®ð³ð¯ ðŠð¯ ð®ðŠðððªð¯ð ð ðð°ððŠð¯ððŠðð"
#: ../src/marco.schemas.in.in.h:11
msgid "Compositing Manager"
msgstr "ðð©ð¥ððªðð©ððŠð ð¥ðšð¯ð©ð¡ðŒ"
#: ../src/marco.schemas.in.in.h:12
msgid "Control how new windows get focus"
msgstr "ðð©ð¯ðð®ðŽð€ ð£ð¬ ð¯ð¿ ð¢ðŠð¯ððŽð ðð§ð ððŽðð©ð"
#: ../src/marco.schemas.in.in.h:13
msgid "Current theme"
msgstr "ðð³ð®ð©ð¯ð ðð°ð¥"
#: ../src/marco.schemas.in.in.h:14
msgid "Delay in milliseconds for the auto raise option"
msgstr "ððŠð€ð± ðŠð¯ ð¥ðŠð€ðŠðð§ðð©ð¯ðð ðð¹ ð ð·ððŽ ð®ð±ð ðªððð©ð¯"
#: ../src/marco.schemas.in.in.h:15
msgid "Determines whether Marco is a compositing manager."
msgstr "ððŠðð»ð¥ðŠð¯ð ð¢ð§ððŒ ·ð¥ð§ððšððŠððŠ ðŠð ð© ðð©ð¥ððªðð©ððŠð ð¥ðšð¯ð©ð¡ðŒ."
#: ../src/marco.schemas.in.in.h:16
msgid ""
"Determines whether applications or the system can generate audible 'beeps'; "
"may be used in conjunction with 'visual bell' to allow silent 'beeps'."
msgstr ""
"ððŠðð»ð¥ðŠð¯ð ð¢ð§ððŒ ð©ðð€ðŠðð±ðð©ð¯ð ð¹ ð ððŠððð©ð¥ ððšð¯ ð¡ð§ð¯ðŒð±ð ððð©ðð©ð€ 'ðð°ðð'; ð¥ð± ðð° ð¿ðð ðŠð¯ "
"ðð©ð¯ð¡ð©ðððð©ð¯ ð¢ðŠð 'ððŠð ð©ð¢ð©ð€ ðð§ð€' ð ð©ð€ð¬ ðð²ð€ð©ð¯ð 'ðð°ðð'."
#: ../src/marco.schemas.in.in.h:17
msgid "Disable misfeatures that are required by old or broken applications"
msgstr "ððŠðð±ðð©ð€ ð¥ðŠððð°ðð¿ð ððšð ðž ð®ðŠðð¢ð²ðŒð ðð² ðŽð€ð ð¹ ðð®ðŽðð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ð"
#: ../src/marco.schemas.in.in.h:18
msgid "Enable Visual Bell"
msgstr "ðŠð¯ð±ðð©ð€ ððŠð ð©ð¢ð©ð€ ðð§ð€"
#: ../src/marco.schemas.in.in.h:19
msgid ""
"If set to true, and the focus mode is either \"sloppy\" or \"mouse\" then the "
"focused window will be automatically raised after a delay specified by the "
"auto_raise_delay key. This is not related to clicking on a window to raise "
"it, nor to entering a window during drag-and-drop."
msgstr ""
"ðŠð ðð§ð ð ðð®ðµ, ð¯ ð ððŽðð©ð ð¥ðŽð ðŠð ð²ððŒ \"sloppy\" ð¹ \"mouse\" ðð§ð¯ ð ððŽðð©ðð ð¢ðŠð¯ððŽ "
"ð¢ðŠð€ ðð° ð·ðð©ð¥ðšððŠðð€ðŠ ð®ð±ðð ððððŒ ð© ððŠð€ð± ððð§ððŠðð²ð ðð² ð auto_raise_delay ðð°. ððŠð ðŠð "
"ð¯ðªð ð®ðŠð€ð±ðð©ð ð ðð€ðŠððŠð ðªð¯ ð© ð¢ðŠð¯ððŽ ð ð®ð±ð ðŠð, ð¯ð¹ ð ð§ð¯ððŒðŠð ð© ð¢ðŠð¯ððŽ ððð«ðŒðŠð "
"ðð®ðšð-ð¯-ðð®ðªð."
#: ../src/marco.schemas.in.in.h:20
msgid ""
"If true, ignore the titlebar_font option, and use the standard application "
"font for window titles."
msgstr ""
"ðŠð ðð®ðµ, ðŠðð¯ð¹ ð titlebar_font ðªððð©ð¯, ð¯ ð¿ð ð ðððšð¯ððŒð ð©ðð€ðŠðð±ðð©ð¯ ððªð¯ð ðð¹ ð¢ðŠð¯ððŽ "
"ðð²ðð©ð€ð."
#: ../src/marco.schemas.in.in.h:21
msgid ""
"If true, marco will give the user less feedback by using wireframes, "
"avoiding animations, or other means. This is a significant reduction in "
"usability for many users, but may allow legacy applications to continue "
"working, and may also be a useful tradeoff for terminal servers. However, the "
"wireframe feature is disabled when accessibility is on."
msgstr ""
"ðŠð ðð®ðµ, ·ð¥ð§ððšððŠððŠ ð¢ðŠð€ ððŠð ð ð¿ððŒ ð€ð§ð ðð°ðððšð ðð² ð¿ððŠð ð¢ð²ðŒðð®ð±ð¥ð, ð©ðð¶ððŠð "
"ðšð¯ð©ð¥ð±ðð©ð¯ð, ð¹ ð³ððŒ ð¥ð°ð¯ð. ððŠð ðŠð ð© ðð©ðð¯ðŠððŠðð©ð¯ð ð®ðŠðð³ððð©ð¯ ðŠð¯ ð¿ðð©ððŠð€ðŠððŠ ðð¹ ð¥ð§ð¯ðŠ "
"ð¿ððŒð, ðð³ð ð¥ð± ð©ð€ð¬ ð€ð§ðð©ðð° ð©ðð€ðŠðð±ðð©ð¯ð ð ðð©ð¯ððŠð¯ð¿ ð¢ð»ððŠð, ð¯ ð¥ð± ð·ð€ððŽ ðð° ð© ð¿ððð©ð€ "
"ðð®ð±ððªð ðð¹ ðð»ð¥ðŠð¯ð©ð€ ðð»ððŒð. ð£ð¬ð§ððŒ, ð ð¢ð²ðŒðð®ð±ð¥ ðð°ððŒ ðŠð ððŠðð±ðð©ð€ð ð¢ð§ð¯ ðšððð§ðð©ððŠð€ðŠðð° "
"ðŠð ðªð¯."
#: ../src/marco.schemas.in.in.h:22
msgid ""
"If true, then Marco works in terms of applications rather than windows. "
"The concept is a bit abstract, but in general an application-based setup is "
"more like the Mac and less like Windows. When you focus a window in "
"application-based mode, all the windows in the application will be raised. "
"Also, in application-based mode, focus clicks are not passed through to "
"windows in other applications. Application-based mode is, however, largely "
"unimplemented at the moment."
msgstr ""
"ðŠð ðð®ðµ, ðð§ð¯ ·ð¥ð§ððšððŠððŠ ð¢ð»ðð ðŠð¯ ðð»ð¥ð ð ð©ðð€ðŠðð±ðð©ð¯ð ð®ðððŒ ððšð¯ ð¢ðŠð¯ððŽð. ð ððªð¯ðð§ðð ðŠð "
"ð© ððŠð ðšðððð®ðšðð, ðð³ð ðŠð¯ ð¡ð§ð¯ðŒð©ð€ ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯-ðð±ðð ðð§ðð³ð ðŠð ð¥ð¹ ð€ð²ð ð ·ð¥ðšð ð¯ ð€ð§ð "
"ð€ð²ð ·ð¢ðŠð¯ððŽð. ð¢ð§ð¯ ð¿ ððŽðð©ð ð© ð¢ðŠð¯ððŽ ðŠð¯ ð©ðð€ðŠðð±ðð©ð¯-ðð±ðð ð¥ðŽð, ð·ð€ ð ð¢ðŠð¯ððŽð ðŠð¯ ð "
"ð©ðð€ðŠðð±ðð©ð¯ ð¢ðŠð€ ðð° ð®ð±ðð. ð·ð€ððŽ, ðŠð¯ ð©ðð€ðŠðð±ðð©ð¯-ðð±ðð ð¥ðŽð, ððŽðð©ð ðð€ðŠðð ðž ð¯ðªð ðððð "
"ðð®ðµ ð ð¢ðŠð¯ððŽð ðŠð¯ ð³ððŒ ð©ðð€ðŠðð±ðð©ð¯ð. ð©ðð€ðŠðð±ðð©ð¯-ðð±ðð ð¥ðŽð ðŠð, ð£ð¬ð§ððŒ, ð€ðžð¡ð€ðŠ "
"ð³ð¯ðŠð¥ðð€ð§ð¥ð§ð¯ðð§ð ðšð ð ð¥ðŽð¥ð©ð¯ð."
#: ../src/marco.schemas.in.in.h:23
msgid "If true, trade off usability for less resource usage"
msgstr "ðŠð ðð®ðµ, ðð®ð±ð ðªð ð¿ðð©ððŠð€ðŠððŠ ðð¹ ð€ð§ð ð®ðŠðð¹ð ð¿ððŠð¡"
#: ../src/marco.schemas.in.in.h:24
msgid "Modifier to use for modified window click actions"
msgstr "ð¥ðªððŠðð²ðŒ ð ð¿ð ðð¹ ð¥ðªððŠðð²ð ð¢ðŠð¯ððŽ ðð€ðŠð ðšððð©ð¯ð"
#: ../src/marco.schemas.in.in.h:25
msgid "Name of workspace"
msgstr "ð¯ð±ð¥ ð ð¢ð»ðððð±ð"
#: ../src/marco.schemas.in.in.h:26
msgid "Number of workspaces"
msgstr "ð¯ð³ð¥ððŒ ð ð¢ð»ðððð±ðð©ð"
#: ../src/marco.schemas.in.in.h:27
msgid ""
"Number of workspaces. Must be more than zero, and has a fixed maximum to "
"prevent making the desktop unusable by accidentally asking for too many "
"workspaces."
msgstr ""
"ð¯ð³ð¥ððŒ ð ð¢ð»ðððð±ðð©ð. ð¥ð³ðð ðð° ð¥ð¹ ððšð¯ ððœðŽ, ð¯ ð£ðšð ð© ððŠððð ð¥ðšðððŠð¥ð©ð¥ ð ðð®ðŠðð§ð¯ð ð¥ð±ððŠð "
"ð ðð§ððððªð ð©ð¯ððµðð©ðð©ð€ ðð² ðšðððŠðð§ð¯ðð©ð€ðŠ ððððŠð ðð¹ ððµ ð¥ð§ð¯ðŠ ð¢ð»ðððð±ðð©ð."
#: ../src/marco.schemas.in.in.h:28
msgid "Run a defined command"
msgstr "ð®ð³ð¯ ð© ððŠðð²ð¯ð ðð©ð¥ðð¯ð"
#: ../src/marco.schemas.in.in.h:29
msgid ""
"Set this to true to resize with the right button and show a menu with the "
"middle button while holding down the key given in \"mouse_button_modifier\"; "
"set it to false to make it work the opposite way around."
msgstr ""
"ðð§ð ððŠð ð ðð®ðµ ð ð®ð°ðð²ð ð¢ðŠð ð ð®ð²ð ðð³ðð©ð¯ ð¯ ððŽ ð© ð¥ð§ð¯ð¿ ð¢ðŠð ð ð¥ðŠðð©ð€ ðð³ðð©ð¯ ð¢ð²ð€ "
"ð£ðŽð€ððŠð ðð¬ð¯ ð ðð° ððŠðð©ð¯ ðŠð¯ \"mouse_button_modifier\"; ðð§ð ðŠð ð ðð·ð€ð ð ð¥ð±ð ðŠð "
"ð¢ð»ð ð ðªððŽððŠð ð¢ð± ð©ð®ð¬ð¯ð."
#: ../src/marco.schemas.in.in.h:30
msgid ""
"Setting this option to false can lead to buggy behavior, so users are "
"strongly discouraged from changing it from the default of true. Many actions "
"(e.g. clicking in the client area, moving or resizing the window) normally "
"raise the window as a side-effect. Setting this option to false, which is "
"strongly discouraged, will decouple raising from other user actions, and "
"ignore raise requests generated by applications. See "
"http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6. Even when this option is "
"false, windows can still be raised by an alt-left-click anywhere on the "
"window, a normal click on the window decorations, or by special messages from "
"pagers, such as activation requests from tasklist applets. This option is "
"currently disabled in click-to-focus mode. Note that the list of ways to "
"raise windows when raise_on_click is false does not include programmatic "
"requests from applications to raise windows; such requests will be ignored "
"regardless of the reason for the request. If you are an application developer "
"and have a user complaining that your application does not work with this "
"setting disabled, tell them it is _their_ fault for breaking their window "
"manager and that they need to change this option back to true or live with "
"the \"bug\" they requested."
msgstr ""
"ðð§ððŠð ððŠð ðªððð©ð¯ ð ðð·ð€ð ððšð¯ ð€ð§ð ð ðð©ðð° ððŠð£ð±ðððŒ, ððŽ ð¿ððŒð ðž ððð®ðªðð€ðŠ ððŠððð³ð®ðŠð¡ð "
"ðð®ðªð¥ ðð±ð¯ð¡ðŠð ðŠð ðð®ðªð¥ ð ððŠðð·ð€ð ð ðð®ðµ. ð¥ð§ð¯ðŠ ðšððð©ð¯ð (e.g. ðð€ðŠððŠð ðŠð¯ ð ðð€ð²ð©ð¯ð ðºðŠð©, "
"ð¥ðµððŠð ð¹ ð®ð°ðð²ððŠð ð ð¢ðŠð¯ððŽ) ð¯ð¹ð¥ð©ð€ðŠ ð®ð±ð ð ð¢ðŠð¯ððŽ ðšð ð© ðð²ð-ðŠðð§ðð. ðð§ððŠð ððŠð ðªððð©ð¯ ð "
"ðð·ð€ð, ð¢ðŠð ðŠð ððð®ðªðð€ðŠ ððŠððð³ð®ðŠð¡ð, ð¢ðŠð€ ðð°ðð©ðð©ð€ ð®ð±ððŠð ðð®ðªð¥ ð³ððŒ ð¿ððŒ ðšððð©ð¯ð, ð¯ ðŠðð¯ð¹ "
"ð®ð±ð ð®ðŠðð¢ð§ððð ð¡ð§ð¯ðŒð±ðð©ð ðð² ð©ðð€ðŠðð±ðð©ð¯ð. ðð° "
"http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6. ð°ðð©ð¯ ð¢ð§ð¯ ððŠð ðªððð©ð¯ ðŠð "
"ðð·ð€ð, ð¢ðŠð¯ððŽð ððšð¯ ðððŠð€ ðð° ð®ð±ðð ðð² ð©ð¯ ·ð·ð€ð-ð€ð§ðð-ðð€ðŠð ð§ð¯ðŠð¢ðº ðªð¯ ð ð¢ðŠð¯ððŽ, ð© ð¯ð¹ð¥ð©ð€ "
"ðð€ðŠð ðªð¯ ð ð¢ðŠð¯ððŽ ðð§ððŒð±ðð©ð¯ð, ð¹ ðð² ððð§ðð©ð€ ð¥ð§ððŠð¡ð©ð ðð®ðªð¥ ðð±ð¡ð»ð, ðð³ð ðšð ðšððð©ðð±ðð©ð¯ "
"ð®ðŠðð¢ð§ððð ðð®ðªð¥ ððððð€ðŠðð ðšðð€ð©ðð. ððŠð ðªððð©ð¯ ðŠð ðð³ð®ð©ð¯ðð€ðŠ ððŠðð±ðð©ð€ð ðŠð¯ ðð€ðŠð-ð-ððŽðð©ð "
"ð¥ðŽð. ð¯ðŽð ððšð ð ð€ðŠðð ð ð¢ð±ð ð ð®ð±ð ð¢ðŠð¯ððŽð ð¢ð§ð¯ raise_on_click ðŠð ðð·ð€ð ððŽð ð¯ðªð "
"ðŠð¯ðð€ðµð ðð®ððð®ð©ð¥ðšððŠð ð®ðŠðð¢ð§ððð ðð®ðªð¥ ð©ðð€ðŠðð±ðð©ð¯ð ð ð®ð±ð ð¢ðŠð¯ððŽð; ðð³ð ð®ðŠðð¢ð§ððð ð¢ðŠð€ ðð° "
"ðŠðð¯ð¹ð ð®ðŠððžðð€ð©ð ð ð ð®ð°ðð©ð¯ ðð¹ ð ð®ðŠðð¢ð§ðð. ðŠð ð¿ ðž ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ ððŠðð§ð€ð©ððŒ ð¯ ð£ðšð ð© "
"ð¿ððŒ ðð©ð¥ðð€ð±ð¯ðŠð ððšð ð¿ðŒ ð©ðð€ðŠðð±ðð©ð¯ ðð³ð ð¯ðªð ð¢ð»ð ð¢ðŠð ððŠð ðð§ððŠð ððŠðð±ðð©ð€ð, ðð§ð€ ðð§ð¥ ðŠð "
"ðŠð _ððº_ ðð·ð€ð ðð¹ ðð®ð±ððŠð ððº ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ ð¯ ððšð ðð± ð¯ð°ð ð ðð±ð¯ð¡ ððŠð ðªððð©ð¯ ððšð ð "
"ðð®ðµ ð¹ ð€ð²ð ð¢ðŠð ð \"ðð³ð\" ðð± ð®ðŠðð¢ð§ððð©ð."
#: ../src/marco.schemas.in.in.h:31
msgid ""
"Some applications disregard specifications in ways that result in window "
"manager misfeatures. This option puts Marco in a rigorously correct mode, "
"which gives a more consistent user interface, provided one does not need to "
"run any misbehaving applications."
msgstr ""
"ðð³ð¥ ð©ðð€ðŠðð±ðð©ð¯ð ððŠðð®ðŠððžð ððð§ðð©ðð©ðð±ðð©ð¯ð ðŠð¯ ð¢ð±ð ððšð ð®ðŠðð³ð€ð ðŠð¯ ð¢ðŠð¯ððŽ ð¥ðšð¯ð©ð¡ðŒ "
"ð¥ðŠððð°ðð¿ð®ð. ððŠð ðªððð©ð¯ ðð«ðð ·ð¥ð§ððšððŠððŠ ðŠð¯ ð© ð®ðŠðð»ð©ðð€ð° ðð©ð®ð§ðð ð¥ðŽð, ð¢ðŠð ððŠðð ð© ð¥ð¹ "
"ðð©ð¯ððŠððð©ð¯ð ð¿ððŒ ðŠð¯ððŒðð±ð, ðð®ð©ðð²ðð©ð ð¢ð³ð¯ ððŽð ð¯ðªð ð¯ð°ð ð ð®ð³ð¯ ð§ð¯ðŠ ð¥ðŠððð©ð£ð±ððŠð "
"ð©ðð€ðŠðð±ðð©ð¯ð."
#: ../src/marco.schemas.in.in.h:32
msgid "System Bell is Audible"
msgstr "ððŠððð©ð¥ ðð§ð€ ðŠð ððð©ðð©ð€"
#: ../src/marco.schemas.in.in.h:33
msgid ""
"Tells Marco how to implement the visual indication that the system bell or "
"another application 'bell' indicator has been rung. Currently there are two "
"valid values, \"fullscreen\", which causes a fullscreen white-black flash, "
"and \"frame_flash\" which causes the titlebar of the application which sent "
"the bell signal to flash. If the application which sent the bell is unknown "
"(as is usually the case for the default \"system beep\"), the currently "
"focused window's titlebar is flashed."
msgstr ""
"ðð§ð€ð ·ð¥ð§ððšððŠððŠ ð£ð¬ ð ðŠð¥ðð€ð§ð¥ð§ð¯ð ð ððŠð ð©ð¢ð©ð€ ðŠð¯ðð©ðð±ðð©ð¯ ððšð ð ððŠððð©ð¥ ðð§ð€ ð¹ ð©ð¯ð³ððŒ "
"ð©ðð€ðŠðð±ðð©ð¯ 'ðð§ð€' ðŠð¯ððŠðð±ððŒ ð£ðšð ðð°ð¯ ð®ð©ð. ðð³ð®ð©ð¯ðð€ðŠ ððº ðž ððµ ððšð€ðŠð ððšð€ð¿ð, "
"\"fullscreen\", ð¢ðŠð ðð·ðð©ð ð© fullscreen ð¢ð²ð-ðð€ðšð ðð€ðšð, ð¯ \"frame_flash\" ð¢ðŠð "
"ðð·ðð©ð ð ðð²ðð©ð€ððž ð ð ð©ðð€ðŠðð±ðð©ð¯ ð¢ðŠð ðð§ð¯ð ð ðð§ð€ ððŠðð¯ð©ð€ ð ðð€ðšð. ðŠð ð ð©ðð€ðŠðð±ðð©ð¯ "
"ð¢ðŠð ðð§ð¯ð ð ðð§ð€ ðŠð ð³ð¯ðŽð¯ (ðšð ðŠð ð¿ð ð¿ð©ð€ðŠ ð ðð±ð ðð¹ ð ððŠðð·ð€ð \"ððŠððð©ð¥ ðð°ð\"), ð "
"ðð³ð®ð©ð¯ðð€ðŠ ððŽðð©ðð ð¢ðŠð¯ððŽð ðð²ðð©ð€ððž ðŠð ðð€ðšðð."
#: ../src/marco.schemas.in.in.h:34
msgid ""
"The /apps/marco/global_keybindings/run_command_N keys define keybindings "
"that correspond to these commands. Pressing the keybinding for run_command_N "
"will execute command_N."
msgstr ""
"ð /apps/marco/global_keybindings/run_command_N ðð°ð ððŠðð²ð¯ ðð°ðð²ð¯ððŠðð ððšð "
"ððªð®ðŠðððªð¯ð ð ðð°ð ðð©ð¥ðð¯ðð. ðð®ð§ððŠð ð ðð°ðð²ð¯ððŠð ðð¹ run_command_N ð¢ðŠð€ ð§ððð©ðð¿ð "
"command_N."
#: ../src/marco.schemas.in.in.h:35
msgid ""
"The /apps/marco/global_keybindings/run_command_screenshot key defines a "
"keybinding which causes the command specified by this setting to be invoked."
msgstr ""
"ð /apps/marco/global_keybindings/run_command_screenshot ðð° ððŠðð²ð¯ð ð© "
"ðð°ðð²ð¯ððŠð ð¢ðŠð ðð·ðð©ð ð ðð©ð¥ðð¯ð ððð§ððŠðð²ð ðð² ððŠð ðð§ððŠð ð ðð° ðŠð¯ððŽðð."
#: ../src/marco.schemas.in.in.h:36
msgid ""
"The /apps/marco/global_keybindings/run_command_window_screenshot key "
"defines a keybinding which causes the command specified by this setting to be "
"invoked."
msgstr ""
"ð /apps/marco/global_keybindings/run_command_window_screenshot ðð° ððŠðð²ð¯ð ð© "
"ðð°ðð²ð¯ððŠð ð¢ðŠð ðð·ðð©ð ð ðð©ð¥ðð¯ð ððð§ððŠðð²ð ðð² ððŠð ðð§ððŠð ð ðð° ðŠð¯ððŽðð."
#: ../src/marco.schemas.in.in.h:37
msgid ""
"The keybinding that runs the correspondingly-numbered command in "
"/apps/marco/keybinding_commands The format looks like \"<Control>a\" "
"or \"<Shift><Alt>F1\". The parser is fairly liberal and allows "
"lower or upper case, and also abbreviations such as \"<Ctl>\" and "
"\"<Ctrl>\". If you set the option to the special string \"disabled\", "
"then there will be no keybinding for this action."
msgstr ""
"ð ðð°ðð²ð¯ððŠð ððšð ð®ð³ð¯ð ð ððªð®ð©ðððð¯ððŠðð€ð°-ð¯ð³ð¥ððŒð ðð©ð¥ðð¯ð ðŠð¯ "
"/apps/marco/keybinding_commands. ð ðð¹ð¥ðšð ð€ð«ðð ð€ð²ð \"<Control>ð©\" ð¹ "
"\"<Shift><Alt>F1\". ð ððžððŒ ðŠð ððºð€ðŠ ð€ðŠððŒð©ð€ ð¯ ð©ð€ð¬ð ð€ðŽðŒ ð¹ ð³ðð» ðð±ð, ð¯ "
"ð·ð€ððŽ ð©ðð®ð°ðð°ð±ðð©ð¯ð ðð³ð ðšð \"<Ctl>\" ð¯ \"<Ctrl>\". ðŠð ð¿ ðð§ð ð ðªððð©ð¯ "
"ð ð ððð§ðð©ð€ ððð®ðŠð \"disabled\", ðð§ð¯ ððº ð¢ðŠð€ ðð° ð¯ðŽ ðð°ðð²ð¯ððŠð ðð¹ ððŠð ðšððð©ð¯."
#: ../src/marco.schemas.in.in.h:38
msgid "The name of a workspace."
msgstr "ð ð¯ð±ð¥ ð ð© ð¢ð»ðððð±ð."
#: ../src/marco.schemas.in.in.h:39
msgid "The screenshot command"
msgstr "ð ððð®ð°ð¯ððªð ðð©ð¥ðð¯ð"
#: ../src/marco.schemas.in.in.h:40
msgid ""
"The theme determines the appearance of window borders, titlebar, and so forth."
msgstr "ð ðð°ð¥ ððŠðð»ð¥ðŠð¯ð ð ð©ððœð©ð¯ð ð ð¢ðŠð¯ððŽ ðð¹ððŒð, ðð²ðð©ð€ððž, ð¯ ððŽ ðð¹ð."
#: ../src/marco.schemas.in.in.h:41
msgid ""
"The time delay before raising a window if auto_raise is set to true. The "
"delay is given in thousandths of a second."
msgstr ""
"ð ðð²ð¥ ððŠð€ð± ððŠðð¹ ð®ð±ððŠð ð© ð¢ðŠð¯ððŽ ðŠð auto_raise ðŠð ðð§ð ð ðð®ðµ. ð ððŠð€ð± ðŠð ððŠðð©ð¯ ðŠð¯ "
"ðð¶ðð©ð¯ððð ð ð© ðð§ðð©ð¯ð."
#: ../src/marco.schemas.in.in.h:42
msgid ""
"The window focus mode indicates how windows are activated. It has three "
"possible values; \"click\" means windows must be clicked in order to focus "
"them, \"sloppy\" means windows are focused when the mouse enters the window, "
"and \"mouse\" means windows are focused when the mouse enters the window and "
"unfocused when the mouse leaves the window."
msgstr ""
"ð ð¢ðŠð¯ððŽ ððŽðð©ð ð¥ðŽð ðŠð¯ððŠðð±ðð ð£ð¬ ð¢ðŠð¯ððŽð ðž ðšðððŠðð±ðð©ð. ðŠð ð£ðšð ðð®ð° ððªðð©ðð©ð€ ððšð€ð¿ð; "
"\"click\" ð¥ð°ð¯ð ð¢ðŠð¯ððŽð ð¥ð³ðð ðð° ðð€ðŠðð ðŠð¯ ð¹ððŒ ð ððŽðð©ð ðð§ð¥, \"sloppy\" ð¥ð°ð¯ð "
"ð¢ðŠð¯ððŽð ðž ððŽðð©ðð ð¢ð§ð¯ ð ð¥ð¬ð ð§ð¯ððŒð ð ð¢ðŠð¯ððŽ, ð¯ \"mouse\" ð¥ð°ð¯ð ð¢ðŠð¯ððŽð ðž ððŽðð©ðð ð¢ð§ð¯ "
"ð ð¥ð¬ð ð§ð¯ððŒð ð ð¢ðŠð¯ððŽ ð¯ ð©ð¯ððŽðð©ðð ð¢ð§ð¯ ð ð¥ð¬ð ð€ð°ðð ð ð¢ðŠð¯ððŽ."
#: ../src/marco.schemas.in.in.h:43
msgid "The window screenshot command"
msgstr "ð ð¢ðŠð¯ððŽ ððð®ð°ð¯ððªð ðð©ð¥ðð¯ð"
#: ../src/marco.schemas.in.in.h:44
msgid ""
"This option determines the effects of double-clicking on the title bar. "
"Current valid options are 'toggle_shade', which will shade/unshade the "
"window, 'toggle_maximize' which will maximize/unmaximize the window, "
"'toggle_maximize_horizontally' and 'toggle_maximize_vertically' which will "
"maximize/unmaximize the window in that direction only, 'minimize' which will "
"minimize the window, 'shade' which will roll the window up, 'menu' which will "
"display the window menu, 'lower' which will put the window behind all the "
"others, and 'none' which will not do anything."
msgstr ""
"ððŠð ðªððð©ð¯ ððŠðð»ð¥ðŠð¯ð ð ðŠðð§ððð ð ðð³ðð©ð€-ðð€ðŠððŠð ðªð¯ ð ðð²ðð©ð€ ððž. ðð³ð®ð©ð¯ð ððšð€ðŠð ðªððð©ð¯ð "
"ðž 'toggle_shade', ð¢ðŠð ð¢ðŠð€ ðð±ð/ð³ð¯ðð±ð¯ ð ð¢ðŠð¯ððŽ, 'toggle_maximize' ð¢ðŠð ð¢ðŠð€ "
"ð¥ðšððð©ð¥ð²ð/ð³ð¯ð¥ðšððð©ð¥ð²ð ð ð¢ðŠð¯ððŽ, 'toggle_maximize_horizontally' ð¯ "
"'toggle_maximize_vertically' ð¢ðŠð ð¢ðŠð€ ð¥ðšððð©ð¥ð²ð/ð³ð¯ð¥ðšððð©ð¥ð²ð ð ð¢ðŠð¯ððŽ ðŠð¯ ððšð "
"ððŠð®ð§ððð©ð¯ ðŽð¯ð€ðŠ, 'minimize' ð¢ðŠð ð¢ðŠð€ ð¥ðŠð¯ð©ð¥ð²ð ð ð¢ðŠð¯ððŽ, 'shade' ð¢ðŠð ð¢ðŠð€ ð®ðŽð€ ð "
"ð¢ðŠð¯ððŽ ð³ð, 'menu' ð¢ðŠð ð¢ðŠð€ ððŠððð€ð± ð ð¢ðŠð¯ððŽ ð¥ð§ð¯ð¿, 'lower' ð¢ðŠð ð¢ðŠð€ ðð«ð ð ð¢ðŠð¯ððŽ "
"ððŠð£ð²ð¯ð ð·ð€ ð ð³ððŒð, ð¯ 'none' ð¢ðŠð ð¢ðŠð€ ð¯ðªð ððµ ð§ð¯ðŠððŠð."
#: ../src/marco.schemas.in.in.h:45
msgid ""
"This option determines the effects of middle-clicking on the title bar. "
"Current valid options are 'toggle_shade', which will shade/unshade the "
"window, 'toggle_maximize' which will maximize/unmaximize the window, "
"'toggle_maximize_horizontally' and 'toggle_maximize_vertically' which will "
"maximize/unmaximize the window in that direction only, 'minimize' which will "
"minimize the window, 'shade' which will roll the window up, 'menu' which will "
"display the window menu, 'lower' which will put the window behind all the "
"others, and 'none' which will not do anything."
msgstr ""
"ððŠð ðªððð©ð¯ ððŠðð»ð¥ðŠð¯ð ð ðŠðð§ððð ð ð¥ðŠðð©ð€-ðð€ðŠððŠð ðªð¯ ð ðð²ðð©ð€ ððž. ðð³ð®ð©ð¯ð ððšð€ðŠð ðªððð©ð¯ð "
"ðž 'toggle_shade', ð¢ðŠð ð¢ðŠð€ ðð±ð/unshade ð ð¢ðŠð¯ððŽ, 'toggle_maximize' ð¢ðŠð ð¢ðŠð€ "
"ð¥ðšððð©ð¥ð²ð/unmaximize ð ð¢ðŠð¯ððŽ, 'toggle_maximize_horizontally' ð¯ "
"'toggle_maximize_vertically' ð¢ðŠð ð¢ðŠð€ ð¥ðšððð©ð¥ð²ð/unmaximize ð ð¢ðŠð¯ððŽ ðŠð¯ ððšð "
"ððŠð®ð§ððð©ð¯ ðŽð¯ð€ðŠ, 'minimize' ð¢ðŠð ð¢ðŠð€ ð¥ðŠð¯ð©ð¥ð²ð ð ð¢ðŠð¯ððŽ, 'shade' ð¢ðŠð ð¢ðŠð€ ð®ðŽð€ ð "
"ð¢ðŠð¯ððŽ ð³ð, 'ð¥ð§ð¯ð¿' ð¢ðŠð ð¢ðŠð€ ððŠððð€ð± ð ð¢ðŠð¯ððŽ ð¥ð§ð¯ð¿, 'lower' ð¢ðŠð ð¢ðŠð€ ðð«ð ð ð¢ðŠð¯ððŽ "
"ððŠð£ð²ð¯ð ð·ð€ ð ð³ððŒð, ð¯ 'none' ð¢ðŠð ð¢ðŠð€ ð¯ðªð ððµ ð§ð¯ðŠððŠð."
#: ../src/marco.schemas.in.in.h:46
msgid ""
"This option determines the effects of right-clicking on the title bar. "
"Current valid options are 'toggle_shade', which will shade/unshade the "
"window, 'toggle_maximize' which will maximize/unmaximize the window, "
"'toggle_maximize_horizontally' and 'toggle_maximize_vertically' which will "
"maximize/unmaximize the window in that direction only, 'minimize' which will "
"minimize the window, 'shade' which will roll the window up, 'menu' which will "
"display the window menu, 'lower' which will put the window behind all the "
"others, and 'none' which will not do anything."
msgstr ""
"ððŠð ðªððð©ð¯ ððŠðð»ð¥ðŠð¯ð ð ðŠðð§ððð ð ð®ð²ð-ðð€ðŠððŠð ðªð¯ ð ðð²ðð©ð€ ððž. ðð³ð®ð©ð¯ð ððšð€ðŠð ðªððð©ð¯ð "
"ðªððð©ð¯ð ðž 'toggle_shade', ð¢ðŠð ð¢ðŠð€ ðð±ð/unshade ð ð¢ðŠð¯ððŽ, 'toggle_maximize' ð¢ðŠð "
"ð¢ðŠð€ ð¥ðšððð©ð¥ð²ð/unmaximize ð ð¢ðŠð¯ððŽ, 'toggle_maximize_horizontally' ð¯ "
"'toggle_maximize_vertically' ð¢ðŠð ð¢ðŠð€ ð¥ðšððð©ð¥ð²ð/unmaximize ð ð¢ðŠð¯ððŽ ðŠð¯ ððšð "
"ððŠð®ð§ððð©ð¯ ðŽð¯ð€ðŠ, 'minimize' ð¢ðŠð ð¢ðŠð€ ð¥ðŠð¯ð©ð¥ð²ð ð ð¢ðŠð¯ððŽ, 'shade' ð¢ðŠð ð¢ðŠð€ ð®ðŽð€ ð "
"ð¢ðŠð¯ððŽ ð³ð, 'ð¥ð§ð¯ð¿' ð¢ðŠð ð¢ðŠð€ ððŠððð€ð± ð ð¢ðŠð¯ððŽ ð¥ð§ð¯ð¿, 'lower' ð¢ðŠð ð¢ðŠð€ ðð«ð ð ð¢ðŠð¯ððŽ "
"ððŠð£ð²ð¯ð ð·ð€ ð ð³ððŒð, ð¯ 'none' ð¢ðŠð ð¢ðŠð€ ð¯ðªð ððµ ð§ð¯ðŠððŠð."
#: ../src/marco.schemas.in.in.h:47
msgid ""
"This option provides additional control over how newly created windows get "
"focus. It has two possible values; \"smart\" applies the user's normal focus "
"mode, and \"strict\" results in windows started from a terminal not being "
"given focus."
msgstr ""
"ððŠð ðªððð©ð¯ ðð®ð©ðð²ðð ð©ððŠðð©ð¯ð©ð€ ðð©ð¯ðð®ðŽð€ ðŽððŒ ð£ð¬ ð¯ð¿ð€ðŠ ðð®ðŠð±ðð©ð ð¢ðŠð¯ððŽð ðð§ð ððŽðð©ð. ðŠð "
"ð£ðšð ððµ ððªðð©ðð©ð€ ððšð€ð¿ð; \"smart\" ð©ðð€ð²ð ð ð¿ððŒ'ð ð¯ð¹ð¥ð©ð€ ððŽðð©ð ð¥ðŽð, ð¯ \"strict\" "
"ð®ðŠðð³ð€ðð ðŠð¯ ð¢ðŠð¯ððŽð ðððžðð©ð ðð®ðªð¥ ð© ðð»ð¥ðŠð¯ð©ð€ ð¯ðªð ðð°ðŠð ððŠðð©ð¯ ððŽðð©ð."
#: ../src/marco.schemas.in.in.h:48
msgid ""
"Turns on a visual indication when an application or the system issues a "
"'bell' or 'beep'; useful for the hard-of-hearing and for use in noisy "
"environments."
msgstr ""
"ðð»ð¯ð ðªð¯ ð© ððŠð ð©ð¢ð©ð€ ðŠð¯ðð©ðð±ðð©ð¯ ð¢ð§ð¯ ð©ð¯ ð©ðð€ðŠðð±ðð©ð¯ ð¹ ð ððŠððð©ð¥ ðŠððµð ð© 'ðð§ð€' ð¹ 'ðð°ð'; "
"ð¿ððð©ð€ ðð¹ ð ð£ðžð-ð-ð£ðœðŠð ð¯ ðð¹ ð¿ð ðŠð¯ ð¯ð¶ððŠ ðŠð¯ðð²ð®ð©ð¯ð¥ð©ð¯ðð."
#: ../src/marco.schemas.in.in.h:49
msgid "Use standard system font in window titles"
msgstr "ð¿ð ðððšð¯ððŒð ððŠððð©ð¥ ððªð¯ð ðŠð¯ ð¢ðŠð¯ððŽ ðð²ðð©ð€ð"
#: ../src/marco.schemas.in.in.h:50
msgid "Visual Bell Type"
msgstr "ððŠð ð©ð¢ð©ð€ ðð§ð€ ðð²ð"
#: ../src/marco.schemas.in.in.h:51
msgid "Whether raising should be a side-effect of other user interactions"
msgstr "ð¢ð§ððŒ ð®ð±ððŠð ðð«ð ðð° ð© ðð²ð-ðŠðð§ðð ð ð³ððŒ ð¿ððŒ ðŠð¯ðð»ðšððð©ð¯ð"
#: ../src/marco.schemas.in.in.h:52
msgid "Whether to resize with the right button"
msgstr "ð¢ð§ððŒ ð ð®ð°ðð²ð ð¢ðŠð ð ð®ð²ð ðð³ðð©ð¯"
#: ../src/marco.schemas.in.in.h:53
msgid "Window focus mode"
msgstr "ð¢ðŠð¯ððŽ ððŽðð©ð ð¥ðŽð"
#: ../src/marco.schemas.in.in.h:54
msgid "Window title font"
msgstr "ð¢ðŠð¯ððŽ ðð²ðð©ð€ ððªð¯ð"
#, c-format
#: ../src/tools/marco-message.c:150
msgid "Usage: %s\n"
msgstr "ð¿ððŠð¡: %s\n"
#: ../src/ui/frames.c:1118
msgid "Close Window"
msgstr "ðð€ðŽð ð¢ðŠð¯ððŽ"
#: ../src/ui/frames.c:1121
msgid "Window Menu"
msgstr "ð¢ðŠð¯ððŽ ð¥ð§ð¯ð¿"
#: ../src/ui/frames.c:1124
msgid "Minimize Window"
msgstr "ð¥ðŠð¯ð©ð¥ð²ð ð¢ðŠð¯ððŽ"
#: ../src/ui/frames.c:1127
msgid "Maximize Window"
msgstr "ð¥ðšððð©ð¥ð²ð ð¢ðŠð¯ððŽ"
#: ../src/ui/frames.c:1130
msgid "Restore Window"
msgstr "ð®ð©ððð¹ ð¢ðŠð¯ððŽ"
#: ../src/ui/frames.c:1133
msgid "Roll Up Window"
msgstr "ð®ðŽð€ ð³ð ð¢ðŠð¯ððŽ"
#: ../src/ui/frames.c:1136
msgid "Unroll Window"
msgstr "ð³ð¯ð®ðŽð€ ð¢ðŠð¯ððŽ"
#: ../src/ui/frames.c:1139
msgid "Keep Window On Top"
msgstr "ðð°ð ð¢ðŠð¯ððŽ ðªð¯ ððªð"
#: ../src/ui/frames.c:1142
msgid "Remove Window From Top"
msgstr "ð®ðŠð¥ðµð ð¢ðŠð¯ððŽ ðð®ðªð¥ ððªð"
#: ../src/ui/frames.c:1145
msgid "Always On Visible Workspace"
msgstr "ð·ð€ð¢ð±ð ðªð¯ ððŠððŠðð©ð€ ð¢ð»ðððð±ð"
#: ../src/ui/frames.c:1148
msgid "Put Window On Only One Workspace"
msgstr "ðð«ð ð¢ðŠð¯ððŽ ðªð¯ ðŽð¯ð€ðŠ ð¢ð³ð¯ ð¢ð»ðððð±ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:70
msgid "Mi_nimize"
msgstr "ð¥ðŠ_ð¯ðŠð¥ð²ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:72
msgid "Ma_ximize"
msgstr "ð¥ðš_ðððŠð¥ð²ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:74
msgid "Unma_ximize"
msgstr "ð³ð¯ð¥ð©_ðððŠð¥ð²ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:76
msgid "Roll _Up"
msgstr "ð®ðŽð€ _ð³ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:78
msgid "_Unroll"
msgstr "_ð³ð¯ð®ðŽð€"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:80
msgid "_Move"
msgstr "_ð¥ðµð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:82
msgid "_Resize"
msgstr "_ð®ð°ðð²ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:84
msgid "Move Titlebar On_screen"
msgstr "ð¥ðµð ðð²ðð©ð€ððž ðªð¯_ððð®ð°ð¯"
#. separator
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:87 ../src/ui/menu.c:89
msgid "Always on _Top"
msgstr "ð·ð€ð¢ð±ð ðªð¯ _ððªð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:91
msgid "_Always on Visible Workspace"
msgstr "_ð·ð€ð¢ð±ð ðªð¯ ððŠððŠðð©ð€ ð¢ð»ðððð±ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:93
msgid "_Only on This Workspace"
msgstr "_ðŽð¯ð€ðŠ ðªð¯ ððŠð ð¢ð»ðððð±ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:95
msgid "Move to Workspace _Left"
msgstr "ð¥ðµð ð ð¢ð»ðððð±ð _ð€ð§ðð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:97
msgid "Move to Workspace R_ight"
msgstr "ð¥ðµð ð ð¢ð»ðððð±ð ð®_ð²ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:99
msgid "Move to Workspace _Up"
msgstr "ð¥ðµð ð ð¢ð»ðððð±ð _ð³ð"
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:101
msgid "Move to Workspace _Down"
msgstr "ð¥ðµð ð ð¢ð»ðððð±ð _ðð¬ð¯"
#. separator
#. Translators: Translate this string the same way as you do in libwnck!
#: ../src/ui/menu.c:105
msgid "_Close"
msgstr "_ðð€ðŽð"
#, c-format
#: ../src/ui/menu.c:203
msgid "Workspace %d%n"
msgstr "ð¢ð»ðððð±ð %d%n"
#, c-format
#: ../src/ui/menu.c:213
msgid "Workspace 1_0"
msgstr "ð¢ð»ðððð±ð 1_0"
#, c-format
#: ../src/ui/menu.c:215
msgid "Workspace %s%d"
msgstr "ð¢ð»ðððð±ð %s%d"
#: ../src/ui/menu.c:395
msgid "Move to Another _Workspace"
msgstr "ð¥ðµð ð ð©ð¯ð³ððŒ _ð¢ð»ðððð±ð"
#. This is the text that should appear next to menu accelerators
#. * that use the shift key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:104
msgid "Shift"
msgstr "ððŠðð"
#. This is the text that should appear next to menu accelerators
#. * that use the control key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:110
msgid "Ctrl"
msgstr "ððªð¯ðð®ðŽð€"
#. This is the text that should appear next to menu accelerators
#. * that use the alt key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:116
msgid "Alt"
msgstr "ðªð€ð"
#. This is the text that should appear next to menu accelerators
#. * that use the meta key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:122
msgid "Meta"
msgstr "ð¥ð§ðð©"
#. This is the text that should appear next to menu accelerators
#. * that use the super key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:128
msgid "Super"
msgstr "ððµððŒ"
#. This is the text that should appear next to menu accelerators
#. * that use the hyper key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:134
msgid "Hyper"
msgstr "ð£ð²ððŒ"
#. This is the text that should appear next to menu accelerators
#. * that use the mod2 key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:140
msgid "Mod2"
msgstr "ð¥ðªð2"
#. This is the text that should appear next to menu accelerators
#. * that use the mod3 key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:146
msgid "Mod3"
msgstr "ð¥ðªð3"
#. This is the text that should appear next to menu accelerators
#. * that use the mod4 key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:152
msgid "Mod4"
msgstr "ð¥ðªð4"
#. This is the text that should appear next to menu accelerators
#. * that use the mod5 key. If the text on this key isn't typically
#. * translated on keyboards used for your language, don't translate
#. * this.
#.
#: ../src/ui/metaaccellabel.c:158
msgid "Mod5"
msgstr "ð¥ðªð5"
#. Translators: This represents the size of a window. The first number is
#. * the width of the window and the second is the height.
#.
#, c-format
#: ../src/ui/resizepopup.c:113
msgid "%d x %d"
msgstr "%d x %d"
#: ../src/ui/theme.c:254
msgid "top"
msgstr "ððªð"
#: ../src/ui/theme.c:256
msgid "bottom"
msgstr "ððªðð«ð¥"
#: ../src/ui/theme.c:258
msgid "left"
msgstr "ð€ð§ðð"
#: ../src/ui/theme.c:260
msgid "right"
msgstr "ð®ð²ð"
#, c-format
#: ../src/ui/theme.c:287
msgid "frame geometry does not specify \"%s\" dimension"
msgstr "ðð®ð±ð¥ ð¡ðŠðªð¥ð©ðð®ðŠ ðð³ð ð¯ðªð ððð§ððŠðð² \"%s\" ðð²ð¥ð§ð¯ððªð¯"
#, c-format
#: ../src/ui/theme.c:306
msgid "frame geometry does not specify dimension \"%s\" for border \"%s\""
msgstr "ðð®ð±ð¥ ð¡ðŠðªð¥ð©ðð®ðŠ ðð³ð ð¯ðªð ððð§ððŠðð² ðð²ð¥ð§ð¯ððªð¯ \"%s\" ðð¹ ðð¹ððŒ \"%s\""
#, c-format
#: ../src/ui/theme.c:343
msgid "Button aspect ratio %g is not reasonable"
msgstr "ðð³ðð©ð¯ ðšððð§ðð ð®ð±ððŠðŽ %g ðŠð ð¯ðªð ð®ð°ðð©ð¯ð©ðð©ð€"
#, c-format
#: ../src/ui/theme.c:355
msgid "Frame geometry does not specify size of buttons"
msgstr "ðð®ð±ð¥ ð¡ðŠðªð¥ð©ðð®ðŠ ðð³ð ð¯ðªð ððð§ððŠðð² ðð²ð ð ðð³ðð©ð¯ð"
#, c-format
#: ../src/ui/theme.c:1020
msgid "Gradients should have at least two colors"
msgstr "ðð®ð±ððŠð©ð¯ðð ðð«ð ð£ðšð ðšð ð€ð°ðð ððµ ðð³ð€ðŒð"
#, c-format
#: ../src/ui/theme.c:1146
msgid ""
"GTK color specification must have the state in brackets, e.g. gtk:fg[NORMAL] "
"where NORMAL is the state; could not parse \"%s\""
msgstr ""
"GTK ðð³ð€ðŒ ððð§ððŠððŠðð±ðð©ð¯ ð¥ð³ðð ð£ðšð ð ððð±ð ðŠð¯ ðð®ðšðð©ðð, ð§.ð¡ð°. gtk:fg[NORMAL] ð¢ðº "
"NORMAL ðŠð ð ððð±ð; ðð«ð ð¯ðªð ððžð \"%s\""
#, c-format
#: ../src/ui/theme.c:1160
msgid ""
"GTK color specification must have a close bracket after the state, e.g. "
"gtk:fg[NORMAL] where NORMAL is the state; could not parse \"%s\""
msgstr ""
"GTK ðð³ð€ðŒ ððð§ððŠððŠðð±ðð©ð¯ ð¥ð³ðð ð£ðšð ð© ðð€ðŽð ðð®ðšðð©ð ððððŒ ð ððð±ð, ð§.ð¡ð°. "
"gtk:fg[NORMAL] ð¢ðº NORMAL ðŠð ð ððð±ð; ðð«ð ð¯ðªð ððžð \"%s\""
#, c-format
#: ../src/ui/theme.c:1171
msgid "Did not understand state \"%s\" in color specification"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ððð±ð \"%s\" ðŠð¯ ðð³ð€ðŒ ððð§ððŠððŠðð±ðð©ð¯"
#, c-format
#: ../src/ui/theme.c:1184
msgid "Did not understand color component \"%s\" in color specification"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ðð³ð€ðŒ ðð©ð¥ððŽð¯ð©ð¯ð \"%s\" ðŠð¯ ðð³ð€ðŒ ððð§ððŠððŠðð±ðð©ð¯"
#, c-format
#: ../src/ui/theme.c:1214
msgid ""
"Blend format is \"blend/bg_color/fg_color/alpha\", \"%s\" does not fit the "
"format"
msgstr ""
"ðð€ð§ð¯ð ðð¹ð¥ðšð ðŠð \"ðð€ð§ð¯ð/ðð©ððð®ð¬ð¯ð/ðð¹ðð®ð¬ð¯ð/ðšð€ðð©\", \"%s\" ðð³ð ð¯ðªð ððŠð ð ðð¹ð¥ðšð"
#, c-format
#: ../src/ui/theme.c:1225
msgid "Could not parse alpha value \"%s\" in blended color"
msgstr "ðð«ð ð¯ðªð ððžð ðšð€ðð© ððšð€ð¿ \"%s\" ðŠð¯ ðð€ð§ð¯ðð©ð ðð³ð€ðŒ"
#, c-format
#: ../src/ui/theme.c:1235
msgid "Alpha value \"%s\" in blended color is not between 0.0 and 1.0"
msgstr "ðšð€ðð© ððšð€ð¿ \"%s\" ðŠð¯ ðð€ð§ð¯ðð©ð ðð³ð€ðŒ ðŠð ð¯ðªð ððŠðð¢ð°ð¯ 0.0 ð¯ 1.0"
#, c-format
#: ../src/ui/theme.c:1282
msgid ""
"Shade format is \"shade/base_color/factor\", \"%s\" does not fit the format"
msgstr "ðð±ð ðð¹ð¥ðšð ðŠð \"ðð±ð/ðð±ð_ðð³ð€ðŒ/ððšðððŒ\", \"%s\" ðð³ð ð¯ðªð ððŠð ð ðð¹ð¥ðšð"
#, c-format
#: ../src/ui/theme.c:1293
msgid "Could not parse shade factor \"%s\" in shaded color"
msgstr "ðð«ð ð¯ðªð ððžð ðð±ð ððšðððŒ \"%s\" ðŠð¯ ðð±ðð©ð ðð³ð€ðŒ"
#, c-format
#: ../src/ui/theme.c:1303
msgid "Shade factor \"%s\" in shaded color is negative"
msgstr "ðð±ð ððšðððŒ \"%s\" ðŠð¯ ðð±ðð©ð ðð³ð€ðŒ ðŠð ð¯ð§ðð©ððŠð"
#, c-format
#: ../src/ui/theme.c:1332
msgid "Could not parse color \"%s\""
msgstr "ðð«ð ð¯ðªð ððžð ðð³ð€ðŒ \"%s\""
#, c-format
#: ../src/ui/theme.c:1582
msgid "Coordinate expression contains character '%s' which is not allowed"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ðð©ð¯ðð±ð¯ð ððšð®ð©ðððŒ '%s' ð¢ðŠð ðŠð ð¯ðªð ð©ð€ð¬ð"
#, c-format
#: ../src/ui/theme.c:1609
msgid ""
"Coordinate expression contains floating point number '%s' which could not be "
"parsed"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ðð©ð¯ðð±ð¯ð ðð€ðŽððŠð ðð¶ð¯ð ð¯ð³ð¥ððŒ '%s' ð¢ðŠð ðð«ð ð¯ðªð ðð° ððžðð"
#, c-format
#: ../src/ui/theme.c:1623
msgid "Coordinate expression contains integer '%s' which could not be parsed"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ðð©ð¯ðð±ð¯ð ðŠð¯ðð©ð¡ðŒ '%s' ð¢ðŠð ðð«ð ð¯ðªð ðð° ððžðð"
#, c-format
#: ../src/ui/theme.c:1745
msgid ""
"Coordinate expression contained unknown operator at the start of this text: "
"\"%s\""
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ðð©ð¯ðð±ð¯ð ð³ð¯ðŽð¯ ðªððŒð±ððŒ ðšð ð ðððžð ð ððŠð ðð§ððð: \"%s\""
#, c-format
#: ../src/ui/theme.c:1802
msgid "Coordinate expression was empty or not understood"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð¢ðªð ð§ð¥ðððŠ ð¹ ð¯ðªð ð³ð¯ððŒððð«ð"
#, c-format
#: ../src/ui/theme.c:1913 ../src/ui/theme.c:1923 ../src/ui/theme.c:1957
msgid "Coordinate expression results in division by zero"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð®ðŠðð³ð€ðð ðŠð¯ ððŠððŠð ð©ð¯ ðð² ððœðŽ"
#, c-format
#: ../src/ui/theme.c:1965
msgid ""
"Coordinate expression tries to use mod operator on a floating-point number"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ðð®ð²ð ð ð¿ð ð¥ðªðð¿ð€ðŽ ðªððŒð±ððŒ ðªð¯ ð© ðð€ðŽððŠð-ðð¶ð¯ð ð¯ð³ð¥ððŒ"
#, c-format
#: ../src/ui/theme.c:2021
msgid ""
"Coordinate expression has an operator \"%s\" where an operand was expected"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð£ðšð ð©ð¯ ðªððŒð±ððŒ \"%s\" ð¢ðº ð©ð¯ ðªððŒðšð¯ð ð¢ðªð ðŠðððð§ððð©ð"
#, c-format
#: ../src/ui/theme.c:2030
msgid "Coordinate expression had an operand where an operator was expected"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð£ðšð ð©ð¯ ðªððŒðšð¯ð ð¢ðº ð©ð¯ ðªððŒð±ððŒ ð¢ðªð ðŠðððð§ððð©ð"
#, c-format
#: ../src/ui/theme.c:2038
msgid "Coordinate expression ended with an operator instead of an operand"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð§ð¯ðð©ð ð¢ðŠð ð©ð¯ ðªððŒð±ððŒ ðŠð¯ððð§ð ð ð©ð¯ ðªððŒðšð¯ð"
#, c-format
#: ../src/ui/theme.c:2048
msgid ""
"Coordinate expression has operator \"%c\" following operator \"%c\" with no "
"operand in between"
msgstr ""
"ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð£ðšð ðªððŒð±ððŒ \"%c\" ððªð€ðŽðŠð ðªððŒð±ððŒ \"%c\" ð¢ðŠð ð¯ðŽ ðªððŒðšð¯ð ðŠð¯ "
"ððŠðð¢ð°ð¯"
#, c-format
#: ../src/ui/theme.c:2195 ../src/ui/theme.c:2236
msgid "Coordinate expression had unknown variable or constant \"%s\""
msgstr "ððŽð¹ðð©ð¯ð©ð ðŠðððð®ð§ðð©ð¯ ð£ðšð ð³ð¯ðŽð¯ ððºðŠð©ðð©ð€ ð¹ ððªð¯ððð©ð¯ð \"%s\""
#, c-format
#: ../src/ui/theme.c:2290
msgid "Coordinate expression parser overflowed its buffer."
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ððžððŒ ðŽðð»ðð€ðŽð ðŠðð ðð³ððŒ."
#, c-format
#: ../src/ui/theme.c:2319
msgid "Coordinate expression had a close parenthesis with no open parenthesis"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð£ðšð ð© ðð€ðŽð ðð»ð§ð¯ðð©ððŠð ð¢ðŠð ð¯ðŽ ðŽðð©ð¯ ðð»ð§ð¯ðð©ððŠð"
#, c-format
#: ../src/ui/theme.c:2383
msgid ""
"Coordinate expression had an open parenthesis with no close parenthesis"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ð£ðšð ð©ð¯ ðŽðð©ð¯ ðð»ð§ð¯ðð©ððŠð ð¢ðŠð ð¯ðŽ ðð€ðŽð ðð»ð§ð¯ðð©ððŠð"
#, c-format
#: ../src/ui/theme.c:2394
msgid "Coordinate expression doesn't seem to have any operators or operands"
msgstr "ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ ðð³ðð¯ð ðð°ð¥ ð ð£ðšð ð§ð¯ðŠ ðªððŒð±ððŒð ð¹ ðªððŒðšð¯ðð"
#, c-format
#: ../src/ui/theme.c:2598 ../src/ui/theme.c:2618 ../src/ui/theme.c:2638
msgid "Theme contained an expression that resulted in an error: %s\n"
msgstr "ðð°ð¥ ðð©ð¯ðð±ð¯ð ð©ð¯ ðŠðððð®ð§ðð©ð¯ ððšð ð®ðŠðð³ð€ðð©ð ðŠð¯ ð©ð¯ ð»ðŒ: %s\n"
#, c-format
#: ../src/ui/theme.c:4205
msgid ""
"<button function=\"%s\" state=\"%s\" draw_ops=\"whatever\"/> must be "
"specified for this frame style"
msgstr ""
"<button function=\"%s\" state=\"%s\" draw_ops=\"ð¢ðªðð§ððŒ\"/> ð¥ð³ðð ðð° ððð§ððŠðð²ð "
"ðð¹ ððŠð ðð®ð±ð¥ ððð²ð€"
#, c-format
#: ../src/ui/theme.c:4713 ../src/ui/theme.c:4738
msgid ""
"Missing <frame state=\"%s\" resize=\"%s\" focus=\"%s\" style=\"whatever\"/>"
msgstr ""
"ð¥ðŠððŠð <frame state=\"%s\" resize=\"%s\" focus=\"%s\" style=\"ð¢ðªðð§ððŒ\"/>"
#, c-format
#: ../src/ui/theme.c:4782
msgid "Failed to load theme \"%s\": %s\n"
msgstr "ðð±ð€ð ð ð€ðŽð ðð°ð¥ \"%s\": %s\n"
#, c-format
#: ../src/ui/theme.c:4912 ../src/ui/theme.c:4919 ../src/ui/theme.c:4926
#: ../src/ui/theme.c:4933 ../src/ui/theme.c:4940
msgid "No <%s> set for theme \"%s\""
msgstr "ð¯ðŽ <%s> ðð§ð ðð¹ ðð°ð¥ \"%s\""
#, c-format
#: ../src/ui/theme.c:4948
msgid ""
"No frame style set for window type \"%s\" in theme \"%s\", add a <window "
"type=\"%s\" style_set=\"whatever\"/> element"
msgstr ""
"ð¯ðŽ ðð®ð±ð¥ ððð²ð€ ðð§ð ðð¹ ð¢ðŠð¯ððŽ ðð²ð \"%s\" ðŠð¯ ðð°ð¥ \"%s\", ðšð ð© <window type=\"%s\" "
"style_set=\"ð¢ðªðð§ððŒ\"/> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme.c:5391 ../src/ui/theme.c:5453 ../src/ui/theme.c:5516
msgid ""
"User-defined constants must begin with a capital letter; \"%s\" does not"
msgstr "ð¿ððŒ-ððŠðð²ð¯ð ððªð¯ððð©ð¯ðð ð¥ð³ðð ðð©ððŠð¯ ð¢ðŠð ð© ððšððŠðð©ð€ ð€ð§ððŒ; \"%s\" ðð³ð ð¯ðªð"
#, c-format
#: ../src/ui/theme.c:5399 ../src/ui/theme.c:5461 ../src/ui/theme.c:5524
msgid "Constant \"%s\" has already been defined"
msgstr "ððªð¯ððð©ð¯ð \"%s\" ð£ðšð ð·ð€ð®ð§ððŠ ðð°ð¯ ððŠðð²ð¯ð"
#. Translators: This means that an attribute which should have been found
#. * on an XML element was not in fact found.
#.
#, c-format
#: ../src/ui/theme-parser.c:202
msgid "No \"%s\" attribute on element <%s>"
msgstr "ð¯ðŽ \"%s\" ð©ðð®ðŠðð¿ð ðªð¯ ð§ð€ð©ð¥ð©ð¯ð <%s>"
#, c-format
#: ../src/ui/theme-parser.c:231 ../src/ui/theme-parser.c:249
msgid "Line %d character %d: %s"
msgstr "ð€ð²ð¯ %d ððšð®ð©ðððŒ %d: %s"
#, c-format
#: ../src/ui/theme-parser.c:413
msgid "Attribute \"%s\" repeated twice on the same <%s> element"
msgstr "ð©ðð®ðŠðð¿ð \"%s\" ð®ðŠðð°ðð©ð ðð¢ð²ð ðªð¯ ð ðð±ð¥ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:437 ../src/ui/theme-parser.c:480
msgid "Attribute \"%s\" is invalid on <%s> element in this context"
msgstr "ð©ðð®ðŠðð¿ð \"%s\" ðŠð ðŠð¯ððšð€ðŠð ðªð¯ <%s> ð§ð€ð©ð¥ð©ð¯ð ðŠð¯ ððŠð ððªð¯ðð§ððð"
#, c-format
#: ../src/ui/theme-parser.c:522
msgid "Could not parse \"%s\" as an integer"
msgstr "ðð«ð ð¯ðªð ððžð \"%s\" ðšð ð©ð¯ ðŠð¯ðð©ð¡ðŒ"
#, c-format
#: ../src/ui/theme-parser.c:531 ../src/ui/theme-parser.c:586
msgid "Did not understand trailing characters \"%s\" in string \"%s\""
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ðð®ð±ð€ðŠð ððšð®ð©ðððŒð \"%s\" ðŠð¯ ððð®ðŠð \"%s\""
#, c-format
#: ../src/ui/theme-parser.c:541
msgid "Integer %ld must be positive"
msgstr "ðŠð¯ðð©ð¡ðŒ %ld ð¥ð³ðð ðð° ððªððŠððŠð"
#, c-format
#: ../src/ui/theme-parser.c:549
msgid "Integer %ld is too large, current max is %d"
msgstr "ðŠð¯ðð©ð¡ðŒ %ld ðŠð ððµ ð€ðžð¡, ðð³ð®ð©ð¯ð ð¥ðšðð ðŠð %d"
#, c-format
#: ../src/ui/theme-parser.c:577 ../src/ui/theme-parser.c:693
msgid "Could not parse \"%s\" as a floating point number"
msgstr "ðð«ð ð¯ðªð ððžð \"%s\" ðšð ð© ðð€ðŽððŠð ðð¶ð¯ð ð¯ð³ð¥ððŒ"
#, c-format
#: ../src/ui/theme-parser.c:608 ../src/ui/theme-parser.c:636
msgid "Boolean values must be \"true\" or \"false\" not \"%s\""
msgstr "ððµð€ð°ð©ð¯ ððšð€ð¿ð ð¥ð³ðð ðð° \"true\" ð¹ \"false\" ð¯ðªð \"%s\""
#, c-format
#: ../src/ui/theme-parser.c:663
msgid "Angle must be between 0.0 and 360.0, was %g\n"
msgstr "ðšððð€ ð¥ð³ðð ðð° ððŠðð¢ð°ð¯ 0.0 ð¯ 360.0, ð¢ðªð %g\n"
#, c-format
#: ../src/ui/theme-parser.c:726
msgid "Alpha must be between 0.0 (invisible) and 1.0 (fully opaque), was %g\n"
msgstr "ðšð€ðð© ð¥ð³ðð ðð° ððŠðð¢ð°ð¯ 0.0 (ðŠð¯ððŠððŠðð©ð€) ð¯ 1.0 (ðð«ð€ðŠ ðŽðð±ð), ð¢ðªð %g\n"
#, c-format
#: ../src/ui/theme-parser.c:791
msgid ""
"Invalid title scale \"%s\" (must be one of "
"xx-small,x-small,small,medium,large,x-large,xx-large)\n"
msgstr ""
"ðŠð¯ððšð€ðŠð ðð²ðð©ð€ ððð±ð€ \"%s\" (ð¥ð³ðð ðð° ð¢ð³ð¯ ð "
"xx-small,x-small,small,medium,large,x-large,xx-large)\n"
#, c-format
#: ../src/ui/theme-parser.c:936 ../src/ui/theme-parser.c:999
#: ../src/ui/theme-parser.c:1033 ../src/ui/theme-parser.c:1136
msgid "<%s> name \"%s\" used a second time"
msgstr "<%s> ð¯ð±ð¥ \"%s\" ð¿ðð ð© ðð§ðð©ð¯ð ðð²ð¥"
#, c-format
#: ../src/ui/theme-parser.c:948 ../src/ui/theme-parser.c:1045
#: ../src/ui/theme-parser.c:1148
msgid "<%s> parent \"%s\" has not been defined"
msgstr "<%s> ððºð©ð¯ð \"%s\" ð£ðšð ð¯ðªð ðð°ð¯ ððŠðð²ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:1058
msgid "<%s> geometry \"%s\" has not been defined"
msgstr "<%s> ð¡ðŠðªð¥ð©ðð®ðŠ \"%s\" ð£ðšð ð¯ðªð ðð°ð¯ ððŠðð²ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:1071
msgid "<%s> must specify either a geometry or a parent that has a geometry"
msgstr "<%s> ð¥ð³ðð ððð§ððŠðð² ð²ððŒ ð© ð¡ðŠðªð¥ð©ðð®ðŠ ð¹ ð© ððºð©ð¯ð ððšð ð£ðšð ð© ð¡ðŠðªð¥ð©ðð®ðŠ"
#: ../src/ui/theme-parser.c:1113
msgid "You must specify a background for an alpha value to be meaningful"
msgstr "ð¿ ð¥ð³ðð ððð§ððŠðð² ð© ððšððð®ð¬ð¯ð ðð¹ ð©ð¯ ðšð€ðð© ððšð€ð¿ ð ðð° ð¥ð°ð¯ðŠððð©ð€"
#, c-format
#: ../src/ui/theme-parser.c:1180
msgid "Unknown type \"%s\" on <%s> element"
msgstr "ð³ð¯ðŽð¯ ðð²ð \"%s\" ðªð¯ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:1191
msgid "Unknown style_set \"%s\" on <%s> element"
msgstr "ð³ð¯ðŽð¯ style_set \"%s\" ðªð¯ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:1199
msgid "Window type \"%s\" has already been assigned a style set"
msgstr "ð¢ðŠð¯ððŽ ðð²ð \"%s\" ð£ðšð ð·ð€ð®ð§ððŠ ðð°ð¯ ðšððð²ð¯ð ð© ððð²ð€ ðð§ð"
#, c-format
#: ../src/ui/theme-parser.c:1229 ../src/ui/theme-parser.c:1293
#: ../src/ui/theme-parser.c:1519 ../src/ui/theme-parser.c:2740
#: ../src/ui/theme-parser.c:2786 ../src/ui/theme-parser.c:2934
#: ../src/ui/theme-parser.c:3126 ../src/ui/theme-parser.c:3164
#: ../src/ui/theme-parser.c:3202 ../src/ui/theme-parser.c:3240
msgid "Element <%s> is not allowed below <%s>"
msgstr "ð§ð€ð©ð¥ð©ð¯ð <%s> ðŠð ð¯ðªð ð©ð€ð¬ð ðð©ð€ðŽ <%s>"
#: ../src/ui/theme-parser.c:1343 ../src/ui/theme-parser.c:1357
#: ../src/ui/theme-parser.c:1402
msgid ""
"Cannot specify both \"button_width\"/\"button_height\" and \"aspect_ratio\" "
"for buttons"
msgstr ""
"ððšð¯ðªð ððð§ððŠðð² ððŽð \"button_width\"/\"button_height\" ð¯ \"aspect_ratio\" ðð¹ "
"ðð³ðð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:1366
msgid "Distance \"%s\" is unknown"
msgstr "ððŠððð©ð¯ð \"%s\" ðŠð ð³ð¯ðŽð¯"
#, c-format
#: ../src/ui/theme-parser.c:1411
msgid "Aspect ratio \"%s\" is unknown"
msgstr "ðšððð§ðð ð®ð±ððŠðŽ \"%s\" ðŠð ð³ð¯ðŽð¯"
#, c-format
#: ../src/ui/theme-parser.c:1473
msgid "Border \"%s\" is unknown"
msgstr "ðð¹ððŒ \"%s\" ðŠð ð³ð¯ðŽð¯"
#, c-format
#: ../src/ui/theme-parser.c:1784
msgid "No \"start_angle\" or \"from\" attribute on element <%s>"
msgstr "ð¯ðŽ \"start_angle\" ð¹ \"from\" ðšðð®ðŠðð¿ð ðªð¯ ð§ð€ð©ð¥ð©ð¯ð <%s>"
#, c-format
#: ../src/ui/theme-parser.c:1791
msgid "No \"extent_angle\" or \"to\" attribute on element <%s>"
msgstr "ð¯ðŽ \"extent_angle\" ð¹ \"to\" ðšðð®ðŠðð¿ð ðªð¯ ð§ð€ð©ð¥ð©ð¯ð <%s>"
#, c-format
#: ../src/ui/theme-parser.c:2031
msgid "Did not understand value \"%s\" for type of gradient"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ððšð€ð¿ \"%s\" ðð¹ ðð²ð ð ðð®ð±ððŠð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2109 ../src/ui/theme-parser.c:2484
msgid "Did not understand fill type \"%s\" for <%s> element"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ððŠð€ ðð²ð \"%s\" ðð¹ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2276 ../src/ui/theme-parser.c:2359
#: ../src/ui/theme-parser.c:2422
msgid "Did not understand state \"%s\" for <%s> element"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ððð±ð \"%s\" ðð¹ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2286 ../src/ui/theme-parser.c:2369
msgid "Did not understand shadow \"%s\" for <%s> element"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ððšððŽ \"%s\" ðð¹ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2296
msgid "Did not understand arrow \"%s\" for <%s> element"
msgstr "ððŠð ð¯ðªð ð³ð¯ððŒðððšð¯ð ðšð®ðŽ \"%s\" ðð¹ <%s> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2596 ../src/ui/theme-parser.c:2692
msgid "No <draw_ops> called \"%s\" has been defined"
msgstr "ð¯ðŽ <draw_ops> ðð·ð€ð \"%s\" ð£ðšð ðð°ð¯ ððŠðð²ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2608 ../src/ui/theme-parser.c:2704
msgid "Including draw_ops \"%s\" here would create a circular reference"
msgstr "ðŠð¯ðð€ðµððŠð draw_ops \"%s\" ð£ðœ ð¢ð«ð ðð®ðŠð±ð ð© ðð»ððð«ð€ðŒ ð®ð§ððŒð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2819
msgid "Unknown position \"%s\" for frame piece"
msgstr "ð³ð¯ðŽð¯ ðð©ððŠðð©ð¯ \"%s\" ðð¹ ðð®ð±ð¥ ðð°ð"
#, c-format
#: ../src/ui/theme-parser.c:2827
msgid "Frame style already has a piece at position %s"
msgstr "ðð®ð±ð¥ ððð²ð€ ð·ð€ð®ð§ððŠ ð£ðšð ð© ðð°ð ðšð ðð©ððŠðð©ð¯ %s"
#, c-format
#: ../src/ui/theme-parser.c:2844 ../src/ui/theme-parser.c:2919
msgid "No <draw_ops> with the name \"%s\" has been defined"
msgstr "ð¯ðŽ <draw_ops> ð¢ðŠð ð ð¯ð±ð¥ \"%s\" ð£ðšð ðð°ð¯ ððŠðð²ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:2873
msgid "Unknown function \"%s\" for button"
msgstr "ð³ð¯ðŽð¯ ðð³ðððð©ð¯ \"%s\" ðð¹ ðð³ðð©ð¯"
#, c-format
#: ../src/ui/theme-parser.c:2882
msgid "Button function \"%s\" does not exist in this version (%d, need %d)"
msgstr "ðð³ðð©ð¯ ðð³ðððð©ð¯ \"%s\" ðð³ð ð¯ðªð ð§ðððŠðð ðŠð¯ ððŠð ðð»ð ð©ð¯ (%d, ð¯ð°ð %d)"
#, c-format
#: ../src/ui/theme-parser.c:2894
msgid "Unknown state \"%s\" for button"
msgstr "ð³ð¯ðŽð¯ ððð±ð \"%s\" ðð¹ ðð³ðð©ð¯"
#, c-format
#: ../src/ui/theme-parser.c:2902
msgid "Frame style already has a button for function %s state %s"
msgstr "ðð®ð±ð¥ ððð²ð€ ð·ð€ð®ð§ððŠ ð£ðšð ð© ðð³ðð©ð¯ ðð¹ ðð³ðððð©ð¯ %s ððð±ð %s"
#, c-format
#: ../src/ui/theme-parser.c:2973
msgid "\"%s\" is not a valid value for focus attribute"
msgstr "\"%s\" ðŠð ð¯ðªð ð© ððšð€ðŠð ððšð€ð¿ ðð¹ ððŽðð©ð ð©ðð®ðŠðð¿ð"
#, c-format
#: ../src/ui/theme-parser.c:2982
msgid "\"%s\" is not a valid value for state attribute"
msgstr "\"%s\" ðŠð ð¯ðªð ð© ððšð€ðŠð ððšð€ð¿ ðð¹ ððð±ð ð©ðð®ðŠðð¿ð"
#, c-format
#: ../src/ui/theme-parser.c:2992
msgid "A style called \"%s\" has not been defined"
msgstr "ð© ððð²ð€ ðð·ð€ð \"%s\" ð£ðšð ð¯ðªð ðð°ð¯ ððŠðð²ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:3013 ../src/ui/theme-parser.c:3036
msgid "\"%s\" is not a valid value for resize attribute"
msgstr "\"%s\" ðŠð ð¯ðªð ð© ððšð€ðŠð ððšð€ð¿ ðð¹ ð®ð°ðð²ð ð©ðð®ðŠðð¿ð"
#, c-format
#: ../src/ui/theme-parser.c:3047
msgid ""
"Should not have \"resize\" attribute on <%s> element for maximized/shaded "
"states"
msgstr ""
"ðð«ð ð¯ðªð ð£ðšð \"resize\" ð©ðð®ðŠðð¿ð ðªð¯ <%s> ð§ð€ð©ð¥ð©ð¯ð ðð¹ ð¥ðšððð©ð¥ð²ðð/ðð±ðð©ð ððð±ðð"
#, c-format
#: ../src/ui/theme-parser.c:3061
msgid ""
"Should not have \"resize\" attribute on <%s> element for maximized states"
msgstr "ðð«ð ð¯ðªð ð£ðšð \"resize\" ð©ðð®ðŠðð¿ð ðªð¯ <%s> ð§ð€ð©ð¥ð©ð¯ð ðð¹ ð¥ðšððð©ð¥ð²ðð ððð±ðð"
#, c-format
#: ../src/ui/theme-parser.c:3075 ../src/ui/theme-parser.c:3097
msgid "Style has already been specified for state %s resize %s focus %s"
msgstr "ððð²ð€ ð£ðšð ð·ð€ð®ð§ððŠ ðð°ð¯ ððð§ððŠðð²ð ðð¹ ððð±ð %s ð®ð°ðð²ð %s ððŽðð©ð %s"
#, c-format
#: ../src/ui/theme-parser.c:3086 ../src/ui/theme-parser.c:3108
msgid "Style has already been specified for state %s focus %s"
msgstr "ððð²ð€ ð£ðšð ð·ð€ð®ð§ððŠ ðð°ð¯ ððð§ððŠðð²ð ðð¹ ððð±ð %s ððŽðð©ð %s"
#: ../src/ui/theme-parser.c:3147
msgid ""
"Can't have a two draw_ops for a <piece> element (theme specified a draw_ops "
"attribute and also a <draw_ops> element, or specified two elements)"
msgstr ""
"ððð¯ð ð£ðšð ð© ððµ draw_ops ðð¹ ð© <ðð°ð> ð§ð€ð©ð¥ð©ð¯ð (ðð°ð¥ ððð§ððŠðð²ð ð© draw_ops ðšðð®ðŠðð¿ð ð¯ "
"ð·ð€ððŽ ð© <draw_ops> ð§ð€ð©ð¥ð©ð¯ð, ð¹ ððð§ððŠðð²ð ððµ ð§ð€ð©ð¥ð©ð¯ðð)"
#: ../src/ui/theme-parser.c:3185
msgid ""
"Can't have a two draw_ops for a <button> element (theme specified a draw_ops "
"attribute and also a <draw_ops> element, or specified two elements)"
msgstr ""
"ððð¯ð ð£ðšð ð© ððµ draw_ops ðð¹ ð© <button> ð§ð€ð©ð¥ð©ð¯ð (ðð°ð¥ ððð§ððŠðð²ð ð© draw_ops ðšðð®ðŠðð¿ð "
"ð¯ ð·ð€ððŽ ð© <draw_ops> ð§ð€ð©ð¥ð©ð¯ð, ð¹ ððð§ððŠðð²ð ððµ ð§ð€ð©ð¥ð©ð¯ðð)"
#: ../src/ui/theme-parser.c:3223
msgid ""
"Can't have a two draw_ops for a <menu_icon> element (theme specified a "
"draw_ops attribute and also a <draw_ops> element, or specified two elements)"
msgstr ""
"ððð¯ð ð£ðšð ð© ððµ draw_ops ðð¹ ð© <menu_icon> ð§ð€ð©ð¥ð©ð¯ð (ðð°ð¥ ððð§ððŠðð²ð ð© draw_ops "
"ðšðð®ðŠðð¿ð ð¯ ð·ð€ððŽ ð© <draw_ops> ð§ð€ð©ð¥ð©ð¯ð, ð¹ ððð§ððŠðð²ð ððµ ð§ð€ð©ð¥ð©ð¯ðð)"
#, c-format
#: ../src/ui/theme-parser.c:3271
msgid "Outermost element in theme must be <marco_theme> not <%s>"
msgstr "ð¶ðð»ð¥ðŽðð ð§ð€ð©ð¥ð©ð¯ð ðŠð¯ ðð°ð¥ ð¥ð³ðð ðð° <marco_theme> ð¯ðªð <%s>"
#, c-format
#: ../src/ui/theme-parser.c:3291
msgid ""
"Element <%s> is not allowed inside a name/author/date/description element"
msgstr "ð§ð€ð©ð¥ð©ð¯ð <%s> ðŠð ð¯ðªð ð©ð€ð¬ð ðŠð¯ðð²ð ð© name/author/date/description ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:3296
msgid "Element <%s> is not allowed inside a <constant> element"
msgstr "ð§ð€ð©ð¥ð©ð¯ð <%s> ðŠð ð¯ðªð ð©ð€ð¬ð ðŠð¯ðð²ð ð© <constant> ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:3308
msgid ""
"Element <%s> is not allowed inside a distance/border/aspect_ratio element"
msgstr "ð§ð€ð©ð¥ð©ð¯ð <%s> ðŠð ð¯ðªð ð©ð€ð¬ð ðŠð¯ðð²ð ð© distance/border/aspect_ratio ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:3330
msgid "Element <%s> is not allowed inside a draw operation element"
msgstr "ð§ð€ð©ð¥ð©ð¯ð <%s> ðŠð ð¯ðªð ð©ð€ð¬ð ðŠð¯ðð²ð ð© ðð®ð· ðªððŒð±ðð©ð¯ ð§ð€ð©ð¥ð©ð¯ð"
#, c-format
#: ../src/ui/theme-parser.c:3340 ../src/ui/theme-parser.c:3370
#: ../src/ui/theme-parser.c:3375 ../src/ui/theme-parser.c:3380
msgid "Element <%s> is not allowed inside a <%s> element"
msgstr "ð§ð€ð©ð¥ð©ð¯ð <%s> ðŠð ð¯ðªð ð©ð€ð¬ð ðŠð¯ðð²ð ð© <%s> ð§ð€ð©ð¥ð©ð¯ð"
#: ../src/ui/theme-parser.c:3602
msgid "No draw_ops provided for frame piece"
msgstr "ð¯ðŽ draw_ops ðð®ð©ðð²ðð©ð ðð¹ ðð®ð±ð¥ ðð°ð"
#: ../src/ui/theme-parser.c:3617
msgid "No draw_ops provided for button"
msgstr "ð¯ðŽ draw_ops ðð®ð©ðð²ðð©ð ðð¹ ðð³ðð©ð¯"
#, c-format
#: ../src/ui/theme-parser.c:3669
msgid "No text is allowed inside element <%s>"
msgstr "ð¯ðŽ ðð§ððð ðŠð ð©ð€ð¬ð ðŠð¯ðð²ð ð§ð€ð©ð¥ð©ð¯ð <%s>"
#, c-format
#: ../src/ui/theme-parser.c:3724 ../src/ui/theme-parser.c:3736
#: ../src/ui/theme-parser.c:3748 ../src/ui/theme-parser.c:3760
#: ../src/ui/theme-parser.c:3772
msgid "<%s> specified twice for this theme"
msgstr "<%s> ððð§ððŠðð²ð ðð¢ð²ð ðð¹ ððŠð ðð°ð¥"
#, c-format
#: ../src/ui/theme-parser.c:4040
msgid "Failed to find a valid file for theme %s\n"
msgstr "ðð±ð€ð ð ðð²ð¯ð ð© ððšð€ðŠð ðð²ð€ ðð¹ ðð°ð¥ %s\n"
#, c-format
#: ../src/ui/theme-parser.c:4096
msgid "Theme file %s did not contain a root <marco_theme> element"
msgstr "ðð°ð¥ ðð²ð€ %s ððŠð ð¯ðªð ðð©ð¯ðð±ð¯ ð© ð®ðµð <marco_theme> ð§ð€ð©ð¥ð©ð¯ð"
#: ../src/ui/theme-viewer.c:75
msgid "/_Windows"
msgstr "/_ð¢ðŠð¯ððŽð"
#: ../src/ui/theme-viewer.c:76
msgid "/Windows/tearoff"
msgstr "/ð¢ðŠð¯ððŽð/ððºðªð"
#: ../src/ui/theme-viewer.c:77
msgid "/Windows/_Dialog"
msgstr "/ð¢ðŠð¯ððŽð/_ðð²ð©ð€ðªð"
#: ../src/ui/theme-viewer.c:78
msgid "/Windows/_Modal dialog"
msgstr "/ð¢ðŠð¯ððŽð/_ð¥ðŽðð©ð€ ðð²ð©ð€ðªð"
#: ../src/ui/theme-viewer.c:79
msgid "/Windows/_Utility"
msgstr "/ð¢ðŠð¯ððŽð/_ð¿ððŠð€ðŠððŠ"
#: ../src/ui/theme-viewer.c:80
msgid "/Windows/_Splashscreen"
msgstr "/ð¢ðŠð¯ððŽð/_ððð€ðšðððð®ð°ð¯"
#: ../src/ui/theme-viewer.c:81
msgid "/Windows/_Top dock"
msgstr "/ð¢ðŠð¯ððŽð/_ððªð ððð"
#: ../src/ui/theme-viewer.c:82
msgid "/Windows/_Bottom dock"
msgstr "/ð¢ðŠð¯ððŽð/_ððªðð©ð¥ ððð"
#: ../src/ui/theme-viewer.c:83
msgid "/Windows/_Left dock"
msgstr "/ð¢ðŠð¯ððŽð/_ð€ð§ð ððð"
#: ../src/ui/theme-viewer.c:84
msgid "/Windows/_Right dock"
msgstr "/ð¢ðŠð¯ððŽð/_ð®ð²ð ððð"
#: ../src/ui/theme-viewer.c:85
msgid "/Windows/_All docks"
msgstr "/ð¢ðŠð¯ððŽð/_ð·ð€ ðððð"
#: ../src/ui/theme-viewer.c:86
msgid "/Windows/Des_ktop"
msgstr "/ð¢ðŠð¯ððŽð/ðð§ð_ðððªð"
#: ../src/ui/theme-viewer.c:244
msgid "This is a sample message in a sample dialog"
msgstr "ððŠð ðŠð ð© ððð¥ðð©ð€ ð¥ð§ððŠð¡ ðŠð¯ ð© ððð¥ðð©ð€ ðð²ð©ð€ðªð"
#, c-format
#: ../src/ui/theme-viewer.c:327
msgid "Fake menu item %d\n"
msgstr "ðð±ð ð¥ð§ð¯ð¿ ð²ðð©ð¥ %d\n"
#: ../src/ui/theme-viewer.c:361
msgid "Border-only window"
msgstr "ðð¹ððŒ-ðŽð¯ð€ðŠ ð¢ðŠð¯ððŽ"
#: ../src/ui/theme-viewer.c:363
msgid "Bar"
msgstr "ððž"
#: ../src/ui/theme-viewer.c:380
msgid "Normal Application Window"
msgstr "ð¯ð¹ð¥ð©ð€ ð©ðð€ðŠðð±ðð©ð¯ ð¢ðŠð¯ððŽ"
#: ../src/ui/theme-viewer.c:384
msgid "Dialog Box"
msgstr "ðð²ð©ð€ðªð ððªðð"
#: ../src/ui/theme-viewer.c:388
msgid "Modal Dialog Box"
msgstr "ð¥ðŽðð©ð€ ðð²ð©ð€ðªð ððªðð"
#: ../src/ui/theme-viewer.c:392
msgid "Utility Palette"
msgstr "ððµððŠð€ð©ðð° ðð©ð€ð§ð"
#: ../src/ui/theme-viewer.c:396
msgid "Torn-off Menu"
msgstr "ðð¹ð¯-ðªð ð¥ð§ð¯ð¿"
#: ../src/ui/theme-viewer.c:400
msgid "Border"
msgstr "ðð¹ððŒ"
#, c-format
#: ../src/ui/theme-viewer.c:728
msgid "Button layout test %d"
msgstr "ðð³ðð©ð¯ ð€ð±ð¬ð ðð§ðð %d"
#, c-format
#: ../src/ui/theme-viewer.c:757
msgid "%g milliseconds to draw one window frame"
msgstr "%g ð¥ðŠð€ðŠðð§ðð©ð¯ðð ð ðð®ð· ð¢ð³ð¯ ð¢ðŠð¯ððŽ ðð®ð±ð¥"
#, c-format
#: ../src/ui/theme-viewer.c:800
msgid "Usage: marco-theme-viewer [THEMENAME]\n"
msgstr "ð¿ððŠð¡: marco-theme-viewer [ðð°ð¥ð¯ð±ð¥]\n"
#, c-format
#: ../src/ui/theme-viewer.c:807
msgid "Error loading theme: %s\n"
msgstr "ð»ðŒ ð€ðŽððŠð ðð°ð¥: %s\n"
#, c-format
#: ../src/ui/theme-viewer.c:813
msgid "Loaded theme \"%s\" in %g seconds\n"
msgstr "ð€ðŽðð©ð ðð°ð¥ \"%s\" ðŠð¯ %g ðð§ðð©ð¯ðð\n"
#: ../src/ui/theme-viewer.c:854
msgid "Normal Title Font"
msgstr "ð¯ð¹ð¥ð©ð€ ðð²ðð©ð€ ððªð¯ð"
#: ../src/ui/theme-viewer.c:860
msgid "Small Title Font"
msgstr "ðð¥ð·ð€ ðð²ðð©ð€ ððªð¯ð"
#: ../src/ui/theme-viewer.c:866
msgid "Large Title Font"
msgstr "ð€ðžð¡ ðð²ðð©ð€ ððªð¯ð"
#: ../src/ui/theme-viewer.c:871
msgid "Button Layouts"
msgstr "ðð³ðð©ð¯ ð€ð±ð¬ðð"
#: ../src/ui/theme-viewer.c:876
msgid "Benchmark"
msgstr "ðð§ð¯ðð¥ðð®ð"
#: ../src/ui/theme-viewer.c:923
msgid "Window Title Goes Here"
msgstr "ð¢ðŠð¯ððŽ ðð²ðð©ð€ ððŽð ð£ðœ"
#, c-format
#: ../src/ui/theme-viewer.c:1027
msgid ""
"Drew %d frames in %g client-side seconds (%g milliseconds per frame) and %g "
"seconds wall clock time including X server resources (%g milliseconds per "
"frame)\n"
msgstr ""
"ðð®ðµ %d ðð®ð±ð¥ð ðŠð¯ %g ðð€ð²ð©ð¯ð-ðð²ð ðð§ðð©ð¯ðð (%g ð¥ðŠð€ðŠðð§ðð©ð¯ðð ðð» ðð®ð±ð¥) ð¯ %g ðð§ðð©ð¯ðð "
"ð¢ð·ð€ ðð€ðªð ðð²ð¥ ðŠð¯ðð€ðµððŠð X ðð»ððŒ ð®ðŠðð¹ðð©ð (%g ð¥ðŠð€ðŠðð§ðð©ð¯ðð ðð» ðð®ð±ð¥)\n"
#: ../src/ui/theme-viewer.c:1246
msgid "position expression test returned TRUE but set error"
msgstr "ðð©ððŠðð©ð¯ ðŠðððð®ð§ðð©ð¯ ðð§ðð ð®ðŠðð»ð¯ð ðð®ðµ ðð³ð ðð§ð ð»ðŒ"
#: ../src/ui/theme-viewer.c:1248
msgid "position expression test returned FALSE but didn't set error"
msgstr "ðð©ððŠðð©ð¯ ðŠðððð®ð§ðð©ð¯ ðð§ðð ð®ðŠðð»ð¯ð ðð·ð€ð ðð³ð ððŠðð¯ð ðð§ð ð»ðŒ"
#: ../src/ui/theme-viewer.c:1252
msgid "Error was expected but none given"
msgstr "ð»ðŒ ð¢ðªð ðŠðððð§ððð©ð ðð³ð ð¯ð³ð¯ ððŠðð©ð¯"
#, c-format
#: ../src/ui/theme-viewer.c:1254
msgid "Error %d was expected but %d given"
msgstr "ð»ðŒ %d ð¢ðªð ðŠðððð§ððð©ð ðð³ð %d ððŠðð©ð¯"
#, c-format
#: ../src/ui/theme-viewer.c:1260
msgid "Error not expected but one was returned: %s"
msgstr "ð»ðŒ ð¯ðªð ðŠðððð§ððð©ð ðð³ð ð¢ð³ð¯ ð¢ðªð ð®ðŠðð»ð¯ð: %s"
#, c-format
#: ../src/ui/theme-viewer.c:1264
msgid "x value was %d, %d was expected"
msgstr "x ððšð€ð¿ ð¢ðªð %d, %d ð¢ðªð ðŠðððð§ððð©ð"
#, c-format
#: ../src/ui/theme-viewer.c:1267
msgid "y value was %d, %d was expected"
msgstr "y ððšð€ð¿ ð¢ðªð %d, %d ð¢ðªð ðŠðððð§ððð©ð"
#, c-format
#: ../src/ui/theme-viewer.c:1332
msgid "%d coordinate expressions parsed in %g seconds (%g seconds average)\n"
msgstr "%d ððŽð¹ðð©ð¯ð±ð ðŠðððð®ð§ðð©ð¯ð ððžðð ðŠð¯ %g ðð§ðð©ð¯ðð (%g ðð§ðð©ð¯ðð ðšððŒðŠð¡)\n"
|