~ubuntu-branches/ubuntu/precise/kde-l10n-hu/precise-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
# Kristóf Kiszel <ulysses@kubuntu.org>, 2010, 2012.
msgid ""
msgstr ""
"Project-Id-Version: KDE 4.1\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-12-09 04:04+0100\n"
"PO-Revision-Date: 2012-01-01 23:19+0100\n"
"Last-Translator: Kristóf Kiszel <ulysses@kubuntu.org>\n"
"Language-Team: Hungarian <kde-l10n-hu@kde.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.2\n"

#. i18n: file: ruleswidgetbase.ui:428
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2164
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:95 rc.cpp:160 rc.cpp:793
msgid "Normal Window"
msgstr "Normál ablak"

#. i18n: file: ruleswidgetbase.ui:463
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2199
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:96 rc.cpp:181 rc.cpp:814
msgid "Desktop"
msgstr "Asztal"

#. i18n: file: ruleswidgetbase.ui:443
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2179
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:97 rc.cpp:169 rc.cpp:802
msgid "Dock (panel)"
msgstr "Dokkolás (a panelbe)"

#. i18n: file: ruleswidgetbase.ui:448
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2184
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:98 rc.cpp:172 rc.cpp:805
msgid "Toolbar"
msgstr "Eszköztár"

#. i18n: file: ruleswidgetbase.ui:453
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2189
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:99 rc.cpp:175 rc.cpp:808
msgid "Torn-Off Menu"
msgstr "Leválasztható menü"

#. i18n: file: ruleswidgetbase.ui:433
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2169
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:100 rc.cpp:163 rc.cpp:796
msgid "Dialog Window"
msgstr "Párbeszédablak"

#: detectwidget.cpp:101
msgid "Override Type"
msgstr "Felülbírálási típus"

#. i18n: file: ruleswidgetbase.ui:473
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2204
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:102 rc.cpp:187 rc.cpp:817
msgid "Standalone Menubar"
msgstr "Önálló menüsor"

#. i18n: file: ruleswidgetbase.ui:438
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2174
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:103 rc.cpp:166 rc.cpp:799
msgid "Utility Window"
msgstr "Eszközablak"

#. i18n: file: ruleswidgetbase.ui:458
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: file: ruleswidgetbase.ui:2194
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:104 rc.cpp:178 rc.cpp:811
msgid "Splash Screen"
msgstr "Nyitóképernyő"

#: detectwidget.cpp:110
msgid "Unknown - will be treated as Normal Window"
msgstr "Ismeretlen - normál ablakként lesz kezelve"

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

#: kcm.cpp:53
msgid "Window-Specific Settings Configuration Module"
msgstr "Beállítómodul egyedi ablakbeállításokhoz"

#: kcm.cpp:54
msgid "(c) 2004 KWin and KControl Authors"
msgstr "© A KWin és a KControl szerzői, 2004."

#: 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>Ablakspecifikus beállítások</h1> Itt lehet beállítani csak egy "
"kijelölt ablakcsoportra érvényes tulajdonságokat. </p> <p>Ezek a beállítások "
"csak akkor érvényesek, ha a KWin van beállítva ablakkezelőnek. Ha más "
"ablakkezelőt használ, nézzen utána annak dokumentációjában, hogy milyen "
"jellemzőket lehet beállítani.</p>"

#: kcm.cpp:102
msgid "Remember settings separately for every window"
msgstr "A beállítások megjegyzése minden ablaknál"

#: kcm.cpp:103
msgid "Show internal settings for remembering"
msgstr "Az egyenkénti megjegyzés beállításainak megjelenítése"

#: kcm.cpp:104
msgid "Internal setting for remembering"
msgstr "Az egyenkénti megjegyzés beállításai"

#: main.cpp:140
#, kde-format
msgid "Application settings for %1"
msgstr "%1 alkalmazásbeállításai"

#: main.cpp:160
#, kde-format
msgid "Window settings for %1"
msgstr "%1 ablakbeállításai"

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

#: main.cpp:240
msgid "KWin helper utility"
msgstr "KWin-segédprogram"

#: main.cpp:243
msgid "WId of the window for special window settings."
msgstr "A beállítandó ablak azonosítója."

#: main.cpp:244
msgid "Whether the settings should affect all windows of the application."
msgstr ""
"Ez határozza meg, hogy az alkalmazás összes ablakára érvényes legyen-e a "
"beállítás."

#: main.cpp:253
msgid "This helper utility is not supposed to be called directly."
msgstr "Ezt a segédprogramot nem közvetlenül kell elindítani."

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Kiszel Kristóf,Szántó Tamás"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "ulysses@kubuntu.org,tszanto@interware.hu"

#. i18n: file: detectwidget.ui:17
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:5
msgid "Information About Selected Window"
msgstr "A kijelölt ablak jellemzői"

#. i18n: file: detectwidget.ui:26
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:8
msgid "Class:"
msgstr "Osztály:"

#. i18n: file: detectwidget.ui:54
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:11
msgid "Role:"
msgstr "Szerepkör:"

#. i18n: file: detectwidget.ui:82
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:14
msgid "Type:"
msgstr "Típus:"

