~ubuntu-branches/ubuntu/vivid/language-pack-kde-zh-hans-base/vivid

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
#
# Funda Wang <fundawang@linux.net.cn>, 2004,2005.
# Lie Ex <lilith.ex@gmail.com>, 2008, 2009.
# Ni Hui <shuizhuyuanluo@126.com>, 2010.
# FengChao <rainofchaos@gmail.com>, 2011.
# Weng Xuetian <wengxt@gmail.com>, 2011, 2012.
msgid ""
msgstr ""
"Project-Id-Version: kcmkwinrules\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2012-04-12 20:39+0000\n"
"PO-Revision-Date: 2012-04-12 04:06+0000\n"
"Last-Translator: csslayer <Unknown>\n"
"Language-Team: Chinese Simplified <kde-i18n-doc@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-04-18 05:25+0000\n"
"X-Generator: Launchpad (build 15099)\n"
"Language: zh_CN\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 "普通窗口"

#. 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 "桌面"

#. 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 "停靠(面板)"

#. 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 "工具栏"

#. 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 "撕下的菜单"

#. 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 "对话框窗口"

#: detectwidget.cpp:101
msgid "Override Type"
msgstr "覆盖类型"

#. 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 "独立式菜单"

#. 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 "工具窗口"

#. 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 "欢迎屏幕"

#: detectwidget.cpp:110
msgid "Unknown - will be treated as Normal Window"
msgstr "未知 - 将被当作普通窗口"

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

#: kcm.cpp:53
msgid "Window-Specific Settings Configuration Module"
msgstr "窗口特定的设置配置模块"

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

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

#: kcm.cpp:86
msgid ""
"<p><h1>Window-specific Settings</h1> Here you can customize window settings "
"specifically only for some windows.</p> <p>Please note that this "
"configuration will not take effect if you do not use KWin as your window "
"manager. If you do use a different window manager, please refer to its "
"documentation for how to customize window behavior.</p>"
msgstr ""
"<p><h1>窗口特定的设置</h1> 您可在此自定义仅对某些窗口生效的窗口设置。</p><p>请注意,仅当您使用 KWin "
"作为窗口管理器时此配置才会生效。如果您使用不同的窗口管理器,请参考其文档中关于自定义窗口行为的说明。</p>"

#: kcm.cpp:102
msgid "Remember settings separately for every window"
msgstr "记住每个窗口的独立设置"

#: kcm.cpp:103
msgid "Show internal settings for remembering"
msgstr "显示要记住的内部设置"

#: kcm.cpp:104
msgid "Internal setting for remembering"
msgstr "要记住的内部设置"

#: main.cpp:140
#, kde-format
msgid "Application settings for %1"
msgstr "%1 的应用程序设置"

#: main.cpp:160
#, kde-format
msgid "Window settings for %1"
msgstr "%1 的窗口设置"

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

#: main.cpp:240
msgid "KWin helper utility"
msgstr "KWin 助手工具"

#: main.cpp:243
msgid "WId of the window for special window settings."
msgstr "窗口特定设置的窗口编号(WId)。"

#: main.cpp:244
msgid "Whether the settings should affect all windows of the application."
msgstr "此设置是否应用到该应用程序的所有窗口。"

#: main.cpp:253
msgid "This helper utility is not supposed to be called directly."
msgstr "此助手工具不应直接调用。"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "KDE 中国, ,Launchpad Contributions:,Lie Ex,acser,csslayer,nihui"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "kde-china@kde.org,,,lilith.ex@gmail.com,,,"

#. i18n: file: detectwidget.ui:17
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:5
msgid "Information About Selected Window"
msgstr "关于选中窗口的信息"

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

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

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

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

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

#. i18n: file: detectwidget.ui:169
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:23
msgid "Match by primary class name and"
msgstr "匹配使用主要类名称和"

#. 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 "次要类名称(括号中的结果)"

