~ubuntu-branches/ubuntu/lucid/kde-l10n-mk/lucid

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
# Copyright (C) 2006, 2007, 2009, 2010 Free Software Foundation, Inc.
# Bozidar Proevski <bobibobi@freemail.com.mk>, 2004, 2005, 2006, 2007, 2009, 2010.
# translation of kcmkwinrules.po to Macedonian
msgid ""
msgstr ""
"Project-Id-Version: kcmkwinrules\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-01-02 05:57+0100\n"
"PO-Revision-Date: 2010-01-29 22:41+0100\n"
"Last-Translator: Bozidar Proevski <bobibobi@freemail.com.mk>\n"
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : "
"2;\n"

#. i18n: file: ruleswidgetbase.ui:281
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1771
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:281
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1771
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:98 rc.cpp:125 rc.cpp:667 rc.cpp:932 rc.cpp:1474
msgid "Normal Window"
msgstr "Нормален прозорец"

#. i18n: file: ruleswidgetbase.ui:316
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1806
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:316
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1806
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:99 rc.cpp:146 rc.cpp:688 rc.cpp:953 rc.cpp:1495
msgid "Desktop"
msgstr "Работна површина"

#. i18n: file: ruleswidgetbase.ui:296
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1786
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:296
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1786
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:100 rc.cpp:134 rc.cpp:676 rc.cpp:941 rc.cpp:1483
msgid "Dock (panel)"
msgstr "Вкотвено (панел)"

#. i18n: file: ruleswidgetbase.ui:301
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1791
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:301
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1791
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:101 rc.cpp:137 rc.cpp:679 rc.cpp:944 rc.cpp:1486
msgid "Toolbar"
msgstr "Алатник"

#. i18n: file: ruleswidgetbase.ui:306
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1796
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:306
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1796
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:102 rc.cpp:140 rc.cpp:682 rc.cpp:947 rc.cpp:1489
msgid "Torn-Off Menu"
msgstr "Откачено мени"

#. i18n: file: ruleswidgetbase.ui:286
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1776
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:286
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1776
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:103 rc.cpp:128 rc.cpp:670 rc.cpp:935 rc.cpp:1477
msgid "Dialog Window"
msgstr "Прозорец со дијалог"

#. i18n: file: ruleswidgetbase.ui:321
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1811
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:321
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1811
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:104 rc.cpp:149 rc.cpp:691 rc.cpp:956 rc.cpp:1498
msgid "Override Type"
msgstr "Отфрли тип"

#. i18n: file: ruleswidgetbase.ui:326
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1816
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:326
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1816
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:105 rc.cpp:152 rc.cpp:694 rc.cpp:959 rc.cpp:1501
msgid "Standalone Menubar"
msgstr "Самостојно мени"

#. i18n: file: ruleswidgetbase.ui:291
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1781
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:291
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1781
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:106 rc.cpp:131 rc.cpp:673 rc.cpp:938 rc.cpp:1480
msgid "Utility Window"
msgstr "Прозорец со корисни алатки"

#. i18n: file: ruleswidgetbase.ui:311
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1801
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#. i18n: file: ruleswidgetbase.ui:311
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:1801
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:107 rc.cpp:143 rc.cpp:685 rc.cpp:950 rc.cpp:1492
msgid "Splash Screen"
msgstr "Почетен екран"

#: detectwidget.cpp:117
msgid "Unknown - will be treated as Normal Window"
msgstr "Непознат - ќе се третира како нормален прозорец"

#: kcm.cpp:52
msgid "kcmkwinrules"
msgstr "kcmkwinrules"

#: kcm.cpp:53
msgid "Window-Specific Settings Configuration Module"
msgstr "Модул за конфигурација на поставувања специфични за прозорец"

#: kcm.cpp:54
msgid "(c) 2004 KWin and KControl Authors"
msgstr "(c) 2004 Авторите на KWin и KControl"

#: kcm.cpp:55
msgid "Lubos Lunak"
msgstr "Lubos Lunak"

#: kcm.cpp:86
msgid ""
"<p><h1>Window-specific Settings</h1> Here you can customize window settings "
"specifically only for some windows.</p> <p>Please note that this "
"configuration will not take effect if you do not use KWin as your window "
"manager. If you do use a different window manager, please refer to its "
"documentation for how to customize window behavior.</p>"
msgstr ""
"<p><h1>Поставувања специфични за прозорец</h1> Тука може да ги прилагодите "
"поставувањата специфично само за некои прозорци.</p> <p>Забележете дека оваа "
"конфигурација нема да работи ако не го користите KWin како ваш менаџер на "
"прозорци. Ако користите некој друг менаџер на прозорци, погледнете во "
"неговата документација за како да го прилагодите однесувањето на прозорците."
"</p>"

#: kcm.cpp:102
msgid "Remember settings separately for every window"
msgstr "Запомни ги поставувањата посебно за секој прозорец"

#: kcm.cpp:103
msgid "Show internal settings for remembering"
msgstr "Покажи внатрешни поставувања за запомнување"

#: kcm.cpp:104
msgid "Internal setting for remembering"
msgstr "Внатрешно поставување за запомнување"

#: main.cpp:153
#, kde-format
msgid "Application settings for %1"
msgstr "Поставувања за апликација за %1"

#: main.cpp:177
#, kde-format
msgid "Window settings for %1"
msgstr "Поставувања за прозорец за %1"

#: main.cpp:270
msgid "KWin"
msgstr "KWin"

#: main.cpp:271
msgid "KWin helper utility"
msgstr "Помошна алатка на KWin "

#: main.cpp:274
msgid "WId of the window for special window settings."
msgstr "WId на прозорецот за специјални поставувања на прозорец."

#: main.cpp:275
msgid "Whether the settings should affect all windows of the application."
msgstr "Дали поставувањата треба да важат за сите прозорци од апликацијата."