#. i18n: file: detectwidget.ui:110
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: rc.cpp:17
msgid "Title:"
msgstr "Cím:"

#. i18n: file: detectwidget.ui:138
#. i18n: ectx: property (text), widget (QLabel, textLabel13)
#: rc.cpp:20
msgid "Machine:"
msgstr "Gép:"

#. i18n: file: detectwidget.ui:169
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:23
msgid "Match by primary class name and"
msgstr "Illesztés elsődleges osztálynév és"

#. i18n: file: detectwidget.ui:178
#. i18n: ectx: property (text), widget (QCheckBox, match_whole_class)
#: rc.cpp:26
msgid "Secondary class name  (resulting in term in brackets)"
msgstr "másodlagos osztálynév szerint"

#. i18n: file: detectwidget.ui:185
#. i18n: ectx: property (text), widget (QCheckBox, match_role)
#: rc.cpp:29
msgid "Window role (can be used to select windows by function)"
msgstr ""
"ablakszabály szerint (az ablakok funkció szerinti kiválasztására használható)"

#. i18n: file: detectwidget.ui:192
#. i18n: ectx: property (text), widget (QCheckBox, match_type)
#: rc.cpp:32
msgid "Window type (eg. all dialogs, but not the main windows)"
msgstr "ablaktípus szerint (például párbeszédablakok, de nem a főablakok)"

#. i18n: file: detectwidget.ui:199
#. i18n: ectx: property (text), widget (QCheckBox, match_title)
#: rc.cpp:35
msgid ""
"Window title (very specific, can fail due to content changes or translation)"
msgstr ""
"ablakcím (nagyon specifikus, a tartalomváltozások vagy fordítás miatt nem "
"sikerülhet)"

#. i18n: file: editshortcut.ui:18
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:38
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 ""
"A két gomb segítségével könnyen lehet billentyűkombinációt létrehozni és "
"törölni. Csak módosító billentyűt tartalmazó kombinációt lehet használni."
"<p>\n"
"Több kombináció is megadható, a program mindig a sorban legelsőt használja. "
"A kombinációcsoportokat szóközzel kell elválasztani. Az egyik csoport neve "
"<i>alap</i>+(<i>lista</i>), ahol az alap módosítókat, a lista normál "
"billentyűket tartalmaz.<br>\n"
"Például \"<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>\" esetén a program először "
"a <b>Shift+Alt+1</b>-et próbálja, majd sorban a többit, utoljára a <b>Shift"
"+Ctrl+C</b>-t."

#. i18n: file: editshortcut.ui:62
#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#: rc.cpp:43
msgid "&Single Shortcut"
msgstr "&Egy billentyűkombináció"

#. i18n: file: editshortcut.ui:85
#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#: rc.cpp:46
msgid "C&lear"
msgstr "&Törlés"

#. i18n: file: ruleslist.ui:23
#. i18n: ectx: property (text), widget (KPushButton, new_button)
#: rc.cpp:49
msgid "&New..."
msgstr "Ú&j…"

#. i18n: file: ruleslist.ui:30
#. i18n: ectx: property (text), widget (KPushButton, modify_button)
#: rc.cpp:52
msgid "&Modify..."
msgstr "Mó&dosítás…"

#. i18n: file: ruleslist.ui:37
#. i18n: ectx: property (text), widget (KPushButton, delete_button)
#: rc.cpp:55
msgid "Delete"
msgstr "Törlés"

#. i18n: file: ruleslist.ui:47
#. i18n: ectx: property (text), widget (KPushButton, moveup_button)
#: rc.cpp:58
msgid "Move &Up"
msgstr "&Felfelé"

#. i18n: file: ruleslist.ui:54
#. i18n: ectx: property (text), widget (KPushButton, movedown_button)
#: rc.cpp:61
msgid "Move &Down"
msgstr "&Lefelé"

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

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

#. i18n: file: ruleswidgetbase.ui:21
#. i18n: ectx: attribute (title), widget (QWidget, TabPage1)
#: rc.cpp:70
msgid "&Window matching"
msgstr "&Ablakilleszkedés"

#. i18n: file: ruleswidgetbase.ui:27
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:73
msgid "De&scription:"
msgstr "&Leírás:"

#. i18n: file: ruleswidgetbase.ui:46
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:76
msgid "Window &class (application):"
msgstr "Abla&kosztály (alkalmazás):"

#. 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, machine_match)
#: rc.cpp:79 rc.cpp:100 rc.cpp:121 rc.cpp:139
msgid "Unimportant"
msgstr "Nem fontos"

#. 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, machine_match)
#: rc.cpp:82 rc.cpp:103 rc.cpp:124 rc.cpp:142
msgid "Exact Match"
msgstr "Pontos illesztés"

#. 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, machine_match)
#: rc.cpp:85 rc.cpp:106 rc.cpp:127 rc.cpp:145
msgid "Substring Match"
msgstr "Részszöveg-illesztés"

#. 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, machine_match)
#: rc.cpp:88 rc.cpp:109 rc.cpp:130 rc.cpp:148
msgid "Regular Expression"
msgstr "Reguláris kifejezés"

#. 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_machine)
#: rc.cpp:91 rc.cpp:112 rc.cpp:133 rc.cpp:151
msgid "Edit"
msgstr "Szerkesztés"