#. 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 "窗口角色(可以用于按功能选择窗口)"

#. 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 "窗口类型(例如所有对话框,但不包括主窗口)"

#. 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 "窗口标题(非常局限,可能因为窗口内容或翻译变化而失败)"

#. 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 ""
"单个快捷键可使用两个按钮轻松指派或清除。您只能使用带有修饰符的快捷键。<p>\n"
"您还可以列出多个可供选择的快捷键,而第一个可用的快捷键将被使用。快捷键应使用以空格区分的快捷键集来指定。一个快捷键集的形式为<i>修饰键</i>+(<i>"
"键列表</i>)。<br>\n"
"例如“<b>Shift+Alt+(123) Shift+Ctrl+(ABC)</b>”将先尝试 "
"<b>Shift+Alt+1</b>,不行的话再依次尝试,直至最后一个 <b>Shift+Ctrl+C</b>。"

#. i18n: file: editshortcut.ui:62
#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#: rc.cpp:43
msgid "&Single Shortcut"
msgstr "单个快捷键(&S)"

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

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

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

#. i18n: file: ruleslist.ui:37
#. i18n: ectx: property (text), widget (KPushButton, delete_button)
#: rc.cpp:55
msgid "Delete"
msgstr "删除"

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

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

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

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

#. i18n: file: ruleswidgetbase.ui:21
#. i18n: ectx: attribute (title), widget (QWidget, TabPage1)
#: rc.cpp:70
msgid "&Window matching"
msgstr "窗口匹配(&W)"

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

#. i18n: file: ruleswidgetbase.ui:46
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:76
msgid "Window &class (application):"
msgstr "窗口类型(应用程序)(&C):"

#. 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 "不重要"

#. 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 "精确匹配"

#. 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 "子串匹配"

#. 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 "正则表达式"

#. 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 "编辑"

#. i18n: file: ruleswidgetbase.ui:102
#. i18n: ectx: property (text), widget (QCheckBox, whole_wmclass)
#: rc.cpp:94
msgid "Match w&hole window class"
msgstr "匹配整个窗口类(&H)"

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

#. i18n: file: ruleswidgetbase.ui:162
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:115
msgid "Window &types:"
msgstr "窗口类型(&T):"

#. i18n: file: ruleswidgetbase.ui:178
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:118
msgid "Window t&itle:"
msgstr "窗口标题(&I):"

#. i18n: file: ruleswidgetbase.ui:231
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:136
msgid "&Machine (hostname):"
msgstr "机器(主机名)(&M):"

#. i18n: file: ruleswidgetbase.ui:318
#. i18n: ectx: property (text), widget (KPushButton, detect)
#: rc.cpp:154
msgid "&Detect Window Properties"
msgstr "检测窗口属性(&D)"

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

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

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

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

#. 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 "不影响"

#. 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 "初始应用"

#. 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 "记住"

#. 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 "强制"

#. 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 "立即应用"

#. 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 "临时强制"

#. 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 "大小(&S)"

#. 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 "宽,高"

#. i18n: file: ruleswidgetbase.ui:616
#. i18n: ectx: property (text), widget (QCheckBox, enable_maximizehoriz)
#: rc.cpp:247
msgid "Maximized &horizontally"
msgstr "水平最大化(&H)"

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

#. i18n: file: ruleswidgetbase.ui:688
#. i18n: ectx: property (text), widget (QCheckBox, enable_fullscreen)
#: rc.cpp:271
msgid "&Fullscreen"
msgstr "全屏(&F)"

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

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

#. i18n: file: ruleswidgetbase.ui:774
#. i18n: ectx: property (text), widget (QCheckBox, enable_shade)
#: rc.cpp:298
msgid "Sh&aded"
msgstr "卷起(&A)"

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

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

#. i18n: file: ruleswidgetbase.ui:873
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:334
msgid "No Placement"
msgstr "无放置"

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

