~ubuntu-branches/ubuntu/trusty/kde-l10n-zhtw/trusty-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
# translation of kcmkwinrules.po to Chinese Traditional
# Traditional Chinese Translation of kcmkwinrules.
#
# Stanley Wong <stanley18fan0k@yahoo.com.hk>, 2005.
# Frank Weng (a.k.a. Franklin) <franklin at goodhorse dot idv dot tw>, 2006, 2009, 2010.
# Frank Weng (a.k.a. Franklin) <franklin@mail.everfocus.com.tw>, 2007.
# Franklin Weng <franklin at goodhorse dot idv dot tw>, 2007, 2008.
# Franklin Weng <franklin@goodhorse.idv.tw>, 2011, 2012, 2013.
msgid ""
msgstr ""
"Project-Id-Version: kcmkwinrules\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2013-11-05 11:50+0000\n"
"PO-Revision-Date: 2013-03-11 12:52+0800\n"
"Last-Translator: Franklin Weng <franklin at goodhorse dot idv dot tw>\n"
"Language-Team: Chinese Traditional <kde-tw@googlegroups.com>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.5\n"
"Plural-Forms: nplurals=1; plural=0;\n"

msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Stanley Wong"

msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "stanley18fan0k@yahoo.com.hk"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:95 ruleswidgetbase.ui:428 ruleswidgetbase.ui:2222
msgid "Normal Window"
msgstr "正常視窗"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:96 ruleswidgetbase.ui:463 ruleswidgetbase.ui:2257
msgid "Desktop"
msgstr "桌面"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:97 ruleswidgetbase.ui:443 ruleswidgetbase.ui:2237
msgid "Dock (panel)"
msgstr "Dock (panel)"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:98 ruleswidgetbase.ui:448 ruleswidgetbase.ui:2242
msgid "Toolbar"
msgstr "工具列"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:99 ruleswidgetbase.ui:453 ruleswidgetbase.ui:2247
msgid "Torn-Off Menu"
msgstr "撕下的選單"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:100 ruleswidgetbase.ui:433 ruleswidgetbase.ui:2227
msgid "Dialog Window"
msgstr "對話框視窗"

#: detectwidget.cpp:101
msgid "Override Type"
msgstr "覆蓋類型"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:102 ruleswidgetbase.ui:473 ruleswidgetbase.ui:2262
msgid "Standalone Menubar"
msgstr "獨立選單"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:103 ruleswidgetbase.ui:438 ruleswidgetbase.ui:2232
msgid "Utility Window"
msgstr "工具視窗"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#. i18n: ectx: property (text), item, widget (KComboBox, type)
#: detectwidget.cpp:104 ruleswidgetbase.ui:458 ruleswidgetbase.ui:2252
msgid "Splash Screen"
msgstr "啟動畫面"

#: detectwidget.cpp:110
msgid "Unknown - will be treated as Normal Window"
msgstr "未知 - 會被當作正常視窗"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: detectwidget.ui:17
msgid "Information About Selected Window"
msgstr "關於選擇視窗的資訊"

#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: detectwidget.ui:26
msgid "Class:"
msgstr "類別:"

#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: detectwidget.ui:54
msgid "Role:"
msgstr "角色:"

#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: detectwidget.ui:82
msgid "Type:"
msgstr "類型:"

#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: detectwidget.ui:110
msgid "Title:"
msgstr "標題:"

#. i18n: ectx: property (text), widget (QLabel, textLabel13)
#: detectwidget.ui:138
msgid "Machine:"
msgstr "機器:"

#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: detectwidget.ui:169
msgid "Match by primary class name and"
msgstr "比對時依照基礎類別名稱以及"

#. i18n: ectx: property (text), widget (QCheckBox, match_whole_class)
#: detectwidget.ui:178
msgid "Secondary class name  (resulting in term in brackets)"
msgstr "次要類別名稱(括號內的名稱)"

#. i18n: ectx: property (text), widget (QCheckBox, match_role)
#: detectwidget.ui:185
msgid "Window role (can be used to select windows by function)"
msgstr "視窗角色(可用於依功能選擇視窗)"

#. i18n: ectx: property (text), widget (QCheckBox, match_type)
#: detectwidget.ui:192
msgid "Window type (eg. all dialogs, but not the main windows)"
msgstr "視窗型態(如所有的對話框,但不包含主視窗等)"

