~ubuntu-branches/ubuntu/oneiric/kde-l10n-bg/oneiric-proposed

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
# translation of kcmkwinrules.po to Bulgarian
# Bulgarian translation of KDE.
# This file is licensed under the GPL.
#
# $Id: kcmkwinrules.po 1231092 2011-05-10 08:15:13Z scripty $
#
# Zlatko Popov <zlatkopopov@fsa-bg.org>, 2006, 2007, 2008.
msgid ""
msgstr ""
"Project-Id-Version: kcmkwinrules\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-05-10 04:09+0200\n"
"PO-Revision-Date: 2008-06-28 14:08+0000\n"
"Last-Translator: Zlatko Popov <zlatkopopov@fsa-bg.org>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\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: nplurals=2; plural=n != 1;\n"

#. i18n: file: ruleswidgetbase.ui:484
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2234
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:96 rc.cpp:190 rc.cpp:826
msgid "Normal Window"
msgstr "Обикновен прозорец"

#. i18n: file: ruleswidgetbase.ui:519
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2269
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:97 rc.cpp:211 rc.cpp:847
msgid "Desktop"
msgstr "Работен плот"

#. i18n: file: ruleswidgetbase.ui:499
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2249
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:98 rc.cpp:199 rc.cpp:835
msgid "Dock (panel)"
msgstr "Системен панел"

#. i18n: file: ruleswidgetbase.ui:504
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2254
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:99 rc.cpp:202 rc.cpp:838
msgid "Toolbar"
msgstr "Лента с инструменти"

#. i18n: file: ruleswidgetbase.ui:509
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2259
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:100 rc.cpp:205 rc.cpp:841
msgid "Torn-Off Menu"
msgstr "Откачено меню"

#. i18n: file: ruleswidgetbase.ui:489
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2239
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:101 rc.cpp:193 rc.cpp:829
msgid "Dialog Window"
msgstr "Диалогов прозорец"

#: detectwidget.cpp:102
msgid "Override Type"
msgstr "Препокриващ тип"

#. i18n: file: ruleswidgetbase.ui:529
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2274
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:103 rc.cpp:217 rc.cpp:850
msgid "Standalone Menubar"
msgstr "Независимо меню"

#. i18n: file: ruleswidgetbase.ui:494
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2244
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:104 rc.cpp:196 rc.cpp:832
msgid "Utility Window"
msgstr "Прозорец с инструменти"

#. i18n: file: ruleswidgetbase.ui:514
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2264
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:105 rc.cpp:208 rc.cpp:844
msgid "Splash Screen"
msgstr "Начален екран"

#: detectwidget.cpp:115
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 and KControl Authors"

#: 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>"

#: 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:141
#, kde-format
msgid "Application settings for %1"
msgstr "Настройки за %1"

#: main.cpp:162
#, kde-format
msgid "Window settings for %1"
msgstr "Настройки за %1"

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

#: main.cpp:244
msgid "KWin helper utility"
msgstr "Помощно средство за KWin"

#: main.cpp:247
msgid "WId of the window for special window settings."
msgstr "WId на прозореца за специалните настройки."

#: main.cpp:248
msgid "Whether the settings should affect all windows of the application."
msgstr "Дали настройките да важат за всички прозорци на приложението."

#: main.cpp:257
msgid "This helper utility is not supposed to be called directly."
msgstr "This helper utility is not supposed to be called directly."

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Радостин Раднев"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "radnev@yahoo.com"

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

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

#. i18n: file: detectwidget.ui:60
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:11
msgid "Role:"
msgstr "Роля:"

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

#. i18n: file: detectwidget.ui:106
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: rc.cpp:17
msgid "Title:"
msgstr "Заглавие:"

#. i18n: file: detectwidget.ui:129
#. i18n: ectx: property (text), widget (QLabel, textLabel11)
#. i18n: file: ruleswidgetbase.ui:231
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#: rc.cpp:20 rc.cpp:148
msgid "Extra role:"
msgstr "Допълнителна роля:"

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