#. i18n: file: ruleswidgetbase.ui:883
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:340
msgid "Maximizing"
msgstr "最大化"

#. i18n: file: ruleswidgetbase.ui:888
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:343
msgid "Cascade"
msgstr "层叠"

#. i18n: file: ruleswidgetbase.ui:893
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:346
msgid "Centered"
msgstr "居中"

#. i18n: file: ruleswidgetbase.ui:898
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:349
msgid "Random"
msgstr "随机"

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

#. i18n: file: ruleswidgetbase.ui:908
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:355
msgid "Under Mouse"
msgstr "鼠标下"

#. i18n: file: ruleswidgetbase.ui:913
#. i18n: ectx: property (text), item, widget (KComboBox, placement)
#: rc.cpp:358
msgid "On Main Window"
msgstr "主窗口"

#. 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 ""
"窗口可以要求在一个特定位置显示。\n"
"默认这将会覆盖位置策略\n"
"这可能会导致窗口滥用此项功能\n"
"使得弹出窗口无限制地显示在屏幕中央。"

#. i18n: file: ruleswidgetbase.ui:927
#. i18n: ectx: property (text), widget (QCheckBox, enable_ignoreposition)
#: rc.cpp:367
msgid "Ignore requested &geometry"
msgstr "忽略请求的几何形状(&G)"

#. i18n: file: ruleswidgetbase.ui:970
#. i18n: ectx: property (text), widget (QCheckBox, enable_maxsize)
#: rc.cpp:379
msgid "M&aximum size"
msgstr "最大大小(&A)"

#. i18n: file: ruleswidgetbase.ui:1181
#. i18n: ectx: property (text), widget (QCheckBox, enable_minsize)
#: rc.cpp:466
msgid "M&inimum size"
msgstr "最小大小(&I)"

#. 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 "例如,终端或者视频"

#. i18n: file: ruleswidgetbase.ui:1224
#. i18n: ectx: property (text), widget (QCheckBox, enable_strictgeometry)
#: rc.cpp:476
msgid "Obey geometry restrictions"
msgstr "服从几何限制"

#. i18n: file: ruleswidgetbase.ui:1257
#. i18n: ectx: attribute (title), widget (QWidget, TabPage4)
#: rc.cpp:488
msgid "&Arrangement && Access"
msgstr "布局和访问(&A)"

#. i18n: file: ruleswidgetbase.ui:1263
#. i18n: ectx: property (text), widget (QCheckBox, enable_above)
#: rc.cpp:491
msgid "Keep &above"
msgstr "保持在上方(&A)"

#. i18n: file: ruleswidgetbase.ui:1314
#. i18n: ectx: property (text), widget (QCheckBox, enable_below)
#: rc.cpp:512
msgid "Keep &below"
msgstr "保持在下方(&B)"

#. i18n: file: ruleswidgetbase.ui:1372
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroup)
#: rc.cpp:533
msgid "Autogroup with &identical"
msgstr "条件自动分组(&I)"

#. i18n: file: ruleswidgetbase.ui:1379
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupfg)
#: rc.cpp:536
msgid "Autog&roup in foreground"
msgstr "前台自动分组(&G)"

#. i18n: file: ruleswidgetbase.ui:1415
#. i18n: ectx: property (text), widget (QCheckBox, enable_autogroupid)
#: rc.cpp:548
msgid "Autogroup by I&D"
msgstr "按照 ID 自动分组(&D)"

#. i18n: file: ruleswidgetbase.ui:1484
#. i18n: ectx: property (text), widget (QCheckBox, enable_tilingoption)
#: rc.cpp:560
msgid "T&iling"
msgstr "平铺(&I)"

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

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

#. 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 "窗口(不)显示在任务栏中。"

#. i18n: file: ruleswidgetbase.ui:1553
#. i18n: ectx: property (text), widget (QCheckBox, enable_skiptaskbar)
#: rc.cpp:581
msgid "Skip &taskbar"
msgstr "跳过任务栏(&T)"