#. i18n: ectx: property (text), widget (QCheckBox, match_title)
#: detectwidget.ui:199
msgid ""
"Window title (very specific, can fail due to content changes or translation)"
msgstr "視窗標題(指定標題,若內容或翻譯變更則可能比對失敗)"

#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: editshortcut.ui:18
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 shortcut sets "
"separated by \" - \". One set is specified as <i>base</i>+(<i>list</i>), "
"where base are modifiers and list is a list of keys.<br>\n"
"For example \"<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>\" will first try "
"<b>Shift+Alt+1</b>, then others with <b>Shift+Ctrl+C</b> as the last one."
msgstr ""
"您可以很容易地使用這兩個按鈕來加入/清除一組單快捷鍵。只有附上修飾鍵的快捷鍵才"
"可使用。<p>\n"
"系統是可以對單一快捷鍵指定多個按鈕組合的,但只有最先可用的一個會生效。而每組"
"快捷鍵的在指定時要以 \" - \" 分隔。格式為:<i>修飾鍵<i>+(<i>按鈕組合</i>)。"
"<br>\n"
"例如 \"<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>\",會把先試一下<b>Shift+Alt"
"+1</b>,不可用就試<b>Shift+Alt+2</b>...如此類推,最後是<b>Shift+Alt+C</b>。當"
"中可用的一個會用作該單一快捷鍵。"

#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#: editshortcut.ui:62
msgid "&Single Shortcut"
msgstr "單一快捷鍵(&S)"

#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#: editshortcut.ui:85
msgid "C&lear"
msgstr "清除(&L)"

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

#: kcm.cpp:53
msgid "Window-Specific Settings Configuration Module"
msgstr "特定視窗設定配置模組"

#: kcm.cpp:54
msgid "(c) 2004 KWin and KControl Authors"
msgstr "(c) 2004 KWin 及 KControl 作者群"

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

#: kcm.cpp:86
msgid ""
"<p><h1>Window-specific Settings</h1> Here you can customize window settings "
"specifically only for some windows.</p> <p>Please note that this "
"configuration will not take effect if you do not use KWin as your window "
"manager. If you do use a different window manager, please refer to its "
"documentation for how to customize window behavior.</p>"
msgstr ""
"<p><h1>特定視窗設定配置模組</h1>在這裏您可以自行設定特定視窗的一些設定。</"
"p><p>請注意若您不是使用 KWin 作視窗管理器,這些設定不會生效。如果您正在使用其"
"他的視窗管理器,請參考它的文件。</p>"

#: kcm.cpp:102
msgid "Remember settings separately for every window"
msgstr "分別記住每一個視窗的設定"

#: kcm.cpp:103
msgid "Show internal settings for remembering"
msgstr "顯示記憶功能的內部設定"

#: kcm.cpp:104
msgid "Internal setting for remembering"
msgstr "記憶功能的內部設定"

#: main.cpp:143
#, kde-format
msgid "Application settings for %1"
msgstr "%1 的應用程式設定"

#: main.cpp:163
#, kde-format
msgid "Window settings for %1"
msgstr "%1 的視窗設定"

#: main.cpp:215
msgctxt "Window caption for the application wide rules dialog"
msgid "Edit Application-Specific Settings"
msgstr "編輯特定應用程式的設定"

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

#: main.cpp:245
msgid "KWin helper utility"
msgstr "KWin 協助工具"

#: main.cpp:248
msgid "WId of the window for special window settings."
msgstr "特殊視窗設定的視窗代碼(WID)。"

#: main.cpp:249
msgid "Whether the settings should affect all windows of the application."
msgstr "這些設定是否要套用到此應用程式的所有視窗。"

#: main.cpp:258
msgid "This helper utility is not supposed to be called directly."
msgstr "這個協助工具不是用來被直接呼叫的。"

#: ruleslist.cpp:155
msgid "Export Rule"
msgstr "匯出規則"

#: ruleslist.cpp:166
msgid "Import Rules"
msgstr "匯入規則"

#. i18n: ectx: property (text), widget (KPushButton, new_button)
#: ruleslist.ui:23
msgid "&New..."
msgstr "新增(&N)..."