#. i18n: file: ruleswidgetbase.ui:102
#. i18n: ectx: property (text), widget (QCheckBox, whole_wmclass)
#: rc.cpp:94
msgid "Match w&hole window class"
msgstr "Tel&jes ablakosztály illesztése"

#. i18n: file: ruleswidgetbase.ui:109
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:97
msgid "Window &role:"
msgstr "Ablaksze&rep:"

#. i18n: file: ruleswidgetbase.ui:162
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:115
msgid "Window &types:"
msgstr "Ablaktí&pusok:"

#. i18n: file: ruleswidgetbase.ui:178
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:118
msgid "Window t&itle:"
msgstr "Ablak&cím:"

#. i18n: file: ruleswidgetbase.ui:231
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:136
msgid "&Machine (hostname):"
msgstr "&Gépnév:"

#. i18n: file: ruleswidgetbase.ui:318
#. i18n: ectx: property (text), widget (KPushButton, detect)
#: rc.cpp:154
msgid "&Detect Window Properties"
msgstr "Ablaktulaj&donságok felismerése"

#. i18n: file: ruleswidgetbase.ui:325
#. i18n: ectx: property (suffix), widget (QSpinBox, detection_delay)
#: rc.cpp:157
msgid "s delay"
msgstr " s késleltetés"

#. i18n: file: ruleswidgetbase.ui:468
#. i18n: ectx: property (text), item, widget (QListWidget, types)
#: rc.cpp:184
msgid "Unmanaged Window"
msgstr "Nem kezelt ablak"

#. i18n: file: ruleswidgetbase.ui:489
#. i18n: ectx: attribute (title), widget (QWidget, TabPage3)
#: rc.cpp:190
msgid "&Size && Position"
msgstr "&Méret és elhelyezkedés"

#. i18n: file: ruleswidgetbase.ui:495
#. i18n: ectx: property (text), widget (QCheckBox, enable_position)
#: rc.cpp:193
msgid "&Position"
msgstr "&Elhelyezkedés"

#. i18n: file: ruleswidgetbase.ui:506
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:563
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:641
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:713
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:785
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:846
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:938
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:981
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:1039
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1076
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1113
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1163
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1238
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:1274
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1325
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1390
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1426
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1495
#. i18n: ectx: property (text), item, widget (KComboBox, rule_tilingoption)
#. i18n: file: ruleswidgetbase.ui:1564
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1611
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1665
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1726
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1832
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1868
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1919
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1964
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:2043
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:2092
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:2142
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:2300
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:2322
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: file: ruleswidgetbase.ui:2344
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:2419
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#: rc.cpp:196 rc.cpp:223 rc.cpp:253 rc.cpp:277 rc.cpp:301 rc.cpp:322
#: rc.cpp:370 rc.cpp:382 rc.cpp:397 rc.cpp:415 rc.cpp:433 rc.cpp:457
#: rc.cpp:479 rc.cpp:494 rc.cpp:515 rc.cpp:539 rc.cpp:551 rc.cpp:563
#: rc.cpp:584 rc.cpp:608 rc.cpp:632 rc.cpp:653 rc.cpp:674 rc.cpp:689
#: rc.cpp:710 rc.cpp:726 rc.cpp:747 rc.cpp:769 rc.cpp:784 rc.cpp:823
#: rc.cpp:832 rc.cpp:841 rc.cpp:875
msgid "Do Not Affect"
msgstr "Nem befolyásolja"

#. i18n: file: ruleswidgetbase.ui:511
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:568
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:646
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:718
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:790
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1044
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1081
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1118
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1279
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1330
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1569
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1616
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1670
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1731
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1873
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: rc.cpp:199 rc.cpp:226 rc.cpp:256 rc.cpp:280 rc.cpp:304 rc.cpp:400
#: rc.cpp:418 rc.cpp:436 rc.cpp:497 rc.cpp:518 rc.cpp:587 rc.cpp:611
#: rc.cpp:635 rc.cpp:656 rc.cpp:692
msgid "Apply Initially"
msgstr "Belső alkalmazás"

#. i18n: file: ruleswidgetbase.ui:516
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:573
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:651
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:723
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:795
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1049
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1086
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1123
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1284
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1335
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1574
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1621
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1675
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1736
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1878
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: rc.cpp:202 rc.cpp:229 rc.cpp:259 rc.cpp:283 rc.cpp:307 rc.cpp:403
#: rc.cpp:421 rc.cpp:439 rc.cpp:500 rc.cpp:521 rc.cpp:590 rc.cpp:614
#: rc.cpp:638 rc.cpp:659 rc.cpp:695
msgid "Remember"
msgstr "Megjegyzés"