#. i18n: file: detectwidget.ui:175
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:26
msgid "Match Strategy"
msgstr ""

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

#. i18n: file: detectwidget.ui:187
#. i18n: ectx: property (text), widget (QRadioButton, use_class)
#: rc.cpp:32
msgid "Use window &class (whole application)"
msgstr "Използване на кла&с прозорец (за цялата програма)"

#. i18n: file: detectwidget.ui:197
#. i18n: ectx: property (whatsThis), widget (QRadioButton, use_role)
#: rc.cpp:35
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:200
#. i18n: ectx: property (text), widget (QRadioButton, use_role)
#: rc.cpp:38
msgid "Use window class and window &role (specific window)"
msgstr "Използване на клас и &роля на прозорец (за специфичен прозорец)"

#. i18n: file: detectwidget.ui:207
#. i18n: ectx: property (whatsThis), widget (QRadioButton, use_whole_class)
#: rc.cpp:41
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:210
#. i18n: ectx: property (text), widget (QRadioButton, use_whole_class)
#: rc.cpp:44
msgid "Use &whole window class (specific window)"
msgstr "Използване на &цял клас прозорец (за специфичен прозорец)"

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

#. i18n: file: editshortcut.ui:18
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:50
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>Може да добавите лесно единичен бърз клавиш, като използвате два бутона. "
"Могат да бъдат използвани само бързи клавиши с модификатори.</p> <p>Може да "
"имате няколко бързи клавиша зададени. В този случай ще се използва първия "
"наличен бърз клавиш. За да зададете няколко бързи клавиша, използвайте като "
"разделител интервал.</p><p>Отделно бързите клавиши могат да имат по няколко "
"подклавиша вътре в себе си. Пример: \"<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>"
"\". В този случай първо ще се пробва \"Shift+Alt+1\", а последен ще бъде "
"\"Shift+Ctrl+C\".</p>"

#. i18n: file: editshortcut.ui:62
#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#: rc.cpp:55
msgid "&Single Shortcut"
msgstr "&Единичен бърз клавиш"

#. i18n: file: editshortcut.ui:85
#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#: rc.cpp:58
msgid "C&lear"
msgstr "Из&чистване"

#. i18n: file: ruleslist.ui:23
#. i18n: ectx: property (text), widget (KPushButton, new_button)
#: rc.cpp:61
msgid "&New..."
msgstr "До&бавяне..."

#. i18n: file: ruleslist.ui:30
#. i18n: ectx: property (text), widget (KPushButton, modify_button)
#: rc.cpp:64
msgid "&Modify..."
msgstr "&Редактиране..."

#. i18n: file: ruleslist.ui:37
#. i18n: ectx: property (text), widget (KPushButton, delete_button)
#: rc.cpp:67
msgid "Delete"
msgstr "Изтриване"

#. i18n: file: ruleslist.ui:47
#. i18n: ectx: property (text), widget (KPushButton, moveup_button)
#: rc.cpp:70
msgid "Move &Up"
msgstr "На&горе"

#. i18n: file: ruleslist.ui:54
#. i18n: ectx: property (text), widget (KPushButton, movedown_button)
#: rc.cpp:73
msgid "Move &Down"
msgstr "На&долу"

#. i18n: file: ruleslist.ui:91
#. i18n: ectx: property (text), widget (QPushButton, import_button)
#: rc.cpp:76
msgid "&Import"
msgstr ""

#. i18n: file: ruleslist.ui:98
#. i18n: ectx: property (text), widget (QPushButton, export_button)
#: rc.cpp:79
msgid "&Export"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:21
#. i18n: ectx: attribute (title), widget (QWidget, TabPage1)
#: rc.cpp:82
#, fuzzy
#| msgid "&Window"
msgid "&Window matching"
msgstr "Прозоре&ц"

#. i18n: file: ruleswidgetbase.ui:27
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:85
msgid "De&scription:"
msgstr "Оп&исание:"