#. i18n: ectx: property (text), widget (KPushButton, modify_button)
#: ruleslist.ui:30
msgid "&Modify..."
msgstr "修改(&M)..."

#. i18n: ectx: property (text), widget (KPushButton, delete_button)
#: ruleslist.ui:37
msgid "Delete"
msgstr "刪除"

#. i18n: ectx: property (text), widget (KPushButton, moveup_button)
#: ruleslist.ui:47
msgid "Move &Up"
msgstr "移上(&U)"

#. i18n: ectx: property (text), widget (KPushButton, movedown_button)
#: ruleslist.ui:54
msgid "Move &Down"
msgstr "移下(&D)"

#. i18n: ectx: property (text), widget (QPushButton, import_button)
#: ruleslist.ui:91
msgid "&Import"
msgstr "匯入(&I)"

#. i18n: ectx: property (text), widget (QPushButton, export_button)
#: ruleslist.ui:98
msgid "&Export"
msgstr "匯出(&E)"

#: ruleswidget.cpp:61
msgid ""
"Enable this checkbox to alter this window property for the specified window"
"(s)."
msgstr "開啟這個選項來改變這個視窗屬性(可用於多個指定的視窗)。"

#: ruleswidget.cpp:63
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 ""
"指定視窗屬性會如何被影響:<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:78
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:143
msgid "All Desktops"
msgstr "所有桌面"

#: ruleswidget.cpp:152
msgid "All Activities"
msgstr "所有的活動"

#: ruleswidget.cpp:709
#, kde-format
msgid "Settings for %1"
msgstr "%1 的設定"

#: ruleswidget.cpp:711
msgid "Unnamed entry"
msgstr "未命名的項目"

#: ruleswidget.cpp:721
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:751
msgid "Edit Window-Specific Settings"
msgstr "編輯特定視窗的設定"

#: ruleswidget.cpp:776
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:780
msgid "Consult the documentation for more details."
msgstr "查閱文件以獲得詳細資訊。"

#: ruleswidget.cpp:818
msgid "Edit Shortcut"
msgstr "編輯捷徑"

#. i18n: ectx: attribute (title), widget (QWidget, TabPage1)
#: ruleswidgetbase.ui:21
msgid "&Window matching"
msgstr "視窗比對(&W)"

#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: ruleswidgetbase.ui:27
msgid "De&scription:"
msgstr "描述(&S):"

#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: ruleswidgetbase.ui:46
msgid "Window &class (application):"
msgstr "視窗類別(應用程式)(&C):"

#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: ruleswidgetbase.ui:63 ruleswidgetbase.ui:126 ruleswidgetbase.ui:195
#: ruleswidgetbase.ui:248
msgid "Unimportant"
msgstr "不重要"

#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: ruleswidgetbase.ui:68 ruleswidgetbase.ui:131 ruleswidgetbase.ui:200
#: ruleswidgetbase.ui:253
msgid "Exact Match"
msgstr "完全符合"

#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: ruleswidgetbase.ui:73 ruleswidgetbase.ui:136 ruleswidgetbase.ui:205
#: ruleswidgetbase.ui:258
msgid "Substring Match"
msgstr "字串符合"

#. i18n: ectx: property (text), item, widget (KComboBox, wmclass_match)
#. i18n: ectx: property (text), item, widget (KComboBox, role_match)
#. i18n: ectx: property (text), item, widget (KComboBox, title_match)
#. i18n: ectx: property (text), item, widget (KComboBox, machine_match)
#: ruleswidgetbase.ui:78 ruleswidgetbase.ui:141 ruleswidgetbase.ui:210
#: ruleswidgetbase.ui:263
msgid "Regular Expression"
msgstr "正規表示式"

#. i18n: ectx: property (text), widget (KPushButton, edit_reg_wmclass)
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_role)
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_title)
#. i18n: ectx: property (text), widget (KPushButton, edit_reg_machine)
#: ruleswidgetbase.ui:92 ruleswidgetbase.ui:155 ruleswidgetbase.ui:221
#: ruleswidgetbase.ui:274
msgid "Edit"
msgstr "編輯"

#. i18n: ectx: property (text), widget (QCheckBox, whole_wmclass)
#: ruleswidgetbase.ui:102
msgid "Match w&hole window class"
msgstr "符合整個視窗類別(&H)"

#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: ruleswidgetbase.ui:109
msgid "Window &role:"
msgstr "視窗角色(&R):"