#. 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 "窗口(不)显示在虚拟桌面管理器中。"

#. i18n: file: ruleswidgetbase.ui:1600
#. i18n: ectx: property (text), widget (QCheckBox, enable_skippager)
#: rc.cpp:605
msgid "Skip pa&ger"
msgstr "跳过桌面切换(&G)"

#. 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 "窗口(不)显示在 Alt + Tab 列表中。"

#. i18n: file: ruleswidgetbase.ui:1654
#. i18n: ectx: property (text), widget (QCheckBox, enable_skipswitcher)
#: rc.cpp:629
msgid "Skip &switcher"
msgstr "跳过切换器(&S)"

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

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

#. i18n: file: ruleswidgetbase.ui:1851
#. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:683
msgid "Appearance && &Fixes"
msgstr "外观和修正(&F)"

#. i18n: file: ruleswidgetbase.ui:1857
#. i18n: ectx: property (text), widget (QCheckBox, enable_noborder)
#: rc.cpp:686
msgid "&No titlebar and frame"
msgstr "无标题栏和边框(&N)"

#. i18n: file: ruleswidgetbase.ui:1908
#. i18n: ectx: property (text), widget (QCheckBox, enable_opacityactive)
#: rc.cpp:707
msgid "A&ctive opacity"
msgstr "活动不透明度(&C)"

#. 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)"

#. 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 ""
"窗口自身也许会阻止在被点击时获得焦点 (激活)。\n"
"或者您也许想阻止一个窗口在被点击时激活。"

#. i18n: file: ruleswidgetbase.ui:2032
#. i18n: ectx: property (text), widget (QCheckBox, enable_acceptfocus)
#: rc.cpp:744
msgid "Accept &focus"
msgstr "接受焦点(&F)"

#. 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 ""
"在使用这个选项时,窗口在激活时将会接受所有键盘输入,\n"
"包括 Alt+Tab 等等。这对模拟器或者虚拟机来说很有用。\n"
"\n"
"请注意:\n"
"在窗口激活时,你无法使用 Alt+Tab 来切出窗口,\n"
"也无法使用任何全局快捷键 (例如使用 Alt+F2 来显示\n"
"KRunner) 。"

#. i18n: file: ruleswidgetbase.ui:2078
#. i18n: ectx: property (text), widget (QCheckBox, enable_disableglobalshortcuts)
#: rc.cpp:766
msgid "Ignore global shortcuts"
msgstr "忽略全局快捷键"

#. i18n: file: ruleswidgetbase.ui:2124
#. i18n: ectx: property (text), widget (QCheckBox, enable_closeable)
#: rc.cpp:778
msgid "&Closeable"
msgstr "可关闭(&C)"

#. i18n: file: ruleswidgetbase.ui:2131
#. i18n: ectx: property (text), widget (QCheckBox, enable_type)
#: rc.cpp:781
msgid "Window &type"
msgstr "窗口类型(&T)"

#. i18n: file: ruleswidgetbase.ui:2219
#. i18n: ectx: property (text), widget (QCheckBox, enable_blockcompositing)
#: rc.cpp:820
msgid "Block compositing"
msgstr "阻止混成"

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

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

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

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

#. i18n: file: ruleswidgetbase.ui:2386
#. i18n: ectx: property (text), item, widget (KComboBox, fsplevel)
#: rc.cpp:862
msgid "Extreme"
msgstr "额外"

#. 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 ""
"当您正在其他窗口工作时,KWin 会尝试阻止其\n"
"他窗口抢夺焦点 (“激活”) 。但这有时可能会\n"
"失效或者保护过度。\n"
"“无” 将无条件的让这个窗口获得焦点,\n"
"“额外” 将完全阻止它抢夺焦点。"

#. i18n: file: ruleswidgetbase.ui:2401
#. i18n: ectx: property (text), widget (QCheckBox, enable_fsplevel)
#: rc.cpp:872
msgid "&Focus stealing prevention"
msgstr "避免失去焦点(&F)"