#: main.cpp:285
msgid "This helper utility is not supposed to be called directly."
msgstr "Оваа помошна алатка не би требало да се повикува директно."

#. i18n: file: detectwidget.ui:16
#. i18n: ectx: property (text), widget (QLabel, textLabel9)
#: rc.cpp:3 rc.cpp:810
msgid "Information About Selected Window"
msgstr "Информација за избраниот прозорец"

#. i18n: file: detectwidget.ui:36
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:6 rc.cpp:813
msgid "Class:"
msgstr "Класа:"

#. i18n: file: detectwidget.ui:56
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:9 rc.cpp:816
msgid "Role:"
msgstr "Улога:"

#. i18n: file: detectwidget.ui:76
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:12 rc.cpp:819
msgid "Type:"
msgstr "Тип:"

#. i18n: file: detectwidget.ui:96
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: rc.cpp:15 rc.cpp:822
msgid "Title:"
msgstr "Наслов:"

#. i18n: file: detectwidget.ui:116
#. i18n: ectx: property (text), widget (QLabel, textLabel11)
#. i18n: file: ruleswidgetbase.ui:387
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#. i18n: file: detectwidget.ui:116
#. i18n: ectx: property (text), widget (QLabel, textLabel11)
#. i18n: file: ruleswidgetbase.ui:387
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#: rc.cpp:18 rc.cpp:173 rc.cpp:825 rc.cpp:980
msgid "Extra role:"
msgstr "Екстра улога:"

#. i18n: file: detectwidget.ui:136
#. i18n: ectx: property (text), widget (QLabel, textLabel13)
#: rc.cpp:21 rc.cpp:828
msgid "Machine:"
msgstr "Машина:"

#. i18n: file: detectwidget.ui:159
#. i18n: ectx: property (whatsThis), widget (QRadioButton, use_class)
#: rc.cpp:24 rc.cpp:831
msgid ""
"For selecting all windows belonging to a specific application, selecting "
"only window class should usually work."
msgstr ""
"За избирање на сите прозорци кои припаѓаат на одредена апликација, доволно е "
"да се избере класата на прозорецот."

#. i18n: file: detectwidget.ui:162
#. i18n: ectx: property (text), widget (QRadioButton, use_class)
#: rc.cpp:27 rc.cpp:834
msgid "Use window &class (whole application)"
msgstr "Користи ја &класата на прозорецот (цела апликација)"

#. i18n: file: detectwidget.ui:172
#. i18n: ectx: property (whatsThis), widget (QRadioButton, use_role)
#: rc.cpp:30 rc.cpp:837
msgid ""
"For selecting a specific window in an application, both window class and "
"window role should be selected. Window class will determine the application, "
"and window role the specific window in the application; many applications do "
"not provide useful window roles though."
msgstr ""
"За избирање на специфичен прозорец во апликација, треба да се изберат и "
"класата и улогата на прозорецот. Класата на прозорецот ќе ја одреди "
"апликацијата, а улогата на прозорецот ќе го одреди специфичниот прозорец во "
"апликацијата; сепак повеќето апликации не даваат корисни улоги на прозорците."

#. i18n: file: detectwidget.ui:175
#. i18n: ectx: property (text), widget (QRadioButton, use_role)
#: rc.cpp:33 rc.cpp:840
msgid "Use window class and window &role (specific window)"
msgstr "Користи ги класата и улогата на п&розорецот (специфичен прозорец)"

#. i18n: file: detectwidget.ui:182
#. i18n: ectx: property (whatsThis), widget (QRadioButton, use_whole_class)
#: rc.cpp:36 rc.cpp:843
msgid ""
"With some (non-KDE) applications whole window class can be sufficient for "
"selecting a specific window in an application, as they set whole window "
"class to contain both application and window role."
msgstr ""
"За некои апликации (кои не се KDE) целосната класа на прозорци е доволна за "
"избирање на специфичен прозорец во апликација, бидејќи тие ја поставуваат "
"целосната класа на прозорец да ги содржи и апликацијата и улогата на "
"прозорецот."

#. i18n: file: detectwidget.ui:185
#. i18n: ectx: property (text), widget (QRadioButton, use_whole_class)
#: rc.cpp:39 rc.cpp:846
msgid "Use &whole window class (specific window)"
msgstr "Користи ја &целосната класа на прозорец (специфичен прозорец)"

#. i18n: file: detectwidget.ui:192
#. i18n: ectx: property (text), widget (QCheckBox, match_title)
#: rc.cpp:42 rc.cpp:849
msgid "Match also window &title"
msgstr "Користи го и &насловот на прозорецот"

#. i18n: file: editshortcut.ui:18
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:45 rc.cpp:852
msgid ""
"A single shortcut can be easily assigned or cleared using the two buttons. "
"Only shortcuts with modifiers can be used.<p>\n"
"It is possible to have several possible shortcuts, and the first available "
"shortcut will be used. The shortcuts are specified using space-separated "
"shortcut sets. One set is specified as <i>base</i>+(<i>list</i>), where base "
"are modifiers and list is a list of keys.<br>\n"
"For example \"<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>\" will first try "
"<b>Shift+Alt+1</b>, then others with <b>Shift+Ctrl+C</b> as the last one."
msgstr ""
"Со користење на двете копчиња може лесно да се додели единечна кратенка. "
"Може да се користат само кратенки со модификатори.<p>\n"
"Можно е да има повеќе можни кратенки, а ќе се користи првата достапна. "
"Кратенките се одредени со множества кратенки разделени со празно место. Едно "
"множество е зададено како <i>база</i>+(<i>листа</i>), каде што база се "
"модификаторите е листа е листа на тастери.<br>\n"
"На пример „<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>“ прво ќе се обиде со "
"<b>Shift+Alt+1</b>, а потоа и со останатите каде што <b>Shift+Ctrl+C</b> е "
"последната."