#. i18n: file: ruleswidgetbase.ui:521
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:578
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:656
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:728
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:800
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:851
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:943
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:986
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:1054
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1091
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1128
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1168
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1243
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:1289
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1340
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1395
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1431
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1500
#. i18n: ectx: property (text), item, widget (KComboBox, rule_tilingoption)
#. i18n: file: ruleswidgetbase.ui:1579
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1626
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1680
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1741
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1837
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1883
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1924
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1969
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:2048
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:2097
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:2147
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:2305
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:2327
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: file: ruleswidgetbase.ui:2349
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:2424
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#: rc.cpp:205 rc.cpp:232 rc.cpp:262 rc.cpp:286 rc.cpp:310 rc.cpp:325
#: rc.cpp:373 rc.cpp:385 rc.cpp:406 rc.cpp:424 rc.cpp:442 rc.cpp:460
#: rc.cpp:482 rc.cpp:503 rc.cpp:524 rc.cpp:542 rc.cpp:554 rc.cpp:566
#: rc.cpp:593 rc.cpp:617 rc.cpp:641 rc.cpp:662 rc.cpp:677 rc.cpp:698
#: rc.cpp:713 rc.cpp:729 rc.cpp:750 rc.cpp:772 rc.cpp:787 rc.cpp:826
#: rc.cpp:835 rc.cpp:844 rc.cpp:878
msgid "Force"
msgstr "Kényszerítés"

#. i18n: file: ruleswidgetbase.ui:526
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:583
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:661
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:733
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:805
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:1059
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1096
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1133
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1294
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1345
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1584
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1631
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1685
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1746
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1888
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: rc.cpp:208 rc.cpp:235 rc.cpp:265 rc.cpp:289 rc.cpp:313 rc.cpp:409
#: rc.cpp:427 rc.cpp:445 rc.cpp:506 rc.cpp:527 rc.cpp:596 rc.cpp:620
#: rc.cpp:644 rc.cpp:665 rc.cpp:701
msgid "Apply Now"
msgstr "Alkalmazás most"

#. i18n: file: ruleswidgetbase.ui:531
#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: file: ruleswidgetbase.ui:588
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: file: ruleswidgetbase.ui:666
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: file: ruleswidgetbase.ui:738
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: file: ruleswidgetbase.ui:810
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: file: ruleswidgetbase.ui:856
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: file: ruleswidgetbase.ui:948
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoreposition)
#. i18n: file: ruleswidgetbase.ui:991
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: file: ruleswidgetbase.ui:1064
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: file: ruleswidgetbase.ui:1101
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: file: ruleswidgetbase.ui:1138
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: file: ruleswidgetbase.ui:1173
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: file: ruleswidgetbase.ui:1248
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: file: ruleswidgetbase.ui:1299
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: file: ruleswidgetbase.ui:1350
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: file: ruleswidgetbase.ui:1400
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: file: ruleswidgetbase.ui:1436
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: file: ruleswidgetbase.ui:1505
#. i18n: ectx: property (text), item, widget (KComboBox, rule_tilingoption)
#. i18n: file: ruleswidgetbase.ui:1589
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: file: ruleswidgetbase.ui:1636
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: file: ruleswidgetbase.ui:1690
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: file: ruleswidgetbase.ui:1751
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: file: ruleswidgetbase.ui:1842
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: file: ruleswidgetbase.ui:1893
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: file: ruleswidgetbase.ui:1929
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: file: ruleswidgetbase.ui:1974
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: file: ruleswidgetbase.ui:2053
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: file: ruleswidgetbase.ui:2102
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: file: ruleswidgetbase.ui:2152
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: file: ruleswidgetbase.ui:2310
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: file: ruleswidgetbase.ui:2332
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: file: ruleswidgetbase.ui:2354
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#. i18n: file: ruleswidgetbase.ui:2429
#. i18n: ectx: property (text), item, widget (KComboBox, rule_moveresizemode)
#: rc.cpp:211 rc.cpp:238 rc.cpp:268 rc.cpp:292 rc.cpp:316 rc.cpp:328
#: rc.cpp:376 rc.cpp:388 rc.cpp:412 rc.cpp:430 rc.cpp:448 rc.cpp:463
#: rc.cpp:485 rc.cpp:509 rc.cpp:530 rc.cpp:545 rc.cpp:557 rc.cpp:569
#: rc.cpp:599 rc.cpp:623 rc.cpp:647 rc.cpp:668 rc.cpp:680 rc.cpp:704
#: rc.cpp:716 rc.cpp:732 rc.cpp:753 rc.cpp:775 rc.cpp:790 rc.cpp:829
#: rc.cpp:838 rc.cpp:847 rc.cpp:881
msgid "Force Temporarily"
msgstr "Kényszerítés ideiglenesen"

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

#. i18n: file: ruleswidgetbase.ui:545
#. i18n: ectx: property (validChars), widget (KRestrictedLine, position)
#. i18n: file: ruleswidgetbase.ui:602
#. i18n: ectx: property (validChars), widget (KRestrictedLine, size)
#. i18n: file: ruleswidgetbase.ui:1005
#. i18n: ectx: property (validChars), widget (KRestrictedLine, maxsize)
#. i18n: file: ruleswidgetbase.ui:1152
#. i18n: ectx: property (validChars), widget (KRestrictedLine, minsize)
#: rc.cpp:217 rc.cpp:244 rc.cpp:394 rc.cpp:454
msgid "0123456789-+,xX:"
msgstr "0123456789-+,xX:"

#. i18n: file: ruleswidgetbase.ui:552
#. i18n: ectx: property (text), widget (QCheckBox, enable_size)
#: rc.cpp:220
msgid "&Size"
msgstr "Mé&ret"