#. i18n: file: ruleswidgetbase.ui:46
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:88
#, fuzzy
#| msgid "Window &class (application type):"
msgid "Window &class (application):"
msgstr "Кл&ас прозорец (тип програма):"

#. i18n: file: ruleswidgetbase.ui:63
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:126
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:195
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:248
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:301
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:91 rc.cpp:112 rc.cpp:133 rc.cpp:151 rc.cpp:169
msgid "Unimportant"
msgstr "Маловажно"

#. i18n: file: ruleswidgetbase.ui:68
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:131
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:200
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:253
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:306
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:94 rc.cpp:115 rc.cpp:136 rc.cpp:154 rc.cpp:172
msgid "Exact Match"
msgstr "Пълно съвпадение"

#. i18n: file: ruleswidgetbase.ui:73
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:136
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:205
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:258
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:311
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:97 rc.cpp:118 rc.cpp:139 rc.cpp:157 rc.cpp:175
msgid "Substring Match"
msgstr "Частично съвпадение"

#. i18n: file: ruleswidgetbase.ui:78
#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: file: ruleswidgetbase.ui:141
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: file: ruleswidgetbase.ui:210
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: file: ruleswidgetbase.ui:263
#. i18n: ectx: property (text), item, widget (KComboBox, extra_match)
#. i18n: file: ruleswidgetbase.ui:316
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: rc.cpp:100 rc.cpp:121 rc.cpp:142 rc.cpp:160 rc.cpp:178
msgid "Regular Expression"
msgstr "Регулярен израз"

#. i18n: file: ruleswidgetbase.ui:92
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_wmclass)
#. i18n: file: ruleswidgetbase.ui:155
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_role)
#. i18n: file: ruleswidgetbase.ui:221
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_title)
#. i18n: file: ruleswidgetbase.ui:274
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_extra)
#. i18n: file: ruleswidgetbase.ui:327
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_machine)
#: rc.cpp:103 rc.cpp:124 rc.cpp:145 rc.cpp:163 rc.cpp:181
msgid "Edit"
msgstr "Редактиране"

#. i18n: file: ruleswidgetbase.ui:102
#. i18n: ectx: property (text), widget (QCheckBox, whole_wmclass)
#: rc.cpp:106
msgid "Match w&hole window class"
msgstr "П&ълно съвпадение на класа на прозореца"

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

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

#. i18n: file: ruleswidgetbase.ui:178
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:130
msgid "Window t&itle:"
msgstr "&Заглавие:"

#. i18n: file: ruleswidgetbase.ui:284
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:166
msgid "&Machine (hostname):"
msgstr "&Машина (хост):"

#. i18n: file: ruleswidgetbase.ui:374
#. i18n: ectx: property (text), widget (KPushButton, detect)
#: rc.cpp:184
msgid "&Detect Window Properties"
msgstr "&Информация за прозореца"

#. i18n: file: ruleswidgetbase.ui:381
#. i18n: ectx: property (suffix), widget (QSpinBox, detection_delay)
#: rc.cpp:187
msgid "s delay"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:524
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#: rc.cpp:214
#, fuzzy
#| msgid "On Main Window"
msgid "Unmanaged Window"
msgstr "В главния прозорец"

#. i18n: file: ruleswidgetbase.ui:545
#. i18n: ectx: attribute (title), widget (QWidget, TabPage3)
#: rc.cpp:220
#, fuzzy
#| msgid "&Position"
msgid "&Size && Position"
msgstr "Позици&я"

#. i18n: file: ruleswidgetbase.ui:551
#. i18n: ectx: property (text), widget (QCheckBox, enable_position)
#: rc.cpp:223
msgid "&Position"
msgstr "Позици&я"