#. i18n: file: editshortcut.ui:62
#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#: rc.cpp:50 rc.cpp:857
msgid "&Single Shortcut"
msgstr "Единечна &кратенка"

#. i18n: file: editshortcut.ui:85
#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#: rc.cpp:53 rc.cpp:860
msgid "C&lear"
msgstr "Исчи&сти"

#. i18n: file: ruleslist.ui:22
#. i18n: ectx: property (text), widget (KPushButton, new_button)
#: rc.cpp:56 rc.cpp:863
msgid "&New..."
msgstr "&Нов..."

#. i18n: file: ruleslist.ui:29
#. i18n: ectx: property (text), widget (KPushButton, modify_button)
#: rc.cpp:59 rc.cpp:866
msgid "&Modify..."
msgstr "&Измени..."

#. i18n: file: ruleslist.ui:36
#. i18n: ectx: property (text), widget (KPushButton, delete_button)
#: rc.cpp:62 rc.cpp:869
msgid "Delete"
msgstr "Избриши"

#. i18n: file: ruleslist.ui:46
#. i18n: ectx: property (text), widget (KPushButton, moveup_button)
#: rc.cpp:65 rc.cpp:872
msgid "Move &Up"
msgstr "Помести на&горе"

#. i18n: file: ruleslist.ui:53
#. i18n: ectx: property (text), widget (KPushButton, movedown_button)
#: rc.cpp:68 rc.cpp:875
msgid "Move &Down"
msgstr "Помести на&долу"

#. i18n: file: ruleswidgetbase.ui:31
#. i18n: ectx: attribute (title), widget (QWidget, TabPage1)
#: rc.cpp:71 rc.cpp:878
msgid "&Window"
msgstr "&Прозорец"

#. i18n: file: ruleswidgetbase.ui:37
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:74 rc.cpp:881
msgid "De&scription:"
msgstr "Опи&с:"

#. i18n: file: ruleswidgetbase.ui:53
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:77 rc.cpp:884
msgid "Window &class (application type):"
msgstr "&Класа на прозорец (тип на апликација):"

#. i18n: file: ruleswidgetbase.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, whole_wmclass)
#: rc.cpp:80 rc.cpp:887
msgid "Match w&hole window class"
msgstr "Спореди ја ц&елата класа на прозорци"

#. i18n: file: ruleswidgetbase.ui:77
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:130
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:351
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:404
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:457
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#. i18n: file: ruleswidgetbase.ui:77
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:130
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:351
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:404
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:457
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:83 rc.cpp:101 rc.cpp:158 rc.cpp:176 rc.cpp:194 rc.cpp:890 rc.cpp:908
#: rc.cpp:965 rc.cpp:983 rc.cpp:1001
msgid "Unimportant"
msgstr "Неважно"

#. i18n: file: ruleswidgetbase.ui:82
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:135
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:356
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:409
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:462
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#. i18n: file: ruleswidgetbase.ui:82
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:135
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:356
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:409
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:462
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:86 rc.cpp:104 rc.cpp:161 rc.cpp:179 rc.cpp:197 rc.cpp:893 rc.cpp:911
#: rc.cpp:968 rc.cpp:986 rc.cpp:1004
msgid "Exact Match"
msgstr "Прецизно совпаѓање"

#. i18n: file: ruleswidgetbase.ui:87
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:140
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:361
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:414
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:467
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#. i18n: file: ruleswidgetbase.ui:87
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:140
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:361
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:414
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:467
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:89 rc.cpp:107 rc.cpp:164 rc.cpp:182 rc.cpp:200 rc.cpp:896 rc.cpp:914
#: rc.cpp:971 rc.cpp:989 rc.cpp:1007
msgid "Substring Match"
msgstr "Совпаѓање на подниза"

#. i18n: file: ruleswidgetbase.ui:92
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:145
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:366
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:419
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:472
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#. i18n: file: ruleswidgetbase.ui:92
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:145
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:366
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:419
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:472
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:92 rc.cpp:110 rc.cpp:167 rc.cpp:185 rc.cpp:203 rc.cpp:899 rc.cpp:917
#: rc.cpp:974 rc.cpp:992 rc.cpp:1010
msgid "Regular Expression"
msgstr "Регуларен израз"

#. i18n: file: ruleswidgetbase.ui:103
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_wmclass)
#. i18n: file: ruleswidgetbase.ui:156
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_role)
#. i18n: file: ruleswidgetbase.ui:377
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_title)
#. i18n: file: ruleswidgetbase.ui:430
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_extra)
#. i18n: file: ruleswidgetbase.ui:483
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_machine)
#. i18n: file: ruleswidgetbase.ui:103
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_wmclass)
#. i18n: file: ruleswidgetbase.ui:156
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_role)
#. i18n: file: ruleswidgetbase.ui:377
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_title)
#. i18n: file: ruleswidgetbase.ui:430
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_extra)
#. i18n: file: ruleswidgetbase.ui:483
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_machine)
#: rc.cpp:95 rc.cpp:113 rc.cpp:170 rc.cpp:188 rc.cpp:206 rc.cpp:902 rc.cpp:920
#: rc.cpp:977 rc.cpp:995 rc.cpp:1013
msgid "Edit"
msgstr "Уреди"

#. i18n: file: ruleswidgetbase.ui:113
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:98 rc.cpp:905
msgid "Window &role:"
msgstr "Улога на п&розорец:"

#. i18n: file: ruleswidgetbase.ui:178
#. i18n: ectx: property (text), widget (KPushButton, detect)
#: rc.cpp:116 rc.cpp:923
msgid "&Detect Window Properties"
msgstr "&Најди ги својствата на прозорецот"

#. i18n: file: ruleswidgetbase.ui:258
#. i18n: ectx: attribute (title), widget (QWidget, TabPage2)
#: rc.cpp:119 rc.cpp:926
msgid "Window &Extra"
msgstr "&Екстра прозорец"