#. i18n: file: ruleswidgetbase.ui:599
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, size)
#. i18n: file: ruleswidgetbase.ui:1002
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, maxsize)
#. i18n: file: ruleswidgetbase.ui:1149
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, minsize)
#: rc.cpp:241 rc.cpp:391 rc.cpp:451
msgid "width,height"
msgstr "szélesség,magasság"

#. i18n: file: ruleswidgetbase.ui:616
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizehoriz)
#: rc.cpp:247
msgid "Maximized &horizontally"
msgstr "Maximalizálva &vízszintesen"

#. i18n: file: ruleswidgetbase.ui:630
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizevert)
#: rc.cpp:250
msgid "Maximized &vertically"
msgstr "Ma&ximalizálva függőlegesen"

#. i18n: file: ruleswidgetbase.ui:688
#. i18n: ectx: property (text), widget (QCheckBox, enable_fullscreen)
#: rc.cpp:271
msgid "&Fullscreen"
msgstr "&Teljes képernyő"

#. i18n: file: ruleswidgetbase.ui:702
#. i18n: ectx: property (text), widget (QCheckBox, enable_desktop)
#: rc.cpp:274
msgid "&Desktop"
msgstr "&Asztal"

#. i18n: file: ruleswidgetbase.ui:760
#. i18n: ectx: property (text), widget (QCheckBox, enable_minimize)
#: rc.cpp:295
msgid "M&inimized"
msgstr "M&inimalizálva"

#. i18n: file: ruleswidgetbase.ui:774
#. i18n: ectx: property (text), widget (QCheckBox, enable_shade)
#: rc.cpp:298
msgid "Sh&aded"
msgstr "&Felgördítve"

#. i18n: file: ruleswidgetbase.ui:835
#. i18n: ectx: property (text), widget (QCheckBox, enable_placement)
#: rc.cpp:319
msgid "Initial p&lacement"
msgstr "Kezdeti e&lhelyezés"

#. i18n: file: ruleswidgetbase.ui:868
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:331
msgid "Default"
msgstr "Alapértelmezés"

#. i18n: file: ruleswidgetbase.ui:873
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:334
msgid "No Placement"
msgstr "Nincs elhelyezés"

#. i18n: file: ruleswidgetbase.ui:878
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:337
msgid "Smart"
msgstr "Intelligens"

#. i18n: file: ruleswidgetbase.ui:883
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:340
msgid "Maximizing"
msgstr "Maximalizálás"

#. i18n: file: ruleswidgetbase.ui:888
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:343
msgid "Cascade"
msgstr "Lépcsőzetesen"

#. i18n: file: ruleswidgetbase.ui:893
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:346
msgid "Centered"
msgstr "Középre igazítva"

#. i18n: file: ruleswidgetbase.ui:898
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:349
msgid "Random"
msgstr "Véletlenszerűen"

#. i18n: file: ruleswidgetbase.ui:903
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:352
msgid "Top-Left Corner"
msgstr "Bal felső sarok"

#. i18n: file: ruleswidgetbase.ui:908
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:355
msgid "Under Mouse"
msgstr "Az egér alatt"

#. i18n: file: ruleswidgetbase.ui:913
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:358
msgid "On Main Window"
msgstr "A főablakra"

#. i18n: file: ruleswidgetbase.ui:924
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_ignoreposition)
#: rc.cpp:361
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 ""
"Az ablakok kérhetik a megjelenést egy bizonyos helyen.\n"
"Ez alapértelmezés szerint felülírja az elhelyezési stratégiát\n"
"ami csúnya lehet, ha a kliens kihasználja a szolgáltatást és\n"
"ablakokat jelenít meg a képernyő közepén."

#. i18n: file: ruleswidgetbase.ui:927
#. i18n: ectx: property (text), widget (QCheckBox, enable_ignoreposition)
#: rc.cpp:367
msgid "Ignore requested &geometry"
msgstr "A kért méret és elhelyezkedés figyelmen kívül ha&gyása"

#. i18n: file: ruleswidgetbase.ui:970
#. i18n: ectx: property (text), widget (QCheckBox, enable_maxsize)
#: rc.cpp:379
msgid "M&aximum size"
msgstr "Ma&ximális méret"

#. i18n: file: ruleswidgetbase.ui:1181
#. i18n: ectx: property (text), widget (QCheckBox, enable_minsize)
#: rc.cpp:466
msgid "M&inimum size"
msgstr "M&inimális méret"

#. i18n: file: ruleswidgetbase.ui:1218
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_strictgeometry)
#: rc.cpp:469
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 ""
"A terminálok és videolejátszók kérhetik egy bizonyos méretarány megtartását\n"
"vagy csak egy egynél nagyobb értékkel való növelését (például egy karakter\n"
"méreteivel).\n"
"Ez értelmetlen lehet és a korlátozás megakadályozhatja bizonyos területek,\n"
"vagy akár a teljes képernyőterület használatát."

#. i18n: file: ruleswidgetbase.ui:1224
#. i18n: ectx: property (text), widget (QCheckBox, enable_strictgeometry)
#: rc.cpp:476
msgid "Obey geometry restrictions"
msgstr "Méret- és elhelyezkedéskorlátozások betartása"