#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: ruleswidgetbase.ui:162
msgid "Window &types:"
msgstr "視窗類型(&T):"

#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: ruleswidgetbase.ui:178
msgid "Window t&itle:"
msgstr "視窗標題(&I):"

#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: ruleswidgetbase.ui:231
msgid "&Machine (hostname):"
msgstr "機器(主機名稱)(&M):"

#. i18n: ectx: property (text), widget (KPushButton, detect)
#: ruleswidgetbase.ui:318
msgid "&Detect Window Properties"
msgstr "偵側視窗屬性(&D)"

#. i18n: ectx: property (suffix), widget (QSpinBox, detection_delay)
#: ruleswidgetbase.ui:325
msgid "s delay"
msgstr "秒延遲"

#. i18n: ectx: property (text), item, widget (QListWidget, types)
#: ruleswidgetbase.ui:468
msgid "Unmanaged Window"
msgstr "未管理視窗"

#. i18n: ectx: attribute (title), widget (QWidget, TabPage3)
#: ruleswidgetbase.ui:489
msgid "&Size && Position"
msgstr "大小與位置(&S)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_position)
#: ruleswidgetbase.ui:495
msgid "&Position"
msgstr "位置(&P)"

#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_activity)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoregeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_screen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#: ruleswidgetbase.ui:506 ruleswidgetbase.ui:563 ruleswidgetbase.ui:627
#: ruleswidgetbase.ui:678 ruleswidgetbase.ui:749 ruleswidgetbase.ui:813
#: ruleswidgetbase.ui:881 ruleswidgetbase.ui:932 ruleswidgetbase.ui:983
#: ruleswidgetbase.ui:1034 ruleswidgetbase.ui:1136 ruleswidgetbase.ui:1187
#: ruleswidgetbase.ui:1236 ruleswidgetbase.ui:1291 ruleswidgetbase.ui:1336
#: ruleswidgetbase.ui:1387 ruleswidgetbase.ui:1434 ruleswidgetbase.ui:1535
#: ruleswidgetbase.ui:1557 ruleswidgetbase.ui:1641 ruleswidgetbase.ui:1678
#: ruleswidgetbase.ui:1756 ruleswidgetbase.ui:1812 ruleswidgetbase.ui:1861
#: ruleswidgetbase.ui:1926 ruleswidgetbase.ui:1990 ruleswidgetbase.ui:2035
#: ruleswidgetbase.ui:2101 ruleswidgetbase.ui:2150 ruleswidgetbase.ui:2200
#: ruleswidgetbase.ui:2351 ruleswidgetbase.ui:2373 ruleswidgetbase.ui:2395
msgid "Do Not Affect"
msgstr "不影響"

#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_activity)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoregeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_screen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: ruleswidgetbase.ui:511 ruleswidgetbase.ui:568 ruleswidgetbase.ui:632
#: ruleswidgetbase.ui:683 ruleswidgetbase.ui:754 ruleswidgetbase.ui:818
#: ruleswidgetbase.ui:886 ruleswidgetbase.ui:937 ruleswidgetbase.ui:988
#: ruleswidgetbase.ui:1141 ruleswidgetbase.ui:1341 ruleswidgetbase.ui:1392
#: ruleswidgetbase.ui:1439 ruleswidgetbase.ui:1562 ruleswidgetbase.ui:1646
#: ruleswidgetbase.ui:1683 ruleswidgetbase.ui:1866 ruleswidgetbase.ui:1931
msgid "Apply Initially"
msgstr "初始化套用"

#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_activity)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoregeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_screen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: ruleswidgetbase.ui:516 ruleswidgetbase.ui:573 ruleswidgetbase.ui:637
#: ruleswidgetbase.ui:688 ruleswidgetbase.ui:759 ruleswidgetbase.ui:823
#: ruleswidgetbase.ui:891 ruleswidgetbase.ui:942 ruleswidgetbase.ui:993
#: ruleswidgetbase.ui:1146 ruleswidgetbase.ui:1346 ruleswidgetbase.ui:1397
#: ruleswidgetbase.ui:1444 ruleswidgetbase.ui:1567 ruleswidgetbase.ui:1651
#: ruleswidgetbase.ui:1688 ruleswidgetbase.ui:1871 ruleswidgetbase.ui:1936
msgid "Remember"
msgstr "記住"