#. i18n: file: ruleswidgetbase.ui:264
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:122 rc.cpp:929
msgid "Window &types:"
msgstr "&Типови на прозорец:"

#. i18n: file: ruleswidgetbase.ui:334
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:155 rc.cpp:962
msgid "Window t&itle:"
msgstr "Наслов на пр&озорец:"

#. i18n: file: ruleswidgetbase.ui:440
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:191 rc.cpp:998
msgid "&Machine (hostname):"
msgstr "&Машина (име на компјутер):"

#. i18n: file: ruleswidgetbase.ui:554
#. i18n: ectx: attribute (title), widget (QWidget, TabPage3)
#: rc.cpp:209 rc.cpp:1016
msgid "&Geometry"
msgstr "&Геометрија"

#. i18n: file: ruleswidgetbase.ui:564
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:635
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:682
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:746
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:790
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:834
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:902
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:956
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1058
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1187
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1316
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1338
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1360
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1382
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:1404
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:1426
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1463
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1500
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1537
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1574
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1627
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1676
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1749
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:1859
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:1881
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:1952
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1991
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:2020
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:2078
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:2130
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:564
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:635
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:682
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:746
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:790
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:834
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:902
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:956
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1058
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1187
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1316
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1338
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1360
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1382
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:1404
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:1426
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1463
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1500
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1537
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1574
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1627
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1676
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1749
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:1859
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:1881
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:1952
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1991
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:2020
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:2078
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:2130
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#: rc.cpp:212 rc.cpp:242 rc.cpp:260 rc.cpp:281 rc.cpp:302 rc.cpp:323
#: rc.cpp:347 rc.cpp:368 rc.cpp:410 rc.cpp:465 rc.cpp:477 rc.cpp:486
#: rc.cpp:495 rc.cpp:504 rc.cpp:513 rc.cpp:522 rc.cpp:540 rc.cpp:558
#: rc.cpp:576 rc.cpp:594 rc.cpp:612 rc.cpp:631 rc.cpp:658 rc.cpp:709
#: rc.cpp:718 rc.cpp:748 rc.cpp:763 rc.cpp:775 rc.cpp:787 rc.cpp:799
#: rc.cpp:1019 rc.cpp:1049 rc.cpp:1067 rc.cpp:1088 rc.cpp:1109 rc.cpp:1130
#: rc.cpp:1154 rc.cpp:1175 rc.cpp:1217 rc.cpp:1272 rc.cpp:1284 rc.cpp:1293
#: rc.cpp:1302 rc.cpp:1311 rc.cpp:1320 rc.cpp:1329 rc.cpp:1347 rc.cpp:1365
#: rc.cpp:1383 rc.cpp:1401 rc.cpp:1419 rc.cpp:1438 rc.cpp:1465 rc.cpp:1516
#: rc.cpp:1525 rc.cpp:1555 rc.cpp:1570 rc.cpp:1582 rc.cpp:1594 rc.cpp:1606
msgid "Do Not Affect"
msgstr "Не влијае"

#. i18n: file: ruleswidgetbase.ui:569
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:640
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:687
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:751
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:795
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:839
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:907
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1063
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1431
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1468
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1505
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1542
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1579
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1681
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:569
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:640
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:687
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:751
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:795
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:839
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:907
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1063
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1431
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1468
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1505
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1542
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1579
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1681
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#: rc.cpp:215 rc.cpp:245 rc.cpp:263 rc.cpp:284 rc.cpp:305 rc.cpp:326
#: rc.cpp:350 rc.cpp:413 rc.cpp:525 rc.cpp:543 rc.cpp:561 rc.cpp:579
#: rc.cpp:597 rc.cpp:634 rc.cpp:1022 rc.cpp:1052 rc.cpp:1070 rc.cpp:1091
#: rc.cpp:1112 rc.cpp:1133 rc.cpp:1157 rc.cpp:1220 rc.cpp:1332 rc.cpp:1350
#: rc.cpp:1368 rc.cpp:1386 rc.cpp:1404 rc.cpp:1441
msgid "Apply Initially"
msgstr "Примени иницијално"

#. i18n: file: ruleswidgetbase.ui:574
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:645
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:692
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:756
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:800
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:844
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:912
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1068
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1436
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1473
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1510
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1547
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1584
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1686
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:574
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:645
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:692
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:756
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:800
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:844
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:912
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1068
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1436
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1473
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1510
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1547
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1584
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1686
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#: rc.cpp:218 rc.cpp:248 rc.cpp:266 rc.cpp:287 rc.cpp:308 rc.cpp:329
#: rc.cpp:353 rc.cpp:416 rc.cpp:528 rc.cpp:546 rc.cpp:564 rc.cpp:582
#: rc.cpp:600 rc.cpp:637 rc.cpp:1025 rc.cpp:1055 rc.cpp:1073 rc.cpp:1094
#: rc.cpp:1115 rc.cpp:1136 rc.cpp:1160 rc.cpp:1223 rc.cpp:1335 rc.cpp:1353
#: rc.cpp:1371 rc.cpp:1389 rc.cpp:1407 rc.cpp:1444
msgid "Remember"
msgstr "Запомни"