#. i18n: file: ruleswidgetbase.ui:1257
#. i18n: ectx: attribute (title), widget (QWidget, TabPage4)
#: rc.cpp:488
msgid "&Arrangement && Access"
msgstr "Ig&azítás és elérés"

#. i18n: file: ruleswidgetbase.ui:1263
#. i18n: ectx: property (text), widget (QCheckBox, enable_above)
#: rc.cpp:491
msgid "Keep &above"
msgstr "A többi ablak fö&lött"

#. i18n: file: ruleswidgetbase.ui:1314
#. i18n: ectx: property (text), widget (QCheckBox, enable_below)
#: rc.cpp:512
msgid "Keep &below"
msgstr "A többi ablak &alatt"

#. i18n: file: ruleswidgetbase.ui:1372
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroup)
#: rc.cpp:533
msgid "Autogroup with &identical"
msgstr "Automatikus csoportosítás &azonossággal"

#. i18n: file: ruleswidgetbase.ui:1379
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupfg)
#: rc.cpp:536
msgid "Autog&roup in foreground"
msgstr "Automatikus &csoportosítás az előtérben"

#. i18n: file: ruleswidgetbase.ui:1415
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupid)
#: rc.cpp:548
msgid "Autogroup by I&D"
msgstr "Automatikus &csoportosítás azonosító alapján"

#. i18n: file: ruleswidgetbase.ui:1484
#. i18n: ectx: property (text), widget (QCheckBox, enable_tilingoption)
#: rc.cpp:560
msgid "T&iling"
msgstr "Moza&ikozás"

#. i18n: file: ruleswidgetbase.ui:1517
#. i18n: ectx: property (text), item, widget (KComboBox, tilingoption)
#: rc.cpp:572
msgid "Tiled"
msgstr "Mozaikszerűen"

#. i18n: file: ruleswidgetbase.ui:1522
#. i18n: ectx: property (text), item, widget (KComboBox, tilingoption)
#: rc.cpp:575
msgid "Floating"
msgstr "Lebegő"

#. i18n: file: ruleswidgetbase.ui:1550
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skiptaskbar)
#: rc.cpp:578
msgid "Window shall (not) appear in the taskbar."
msgstr "Az ablak (ne) jelenjen meg a feladatlistában."

#. i18n: file: ruleswidgetbase.ui:1553
#. i18n: ectx: property (text), widget (QCheckBox, enable_skiptaskbar)
#: rc.cpp:581
msgid "Skip &taskbar"
msgstr "Kihagyás a &feladatlistából"

#. i18n: file: ruleswidgetbase.ui:1597
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skippager)
#: rc.cpp:602
msgid "Window shall (not) appear in the manager for virtual desktops"
msgstr "Az ablak (ne) jelenjen meg a virtuális asztalok kezelőjében"

#. i18n: file: ruleswidgetbase.ui:1600
#. i18n: ectx: property (text), widget (QCheckBox, enable_skippager)
#: rc.cpp:605
msgid "Skip pa&ger"
msgstr "&Kihagyás a lapozóból"

#. i18n: file: ruleswidgetbase.ui:1651
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skipswitcher)
#: rc.cpp:626
msgid "Window shall (not) appear in the Alt+Tab list"
msgstr "Az ablak (ne) jelenjen meg az ablakváltóban"

#. i18n: file: ruleswidgetbase.ui:1654
#. i18n: ectx: property (text), widget (QCheckBox, enable_skipswitcher)
#: rc.cpp:629
msgid "Skip &switcher"
msgstr "Kihagyá&s az ablakváltóból"

#. i18n: file: ruleswidgetbase.ui:1712
#. i18n: ectx: property (text), widget (QCheckBox, enable_shortcut)
#: rc.cpp:650
msgid "Shortcut"
msgstr "Gyorsbillentyű"

#. i18n: file: ruleswidgetbase.ui:1769
#. i18n: ectx: property (text), widget (QPushButton, shortcut_edit)
#: rc.cpp:671
msgid "Edit..."
msgstr "Szerkesztés…"

#. i18n: file: ruleswidgetbase.ui:1851
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:683
msgid "Appearance && &Fixes"
msgstr "Megjelenés és javítás"

#. i18n: file: ruleswidgetbase.ui:1857
#. i18n: ectx: property (text), widget (QCheckBox, enable_noborder)
#: rc.cpp:686
msgid "&No titlebar and frame"
msgstr "&Nincs címsor és keret"

#. i18n: file: ruleswidgetbase.ui:1908
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityactive)
#: rc.cpp:707
msgid "A&ctive opacity"
msgstr "A&ktív átlátszóság"

#. i18n: file: ruleswidgetbase.ui:1940
#. i18n: ectx: property (suffix), widget (QSpinBox, opacityactive)
#. i18n: file: ruleswidgetbase.ui:1985
#. i18n: ectx: property (suffix), widget (QSpinBox, opacityinactive)
#: rc.cpp:720 rc.cpp:736
#, no-c-format
msgid "%"
msgstr "%"

#. i18n: file: ruleswidgetbase.ui:1953
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityinactive)
#: rc.cpp:723
msgid "I&nactive opacity"
msgstr "I&naktív átlátszóság"