#. i18n: file: ruleswidgetbase.ui:562
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:619
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:697
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:769
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:841
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:902
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:994
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:1037
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:1095
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1132
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1169
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1219
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1294
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:1330
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1381
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1446
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1482
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1551
#. i18n: ectx: property (text), item, widget (KComboBox, rule_tilingoption)
#. i18n: file: ruleswidgetbase.ui:1620
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1667
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1721
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1782
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1888
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1924
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1975
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:2020
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:2113
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:2162
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:2212
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:2380
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:2409
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:2431
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: file: ruleswidgetbase.ui:2453
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#: rc.cpp:226 rc.cpp:253 rc.cpp:283 rc.cpp:307 rc.cpp:331 rc.cpp:352
#: rc.cpp:400 rc.cpp:412 rc.cpp:427 rc.cpp:445 rc.cpp:463 rc.cpp:487
#: rc.cpp:509 rc.cpp:524 rc.cpp:545 rc.cpp:569 rc.cpp:581 rc.cpp:593
#: rc.cpp:614 rc.cpp:638 rc.cpp:662 rc.cpp:683 rc.cpp:704 rc.cpp:719
#: rc.cpp:740 rc.cpp:756 rc.cpp:780 rc.cpp:802 rc.cpp:817 rc.cpp:862
#: rc.cpp:871 rc.cpp:880 rc.cpp:889
msgid "Do Not Affect"
msgstr "Без прилагане"

#. i18n: file: ruleswidgetbase.ui:567
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:624
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:702
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:774
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:846
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1100
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1137
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1174
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1335
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1386
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1625
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1672
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1726
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1787
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1929
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: rc.cpp:229 rc.cpp:256 rc.cpp:286 rc.cpp:310 rc.cpp:334 rc.cpp:430
#: rc.cpp:448 rc.cpp:466 rc.cpp:527 rc.cpp:548 rc.cpp:617 rc.cpp:641
#: rc.cpp:665 rc.cpp:686 rc.cpp:722
msgid "Apply Initially"
msgstr "Първоначално прилагане"

#. i18n: file: ruleswidgetbase.ui:572
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:629
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:707
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:779
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:851
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1105
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1142
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1179
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1340
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1391
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1630
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1677
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1731
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1792
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1934
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: rc.cpp:232 rc.cpp:259 rc.cpp:289 rc.cpp:313 rc.cpp:337 rc.cpp:433
#: rc.cpp:451 rc.cpp:469 rc.cpp:530 rc.cpp:551 rc.cpp:620 rc.cpp:644
#: rc.cpp:668 rc.cpp:689 rc.cpp:725
msgid "Remember"
msgstr "Запомняне"

#. i18n: file: ruleswidgetbase.ui:577
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:634
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:712
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:784
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:856
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:907
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:999
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:1042
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:1110
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1147
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1184
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1224
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1299
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:1345
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1396
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1451
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1487
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1556
#. i18n: ectx: property (text), item, widget (KComboBox, rule_tilingoption)
#. i18n: file: ruleswidgetbase.ui:1635
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1682
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1736
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1797
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1893
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1939
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1980
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:2025
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:2118
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:2167
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:2217
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:2385
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:2414
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:2436
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: file: ruleswidgetbase.ui:2458
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#: rc.cpp:235 rc.cpp:262 rc.cpp:292 rc.cpp:316 rc.cpp:340 rc.cpp:355
#: rc.cpp:403 rc.cpp:415 rc.cpp:436 rc.cpp:454 rc.cpp:472 rc.cpp:490
#: rc.cpp:512 rc.cpp:533 rc.cpp:554 rc.cpp:572 rc.cpp:584 rc.cpp:596
#: rc.cpp:623 rc.cpp:647 rc.cpp:671 rc.cpp:692 rc.cpp:707 rc.cpp:728
#: rc.cpp:743 rc.cpp:759 rc.cpp:783 rc.cpp:805 rc.cpp:820 rc.cpp:865
#: rc.cpp:874 rc.cpp:883 rc.cpp:892
msgid "Force"
msgstr "Прилагане"

#. i18n: file: ruleswidgetbase.ui:582
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:639
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:717
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:789
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:861
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1115
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1152
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1189
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1350
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1401
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1640
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1687
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1741
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1802
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1944
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: rc.cpp:238 rc.cpp:265 rc.cpp:295 rc.cpp:319 rc.cpp:343 rc.cpp:439
#: rc.cpp:457 rc.cpp:475 rc.cpp:536 rc.cpp:557 rc.cpp:626 rc.cpp:650
#: rc.cpp:674 rc.cpp:695 rc.cpp:731
msgid "Apply Now"
msgstr "Прилагане сега"