#. i18n: file: ruleswidgetbase.ui:579
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:650
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:697
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:761
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:805
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:849
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:917
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:961
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1073
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1192
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1321
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1343
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1365
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1387
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:1409
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:1441
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1478
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1515
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1552
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1589
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1632
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1691
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1754
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:1864
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:1886
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:1957
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1996
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:2025
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:2083
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:2135
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:579
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:650
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:697
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:761
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:805
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:849
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:917
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:961
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1073
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1192
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1321
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1343
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1365
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1387
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:1409
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:1441
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1478
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1515
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1552
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1589
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1632
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1691
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1754
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:1864
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:1886
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:1957
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1996
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:2025
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:2083
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:2135
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#: rc.cpp:221 rc.cpp:251 rc.cpp:269 rc.cpp:290 rc.cpp:311 rc.cpp:332
#: rc.cpp:356 rc.cpp:371 rc.cpp:419 rc.cpp:468 rc.cpp:480 rc.cpp:489
#: rc.cpp:498 rc.cpp:507 rc.cpp:516 rc.cpp:531 rc.cpp:549 rc.cpp:567
#: rc.cpp:585 rc.cpp:603 rc.cpp:615 rc.cpp:640 rc.cpp:661 rc.cpp:712
#: rc.cpp:721 rc.cpp:751 rc.cpp:766 rc.cpp:778 rc.cpp:790 rc.cpp:802
#: rc.cpp:1028 rc.cpp:1058 rc.cpp:1076 rc.cpp:1097 rc.cpp:1118 rc.cpp:1139
#: rc.cpp:1163 rc.cpp:1178 rc.cpp:1226 rc.cpp:1275 rc.cpp:1287 rc.cpp:1296
#: rc.cpp:1305 rc.cpp:1314 rc.cpp:1323 rc.cpp:1338 rc.cpp:1356 rc.cpp:1374
#: rc.cpp:1392 rc.cpp:1410 rc.cpp:1422 rc.cpp:1447 rc.cpp:1468 rc.cpp:1519
#: rc.cpp:1528 rc.cpp:1558 rc.cpp:1573 rc.cpp:1585 rc.cpp:1597 rc.cpp:1609
msgid "Force"
msgstr "Форсирај"

#. i18n: file: ruleswidgetbase.ui:584
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:655
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:702
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:766
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:810
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:854
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:922
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1078
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1446
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1483
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1520
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1557
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1594
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1696
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:584
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:655
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:702
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:766
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:810
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:854
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:922
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1078
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1446
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1483
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1520
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1557
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1594
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1696
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#: rc.cpp:224 rc.cpp:254 rc.cpp:272 rc.cpp:293 rc.cpp:314 rc.cpp:335
#: rc.cpp:359 rc.cpp:422 rc.cpp:534 rc.cpp:552 rc.cpp:570 rc.cpp:588
#: rc.cpp:606 rc.cpp:643 rc.cpp:1031 rc.cpp:1061 rc.cpp:1079 rc.cpp:1100
#: rc.cpp:1121 rc.cpp:1142 rc.cpp:1166 rc.cpp:1229 rc.cpp:1341 rc.cpp:1359
#: rc.cpp:1377 rc.cpp:1395 rc.cpp:1413 rc.cpp:1450
msgid "Apply Now"
msgstr "Примени сега"

#. i18n: file: ruleswidgetbase.ui:589
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:660
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:707
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:771
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:815
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:859
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:927
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:966
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1083
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1197
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1326
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1348
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1370
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1392
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:1414
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:1451
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1488
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1525
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1562
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1599
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1637
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1701
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1759
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:1869
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:1891
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:1962
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:2001
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:2030
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:2088
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:2140
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:589
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:660
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:707
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:771
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:815
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:859
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:927
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:966
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1083
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1197
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1326
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1348
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1370
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1392
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:1414
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:1451
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1488
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1525
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1562
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1599
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1637
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1701
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1759
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:1869
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:1891
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:1962
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:2001
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:2030
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:2088
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:2140
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#: rc.cpp:227 rc.cpp:257 rc.cpp:275 rc.cpp:296 rc.cpp:317 rc.cpp:338
#: rc.cpp:362 rc.cpp:374 rc.cpp:425 rc.cpp:471 rc.cpp:483 rc.cpp:492
#: rc.cpp:501 rc.cpp:510 rc.cpp:519 rc.cpp:537 rc.cpp:555 rc.cpp:573
#: rc.cpp:591 rc.cpp:609 rc.cpp:618 rc.cpp:646 rc.cpp:664 rc.cpp:715
#: rc.cpp:724 rc.cpp:754 rc.cpp:769 rc.cpp:781 rc.cpp:793 rc.cpp:805
#: rc.cpp:1034 rc.cpp:1064 rc.cpp:1082 rc.cpp:1103 rc.cpp:1124 rc.cpp:1145
#: rc.cpp:1169 rc.cpp:1181 rc.cpp:1232 rc.cpp:1278 rc.cpp:1290 rc.cpp:1299
#: rc.cpp:1308 rc.cpp:1317 rc.cpp:1326 rc.cpp:1344 rc.cpp:1362 rc.cpp:1380
#: rc.cpp:1398 rc.cpp:1416 rc.cpp:1425 rc.cpp:1453 rc.cpp:1471 rc.cpp:1522
#: rc.cpp:1531 rc.cpp:1561 rc.cpp:1576 rc.cpp:1588 rc.cpp:1600 rc.cpp:1612
msgid "Force Temporarily"
msgstr "Форсирај привремено"

#. i18n: file: ruleswidgetbase.ui:600
#. i18n: ectx: property (validChars), widget (KRestrictedLine, size)
#. i18n: file: ruleswidgetbase.ui:624
#. i18n: ectx: property (validChars), widget (KRestrictedLine, position)
#. i18n: file: ruleswidgetbase.ui:1934
#. i18n: ectx: property (validChars), widget (KRestrictedLine, maxsize)
#. i18n: file: ruleswidgetbase.ui:1980
#. i18n: ectx: property (validChars), widget (KRestrictedLine, minsize)
#. i18n: file: ruleswidgetbase.ui:600
#. i18n: ectx: property (validChars), widget (KRestrictedLine, size)
#. i18n: file: ruleswidgetbase.ui:624
#. i18n: ectx: property (validChars), widget (KRestrictedLine, position)
#. i18n: file: ruleswidgetbase.ui:1934
#. i18n: ectx: property (validChars), widget (KRestrictedLine, maxsize)
#. i18n: file: ruleswidgetbase.ui:1980
#. i18n: ectx: property (validChars), widget (KRestrictedLine, minsize)
#: rc.cpp:230 rc.cpp:239 rc.cpp:742 rc.cpp:760 rc.cpp:1037 rc.cpp:1046
#: rc.cpp:1549 rc.cpp:1567
msgid "0123456789-+,xX:"
msgstr "0123456789-+,xX:"