#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_activity)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoregeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_screen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#: ruleswidgetbase.ui:521 ruleswidgetbase.ui:578 ruleswidgetbase.ui:642
#: ruleswidgetbase.ui:693 ruleswidgetbase.ui:764 ruleswidgetbase.ui:828
#: ruleswidgetbase.ui:896 ruleswidgetbase.ui:947 ruleswidgetbase.ui:998
#: ruleswidgetbase.ui:1039 ruleswidgetbase.ui:1151 ruleswidgetbase.ui:1192
#: ruleswidgetbase.ui:1241 ruleswidgetbase.ui:1296 ruleswidgetbase.ui:1351
#: ruleswidgetbase.ui:1402 ruleswidgetbase.ui:1449 ruleswidgetbase.ui:1540
#: ruleswidgetbase.ui:1572 ruleswidgetbase.ui:1656 ruleswidgetbase.ui:1693
#: ruleswidgetbase.ui:1761 ruleswidgetbase.ui:1817 ruleswidgetbase.ui:1876
#: ruleswidgetbase.ui:1941 ruleswidgetbase.ui:1995 ruleswidgetbase.ui:2040
#: ruleswidgetbase.ui:2106 ruleswidgetbase.ui:2155 ruleswidgetbase.ui:2205
#: ruleswidgetbase.ui:2356 ruleswidgetbase.ui:2378 ruleswidgetbase.ui:2400
msgid "Force"
msgstr "強制"

#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_activity)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoregeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_screen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#: ruleswidgetbase.ui:526 ruleswidgetbase.ui:583 ruleswidgetbase.ui:647
#: ruleswidgetbase.ui:698 ruleswidgetbase.ui:769 ruleswidgetbase.ui:833
#: ruleswidgetbase.ui:901 ruleswidgetbase.ui:952 ruleswidgetbase.ui:1003
#: ruleswidgetbase.ui:1156 ruleswidgetbase.ui:1356 ruleswidgetbase.ui:1407
#: ruleswidgetbase.ui:1454 ruleswidgetbase.ui:1577 ruleswidgetbase.ui:1661
#: ruleswidgetbase.ui:1698 ruleswidgetbase.ui:1881 ruleswidgetbase.ui:1946
msgid "Apply Now"
msgstr "立刻套用"

#. i18n: ectx: property (text), item, widget (KComboBox, rule_position)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_size)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizehoriz)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maximizevert)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_desktop)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_activity)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fullscreen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minimize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shade)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_placement)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_ignoregeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_minsize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_maxsize)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_strictgeometry)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_screen)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_below)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_shortcut)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroup)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skippager)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skipswitcher)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_skiptaskbar)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupfg)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_autogroupid)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_above)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_noborder)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityactive)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_opacityinactive)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_acceptfocus)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_disableglobalshortcuts)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_type)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_closeable)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_blockcompositing)
#. i18n: ectx: property (text), item, widget (KComboBox, rule_fsplevel)
#: ruleswidgetbase.ui:531 ruleswidgetbase.ui:588 ruleswidgetbase.ui:652
#: ruleswidgetbase.ui:703 ruleswidgetbase.ui:774 ruleswidgetbase.ui:838
#: ruleswidgetbase.ui:906 ruleswidgetbase.ui:957 ruleswidgetbase.ui:1008
#: ruleswidgetbase.ui:1044 ruleswidgetbase.ui:1161 ruleswidgetbase.ui:1197
#: ruleswidgetbase.ui:1246 ruleswidgetbase.ui:1301 ruleswidgetbase.ui:1361
#: ruleswidgetbase.ui:1412 ruleswidgetbase.ui:1459 ruleswidgetbase.ui:1545
#: ruleswidgetbase.ui:1582 ruleswidgetbase.ui:1666 ruleswidgetbase.ui:1703
#: ruleswidgetbase.ui:1766 ruleswidgetbase.ui:1822 ruleswidgetbase.ui:1886
#: ruleswidgetbase.ui:1951 ruleswidgetbase.ui:2000 ruleswidgetbase.ui:2045
#: ruleswidgetbase.ui:2111 ruleswidgetbase.ui:2160 ruleswidgetbase.ui:2210
#: ruleswidgetbase.ui:2361 ruleswidgetbase.ui:2383 ruleswidgetbase.ui:2405
msgid "Force Temporarily"
msgstr "暫時強制"

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