#. i18n: file: ruleswidgetbase.ui:587
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:644
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:722
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:794
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:866
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:912
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:1004
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:1047
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:1120
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1157
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1194
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1229
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1304
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:1355
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1406
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1456
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1492
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1561
#. i18n: ectx: property (text), item, widget (KComboBox, rule_tilingoption)
#. i18n: file: ruleswidgetbase.ui:1645
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1692
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1746
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1807
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1898
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1949
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1985
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:2030
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:2123
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:2172
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:2222
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:2390
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#. i18n: file: ruleswidgetbase.ui:2419
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:2441
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: file: ruleswidgetbase.ui:2463
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#: rc.cpp:241 rc.cpp:268 rc.cpp:298 rc.cpp:322 rc.cpp:346 rc.cpp:358
#: rc.cpp:406 rc.cpp:418 rc.cpp:442 rc.cpp:460 rc.cpp:478 rc.cpp:493
#: rc.cpp:515 rc.cpp:539 rc.cpp:560 rc.cpp:575 rc.cpp:587 rc.cpp:599
#: rc.cpp:629 rc.cpp:653 rc.cpp:677 rc.cpp:698 rc.cpp:710 rc.cpp:734
#: rc.cpp:746 rc.cpp:762 rc.cpp:786 rc.cpp:808 rc.cpp:823 rc.cpp:868
#: rc.cpp:877 rc.cpp:886 rc.cpp:895
msgid "Force Temporarily"
msgstr "Временно прилагане"

#. i18n: file: ruleswidgetbase.ui:598
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, position)
#: rc.cpp:244
msgid "x,y"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:601
#. i18n: ectx: property (validChars), widget (KRestrictedLine, position)
#. i18n: file: ruleswidgetbase.ui:658
#. i18n: ectx: property (validChars), widget (KRestrictedLine, size)
#. i18n: file: ruleswidgetbase.ui:1061
#. i18n: ectx: property (validChars), widget (KRestrictedLine, maxsize)
#. i18n: file: ruleswidgetbase.ui:1208
#. i18n: ectx: property (validChars), widget (KRestrictedLine, minsize)
#: rc.cpp:247 rc.cpp:274 rc.cpp:424 rc.cpp:484
msgid "0123456789-+,xX:"
msgstr "0123456789-+,xX:"

#. i18n: file: ruleswidgetbase.ui:608
#. i18n: ectx: property (text), widget (QCheckBox, enable_size)
#: rc.cpp:250
msgid "&Size"
msgstr "Ра&змер"

#. i18n: file: ruleswidgetbase.ui:655
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, size)
#. i18n: file: ruleswidgetbase.ui:1058
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, maxsize)
#. i18n: file: ruleswidgetbase.ui:1205
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, minsize)
#: rc.cpp:271 rc.cpp:421 rc.cpp:481
msgid "width,height"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:672
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizehoriz)
#: rc.cpp:277
msgid "Maximized &horizontally"
msgstr "&Хоризонтално максимизиран"

#. i18n: file: ruleswidgetbase.ui:686
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizevert)
#: rc.cpp:280
msgid "Maximized &vertically"
msgstr "&Вертикално максимизиран"

#. i18n: file: ruleswidgetbase.ui:744
#. i18n: ectx: property (text), widget (QCheckBox, enable_fullscreen)
#: rc.cpp:301
msgid "&Fullscreen"
msgstr "Пълен &екран"

#. i18n: file: ruleswidgetbase.ui:758
#. i18n: ectx: property (text), widget (QCheckBox, enable_desktop)
#: rc.cpp:304
msgid "&Desktop"
msgstr "Р&аботен плот"

#. i18n: file: ruleswidgetbase.ui:816
#. i18n: ectx: property (text), widget (QCheckBox, enable_minimize)
#: rc.cpp:325
msgid "M&inimized"
msgstr "&Минимизиран"