#. i18n: file: ruleswidgetbase.ui:607
#. i18n: ectx: property (text), widget (QCheckBox, enable_size)
#: rc.cpp:233 rc.cpp:1040
msgid "&Size"
msgstr "&Големина"

#. i18n: file: ruleswidgetbase.ui:614
#. i18n: ectx: property (text), widget (QCheckBox, enable_position)
#: rc.cpp:236 rc.cpp:1043
msgid "&Position"
msgstr "&Позиција"

#. i18n: file: ruleswidgetbase.ui:725
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizehoriz)
#: rc.cpp:278 rc.cpp:1085
msgid "Maximized &horizontally"
msgstr "Раширено &хоризонтално"

#. i18n: file: ruleswidgetbase.ui:779
#. i18n: ectx: property (text), widget (QCheckBox, enable_fullscreen)
#: rc.cpp:299 rc.cpp:1106
msgid "&Fullscreen"
msgstr "&На цел екран"

#. i18n: file: ruleswidgetbase.ui:823
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizevert)
#: rc.cpp:320 rc.cpp:1127
msgid "Maximized &vertically"
msgstr "Раширено &вертикално"

#. i18n: file: ruleswidgetbase.ui:874
#. i18n: ectx: property (text), widget (QCheckBox, enable_desktop)
#: rc.cpp:341 rc.cpp:1148
msgid "&Desktop"
msgstr "&Работна површина"

#. i18n: file: ruleswidgetbase.ui:881
#. i18n: ectx: property (text), widget (QCheckBox, enable_shade)
#: rc.cpp:344 rc.cpp:1151
msgid "Sh&aded"
msgstr "З&асенчено"

#. i18n: file: ruleswidgetbase.ui:945
#. i18n: ectx: property (text), widget (QCheckBox, enable_minimize)
#: rc.cpp:365 rc.cpp:1172
msgid "M&inimized"
msgstr "Сп&уштено"

#. i18n: file: ruleswidgetbase.ui:978
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:377 rc.cpp:1184
msgid "Default"
msgstr "Стандардно"

#. i18n: file: ruleswidgetbase.ui:983
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:380 rc.cpp:1187
msgid "No Placement"
msgstr "Нема поставување"

#. i18n: file: ruleswidgetbase.ui:988
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:383 rc.cpp:1190
msgid "Smart"
msgstr "Паметно"

#. i18n: file: ruleswidgetbase.ui:993
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:386 rc.cpp:1193
msgid "Maximizing"
msgstr "Раширувачко"

#. i18n: file: ruleswidgetbase.ui:998
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:389 rc.cpp:1196
msgid "Cascade"
msgstr "Каскадно"

#. i18n: file: ruleswidgetbase.ui:1003
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:392 rc.cpp:1199
msgid "Centered"
msgstr "Во средина"

#. i18n: file: ruleswidgetbase.ui:1008
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:395 rc.cpp:1202
msgid "Random"
msgstr "Случајно"

#. i18n: file: ruleswidgetbase.ui:1013
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:398 rc.cpp:1205
msgid "Top-Left Corner"
msgstr "Горен лев агол"

#. i18n: file: ruleswidgetbase.ui:1018
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:401 rc.cpp:1208
msgid "Under Mouse"
msgstr "Под глушецот"

#. i18n: file: ruleswidgetbase.ui:1023
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:404 rc.cpp:1211
msgid "On Main Window"
msgstr "На главниот прозорец"

#. i18n: file: ruleswidgetbase.ui:1031
#. i18n: ectx: property (text), widget (QCheckBox, enable_placement)
#: rc.cpp:407 rc.cpp:1214
msgid "P&lacement"
msgstr "П&оставување"

#. i18n: file: ruleswidgetbase.ui:1100
#. i18n: ectx: attribute (title), widget (QWidget, TabPage4)
#: rc.cpp:428 rc.cpp:1235
msgid "&Preferences"
msgstr "&Параметри"

#. i18n: file: ruleswidgetbase.ui:1106
#. i18n: ectx: property (text), widget (QCheckBox, enable_above)
#: rc.cpp:431 rc.cpp:1238
msgid "Keep &above"
msgstr "Задржи н&ад"

#. i18n: file: ruleswidgetbase.ui:1113
#. i18n: ectx: property (text), widget (QCheckBox, enable_below)
#: rc.cpp:434 rc.cpp:1241
msgid "Keep &below"
msgstr "Задржи &под"

#. i18n: file: ruleswidgetbase.ui:1120
#. i18n: ectx: property (text), widget (QCheckBox, enable_skippager)
#: rc.cpp:437 rc.cpp:1244
msgid "Skip pa&ger"
msgstr "Прескокни пејџ&ер"

#. i18n: file: ruleswidgetbase.ui:1127
#. i18n: ectx: property (text), widget (QCheckBox, enable_skiptaskbar)
#: rc.cpp:440 rc.cpp:1247
msgid "Skip &taskbar"
msgstr "Прескокни &лента со програми"

#. i18n: file: ruleswidgetbase.ui:1134
#. i18n: ectx: property (text), widget (QCheckBox, enable_noborder)
#: rc.cpp:443 rc.cpp:1250
msgid "&No border"
msgstr "&Без раб"

#. i18n: file: ruleswidgetbase.ui:1141
#. i18n: ectx: property (text), widget (QCheckBox, enable_acceptfocus)
#: rc.cpp:446 rc.cpp:1253
msgid "Accept &focus"
msgstr "Прифати &фокус"

