-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathResources.resw
More file actions
3002 lines (2991 loc) · 195 KB
/
Copy pathResources.resw
File metadata and controls
3002 lines (2991 loc) · 195 KB
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
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AddProfile_AddNewTextBlock.Text" xml:space="preserve">
<value>新的空白設定檔</value>
<comment>Button label that creates a new profile with default settings.</comment>
</data>
<data name="AddProfile_Duplicate.Header" xml:space="preserve">
<value>複製設定檔</value>
<comment>This is the header for a control that lets the user duplicate one of their existing profiles.</comment>
</data>
<data name="AddProfile_DuplicateTextBlock.Text" xml:space="preserve">
<value>複製</value>
<comment>Button label that duplicates the selected profile and navigates to the duplicate's page.</comment>
</data>
<data name="ColorScheme_InboxSchemeDuplicate.Header" xml:space="preserve">
<value>此色彩配置是內建設定或已安裝擴充功能的一部分</value>
</data>
<data name="ColorScheme_InboxSchemeDuplicate.HelpText" xml:space="preserve">
<value>若要變更此色彩配置,您必須製作色彩配置的複本。</value>
</data>
<data name="ColorScheme_DuplicateButton.Content" xml:space="preserve">
<value>建立複本</value>
<comment>This is a call to action; the user can click the button to make a copy of the current color scheme.</comment>
</data>
<data name="ColorScheme_SetAsDefault.Header" xml:space="preserve">
<value>將色彩配置設為預設</value>
<comment>This is the header for a control that allows the user to set the currently selected color scheme as their default.</comment>
</data>
<data name="ColorScheme_SetAsDefault.HelpText" xml:space="preserve">
<value>根據預設,將此色彩配置套用至您的所有設定檔。個別設定檔仍然可以選取各自的色彩配置。</value>
<comment>A description explaining how this control changes the user's default color scheme.</comment>
</data>
<data name="ColorScheme_Rename.Header" xml:space="preserve">
<value>重新命名色彩配置</value>
<comment>This is the header for a control that allows the user to rename the currently selected color scheme.</comment>
</data>
<data name="ColorScheme_Background.Text" xml:space="preserve">
<value>背景</value>
<comment>This is the header for a control that lets the user select the background color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Black.Text" xml:space="preserve">
<value>黑色</value>
<comment>This is the header for a control that lets the user select the black color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Blue.Text" xml:space="preserve">
<value>藍色</value>
<comment>This is the header for a control that lets the user select the blue color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightBlack.Text" xml:space="preserve">
<value>亮黑色</value>
<comment>This is the header for a control that lets the user select the bright black color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightBlue.Text" xml:space="preserve">
<value>亮藍色</value>
<comment>This is the header for a control that lets the user select the bright blue color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightCyan.Text" xml:space="preserve">
<value>亮藍綠色</value>
<comment>This is the header for a control that lets the user select the bright cyan color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightGreen.Text" xml:space="preserve">
<value>亮綠色</value>
<comment>This is the header for a control that lets the user select the bright green color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightPurple.Text" xml:space="preserve">
<value>亮紫色</value>
<comment>This is the header for a control that lets the user select the bright purple color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightRed.Text" xml:space="preserve">
<value>亮紅色</value>
<comment>This is the header for a control that lets the user select the bright red color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightWhite.Text" xml:space="preserve">
<value>亮白色</value>
<comment>This is the header for a control that lets the user select the bright white color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_BrightYellow.Text" xml:space="preserve">
<value>亮黃</value>
<comment>This is the header for a control that lets the user select the bright yellow color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_CursorColor.Text" xml:space="preserve">
<value>游標色彩</value>
<comment>This is the header for a control that lets the user select the text cursor's color displayed on the screen.</comment>
</data>
<data name="ColorScheme_Cyan.Text" xml:space="preserve">
<value>青色</value>
<comment>This is the header for a control that lets the user select the cyan color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Foreground.Text" xml:space="preserve">
<value>前景</value>
<comment>This is the header for a control that lets the user select the foreground color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Green.Text" xml:space="preserve">
<value>綠色</value>
<comment>This is the header for a control that lets the user select the green color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Purple.Text" xml:space="preserve">
<value>紫色</value>
<comment>This is the header for a control that lets the user select the purple color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_SelectionBackground.Text" xml:space="preserve">
<value>選取背景</value>
<comment>This is the header for a control that lets the user select the background color for selected text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Red.Text" xml:space="preserve">
<value>紅色</value>
<comment>This is the header for a control that lets the user select the red color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_White.Text" xml:space="preserve">
<value>白色</value>
<comment>This is the header for a control that lets the user select the white color for text displayed on the screen.</comment>
</data>
<data name="ColorScheme_Yellow.Text" xml:space="preserve">
<value>黃色</value>
<comment>This is the header for a control that lets the user select the yellow color for text displayed on the screen.</comment>
</data>
<data name="Globals_Language.Header" xml:space="preserve">
<value>語言 (需要重新啟動)</value>
<comment>The header for a control allowing users to choose the app's language.</comment>
</data>
<data name="Globals_Language.HelpText" xml:space="preserve">
<value>選取應用程式的顯示語言。這將會覆寫您的預設 Windows 介面語言。</value>
<comment>A description explaining how this control changes the app's language. {Locked="Windows"}</comment>
</data>
<data name="Globals_LanguageDefault" xml:space="preserve">
<value>預設</value>
<comment>The app contains a control allowing users to choose the app's language. If this value is chosen, the language preference list of the system settings is used instead.</comment>
</data>
<data name="Globals_DefaultInputScope.Header" xml:space="preserve">
<value>預設 IME 輸入模式</value>
<comment>The "input scope" of an IME tells it what type of characters should be available for input. A Chinese IME for instance may show English letters instead of Chinese ones. It's a technical term. We're using "input mode" instead of "input scope" to make it easier to understand for users.</comment>
</data>
<data name="Globals_DefaultInputScope.HelpText" xml:space="preserve">
<value>通知 IME 預設使用的語言。對於依賴 IME 且預設不使用拉丁字元的語言,此設定可用來強制啟動英文輸入。</value>
</data>
<data name="Globals_DefaultInputScopeDefault.Content" xml:space="preserve">
<value>預設</value>
</data>
<data name="Globals_DefaultInputScopeAlphanumericHalfWidth.Content" xml:space="preserve">
<value>英數字元半寬 (英文)</value>
</data>
<data name="Globals_AlwaysShowTabs.Header" xml:space="preserve">
<value>永遠顯示索引標籤</value>
<comment>Header for a control to toggle if the app should always show the tabs (similar to a website browser).</comment>
</data>
<data name="Globals_AlwaysShowTabs.HelpText" xml:space="preserve">
<value>若停用,建立新索引標籤時,將會顯示索引標籤列。當 [隱藏標題列] 開啟時,無法停用。</value>
<comment>A description for what the "always show tabs" setting does. Presented near "Globals_AlwaysShowTabs.Header". This setting cannot be disabled while "Globals_ShowTitlebar.Header" is enabled.</comment>
</data>
<data name="Globals_NewTabPosition.Header" xml:space="preserve">
<value>新建立索引標籤的位置</value>
<comment>Header for a control to select position of newly created tabs.</comment>
</data>
<data name="Globals_NewTabPosition.HelpText" xml:space="preserve">
<value>指定新索引標籤在索引標籤列中出現的位置。</value>
<comment>A description for what the "Position of newly created tabs" setting does.</comment>
</data>
<data name="Globals_NewTabPositionAfterLastTab.Content" xml:space="preserve">
<value>在最後一個索引標籤之後</value>
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the last tab.</comment>
</data>
<data name="Globals_NewTabPositionAfterCurrentTab.Content" xml:space="preserve">
<value>在目前索引標籤之後</value>
<comment>An option to choose from for the "Position of newly created tabs" setting. When selected new tab appears after the current tab.</comment>
</data>
<data name="Globals_CopyOnSelect.Header" xml:space="preserve">
<value>自動將選取項目複製到剪貼簿</value>
<comment>Header for a control to toggle whether selected text should be copied to the clipboard automatically, or not.</comment>
</data>
<data name="Globals_DetectURLs.Header" xml:space="preserve">
<value>自動偵測 URL 並使連結可點選</value>
<comment>Header for a control to toggle whether the terminal should automatically detect URLs and make them clickable, or not.</comment>
</data>
<data name="Globals_SearchWebDefaultQueryUrl.Header" xml:space="preserve">
<value>用於「搜尋 Web」動作的預設 URL</value>
<comment>Header for a control to set the query URL when using the "search web" action.</comment>
</data>
<data name="Globals_SearchWebDefaultQueryUrl.HelpText" xml:space="preserve">
<value>預留位置 "%s" 將以搜尋查詢取代。</value>
<comment>{Locked="%s"} Additional text presented near "Globals_SearchWebDefaultQueryUrl.Header".</comment>
</data>
<data name="Globals_TrimBlockSelection.Header" xml:space="preserve">
<value>移除矩形選取範圍中的尾端空白區域</value>
<comment>Header for a control to toggle whether a text selected with block selection should be trimmed of white spaces when copied to the clipboard, or not.</comment>
</data>
<data name="Globals_TrimPaste.Header" xml:space="preserve">
<value>貼上時移除尾端空白字元</value>
<comment>Header for a control to toggle whether pasted text should be trimmed of white spaces, or not.</comment>
</data>
<data name="Globals_DefaultProfile.Header" xml:space="preserve">
<value>預設設定檔</value>
<comment>Header for a control to select your default profile from the list of profiles you've created.</comment>
</data>
<data name="Globals_DefaultProfile.HelpText" xml:space="preserve">
<value>按一下 '+' 圖示或輸入新索引標籤的按鍵繫結時所開啟的設定檔。</value>
<comment>A description for what the default profile is and when it's used.</comment>
</data>
<data name="Globals_DefaultTerminal.Header" xml:space="preserve">
<value>預設終端應用程式</value>
<comment>Header for a drop down that permits the user to select which installed Terminal application will launch when command line tools like CMD are run from the Windows Explorer run box or start menu or anywhere else that they do not already have a graphical window assigned.</comment>
</data>
<data name="Globals_DefaultTerminal.HelpText" xml:space="preserve">
<value>當執行命令列應用程式且不使用現有工作模式而啟動的終端機應用程式 (例如從 [開始] 功能表或 [執行] 對話方塊)。</value>
<comment>A description to clarify that the dropdown choice for default terminal will tell the operating system which Terminal application (Intelligent Terminal, the preview build, the legacy inbox window, or a 3rd party one) to use when starting a command line tool like CMD or Powershell that does not already have a window.</comment>
</data>
<data name="Globals_GraphicsAPI.Header" xml:space="preserve">
<value>圖形 API</value>
<comment>This text is shown next to a list of choices.</comment>
</data>
<data name="Globals_GraphicsAPI.HelpText" xml:space="preserve">
<value>Direct3D 11 提供更具效能且功能更豐富的體驗,而 Direct2D 則較穩定。預設選項 [自動] 會挑選最適合您圖形硬體的 API。如果您遇到重大問題,請考慮使用 Direct2D。</value>
</data>
<data name="Globals_GraphicsAPI_Automatic.Text" xml:space="preserve">
<value>自動</value>
<comment>The default choice between multiple graphics APIs.</comment>
</data>
<data name="Globals_GraphicsAPI_Direct2d.Text" xml:space="preserve">
<value>Direct2D</value>
</data>
<data name="Globals_GraphicsAPI_Direct3d11.Text" xml:space="preserve">
<value>Direct3D 11</value>
</data>
<data name="Globals_DisablePartialInvalidation.Header" xml:space="preserve">
<value>停用部分 [交換鏈結] 失效</value>
<comment>"Swap Chain" is an official technical term by Microsoft. This text is shown next to a toggle.</comment>
</data>
<data name="Globals_DisablePartialInvalidation.HelpText" xml:space="preserve">
<value>根據預設,文字轉譯器會使用 FLIP_SEQUENTIAL 交換鏈結,並透過 Present1 API 宣告變更的矩形。啟用此設定時,將改為使用 FLIP_DISCARD 交換鏈結,而且不會宣告任何已變更的矩形。一個或另一個比較好取決於您的硬體和各種其他因素。</value>
<comment>{Locked="Present1","FLIP_DISCARD","FLIP_SEQUENTIAL"}</comment>
</data>
<data name="Globals_SoftwareRendering.Header" xml:space="preserve">
<value>使用軟體呈現 (WARP)</value>
<comment>{Locked="WARP"} WARP is the "Windows Advanced Rasterization Platform". This text is shown next to a toggle.</comment>
</data>
<data name="Globals_SoftwareRendering.HelpText" xml:space="preserve">
<value>啟用時,終端機將使用軟體點陣器 (WARP)。在幾乎所有情況下,此設定都應該保留停用。</value>
<comment>{Locked="WARP"} WARP is the "Windows Advanced Rasterization Platform".</comment>
</data>
<data name="Globals_TextMeasurement.Header" xml:space="preserve">
<value>文字測量模式</value>
<comment>This text is shown next to a list of choices.</comment>
</data>
<data name="Globals_TextMeasurement.HelpText" xml:space="preserve">
<value>這會變更內送文字群組到儲存格的方式。[Grapheme 叢集] 選項是最新式且更正確的 Unicode 方法,而 “wcswidth” 是 UNIX 的常見方法,而 [Windows 控制台] 則會復寫它在 Windows 上運作的方式。變更此設定需要重新啟動智慧終端機,且只適用於從其中啟動的應用程式。</value>
</data>
<data name="Globals_TextMeasurement_Graphemes.Text" xml:space="preserve">
<value>Grapheme 叢集</value>
<comment>The default choice between multiple graphics APIs.</comment>
</data>
<data name="Globals_TextMeasurement_Wcswidth.Text" xml:space="preserve">
<value>wcswidth</value>
<comment>{Locked="wcswidth"}</comment>
</data>
<data name="Globals_TextMeasurement_Console.Text" xml:space="preserve">
<value>Windows 主控台</value>
</data>
<data name="Globals_AmbiguousWidth.Header" xml:space="preserve">
<value>模糊字元寬度</value>
<comment>A label for a drop down selector, referring to the East Asian Ambiguous Width Unicode specification.</comment>
</data>
<data name="Globals_AmbiguousWidth.HelpText" xml:space="preserve">
<value>設定東亞模糊字元的寬度。「窄」(預設) 以相容性為優先,而「寬」則以多數中日韓字型的可讀性為優先。在「寬」模式下,部分應用程式可能無法正常運作,導致游標移動異常。變更此設定後,需重新啟動 智慧終端機,且僅適用於從 智慧終端機內啟動的應用程式。</value>
</data>
<data name="Globals_AmbiguousWidth_Narrow.Text" xml:space="preserve">
<value>窄</value>
<comment>As in "narrow width". Refers to the East Asian Ambiguous Width Unicode specification.</comment>
</data>
<data name="Globals_AmbiguousWidth_Wide.Text" xml:space="preserve">
<value>寬</value>
<comment>As in "wide width". Refers to the East Asian Ambiguous Width Unicode specification.</comment>
</data>
<data name="Globals_InitialCols.Text" xml:space="preserve">
<value>欄</value>
<comment>Header for a control to choose the number of columns in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialRows.Text" xml:space="preserve">
<value>列</value>
<comment>Header for a control to choose the number of rows in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialColsBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>初始資料行</value>
<comment>Name for a control to choose the number of columns in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialRowsBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>初始資料列</value>
<comment>Name for a control to choose the number of rows in the terminal's text grid.</comment>
</data>
<data name="Globals_InitialPosXBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>X 位置</value>
<comment>Name for a control to choose the X coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosXBox.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>輸入 X 座標的值。</value>
<comment>Tooltip for the control that allows the user to choose the X coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosXBox.PlaceholderText" xml:space="preserve">
<value>X</value>
<comment>The string to be displayed when there is no current value in the x-coordinate number box.</comment>
</data>
<data name="Globals_InitialPosYBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>Y 位置</value>
<comment>Name for a control to choose the Y coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosYBox.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>輸入 Y 座標的值。</value>
<comment>Tooltip for the control that allows the user to choose the Y coordinate of the terminal's starting position.</comment>
</data>
<data name="Globals_InitialPosYBox.PlaceholderText" xml:space="preserve">
<value>Y</value>
<comment>The string to be displayed when there is no current value in the y-coordinate number box.</comment>
</data>
<data name="Globals_DefaultLaunchPositionCheckbox.Content" xml:space="preserve">
<value>讓 Windows 決定</value>
<comment>A checkbox for the "launch position" setting. Toggling this control sets the launch position to whatever the Windows operating system decides.</comment>
</data>
<data name="Globals_DefaultLaunchPositionCheckbox.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>如果啟用,請使用系統預設啟動位置。</value>
<comment>A description for what the "default launch position" checkbox does. Presented near "Globals_DefaultLaunchPositionCheckbox".</comment>
</data>
<data name="Globals_FirstWindowPreference.Header" xml:space="preserve">
<value>終端機啟動時</value>
<comment>Header for a control to select how the terminal should load its first window.</comment>
</data>
<data name="Globals_FirstWindowPreference.HelpText" xml:space="preserve">
<value>建立第一個終端機時應顯示的內容。</value>
</data>
<data name="Globals_FirstWindowPreferenceDefaultProfile.Content" xml:space="preserve">
<value>開啟具有預設設定的索引標籤</value>
<comment>An option to choose from for the "First window preference" setting. Open the default profile.</comment>
</data>
<data name="Globals_FirstWindowPreferencePersistedWindowLayout.Content" xml:space="preserve">
<value>從上一個工作階段開啟視窗</value>
<comment>An option to choose from for the "First window preference" setting. Reopen the layouts from the last session.</comment>
</data>
<data name="Globals_FirstWindowPreferencePersistedLayoutAndContent.Content" xml:space="preserve">
<value>還原視窗版面配置與內容</value>
<comment>An option to choose from for the "First window preference" setting. Reopen the layouts from the last session and preserve the content.</comment>
</data>
<data name="Globals_FirstWindowPreferencePersistedLayout.Content" xml:space="preserve">
<value>還原視窗版面配置</value>
<comment>An option to choose from for the "First window preference" setting. Reopen the layouts from the last session, but don't preserve the content.</comment>
</data>
<data name="Globals_LaunchParameters.Header" xml:space="preserve">
<value>啟動參數</value>
<comment>Header for a set of settings that determine how terminal launches. These settings include the launch mode, launch position and whether the terminal should center itself on launch.</comment>
</data>
<data name="Globals_LaunchParameters.HelpText" xml:space="preserve">
<value>控制終端機啟動方式的設定</value>
<comment>A description for what the "launch parameters" expander contains. Presented near "Globals_LaunchParameters.Header".</comment>
</data>
<data name="Globals_LaunchModeSetting.Text" xml:space="preserve">
<value>啟動模式</value>
<comment>Header for a control to select what mode to launch the terminal in.</comment>
</data>
<data name="Globals_LaunchModeSetting.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>啟動時終端機的顯示方式。焦點將會隱藏索引標籤和標題列。</value>
<comment>'Focus' must match <Globals_LaunchModeFocus.Content>.</comment>
</data>
<data name="Globals_LaunchModeDefault.Content" xml:space="preserve">
<value>預設</value>
<comment>An option to choose from for the "launch mode" setting. Default option.</comment>
</data>
<data name="Globals_LaunchModeFullscreen.Content" xml:space="preserve">
<value>全螢幕</value>
<comment>An option to choose from for the "launch mode" setting. Opens the app in a full screen state.</comment>
</data>
<data name="Globals_LaunchModeMaximized.Content" xml:space="preserve">
<value>最大化</value>
<comment>An option to choose from for the "launch mode" setting. Opens the app maximized (covers the whole screen).</comment>
</data>
<data name="Globals_WindowingBehavior.Header" xml:space="preserve">
<value>新執行個體行為</value>
<comment>Header for a control to select how new app instances are handled.</comment>
</data>
<data name="Globals_WindowingBehavior.HelpText" xml:space="preserve">
<value>控制新的終端機執行個體附加到現有視窗的方式。</value>
<comment>A description for what the "windowing behavior" setting does. Presented near "Globals_WindowingBehavior.Header".</comment>
</data>
<data name="Globals_WindowingBehaviorUseNew.Content" xml:space="preserve">
<value>建立新的視窗</value>
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances create a new window.</comment>
</data>
<data name="Globals_WindowingBehaviorUseAnyExisting.Content" xml:space="preserve">
<value>附加到最近使用的視窗</value>
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window.</comment>
</data>
<data name="Globals_WindowingBehaviorUseExisting.Content" xml:space="preserve">
<value>附加到此桌面最近使用的視窗</value>
<comment>An option to choose from for the "windowing behavior" setting. When selected, new instances open in the most recently used window on this virtual desktop.</comment>
</data>
<data name="Globals_ShowTitlebar.Header" xml:space="preserve">
<value>隱藏標題列 (需要重新啟動)</value>
<comment>Header for a control to toggle whether or not the title bar should be shown. Changing this setting requires the user to relaunch the app.</comment>
</data>
<data name="Globals_ShowTitlebar.HelpText" xml:space="preserve">
<value>停用時,標題列會出現在索引標籤上方。</value>
<comment>A description for what the "show titlebar" setting does. Presented near "Globals_ShowTitlebar.Header".</comment>
</data>
<data name="Globals_AcrylicTabRow.Header" xml:space="preserve">
<value>在索引標籤列中使用壓克力材料</value>
<comment>Header for a control to toggle whether "acrylic material" is used. "Acrylic material" is a Microsoft-specific term: https://docs.microsoft.com/en-us/windows/apps/design/style/acrylic</comment>
</data>
<data name="Globals_ShowTitleInTitlebar.Header" xml:space="preserve">
<value>使用作用中的終端機標題做為應用程式標題</value>
<comment>Header for a control to toggle whether the terminal's title is shown as the application title, or not.</comment>
</data>
<data name="Globals_ShowTitleInTitlebar.HelpText" xml:space="preserve">
<value>停用時,標題列會是 [智慧終端機]。</value>
<comment>A description for what the "show title in titlebar" setting does. Presented near "Globals_ShowTitleInTitlebar.Header".{Locked="Windows"}</comment>
</data>
<data name="Globals_SnapToGridOnResize.Header" xml:space="preserve">
<value>將視窗大小調整為字元格線</value>
<comment>Header for a control to toggle whether the terminal snaps the window to the character grid when resizing, or not.</comment>
</data>
<data name="Globals_SnapToGridOnResize.HelpText" xml:space="preserve">
<value>停用時,視窗將會順暢地調整大小。</value>
<comment>A description for what the "snap to grid on resize" setting does. Presented near "Globals_SnapToGridOnResize.Header".</comment>
</data>
<data name="Globals_StartOnUserLogin.Header" xml:space="preserve">
<value>在電腦啟動時啟動</value>
<comment>Header for a control to toggle whether the app should launch when the user's machine starts up, or not.</comment>
</data>
<data name="Globals_StartOnUserLogin.HelpText" xml:space="preserve">
<value>當您登入Windows時,會自動啟動終端機。</value>
<comment>A description for what the "start on user login" setting does. Presented near "Globals_StartOnUserLogin.Header". {Locked="Windows"}</comment>
</data>
<data name="Globals_CenterOnLaunchCentered" xml:space="preserve">
<value>置中對齊</value>
<comment>Shorthand, explanatory text displayed when the user has enabled the feature indicated by "Globals_CenterOnLaunch.Text".</comment>
</data>
<data name="Globals_CenterOnLaunch.Text" xml:space="preserve">
<value>啟動時置中</value>
<comment>Header for a control to toggle whether the app should launch in the center of the screen, or not.</comment>
</data>
<data name="Globals_CenterOnLaunch.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>啟用後,啟動時視窗將位於螢幕中央。</value>
<comment>A description for what the "center on launch" setting does. Presented near "Globals_CenterOnLaunch.Header".</comment>
</data>
<data name="Globals_AlwaysOnTop.Header" xml:space="preserve">
<value>最上層顯示</value>
<comment>Header for a control to toggle if the app will always be presented on top of other windows, or is treated normally (when disabled).</comment>
</data>
<data name="Profile_ForceVTInput.Header" xml:space="preserve">
<value>使用舊版輸入編碼</value>
<comment>Header for a control to toggle legacy input encoding for the terminal.</comment>
</data>
<data name="Profile_AllowKittyKeyboardMode.Header" xml:space="preserve">
<value>允許 Kitty 鍵盤通訊協定</value>
<comment>{Locked="Kitty"}Kitty is a moniker and its Keyboard Protocol is a protocol specification.</comment>
</data>
<data name="Profile_AllowVtChecksumReport.Header" xml:space="preserve">
<value>允許 DECRQCRA (Request Checksum of Rectangular Area)</value>
<comment>{Locked="DECRQCRA"}{Locked="Request Checksum of Rectangular Area"}Header for a control to toggle support for the DECRQCRA control sequence.</comment>
</data>
<data name="Profile_AllowVtClipboardWrite.Header" xml:space="preserve">
<value>允許 OSC 52 (Manipulate Selection Data) 寫入剪貼簿</value>
<comment>{Locked="OSC 52"}{Locked="Manipulate Selection Data"}Header for a control to toggle support for applications to change the contents of the Windows system clipboard.</comment>
</data>
<data name="Profile_AllowOscNotifications.Header" xml:space="preserve">
<value>允許 OSC 777 (Desktop Notification) 顯示快顯通知</value>
<comment>{Locked="OSC 777"}{Locked="Desktop Notification"}Header for a control to toggle support for applications to display desktop toast notifications via the OSC 777 escape sequence.</comment>
</data>
<data name="Profile_AllowOscNotifications.HelpText" xml:space="preserve">
<value>啟用時,應用程式可以傳送 OSC 777 逸出序列,以觸發具有自訂標題和本文的桌面通知。</value>
<comment>{Locked="OSC 777"}Help text for the OSC 777 desktop notification toggle.</comment>
</data>
<data name="Globals_AllowHeadless.Header" xml:space="preserve">
<value>允許 智慧終端機 在背景執行</value>
<comment>Header for a control to toggle support for Intelligent Terminal to run in the background.</comment>
</data>
<data name="Globals_DebugFeaturesEnabled.Header" xml:space="preserve">
<value>啟用偵錯功能</value>
<comment>Header for a control to toggle debug features.</comment>
</data>
<data name="Globals_AlwaysOnTop.HelpText" xml:space="preserve">
<value>終端機永遠是桌面最上方的視窗。</value>
<comment>A description for what the "always on top" setting does. Presented near "Globals_AlwaysOnTop.Header".</comment>
</data>
<data name="Profile_ForceVTInput.HelpText" xml:space="preserve">
<value>啟用此設定時,某些應用程式中的某些鍵盤輸入可能會停止正常運作。</value>
<comment>Additional description for what the "force vt input" setting does. Presented near "Globals_ForceVTInput.Header".</comment>
</data>
<data name="Globals_AllowHeadless.HelpText" xml:space="preserve">
<value>這可允許全域傳送與「受擷取模式」等動作運作,即使沒有開啟視窗也可運作。</value>
<comment>Additional description for what the "allow headless" setting does. Presented near "Globals_AllowHeadless.Header".</comment>
</data>
<data name="Globals_TabWidthMode.Header" xml:space="preserve">
<value>索引標籤寬度模式</value>
<comment>Header for a control to choose how wide the tabs are.</comment>
</data>
<data name="Globals_TabWidthMode.HelpText" xml:space="preserve">
<value>精簡會將非使用中索引標籤縮小成圖示的大小。</value>
<comment>A description for what the "tab width mode" setting does. Presented near "Globals_TabWidthMode.Header". 'Compact' must match the value for <Globals_TabWidthModeCompact.Content>.</comment>
</data>
<data name="Globals_TabWidthModeCompact.Content" xml:space="preserve">
<value>精簡</value>
<comment>An option to choose from for the "tab width mode" setting. When selected, unselected tabs collapse to show only their icon. The selected tab adjusts to display the content within the tab.</comment>
</data>
<data name="Globals_TabWidthModeEqual.Content" xml:space="preserve">
<value>等寬</value>
<comment>An option to choose from for the "tab width mode" setting. When selected, each tab has the same width.</comment>
</data>
<data name="Globals_TabWidthModeTitleLength.Content" xml:space="preserve">
<value>標題長度</value>
<comment>An option to choose from for the "tab width mode" setting. When selected, each tab adjusts its width to the content within the tab.</comment>
</data>
<data name="Globals_Theme.Header" xml:space="preserve">
<value>應用程式佈景主題</value>
<comment>Header for a control to choose the theme colors used in the app.</comment>
</data>
<data name="Globals_ThemeDark.Content" xml:space="preserve">
<value>深色</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in dark theme and darker colors are used throughout the app.</comment>
</data>
<data name="Globals_ThemeSystem.Content" xml:space="preserve">
<value>使用 Windows 佈景主題</value>
<comment>An option to choose from for the "theme" setting. When selected, the app uses the theme selected in the Windows operating system.</comment>
</data>
<data name="Globals_ThemeLight.Content" xml:space="preserve">
<value>淺色</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in light theme and lighter colors are used throughout the app.</comment>
</data>
<data name="Globals_ThemeDarkLegacy.Content" xml:space="preserve">
<value>深色 (舊版)</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in dark theme and darker colors are used throughout the app. This is an older version of the "dark" theme</comment>
</data>
<data name="Globals_ThemeSystemLegacy.Content" xml:space="preserve">
<value>使用 Windows 佈景主題 (舊版)</value>
<comment>An option to choose from for the "theme" setting. When selected, the app uses the theme selected in the Windows operating system. This is an older version of the "Use Windows theme" theme</comment>
</data>
<data name="Globals_ThemeLightLegacy.Content" xml:space="preserve">
<value>淺色 (舊版)</value>
<comment>An option to choose from for the "theme" setting. When selected, the app is in light theme and lighter colors are used throughout the app. This is an older version of the "light" theme</comment>
</data>
<data name="Globals_WordDelimiters.Header" xml:space="preserve">
<value>文字分隔符號</value>
<comment>Header for a control to determine what delimiters to use to identify separate words during word selection.</comment>
</data>
<data name="Globals_WordDelimiters.HelpText" xml:space="preserve">
<value>當您按兩下終端機中的文字或啟用「標記模式」時,將會使用到這些符號。</value>
<comment>A description for what the "word delimiters" setting does. Presented near "Globals_WordDelimiters.Header". "Mark" is used in the sense of "choosing something to interact with."</comment>
</data>
<data name="Nav_Appearance.Content" xml:space="preserve">
<value>外觀</value>
<comment>Header for the "appearance" menu item. This navigates to a page that lets you see and modify settings related to the app's appearance.</comment>
</data>
<data name="Nav_ColorSchemes.Content" xml:space="preserve">
<value>色彩配置</value>
<comment>Header for the "color schemes" menu item. This navigates to a page that lets you see and modify schemes of colors that can be used by the terminal.</comment>
</data>
<data name="Nav_Interaction.Content" xml:space="preserve">
<value>互動</value>
<comment>Header for the "interaction" menu item. This navigates to a page that lets you see and modify settings related to the user's mouse and touch interactions with the app.</comment>
</data>
<data name="Nav_Compatibility.Content" xml:space="preserve">
<value>相容性</value>
<comment>Header for the "compatibility" menu item. This navigates to a page that lets you see and modify settings related to compatibility with command line scenarios.</comment>
</data>
<data name="Nav_Launch.Content" xml:space="preserve">
<value>啟動</value>
<comment>Header for the "startup" menu item. This navigates to a page that lets you see and modify settings related to the app's launch experience (i.e. screen position, mode, etc.)</comment>
</data>
<data name="Nav_PaneOpenedAnnouncement" xml:space="preserve">
<value>已開啟功能窗格</value>
<comment>Screen reader announcement made when the user activates the toggle button that opens the settings navigation pane.</comment>
</data>
<data name="Nav_PaneClosedAnnouncement" xml:space="preserve">
<value>已關閉功能窗格</value>
<comment>Screen reader announcement made when the user activates the toggle button that closes the settings navigation pane.</comment>
</data>
<data name="Nav_OpenJSON.Content" xml:space="preserve">
<value>開啟 JSON 檔案</value>
<comment>Header for a menu item. This opens the JSON file that is used to log the app's settings.</comment>
</data>
<data name="Nav_ProfileDefaults.Content" xml:space="preserve">
<value>預設值</value>
<comment>Header for the "defaults" menu item. This navigates to a page that lets you see and modify settings that affect profiles. This is the lowest layer of profile settings that all other profile settings are based on. If a profile doesn't define a setting, this page is responsible for figuring out what that setting is supposed to be.</comment>
</data>
<data name="Nav_Rendering.Content" xml:space="preserve">
<value>呈現</value>
<comment>Header for the "rendering" menu item. This navigates to a page that lets you see and modify settings related to the app's rendering of text in the terminal.</comment>
</data>
<data name="Nav_Actions.Content" xml:space="preserve">
<value>動作</value>
<comment>Header for the "actions" menu item. This navigates to a page that lets you see the available commands in the app.</comment>
</data>
<data name="Nav_EditAction.Content" xml:space="preserve">
<value>編輯動作...</value>
<comment>Header for the "edit action" page. This is the page that lets you modify a specific command and its key bindings.</comment>
</data>
<data name="Nav_Extensions.Content" xml:space="preserve">
<value>延伸模組</value>
<comment>Header for the "extensions" menu item. This navigates to a page that lets you see and modify extensions for the app.</comment>
</data>
<data name="Profile_OpacitySlider.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>背景不透明度</value>
<comment>Name for a control to determine the level of opacity for the background of the control. The user can choose to make the background of the app more or less opaque.</comment>
</data>
<data name="Profile_Opacity.Header" xml:space="preserve">
<value>背景不透明度</value>
<comment>Header for a control to determine the level of opacity for the background of the control. The user can choose to make the background of the app more or less opaque.</comment>
</data>
<data name="Profile_Opacity.HelpText" xml:space="preserve">
<value>設定視窗的不透明度。</value>
<comment>A description for what the "opacity" setting does. Presented near "Profile_Opacity.Header".</comment>
</data>
<data name="Profile_Advanced.Header" xml:space="preserve">
<value>進階</value>
<comment>Header for a sub-page of profile settings focused on more advanced scenarios.</comment>
</data>
<data name="Profile_Terminal.Header" xml:space="preserve">
<value>終端機模擬</value>
<comment>Header for a sub-page of profile settings focused on customizing the capabilities of the terminal.</comment>
</data>
<data name="Profile_AltGrAliasing.Header" xml:space="preserve">
<value>AltGr 別名</value>
<comment>Header for a control to toggle whether the app treats ctrl+alt as the AltGr (also known as the Alt Graph) modifier key found on keyboards. {Locked="AltGr"}</comment>
</data>
<data name="Profile_AltGrAliasing.HelpText" xml:space="preserve">
<value>根據預設,Windows會將Ctrl+Alt視為 AltGr 的別名。此設定將會覆寫Windows的預設行為。</value>
<comment>A description for what the "AltGr aliasing" setting does. Presented near "Profile_AltGrAliasing.Header". {Locked="Windows"}</comment>
</data>
<data name="Profile_AntialiasingMode.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>文字消除鋸齒</value>
<comment>Name for a control to select the graphical anti-aliasing format of text.</comment>
</data>
<data name="Profile_AntialiasingMode.Header" xml:space="preserve">
<value>文字消除鋸齒</value>
<comment>Header for a control to select the graphical anti-aliasing format of text.</comment>
</data>
<data name="Profile_AntialiasingMode.HelpText" xml:space="preserve">
<value>控制轉譯器中文字的鋸齒消除方式。</value>
<comment>A description for what the "antialiasing mode" setting does. Presented near "Profile_AntialiasingMode.Header".</comment>
</data>
<data name="Profile_AntialiasingModeAliased.Content" xml:space="preserve">
<value>別名</value>
<comment>An option to choose from for the "text antialiasing" setting. When selected, the app's text renderer does not use antialiasing techniques.</comment>
</data>
<data name="Profile_AntialiasingModeClearType.Content" xml:space="preserve">
<value>ClearType</value>
<comment>An option to choose from for the "text antialiasing" setting. When selected, the app's text renderer uses a "ClearType" antialiasing technique. {Locked="ClearType"}</comment>
</data>
<data name="Profile_AntialiasingModeGrayscale.Content" xml:space="preserve">
<value>灰階</value>
<comment>An option to choose from for the "text antialiasing" setting. When selected, the app's text renderer uses a grayscale antialiasing technique.</comment>
</data>
<data name="Profile_Appearance.Header" xml:space="preserve">
<value>外觀</value>
<comment>Header for a sub-page of profile settings focused on customizing the appearance of the profile.</comment>
</data>
<data name="Profile_BackgroundImageBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>背景影像路徑</value>
<comment>Name for a control to determine the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImage.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>背景影像路徑</value>
<comment>Name for a control to determine the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImage.Header" xml:space="preserve">
<value>背景影像路徑</value>
<comment>Header for a control to determine the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImage.HelpText" xml:space="preserve">
<value>視窗背景中所使用之圖像的檔案位置。</value>
<comment>A description for what the "background image path" setting does. Presented near "Profile_BackgroundImage".</comment>
</data>
<data name="Profile_BackgroundImageAlignment.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>背景影像對齊</value>
<comment>Name for a control to choose the visual alignment of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageAlignment.Header" xml:space="preserve">
<value>背景影像對齊</value>
<comment>Header for a control to choose the visual alignment of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageAlignment.HelpText" xml:space="preserve">
<value>設定背景影像與視窗邊界對齊的程度。</value>
<comment>A description for what the "background image alignment" setting does. Presented near "Profile_BackgroundImageAlignment".</comment>
</data>
<data name="Profile_BackgroundImageAlignmentBottom.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>底部</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentBottomLeft.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>左下</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentBottomRight.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>右下</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentCenter.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>置中</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentLeft.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>左</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentRight.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>右</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentTop.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>頂端</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentTopLeft.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>左上</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageAlignmentTopRight.[using:Windows.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve">
<value>右上</value>
<comment>This is the formal name for a visual alignment.</comment>
</data>
<data name="Profile_BackgroundImageBrowse.Content" xml:space="preserve">
<value>瀏覽...</value>
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
</data>
<data name="Profile_AddFontAxisButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>新增字型座標軸</value>
</data>
<data name="Profile_AddNewFontAxis.Text" xml:space="preserve">
<value>新增</value>
<comment>Button label that adds a new font axis for the current font.</comment>
</data>
<data name="Profile_AddFontFeatureButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>新增字型功能</value>
</data>
<data name="Profile_DeleteFontKeyValuePairButton.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>刪除</value>
</data>
<data name="Profile_AddNewFontFeature.Text" xml:space="preserve">
<value>新增</value>
<comment>Button label that adds a new font feature for the current font.</comment>
</data>
<data name="Profile_BackgroundImageOpacitySlider.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>背景影像不透明度</value>
<comment>Name for a control to choose the opacity of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageOpacity.Header" xml:space="preserve">
<value>背景影像不透明度</value>
<comment>Header for a control to choose the opacity of the image presented on the background of the app.</comment>
</data>
<data name="Profile_BackgroundImageOpacity.HelpText" xml:space="preserve">
<value>設定背景影像的不透明度。</value>
<comment>A description for what the "background image opacity" setting does. Presented near "Profile_BackgroundImageOpacity".</comment>
</data>
<data name="Profile_BackgroundImageStretchMode.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>背景影像延伸模式</value>
<comment>Name for a control to choose the stretch mode of the image presented on the background of the app. Stretch mode is how the image is resized to fill its allocated space.</comment>
</data>
<data name="Profile_BackgroundImageStretchMode.Header" xml:space="preserve">
<value>背景影像延伸模式</value>
<comment>Header for a control to choose the stretch mode of the image presented on the background of the app. Stretch mode is how the image is resized to fill its allocated space.</comment>
</data>
<data name="Profile_BackgroundImageStretchMode.HelpText" xml:space="preserve">
<value>設定背景圖像調整大小以填滿視窗。</value>
<comment>A description for what the "background image stretch mode" setting does. Presented near "Profile_BackgroundImageStretchMode".</comment>
</data>
<data name="Profile_BackgroundImageStretchModeFill.Content" xml:space="preserve">
<value>填滿</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected, the image is resized to fill the destination dimensions. The aspect ratio is not preserved.</comment>
</data>
<data name="Profile_BackgroundImageStretchModeNone.Content" xml:space="preserve">
<value>無</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected, the image preserves its original size.</comment>
</data>
<data name="Profile_BackgroundImageStretchModeUniform.Content" xml:space="preserve">
<value>統一</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected,the image is resized to fit in the destination dimensions while it preserves its native aspect ratio.</comment>
</data>
<data name="Profile_BackgroundImageStretchModeUniformToFill.Content" xml:space="preserve">
<value>統一填滿</value>
<comment>An option to choose from for the "background image stretch mode" setting. When selected, the content is resized to fill the destination dimensions while it preserves its native aspect ratio. But if the aspect ratio of the destination differs, the image is clipped to fit in the space (to fill the space)</comment>
</data>
<data name="Profile_CloseOnExit.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>設定檔終止行為</value>
<comment>Name for a control to select the behavior of a terminal session (a profile) when it closes.</comment>
</data>
<data name="Profile_CloseOnExit.Header" xml:space="preserve">
<value>設定檔終止行為</value>
<comment>Header for a control to select the behavior of a terminal session (a profile) when it closes.</comment>
</data>
<data name="Profile_CloseOnExitAlways.Content" xml:space="preserve">
<value>處理序結束、失敗或當機時才關閉</value>
<comment>An option to choose from for the "profile termination behavior" (or "close on exit") setting. When selected, the terminal closes if the process exits in a controlled (exit) or uncontrolled (fail or crash) scenario.</comment>
</data>
<data name="Profile_CloseOnExitGraceful.Content" xml:space="preserve">
<value>只有在處理序成功結束時才關閉</value>
<comment>An option to choose from for the "profile termination behavior" (or "close on exit") setting. When selected, the terminal closes if the process exits in a controlled scenario successfully.</comment>
</data>
<data name="Profile_CloseOnExitNever.Content" xml:space="preserve">
<value>永遠不自動關閉</value>
<comment>An option to choose from for the "profile termination behavior" (or "close on exit") setting. When selected, the terminal never closes, even if the process exits in a controlled or uncontrolled scenario. The user would have to manually close the terminal.</comment>
</data>
<data name="Profile_CloseOnExitAutomatic.Content" xml:space="preserve">
<value>自動</value>
<comment>An option to choose from for the "profile termination behavior" (or "close on exit") setting. When selected, the terminal closes if the process exits in a controlled scenario successfully and the process was launched by Intelligent Terminal.</comment>
</data>
<data name="Profile_ColorScheme.Header" xml:space="preserve">
<value>色彩配置</value>
<comment>Header for a control to select the scheme (or set) of colors used in the session. This is selected from a list of options managed by the user.</comment>
</data>
<data name="Profile_ColorScheme.HelpText" xml:space="preserve">
<value>展開以覆寫前景、背景和選取範圍背景。</value>
<comment>Help text for a control to select the scheme (or set) of colors used in the session. Directs the user to expand the control to access overrides for certain values in the color scheme.</comment>
</data>
<data name="Profile_Commandline.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>命令列</value>
<comment>Name for a control to determine commandline executable (i.e. a .exe file) to run when a terminal session of this profile is launched.</comment>
</data>
<data name="Profile_Commandline.Header" xml:space="preserve">
<value>命令列</value>
<comment>Header for a control to determine commandline executable (i.e. a .exe file) to run when a terminal session of this profile is launched.</comment>
</data>
<data name="Profile_CommandlineBox.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>命令列</value>
<comment>Name for a control to determine commandline executable (i.e. a .exe file) to run when a terminal session of this profile is launched.</comment>
</data>
<data name="Profile_Commandline.HelpText" xml:space="preserve">
<value>用於設定檔中的可執行檔。</value>
<comment>A description for what the "command line" setting does. Presented near "Profile_Commandline".</comment>
</data>
<data name="Profile_CommandlineBrowse.Content" xml:space="preserve">
<value>瀏覽...</value>
<comment>Button label that opens a file picker in a new window. The "..." is standard to mean it will open a new window.</comment>
</data>
<data name="Profile_CursorHeight.Header" xml:space="preserve">
<value>游標高度</value>
<comment>Header for a control to determine the height of the text cursor.</comment>
</data>
<data name="Profile_CursorHeight.HelpText" xml:space="preserve">
<value>從底部開始設定游標的百分比高度。僅適用于復古游標形狀。</value>
<comment>A description for what the "cursor height" setting does. Presented near "Profile_CursorHeight".</comment>
</data>
<data name="Profile_CursorShape.[using:Windows.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
<value>游標形狀</value>
<comment>Name for a control to select the shape of the text cursor.</comment>
</data>
<data name="Profile_CursorShape.Header" xml:space="preserve">
<value>游標形狀</value>
<comment>Header for a control to select the shape of the text cursor.</comment>
</data>
<data name="Profile_AdjustIndistinguishableColorsNever.Content" xml:space="preserve">
<value>一律不要</value>
<comment>An option to choose from for the "adjust indistinguishable colors" setting. When selected, we will never adjust the text colors.</comment>
</data>
<data name="Profile_AdjustIndistinguishableColorsIndexed.Content" xml:space="preserve">
<value>僅適用於色彩配置中的色彩</value>
<comment>An option to choose from for the "adjust indistinguishable colors" setting. When selected, we will adjust the text colors for visibility only when the colors are part of this profile's color scheme's color table.</comment>
</data>
<data name="Profile_AdjustIndistinguishableColorsAlways.Content" xml:space="preserve">
<value>一律</value>
<comment>An option to choose from for the "adjust indistinguishable colors" setting. When selected, we will adjust the text colors for visibility.</comment>
</data>
<data name="Profile_AdjustIndistinguishableColorsAutomatic.Content" xml:space="preserve">
<value>自動</value>
<comment>An option to choose from for the "adjust indistinguishable colors" setting. When selected, we will adjust the text colors for visibility only when the colors are part of this profile's color scheme's color table if and only if high contrast mode is enabled.</comment>
</data>
<data name="Profile_CursorShapeBar.Content" xml:space="preserve">
<value>橫條圖 ( ┃ )</value>
<comment>{Locked="┃"} An option to choose from for the "cursor shape" setting. When selected, the cursor will look like a vertical bar. The character in the parentheses is used to show what it looks like.</comment>
</data>
<data name="Profile_CursorShapeEmptyBox.Content" xml:space="preserve">
<value>空白方塊 ( ▯ )</value>
<comment>{Locked="▯"} An option to choose from for the "cursor shape" setting. When selected, the cursor will look like an empty box. The character in the parentheses is used to show what it looks like.</comment>
</data>
<data name="Profile_CursorShapeFilledBox.Content" xml:space="preserve">
<value>實心方塊 ( █ )</value>
<comment>{Locked="█"} An option to choose from for the "cursor shape" setting. When selected, the cursor will look like a filled box. The character in the parentheses is used to show what it looks like.</comment>
</data>
<data name="Profile_CursorShapeUnderscore.Content" xml:space="preserve">
<value>底線 ( ▁ )</value>
<comment>{Locked="▁"} An option to choose from for the "cursor shape" setting. When selected, the cursor will look like an underscore. The character in the parentheses is used to show what it looks like.</comment>
</data>
<data name="Profile_CursorShapeVintage.Content" xml:space="preserve">
<value>復古 ( ▃ )</value>
<comment>{Locked="▃"} An option to choose from for the "cursor shape" setting. When selected, the cursor will look like a thick underscore. This is the vintage and classic look of a cursor for terminals. The character in the parentheses is used to show what it looks like.</comment>
</data>
<data name="Profile_CursorShapeDoubleUnderscore.Content" xml:space="preserve">
<value>雙底線 ( ‗ )</value>
<comment>{Locked="‗"} An option to choose from for the "cursor shape" setting. When selected, the cursor will look like a stacked set of two underscores. The character in the parentheses is used to show what it looks like.</comment>
</data>