#. i18n: file: ruleswidgetbase.ui:830
#. i18n: ectx: property (text), widget (QCheckBox, enable_shade)
#: rc.cpp:328
msgid "Sh&aded"
msgstr "&Сгънат"

#. i18n: file: ruleswidgetbase.ui:891
#. i18n: ectx: property (text), widget (QCheckBox, enable_placement)
#: rc.cpp:349
#, fuzzy
#| msgid "P&lacement"
msgid "Initial p&lacement"
msgstr "Разполо&жение"

#. i18n: file: ruleswidgetbase.ui:924
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:361
msgid "Default"
msgstr "По подразбиране"

#. i18n: file: ruleswidgetbase.ui:929
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:364
msgid "No Placement"
msgstr "Без разположение"

#. i18n: file: ruleswidgetbase.ui:934
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:367
msgid "Smart"
msgstr "Интелигентно"

#. i18n: file: ruleswidgetbase.ui:939
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:370
msgid "Maximizing"
msgstr "Максимизирано"

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

#. i18n: file: ruleswidgetbase.ui:949
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:376
msgid "Centered"
msgstr "Центрирано"

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

#. i18n: file: ruleswidgetbase.ui:959
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:382
msgid "Top-Left Corner"
msgstr "В горния десен ъгъл"

#. i18n: file: ruleswidgetbase.ui:964
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:385
msgid "Under Mouse"
msgstr "Под мишката"

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

#. i18n: file: ruleswidgetbase.ui:980
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_ignoreposition)
#: rc.cpp:391
msgid ""
"Windows can ask to appear in a certain position.\n"
"By default this overrides the placement strategy\n"
"what might be nasty if the client abuses the feature\n"
"to unconditionally popup in the middle of your screen."
msgstr ""

#. i18n: file: ruleswidgetbase.ui:983
#. i18n: ectx: property (text), widget (QCheckBox, enable_ignoreposition)
#: rc.cpp:397
msgid "Ignore requested &geometry"
msgstr "&Игнориране на заявената позиция и размер"

#. i18n: file: ruleswidgetbase.ui:1026
#. i18n: ectx: property (text), widget (QCheckBox, enable_maxsize)
#: rc.cpp:409
msgid "M&aximum size"
msgstr "Мак&симален размер"

#. i18n: file: ruleswidgetbase.ui:1237
#. i18n: ectx: property (text), widget (QCheckBox, enable_minsize)
#: rc.cpp:496
msgid "M&inimum size"
msgstr "&Минимален размер"

#. i18n: file: ruleswidgetbase.ui:1274
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_strictgeometry)
#: rc.cpp:499
msgid ""
"Eg. terminals or video players can ask to keep a certain aspect ratio\n"
"or only grow by values larger than one\n"
"(eg. by the dimensions of one character).\n"
"This may be pointless and the restriction prevents arbitrary dimensions\n"
"like your complete screen area."
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1280
#. i18n: ectx: property (text), widget (QCheckBox, enable_strictgeometry)
#: rc.cpp:506
msgid "Obey geometry restrictions"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1313
#. i18n: ectx: attribute (title), widget (QWidget, TabPage4)
#: rc.cpp:518
msgid "&Arrangement && Access"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1319
#. i18n: ectx: property (text), widget (QCheckBox, enable_above)
#: rc.cpp:521
msgid "Keep &above"
msgstr "На пр&еден план"

#. i18n: file: ruleswidgetbase.ui:1370
#. i18n: ectx: property (text), widget (QCheckBox, enable_below)
#: rc.cpp:542
msgid "Keep &below"
msgstr "На &заден план"