#. i18n: file: ruleswidgetbase.ui:1148
#. i18n: ectx: property (text), widget (QCheckBox, enable_closeable)
#: rc.cpp:449 rc.cpp:1256
msgid "&Closeable"
msgstr "&Затворливо"

#. i18n: file: ruleswidgetbase.ui:1155
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroup)
#: rc.cpp:452 rc.cpp:1259
msgid "Autogroup with &identical"
msgstr "Автом. групирај со &идентичните"

#. i18n: file: ruleswidgetbase.ui:1162
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupfg)
#: rc.cpp:455 rc.cpp:1262
msgid "Autog&roup in foreground"
msgstr "Автом. &групирај во преден план"

#. i18n: file: ruleswidgetbase.ui:1169
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupid)
#: rc.cpp:458 rc.cpp:1265
msgid "Autogroup by I&D"
msgstr "Автом. групирај според &ид."

#. i18n: file: ruleswidgetbase.ui:1176
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityactive)
#: rc.cpp:462 rc.cpp:1269
#, no-c-format
msgid "A&ctive opacity in %"
msgstr "Непровидност на а&ктивен во %"

#. i18n: file: ruleswidgetbase.ui:1208
#. i18n: ectx: property (validChars), widget (KRestrictedLine, opacityactive)
#. i18n: file: ruleswidgetbase.ui:1648
#. i18n: ectx: property (validChars), widget (KRestrictedLine, opacityinactive)
#. i18n: file: ruleswidgetbase.ui:1208
#. i18n: ectx: property (validChars), widget (KRestrictedLine, opacityactive)
#. i18n: file: ruleswidgetbase.ui:1648
#. i18n: ectx: property (validChars), widget (KRestrictedLine, opacityinactive)
#: rc.cpp:474 rc.cpp:621 rc.cpp:1281 rc.cpp:1428
msgid "0123456789"
msgstr "0123456789"

#. i18n: file: ruleswidgetbase.ui:1655
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityinactive)
#: rc.cpp:625 rc.cpp:1432
#, no-c-format
msgid "I&nactive opacity in %"
msgstr "Непровидност на &неактивен во %"

#. i18n: file: ruleswidgetbase.ui:1662
#. i18n: ectx: property (text), widget (QCheckBox, enable_shortcut)
#: rc.cpp:628 rc.cpp:1435
msgid "Shortcut"
msgstr "Кратенка"

#. i18n: file: ruleswidgetbase.ui:1709
#. i18n: ectx: property (text), widget (QPushButton, shortcut_edit)
#: rc.cpp:649 rc.cpp:1456
msgid "Edit..."
msgstr "Уреди..."

#. i18n: file: ruleswidgetbase.ui:1732
#. i18n: ectx: attribute (title), widget (QWidget, TabPage5)
#: rc.cpp:652 rc.cpp:1459
msgid "W&orkarounds"
msgstr "За&обиколни"

#. i18n: file: ruleswidgetbase.ui:1738
#. i18n: ectx: property (text), widget (QCheckBox, enable_fsplevel)
#: rc.cpp:655 rc.cpp:1462
msgid "&Focus stealing prevention"
msgstr "Заштита од одземање на &фокус"

#. i18n: file: ruleswidgetbase.ui:1828
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:697 rc.cpp:1504
msgid "Opaque"
msgstr "Непроѕирно"

#. i18n: file: ruleswidgetbase.ui:1833
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:700 rc.cpp:1507
msgid "Transparent"
msgstr "Проѕирно"

#. i18n: file: ruleswidgetbase.ui:1841
#. i18n: ectx: property (text), widget (QCheckBox, enable_type)
#: rc.cpp:703 rc.cpp:1510
msgid "Window &type"
msgstr "&Тип на прозорец"

#. i18n: file: ruleswidgetbase.ui:1848
#. i18n: ectx: property (text), widget (QCheckBox, enable_moveresizemode)
#: rc.cpp:706 rc.cpp:1513
msgid "&Moving/resizing"
msgstr "Пре&местување/менување големина"

#. i18n: file: ruleswidgetbase.ui:1903
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:727 rc.cpp:1534
msgctxt "no focus stealing prevention"
msgid "None"
msgstr "Нема"

#. i18n: file: ruleswidgetbase.ui:1908
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:730 rc.cpp:1537
msgid "Low"
msgstr "Ниско"

#. i18n: file: ruleswidgetbase.ui:1913
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:733 rc.cpp:1540
msgid "Normal"
msgstr "Нормално"

#. i18n: file: ruleswidgetbase.ui:1918
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:736 rc.cpp:1543
msgid "High"
msgstr "Високо"

#. i18n: file: ruleswidgetbase.ui:1923
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:739 rc.cpp:1546
msgid "Extreme"
msgstr "Екстремно"

#. i18n: file: ruleswidgetbase.ui:1941
#. i18n: ectx: property (text), widget (QCheckBox, enable_minsize)
#: rc.cpp:745 rc.cpp:1552
msgid "M&inimum size"
msgstr "М&инимална големина"

#. i18n: file: ruleswidgetbase.ui:1970
#. i18n: ectx: property (text), widget (QCheckBox, enable_maxsize)
#: rc.cpp:757 rc.cpp:1564
msgid "M&aximum size"
msgstr "М&аксимална големина"

#. i18n: file: ruleswidgetbase.ui:2009
#. i18n: ectx: property (text), widget (QCheckBox, enable_ignoreposition)
#: rc.cpp:772 rc.cpp:1579
msgid "Ignore requested &geometry"
msgstr "Игнорирај ја бараната &геометрија"

#. i18n: file: ruleswidgetbase.ui:2064
#. i18n: ectx: property (text), widget (QCheckBox, enable_strictgeometry)
#: rc.cpp:784 rc.cpp:1591
msgid "Strictly obey geometry"
msgstr "Придржувај се строго на геометријата"