#. i18n: ectx: property (validChars), widget (KRestrictedLine, position)
#. i18n: ectx: property (validChars), widget (KRestrictedLine, size)
#. i18n: ectx: property (validChars), widget (KRestrictedLine, minsize)
#. i18n: ectx: property (validChars), widget (KRestrictedLine, maxsize)
#: ruleswidgetbase.ui:545 ruleswidgetbase.ui:602 ruleswidgetbase.ui:1218
#: ruleswidgetbase.ui:1260
msgid "0123456789-+,xX:"
msgstr "0123456789-+,xX:"

#. i18n: ectx: property (text), widget (QCheckBox, enable_size)
#: ruleswidgetbase.ui:552
msgid "&Size"
msgstr "大小(&S)"

#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, size)
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, minsize)
#. i18n: ectx: property (placeholderText), widget (KRestrictedLine, maxsize)
#: ruleswidgetbase.ui:599 ruleswidgetbase.ui:1215 ruleswidgetbase.ui:1257
msgid "width,height"
msgstr "寬,高"

#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizehoriz)
#: ruleswidgetbase.ui:616
msgid "Maximized &horizontally"
msgstr "橫向最大化(&H)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizevert)
#: ruleswidgetbase.ui:667
msgid "Maximized &vertically"
msgstr "垂直最大化(&V)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_desktop)
#: ruleswidgetbase.ui:738
msgid "&Desktop"
msgstr "桌面(&D)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_activity)
#: ruleswidgetbase.ui:802
msgid "Activit&y"
msgstr "活動(&Y)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_fullscreen)
#: ruleswidgetbase.ui:870
msgid "&Fullscreen"
msgstr "全螢幕(&F)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_minimize)
#: ruleswidgetbase.ui:921
msgid "M&inimized"
msgstr "最小化(&I)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_shade)
#: ruleswidgetbase.ui:972
msgid "Sh&aded"
msgstr "有陰影(&A)"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1056
msgid "Default"
msgstr "預設"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1061
msgid "No Placement"
msgstr "無特定放置"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1066
msgid "Smart"
msgstr "聰明的"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1071
msgid "Maximizing"
msgstr "最大化中"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1076
msgid "Cascade"
msgstr "重疊"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1081
msgid "Centered"
msgstr "置中"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1086
msgid "Random"
msgstr "隨機"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1091
msgid "Top-Left Corner"
msgstr "左上角"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1096
msgid "Under Mouse"
msgstr "在滑鼠下"

#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: ruleswidgetbase.ui:1101
msgid "On Main Window"
msgstr "在主視窗上"

#. i18n: ectx: property (text), widget (QCheckBox, enable_placement)
#: ruleswidgetbase.ui:1112
msgid "Initial p&lacement"
msgstr "初始放置(&L)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_ignoregeometry)
#: ruleswidgetbase.ui:1122
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 ""
"視窗可以要求在特定的位置出現。\n"
"預設它會覆蓋放置位置政策,因為預設的政策可能會造成不必要的彈出視窗出現在螢幕"
"正中央。"

#. i18n: ectx: property (text), widget (QCheckBox, enable_ignoregeometry)
#: ruleswidgetbase.ui:1125
msgid "Ignore requested &geometry"
msgstr "略過要求的大小和位置(&G)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_minsize)
#: ruleswidgetbase.ui:1205
msgid "M&inimum size"
msgstr "大小下限(&I)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_maxsize)
#: ruleswidgetbase.ui:1225
msgid "M&aximum size"
msgstr "大小上限(&A)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_strictgeometry)
#: ruleswidgetbase.ui:1271
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 ""
"例如:終端機或影像播放器可以要求保持特定的大小比例,或是只增長大於一的值。\n"
"(如大於一個字元的大小)。\n"
"這個限制可以避免被任意改變大小成全螢幕。"

#. i18n: ectx: property (text), widget (QCheckBox, enable_strictgeometry)
#: ruleswidgetbase.ui:1277
msgid "Obey geometry restrictions"
msgstr "遵循位置限制"

#. i18n: ectx: property (text), widget (QCheckBox, enable_screen)
#: ruleswidgetbase.ui:1369
msgid "Screen"
msgstr "螢幕"