#. i18n: file: ruleswidgetbase.ui:2029
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_acceptfocus)
#: rc.cpp:739
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 ""
"Az ablakok megakadályozhatják a fókuszba kerülést (aktiválást) "
"kattintáskor.\n"
"Másrészt talán szeretné megakadályozni egy ablak fókuszba kerülését "
"egérkattintáskor."

#. i18n: file: ruleswidgetbase.ui:2032
#. i18n: ectx: property (text), widget (QCheckBox, enable_acceptfocus)
#: rc.cpp:744
msgid "Accept &focus"
msgstr "&Fókusz elfogadása"

#. i18n: file: ruleswidgetbase.ui:2075
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_disableglobalshortcuts)
#: rc.cpp:756
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 ""
"Ha be van jelölve, az ablak minden billentyűbevitelt megkap\n"
"amíg aktív, beleértve az Alt+Tab kombinációt is, ez emulátorok\n"
"vagy virtuális gépek esetén lehet érdekes.\n"
"\n"
"Figyelem: amíg a beállítás aktív, nem tud más ablakra váltani az\n"
"Alt+Tab megnyomásával vagy más globális gyorsbillentyűt használni\n"
"(például Alt+F2 a KRunner megjelenítéséhez)!"

#. i18n: file: ruleswidgetbase.ui:2078
#. i18n: ectx: property (text), widget (QCheckBox, enable_disableglobalshortcuts)
#: rc.cpp:766
msgid "Ignore global shortcuts"
msgstr "Globális gyorsbillentyűk mellőzése"

#. i18n: file: ruleswidgetbase.ui:2124
#. i18n: ectx: property (text), widget (QCheckBox, enable_closeable)
#: rc.cpp:778
msgid "&Closeable"
msgstr "&Bezárható"

#. i18n: file: ruleswidgetbase.ui:2131
#. i18n: ectx: property (text), widget (QCheckBox, enable_type)
#: rc.cpp:781
msgid "Window &type"
msgstr "Ablak&típus"

#. i18n: file: ruleswidgetbase.ui:2219
#. i18n: ectx: property (text), widget (QCheckBox, enable_blockcompositing)
#: rc.cpp:820
msgid "Block compositing"
msgstr "Kompozitálás blokkolása"

#. i18n: file: ruleswidgetbase.ui:2366
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:850
msgctxt "no focus stealing prevention"
msgid "None"
msgstr "Nincs"

#. i18n: file: ruleswidgetbase.ui:2371
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:853
msgid "Low"
msgstr "Alacsony"

#. i18n: file: ruleswidgetbase.ui:2376
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:856
msgid "Normal"
msgstr "Normál"

#. i18n: file: ruleswidgetbase.ui:2381
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:859
msgid "High"
msgstr "Magas"

#. i18n: file: ruleswidgetbase.ui:2386
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:862
msgid "Extreme"
msgstr "Rendkívüli"

#. i18n: file: ruleswidgetbase.ui:2398
#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_fsplevel)
#: rc.cpp:865
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 ""
"A KWin megpróbálja megakadályozni az ablakokat a fókusz megszerzésében,\n"
"(„aktiválás”) miközben Ön egy másik ablakban dolgozik, ez azonban néha nem\n"
"sikerül vagy túl jól sikerül.\n"
"A „Nincs” lehetővé teszi az ablaknak a fókusz feltétel nélküli "
"megszerzését,\n"
"míg a „Rendkívüli” teljesen megakadályozza a fókusz megszerzésében."

#. i18n: file: ruleswidgetbase.ui:2401
#. i18n: ectx: property (text), widget (QCheckBox, enable_fsplevel)
#: rc.cpp:872
msgid "&Focus stealing prevention"
msgstr "A fókuszel&vétel megakadályozása"

#. i18n: file: ruleswidgetbase.ui:2441
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:884
msgid "Opaque"
msgstr "Áttetsző"

#. i18n: file: ruleswidgetbase.ui:2446
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:887
msgid "Transparent"
msgstr "Átlátszó"

#. i18n: file: ruleswidgetbase.ui:2454
#. i18n: ectx: property (text), widget (QCheckBox, enable_moveresizemode)
#: rc.cpp:890
msgid "&Moving/resizing"
msgstr "Mozgatás/átmé&retezés"

#: ruleslist.cpp:155
msgid "Export Rule"
msgstr "Szabály exportálása"

#: ruleslist.cpp:166
msgid "Import Rules"
msgstr "Szabályok importálása"

#: ruleswidget.cpp:57
msgid ""
"Enable this checkbox to alter this window property for the specified window"
"(s)."
msgstr ""
"Jelölje be az opciót, ha ezt a tulajdonságot meg szeretné változtatni a "
"kijelölt ablakoknál."