#. i18n: file: ruleswidgetbase.ui:2116
#. i18n: ectx: property (text), widget (QCheckBox, enable_disableglobalshortcuts)
#: rc.cpp:796 rc.cpp:1603
msgid "Block global shortcuts"
msgstr "Блокирај глобални кратенки"

#: rc.cpp:806
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Божидар Проевски"

#: rc.cpp:807
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "bobibobi@freemail.com.mk"

#: ruleswidget.cpp:57
msgid ""
"Enable this checkbox to alter this window property for the specified window"
"(s)."
msgstr ""
"Обележете го ова поле за да го измените ова својство на прозорец, за "
"наведениот прозорец (прозорци)."

#: ruleswidget.cpp:59
msgid ""
"Specify how the window property should be affected:<ul><li><em>Do Not Affect:"
"</em> The window property will not be affected and therefore the default "
"handling for it will be used. Specifying this will block more generic window "
"settings from taking effect.</li><li><em>Apply Initially:</em> The window "
"property will be only set to the given value after the window is created. No "
"further changes will be affected.</li><li><em>Remember:</em> The value of "
"the window property will be remembered and every time time the window is "
"created, the last remembered value will be applied.</li><li><em>Force:</em> "
"The window property will be always forced to the given value.</"
"li><li><em>Apply Now:</em> The window property will be set to the given "
"value immediately and will not be affected later (this action will be "
"deleted afterwards).</li><li><em>Force temporarily:</em> The window property "
"will be forced to the given value until it is hidden (this action will be "
"deleted after the window is hidden).</li></ul>"
msgstr ""
"Одредете како ќе биде влијаено на параметарот на прозорецот:<ul><li><em>Не "
"влијај:</em> На параметарот на прозорецот нема да се влијае и поради тоа ќе "
"се користи стандардното ракување за него. Одредувањето на ова ќе ги блокира "
"поопштите поставувања на прозорци.</li><li><em>Примени иницијално:</em> "
"Параметарот на прозорецот ќе биде поставен на дадената вредност откако ќе се "
"создаде прозорецот. На понатамошните промени нема да се влијае.</"
"li><li><em>Запомни:</em> Вредноста на параметарот на прозорецот ќе биде "
"запомнета и секој пат кога ќе се креира прозорецот ќе биде применета "
"последната запомнета вредност.</li><li><em>Форсирај:</em> Параметарот на "
"прозорецот секогаш ќе биде форсиран на дадената вредност.</"
"li><li><em>Примени сега:</em> Параметарот на прозорецот ќе биде поставен на "
"дадената вредност веднаш и на него нема да се влијае понатаму (ова дејство "
"ќе биде избришано по поставувањето).</li><li><em>Форсирај привремено:</em> "
"Параметарот на прозорецот ќе биде форсиран на дадената вредност сѐ додека не "
"се сокрие (ова дејство ќе биде избришано откако прозорецот ќе се скрие).</"
"li></ul>"

#: ruleswidget.cpp:74
msgid ""
"Specify how the window property should be affected:<ul><li><em>Do Not Affect:"
"</em> The window property will not be affected and therefore the default "
"handling for it will be used. Specifying this will block more generic window "
"settings from taking effect.</li><li><em>Force:</em> The window property "
"will be always forced to the given value.</li><li><em>Force temporarily:</"
"em> The window property will be forced to the given value until it is hidden "
"(this action will be deleted after the window is hidden).</li></ul>"
msgstr ""
"Одредете како ќе биде влијаено на параметарот на прозорецот:<ul><li><em>Не "
"влијај:</em> На параметарот на прозорецот нема да се влијае и поради тоа ќе "
"се користи стандардното ракување за него. Одредувањето на ова ќе ги блокира "
"поопштите поставувања на прозорци.</li><li><em>Форсирај:</em> Параметарот на "
"прозорецот секогаш ќе биде форсиран на дадената вредност.</"
"li><li><em>Форсирај привремено:</em> Параметарот на прозорецот ќе биде "
"форсиран на дадената вредност сѐ додека не се сокрие (ова дејство ќе биде "
"избришано откако прозорецот ќе се скрие).</li></ul>"

#: ruleswidget.cpp:121
msgid "All Desktops"
msgstr "Сите површини"

#: ruleswidget.cpp:668
#, kde-format
msgid "Settings for %1"
msgstr "Поставувања за %1"

#: ruleswidget.cpp:670
msgid "Unnamed entry"
msgstr "Неименувана ставка"

#: ruleswidget.cpp:681
msgid ""
"You have specified the window class as unimportant.\n"
"This means the settings will possibly apply to windows from all "
"applications. If you really want to create a generic setting, it is "
"recommended you at least limit the window types to avoid special window "
"types."
msgstr ""
"Ја зададовте класата на прозорецот како неважна.\n"
"Ова значи дека е можно поставувањата да важат за прозорците на сите "
"апликации. Ако навистина сакате да создадете општо поставување, препорачливо "
"е барем да ги ограничите типовите на прозорци за да ги одбегнете "
"специјалните типови на прозорци."

#: ruleswidget.cpp:711
msgid "Edit Window-Specific Settings"
msgstr "Уреди поставувања специфични за прозорец"

#: ruleswidget.cpp:736
msgid ""
"This configuration dialog allows altering settings only for the selected "
"window or application. Find the setting you want to affect, enable the "
"setting using the checkbox, select in what way the setting should be "
"affected and to which value."
msgstr ""
"Овој дијалог за конфигурација овозможува измена на поставувања само за "
"избраниот прозорец или апликација. Пронајдете го поставувањето што сакате да "
"го измените, вклучете го со полињата за избор и изберете на каков начин "
"поставувањето ќе влијае и со колкави вредности."

#: ruleswidget.cpp:740
msgid "Consult the documentation for more details."
msgstr "Разгледајте ја документацијата за повеќе детали."

#: ruleswidget.cpp:778
msgid "Edit Shortcut"
msgstr "Уреди кратенка"