#. i18n: file: ruleswidgetbase.ui:2441
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:884
msgid "Opaque"
msgstr "不透明度"

#. i18n: file: ruleswidgetbase.ui:2446
#. i18n: ectx: property (text), item, widget (KComboBox, moveresizemode)
#: rc.cpp:887
msgid "Transparent"
msgstr "透明"

#. i18n: file: ruleswidgetbase.ui:2454
#. i18n: ectx: property (text), widget (QCheckBox, enable_moveresizemode)
#: rc.cpp:890
msgid "&Moving/resizing"
msgstr "移动/大小(&M)"

#: ruleslist.cpp:155
msgid "Export Rule"
msgstr "导出规则"

#: ruleslist.cpp:166
msgid "Import Rules"
msgstr "导入规则"

#: ruleswidget.cpp:57
msgid ""
"Enable this checkbox to alter this window property for the specified "
"window(s)."
msgstr "启用此框可为特定窗口更换此窗口属性。"

#: ruleswidget.cpp:59
msgid ""
"Specify how the window property should be affected:<ul><li><em>Do Not "
"Affect:</em> The window property will not be affected and therefore the "
"default handling for it will be used. Specifying this will block more "
"generic window settings from taking effect.</li><li><em>Apply "
"Initially:</em> The window property will be only set to the given value "
"after the window is created. No further changes will be "
"affected.</li><li><em>Remember:</em> The value of the window property will "
"be remembered and every time 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>立即应用:</e"
"m>窗口属性将立即被设定为给定值,以后不再生效(因此此操作也将被删除)。</li><li><em>临时强制:</em>窗口属性将被强制设定为给定值,直至隐"
"藏该窗口(隐藏此窗口后此操作将被删除)。</li></ul>"

#: ruleswidget.cpp:74
msgid ""
"Specify how the window property should be affected:<ul><li><em>Do Not "
"Affect:</em> The window property will not be affected and therefore the "
"default handling for it will be used. Specifying this will block more "
"generic window settings from taking effect.</li><li><em>Force:</em> The "
"window property will be always forced to the given value.</li><li><em>Force "
"temporarily:</em> The window property will be forced to the given value "
"until it is hidden (this action will be deleted after the window is "
"hidden).</li></ul>"
msgstr ""
"指定窗口属性应受何影响:<ul><li><em>不影响:</em>窗口属性不受影响,因此将使用默认句柄操作。指定此选项将使得更通用的窗口设置无法生效。</"
"li><li><em>强制:</em>窗口属性将总是强制为给定值。</li><li><em>临时强制:</em>窗口属性将被强制设定为给定值,直至隐藏该窗"
"口(隐藏此窗口后此操作将被删除)。</li></ul>"

#: ruleswidget.cpp:133
msgid "All Desktops"
msgstr "全部桌面"

#: ruleswidget.cpp:680
#, kde-format
msgid "Settings for %1"
msgstr "%1 的设置"

#: ruleswidget.cpp:682
msgid "Unnamed entry"
msgstr "未命名项"

#: 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 ""
"您为窗口类指定了不重要。\n"
"这意味着设置将可能应用到全部应用程序的窗口中。如果您真的想要创建通用设置的话,推荐您至少限制一种窗口类型,以避免特殊的窗口类型。"

#: ruleswidget.cpp:722
msgid "Edit Window-Specific Settings"
msgstr "编辑窗口的特定设置"

#: 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 "此配置对话框允许只更改选中窗口或应用程序的设置。查找您想要影响的设置,使用复选框启用设置,选择设置应影响的方式以及应影响的值。"

#: ruleswidget.cpp:751
msgid "Consult the documentation for more details."
msgstr "请查看文档中的更多信息。"

#: ruleswidget.cpp:789
msgid "Edit Shortcut"
msgstr "编辑快捷键"