#. i18n: ectx: attribute (title), widget (QWidget, TabPage4)
#: ruleswidgetbase.ui:1377
msgid "&Arrangement && Access"
msgstr "安排與存取(&A)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skippager)
#: ruleswidgetbase.ui:1420
msgid "Window shall (not) appear in the manager for virtual desktops"
msgstr "不讓視窗出現在虛擬桌面的縮圖中"

#. i18n: ectx: property (text), widget (QCheckBox, enable_skippager)
#: ruleswidgetbase.ui:1423
msgid "Skip pa&ger"
msgstr "不在呼叫器上(&G)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skiptaskbar)
#: ruleswidgetbase.ui:1481
msgid "Window shall (not) appear in the taskbar."
msgstr "不讓視窗出現在工具列中。"

#. i18n: ectx: property (text), widget (QCheckBox, enable_skiptaskbar)
#: ruleswidgetbase.ui:1484
msgid "Skip &taskbar"
msgstr "不在工作列上(&T)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_skipswitcher)
#: ruleswidgetbase.ui:1498
msgid "Window shall (not) appear in the Alt+Tab list"
msgstr "視窗不要出現在 Alt+Tab 切換清單中"

#. i18n: ectx: property (text), widget (QCheckBox, enable_skipswitcher)
#: ruleswidgetbase.ui:1501
msgid "Skip &switcher"
msgstr "跳過切換器(&S)"

#. i18n: ectx: property (text), widget (QPushButton, shortcut_edit)
#: ruleswidgetbase.ui:1511
msgid "Edit..."
msgstr "編輯..."

#. i18n: ectx: property (text), widget (QCheckBox, enable_shortcut)
#: ruleswidgetbase.ui:1627
msgid "Shortcut"
msgstr "捷徑"

#. i18n: ectx: property (text), widget (QCheckBox, enable_above)
#: ruleswidgetbase.ui:1725
msgid "Keep &above"
msgstr "保持在上面(&A)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupfg)
#: ruleswidgetbase.ui:1745
msgid "Autog&roup in foreground"
msgstr "在前景自動群組(&R)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_below)
#: ruleswidgetbase.ui:1788
msgid "Keep &below"
msgstr "保持在下面(&A)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupid)
#: ruleswidgetbase.ui:1843
msgid "Autogroup by I&D"
msgstr "依代碼自動群組在一起(&D)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroup)
#: ruleswidgetbase.ui:1850
msgid "Autogroup with &identical"
msgstr "將完全相同的自動群組在一起(&I)"

#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: ruleswidgetbase.ui:1902
msgid "Appearance && &Fixes"
msgstr "外觀與修復(&F)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_blockcompositing)
#: ruleswidgetbase.ui:1908
msgid "Block compositing"
msgstr "阻擋組合"

#. i18n: ectx: property (text), widget (QCheckBox, enable_noborder)
#: ruleswidgetbase.ui:1915
msgid "&No titlebar and frame"
msgstr "沒有標題列與外框(&N)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityactive)
#: ruleswidgetbase.ui:1966
msgid "A&ctive opacity"
msgstr "啟動不透明度(&C)"

#. i18n: ectx: property (suffix), widget (QSpinBox, opacityactive)
#. i18n: ectx: property (suffix), widget (QSpinBox, opacityinactive)
#: ruleswidgetbase.ui:2011 ruleswidgetbase.ui:2056
#, no-c-format
msgid "%"
msgstr "%"

#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityinactive)
#: ruleswidgetbase.ui:2024
msgid "I&nactive opacity"
msgstr "啟動透明度(&N)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_acceptfocus)
#: ruleswidgetbase.ui:2087
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 ""
"視窗可能會避免在點擊時取得焦點(啟動)。\n"
"反之您也可能希望避免讓視窗在滑鼠點擊時取得焦點。"

#. i18n: ectx: property (text), widget (QCheckBox, enable_acceptfocus)
#: ruleswidgetbase.ui:2090
msgid "Accept &focus"
msgstr "接受焦點(&F)"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_disableglobalshortcuts)
#: ruleswidgetbase.ui:2133
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 ""
"若使用此選項,視窗會在啟動時接受所有鍵盤輸入,包含 Alt+Tab 等。\n"
"特別是該視窗在執行模擬器或虛擬機器時。\n"
"\n"
"警告:\n"
"如此一來,在該視窗啟動時,您就不能使用 Alt+Tab 離開視窗。\n"
"也沒辦法用任何其它的全域捷徑鍵(如按 Alt+F2 叫出 KRunner)。"