#: 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 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 ""
"Adja meg, hogy az ablakjellemzőt hogyan kell értelmezni:<ul><li><em>Ne "
"legyen kihatása:</em> Az ablakjellemzőnél az alapértelmezett kezelés lesz "
"érvényes. Ennek hatására az általánosabb ablakjellemzők nem fognak "
"érvényesülni.</li><li><em>Alkalmazás belül:</em> Az ablakjellemző megkapja a "
"megadott értéket az ablak létrehozásakor, de később már nem lesz "
"érvényesítve.</li><li><em>Megjegyzés:</em> Az ablakkezelő megjegyzi az "
"ablaktulajdonság értékét és az ablak létrehozásakor mindig az utoljára "
"eltárolt értéket fogja alkalmazni.</li><li><em>Kikényszerítés:</em> Az "
"ablaktulajdonság mindig a megadott értéken fog maradni.</"
"li><li><em>Alkalmazás most:</em> Az ablaktulajdonság felveszi most a "
"megadott értéket, de később már nem lesz érvényes (a művelet törlődik).</"
"li><li><em>Kikényszerítés (ideiglenesen):</em> Az ablaktulajdonság értéke "
"meg fog maradni az ablak elrejtéséig (utána a beállítás véglegesen érvényét "
"veszti).</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 ""
"Adja meg, hogy az ablaktulajdonságot hogyan kell értelmezni:<ul><li><em>Ne "
"legyen kihatása:</em> Az ablakjellemzőnél az alapértelmezett kezelés lesz "
"érvényes. Ennek hatására az általánosabb ablakjellemzők nem fognak "
"érvényesülni.</li><li><em>Kikényszerítés:</em> Az ablaktulajdonság mindig a "
"megadott értéken fog maradni.</li><li><em>Kikényszerítés (ideiglenesen):</"
"em> Az ablaktulajdonság megmarad, amíg az ablakot el nem rejtik (elrejtés "
"után a beállítás véglegesen érvényét veszti).</li></ul>"

#: ruleswidget.cpp:133
msgid "All Desktops"
msgstr "Minden asztalra"

#: ruleswidget.cpp:680
#, kde-format
msgid "Settings for %1"
msgstr "%1 beállításai"

#: ruleswidget.cpp:682
msgid "Unnamed entry"
msgstr "Névtelen bejegyzés"

#: ruleswidget.cpp:692
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 ""
"Azt választotta, hogy az ablakosztály értéke ne legyen figyelembe véve.\n"
"Ez azt jelenti, hogy az összes alkalmazás megfelelő szerepkörű ablaka "
"figyelembe lesz véve. Ha általános beállítást szeretne, érdemes lekorlátozni "
"az ablaktípust a speciális ablaktípusok kihagyása érdekében."

#: ruleswidget.cpp:722
msgid "Edit Window-Specific Settings"
msgstr "Az egyedi ablakbeállítások módosítása"

#: ruleswidget.cpp:747
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 ""
"Ez a beállítóablak lehetővé teszi egy kiválasztott ablak vagy alkalmazás "
"jellemzőinek beállítását. Keresse ki a beállítandó jellemzőt, jelölje be, "
"majd adja meg a kezelési módot és a konkrét értéket, ha van."

#: ruleswidget.cpp:751
msgid "Consult the documentation for more details."
msgstr "További részletek a dokumentációban találhatók."

#: ruleswidget.cpp:789
msgid "Edit Shortcut"
msgstr "A billentyűkombináció módosítása"

#~ msgid ""
#~ "For selecting all windows belonging to a specific application, selecting "
#~ "only window class should usually work."
#~ msgstr ""
#~ "Ha egy alkalmazáshoz tartozó összes ablakot szeretné kijelölni, általában "
#~ "elég csak az ablakosztályt megadni."

#~ msgid "Use window &class (whole application)"
#~ msgstr "Ablak&osztály használata (egy alkalmazás ablakai)"

#~ 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 ""
#~ "Ha egy alkalmazás egyik ablakát szeretné kiválasztani, adja meg az ablak "
#~ "osztályát és szerepkörét is. Az osztály az alkalmazást azonosítja, a "
#~ "szerepkör pedig azon belül egy konkrét ablakot. Azonban sok alkalmazásban "
#~ "nincs megadva használható módon a szerepkör."

#~ msgid "Use window class and window &role (specific window)"
#~ msgstr "Ablakos&ztály és ablak-szerepkör használata (egy adott ablak)"

#~ 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 ""
#~ "Néhány nem KDE-alapú programnál az ablakosztály megadása is elég lehet "
#~ "egy konkrét ablak kijelöléséhez, mert ezek teljes ablakosztályt állítanak "
#~ "be az alkalmazáshoz és az ablakszerepkörhöz."

#~ msgid "Use &whole window class (specific window)"
#~ msgstr "Teljes ablakosztály &használata (egy konkrét ablak)"

#~ msgid "Match also window &title"
#~ msgstr "A címsor &illesztése is"

#~ msgid "Extra role:"
#~ msgstr "Extra szerepkör:"

#~ msgid "Window &Extra"
#~ msgstr "Ablak - e&gyéb"

#~ msgid "&Geometry"
#~ msgstr "G&eometria"

#~ msgid "&Preferences"
#~ msgstr "&Beállítások"

#~ msgid "&No border"
#~ msgstr "Keret nélk&ül"

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

#~ msgid "W&orkarounds"
#~ msgstr "&Egyéb funkciók"

#~ msgid "Strictly obey geometry"
#~ msgstr "A geometria szigorú követése"