#. i18n: file: ruleswidgetbase.ui:1428
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroup)
#: rc.cpp:563
msgid "Autogroup with &identical"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1435
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupfg)
#: rc.cpp:566
msgid "Autog&roup in foreground"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1471
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupid)
#: rc.cpp:578
msgid "Autogroup by I&D"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1540
#. i18n: ectx: property (text), widget (QCheckBox, enable_tilingoption)
#: rc.cpp:590
msgid "T&iling"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1573
#. i18n: ectx: property (text), item, widget (KComboBox, tilingoption)
#: rc.cpp:602
#, fuzzy
#| msgid "Title:"
msgid "Tiled"
msgstr "Заглавие:"

#. i18n: file: ruleswidgetbase.ui:1578
#. i18n: ectx: property (text), item, widget (KComboBox, tilingoption)
#: rc.cpp:605
msgid "Floating"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1606
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skiptaskbar)
#: rc.cpp:608
msgid "Window shall (not) appear in the taskbar."
msgstr ""

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

#. i18n: file: ruleswidgetbase.ui:1653
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skippager)
#: rc.cpp:632
msgid "Window shall (not) appear in the manager for virtual desktops"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1656
#. i18n: ectx: property (text), widget (QCheckBox, enable_skippager)
#: rc.cpp:635
msgid "Skip pa&ger"
msgstr "Игнориране на пе&йджъра"

#. i18n: file: ruleswidgetbase.ui:1707
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skipswitcher)
#: rc.cpp:656
msgid "Window shall (not) appear in the Alt+Tab list"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1710
#. i18n: ectx: property (text), widget (QCheckBox, enable_skipswitcher)
#: rc.cpp:659
#, fuzzy
#| msgid "Skip pa&ger"
msgid "Skip &switcher"
msgstr "Игнориране на пе&йджъра"

#. i18n: file: ruleswidgetbase.ui:1768
#. i18n: ectx: property (text), widget (QCheckBox, enable_shortcut)
#: rc.cpp:680
msgid "Shortcut"
msgstr "Бърз клавиш"

#. i18n: file: ruleswidgetbase.ui:1825
#. i18n: ectx: property (text), widget (QPushButton, shortcut_edit)
#: rc.cpp:701
msgid "Edit..."
msgstr "Редактиране..."

#. i18n: file: ruleswidgetbase.ui:1907
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:713
msgid "Appearance && &Fixes"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1913
#. i18n: ectx: property (text), widget (QCheckBox, enable_noborder)
#: rc.cpp:716
msgid "&No titlebar and frame"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:1964
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityactive)
#: rc.cpp:737
#, fuzzy
#| msgid "A&ctive opacity in %"
msgid "A&ctive opacity"
msgstr "&Активна непрозрачност в %"

#. i18n: file: ruleswidgetbase.ui:1996
#. i18n: ectx: property (suffix), widget (QSpinBox, opacityactive)
#. i18n: file: ruleswidgetbase.ui:2041
#. i18n: ectx: property (suffix), widget (QSpinBox, opacityinactive)
#: rc.cpp:750 rc.cpp:766
#, no-c-format
msgid "%"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:2009
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityinactive)
#: rc.cpp:753
#, fuzzy
#| msgid "I&nactive opacity in %"
msgid "I&nactive opacity"
msgstr "&Неактивна непрозрачност в %"

#. i18n: file: ruleswidgetbase.ui:2061
#. i18n: ectx: property (text), widget (QCheckBox, enable_moveresizemode)
#: rc.cpp:769
msgid "&Moving/resizing"
msgstr "Пре&местване/промяна на размера"

#. i18n: file: ruleswidgetbase.ui:2099
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_acceptfocus)
#: rc.cpp:772
msgid ""
"Windows may prevent to get the focus (activate) when being clicked.\n"
"On the other hand you might wish to prevent a window\n"
"from getting focused on a mouse click."
msgstr ""

#. i18n: file: ruleswidgetbase.ui:2102
#. i18n: ectx: property (text), widget (QCheckBox, enable_acceptfocus)
#: rc.cpp:777
msgid "Accept &focus"
msgstr "Приемане на &фокуса"