#. i18n: ectx: property (text), widget (QCheckBox, enable_disableglobalshortcuts)
#: ruleswidgetbase.ui:2136
msgid "Ignore global shortcuts"
msgstr "忽略全域快捷鍵"

#. i18n: ectx: property (text), widget (QCheckBox, enable_closeable)
#: ruleswidgetbase.ui:2182
msgid "&Closeable"
msgstr "可關閉(&C)"

#. i18n: ectx: property (text), widget (QCheckBox, enable_type)
#: ruleswidgetbase.ui:2189
msgid "Window &type"
msgstr "視窗類型(&T)"

#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: ruleswidgetbase.ui:2417
msgctxt "no focus stealing prevention"
msgid "None"
msgstr "無"

#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: ruleswidgetbase.ui:2422
msgid "Low"
msgstr "低"

#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: ruleswidgetbase.ui:2427
msgid "Normal"
msgstr "正常"

#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: ruleswidgetbase.ui:2432
msgid "High"
msgstr "高"

#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: ruleswidgetbase.ui:2437
msgid "Extreme"
msgstr "極高"

#. i18n: ectx: property (toolTip), widget (QCheckBox, enable_fsplevel)
#: ruleswidgetbase.ui:2449
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 ""
"KWin 會試著在您在別的視窗工作時,讓這個視窗取得焦點,\n"
"但是有時可能會失敗,或是會誤動作。\n"
"「無」會無條件允許視窗取得焦點,「極高」則是會完全避免它取得焦點。"

#. i18n: ectx: property (text), widget (QCheckBox, enable_fsplevel)
#: ruleswidgetbase.ui:2452
msgid "&Focus stealing prevention"
msgstr "防止盜取焦點(&F)"

#~ msgid "Opaque"
#~ msgstr "不透明"

#~ msgid "Transparent"
#~ msgstr "透明"

#~ msgid "&Moving/resizing"
#~ msgstr "移動/重新調整大小(&M)"

#~ msgid "T&iling"
#~ msgstr "鋪排(&I)"

#~ msgid "Tiled"
#~ msgstr "已鋪排"

#~ msgid "Floating"
#~ msgstr "浮動"

#~ msgid "Match Strategy"
#~ msgstr "比對政策"

#~ msgid ""
#~ "For selecting all windows belonging to a specific application, selecting "
#~ "only window class should usually work."
#~ msgstr "要選擇特定應用程式的所有視窗,只需選擇一個視窗類別就行了。"

#~ msgid "Use window &class (whole application)"
#~ msgstr "使用視窗類別(整個應用程式)(&C)"

#~ 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 ""
#~ "要選擇應用程式中某個視窗,您需要一併選擇視窗類別和視窗角色。視窗類別會判別"
#~ "是哪個應用程式,而視窗角色則會判別是當中的哪一個視窗。不過,很多應用程式都"
#~ "沒有提供有用的視窗角色。"

#~ msgid "Use window class and window &role (specific window)"
#~ msgstr "使用視窗類別及視窗角色(特定視窗)(&R)"

#~ 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)應用程式只需使用整個視窗類別就足夠了。因為它們可以設定整個視窗"
#~ "類別來一併包含應用程式和視窗角色。"

#~ msgid "Use &whole window class (specific window)"
#~ msgstr "使用整個視窗類別(特定視窗)(%W)"

#~ msgid "Match also window &title"
#~ msgstr "也符合視窗的標題(&T)"

#~ msgid "Extra role:"
#~ msgstr "額外角色:"

#~ msgid "Window &Extra"
#~ msgstr "視窗額外(&E)"

#~ msgid "&Geometry"
#~ msgstr "大小和位置(&G)"

#~ msgid "&Preferences"
#~ msgstr "偏好設定(&P)"

#~ msgid "&No border"
#~ msgstr "無外框(&N)"

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

#~ msgid "W&orkarounds"
#~ msgstr "替代(&O)"

#~ msgid "Strictly obey geometry"
#~ msgstr "嚴格遵守大小和位置"