#. i18n: file: ruleswidgetbase.ui:2145
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_disableglobalshortcuts)
#: rc.cpp:789
msgid ""
"When used, a window will receive\n"
"all keyboard inputs while it is active, including Alt+Tab etc.\n"
"This is especially interesting for emulators or virtual machines.\n"
"\n"
"Be warned:\n"
"you won't be able to Alt+Tab out of the window\n"
"nor use any other global shortcut (such as Alt+F2 to show KRunner)\n"
"while it's active!"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:2148
#. i18n: ectx: property (text), widget (QCheckBox, enable_disableglobalshortcuts)
#: rc.cpp:799
#, fuzzy
#| msgid "Block global shortcuts"
msgid "Ignore global shortcuts"
msgstr "Блокиране на глобалните бързи клавиши"

#. i18n: file: ruleswidgetbase.ui:2194
#. i18n: ectx: property (text), widget (QCheckBox, enable_closeable)
#: rc.cpp:811
msgid "&Closeable"
msgstr "Р&азрешено затваряне"

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

#. i18n: file: ruleswidgetbase.ui:2289
#. i18n: ectx: property (text), widget (QCheckBox, enable_blockcompositing)
#: rc.cpp:853
msgid "Block compositing"
msgstr ""

#. i18n: file: ruleswidgetbase.ui:2363
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:856
msgid "Opaque"
msgstr "Непрозрачност"

#. i18n: file: ruleswidgetbase.ui:2368
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:859
msgid "Transparent"
msgstr "Прозрачност"

#. i18n: file: ruleswidgetbase.ui:2475
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:898
#, fuzzy
#| msgid "None"
msgctxt "no focus stealing prevention"
msgid "None"
msgstr "Без"

#. i18n: file: ruleswidgetbase.ui:2480
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:901
msgid "Low"
msgstr "Слабо"

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

#. i18n: file: ruleswidgetbase.ui:2490
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:907
msgid "High"
msgstr "Силно"

#. i18n: file: ruleswidgetbase.ui:2495
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:910
msgid "Extreme"
msgstr "Крайно"

#. i18n: file: ruleswidgetbase.ui:2507
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_fsplevel)
#: rc.cpp:913
msgid ""
"KWin tries to prevent windows from taking the focus\n"
"(\"activate\") while you're working in another window,\n"
"but this may sometimes fail or superact.\n"
"\"None\" will unconditionally allow this window to get the focus while\n"
"\"Extreme\" will completely prevent it from taking the focus."
msgstr ""

#. i18n: file: ruleswidgetbase.ui:2510
#. i18n: ectx: property (text), widget (QCheckBox, enable_fsplevel)
#: rc.cpp:920
msgid "&Focus stealing prevention"
msgstr "Пр&едотвратяване открадването на фокуса"

#: ruleslist.cpp:155
msgid "Export Rule"
msgstr ""

#: ruleslist.cpp:166
msgid "Import Rules"
msgstr ""

#: 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:124
msgid "All Desktops"
msgstr "Всички работни плотове"

#: ruleswidget.cpp:691
#, kde-format
msgid "Settings for %1"
msgstr "Настройки за %1"

#: ruleswidget.cpp:693
msgid "Unnamed entry"
msgstr "Без име"

#: ruleswidget.cpp:703
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:733
msgid "Edit Window-Specific Settings"
msgstr "Редактиране специфичните настройки на прозорците"

#: ruleswidget.cpp:758
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:762
msgid "Consult the documentation for more details."
msgstr "За повече подробности, погледнете в документацията."

#: ruleswidget.cpp:800
msgid "Edit Shortcut"
msgstr "Редактиране на бърз клавиш"

#~ msgid "Window &Extra"
#~ msgstr "&Допълнителни"

#~ msgid "&Geometry"
#~ msgstr "&Размер"

#~ msgid "&Preferences"
#~ msgstr "&Допълнителни"

#~ msgid "&No border"
#~ msgstr "&Без рамка"

#~ msgid "0123456789"
#~ msgstr "0123456789"

#~ msgid "W&orkarounds"
#~ msgstr "&Нестандартни функции"

#~ msgid "Strictly obey geometry"
#~ msgstr "Стриктно следване на геометрията"