-
Notifications
You must be signed in to change notification settings - Fork 310
/
Copy pathmain.i18n.json
6626 lines (6626 loc) · 423 KB
/
main.i18n.json
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
{
"": [
"--------------------------------------------------------------------------------------------",
"Copyright (c) Microsoft Corporation. All rights reserved.",
"Licensed under the MIT License. See License.txt in the project root for license information.",
"--------------------------------------------------------------------------------------------",
"Do not edit this file. It is machine generated."
],
"version": "1.0.0",
"contents": {
"vs/base/common/severity": {
"sev.error": "错误",
"sev.warning": "警告",
"sev.info": "信息"
},
"vs/base/common/errorMessage": {
"stackTrace.format": "{0}: {1}",
"error.defaultMessage": "出现未知错误。有关详细信息,请参阅日志。",
"nodeExceptionMessage": "发生了系统错误 ({0})",
"error.moreErrors": "{0} 个(共 {1} 个错误)"
},
"vs/base/node/processes": {
"TaskRunner.UNC": "无法在 UNC 驱动器上执行 Shell 命令。"
},
"vs/base/node/zip": {
"invalid file": "提取 {0} 时出错。文件无效。",
"incompleteExtract": "解压不完整。找到了 {0} / {1} 个项目",
"notFound": "在 Zip 中找不到 {0}。"
},
"vs/base/browser/ui/actionbar/actionbar": {
"titleLabel": "{0} ({1})"
},
"vs/base/browser/ui/keybindingLabel/keybindingLabel": {
"unbound": "未绑定"
},
"vs/base/browser/ui/dialog/dialog": {
"ok": "确定",
"dialogClose": "关闭对话框"
},
"vs/base/parts/quickopen/browser/quickOpenModel": {
"quickOpenAriaLabelEntry": "{0},选取器",
"quickOpenAriaLabel": "选取器"
},
"vs/base/common/keybindingLabels": {
"ctrlKey": "Ctrl",
"shiftKey": "Shift",
"altKey": "Alt",
"windowsKey": "Windows",
"superKey": "Super",
"ctrlKey.long": "Control",
"shiftKey.long": "Shift",
"altKey.long": "Alt",
"cmdKey.long": "Command",
"windowsKey.long": "Windows",
"superKey.long": "Super"
},
"vs/base/browser/ui/aria/aria": {
"repeated": "{0} (再次发生)",
"repeatedNtimes": "{0} (发生了 {1} 次)"
},
"vs/base/browser/ui/menu/menu": {
"titleLabel": "{0} ({1})"
},
"vs/base/parts/tree/browser/treeDefaults": {
"collapse all": "全部折叠"
},
"vs/base/browser/ui/list/listWidget": {
"aria list": "{0}. 使用导航键进行导航。"
},
"vs/base/common/jsonErrorMessages": {
"error.invalidSymbol": "无效符号",
"error.invalidNumberFormat": "数字格式无效",
"error.propertyNameExpected": "需要属性名",
"error.valueExpected": "需要值",
"error.colonExpected": "需要冒号",
"error.commaExpected": "需要逗号",
"error.closeBraceExpected": "需要右大括号",
"error.closeBracketExpected": "需要右括号",
"error.endOfFileExpected": "预期的文件结尾"
},
"vs/base/browser/ui/toolbar/toolbar": {
"moreActions": "更多操作..."
},
"vs/base/parts/quickopen/browser/quickOpenWidget": {
"quickOpenAriaLabel": "快速选取器。键入以缩小结果范围。",
"treeAriaLabel": "快速选取器",
"quickInput.visibleCount": "{0} 个结果"
},
"vs/base/browser/ui/findinput/findInput": {
"defaultLabel": "输入"
},
"vs/base/browser/ui/findinput/replaceInput": {
"defaultLabel": "输入",
"label.preserveCaseCheckbox": "保留大小写"
},
"vs/base/browser/ui/tree/treeDefaults": {
"collapse all": "全部折叠"
},
"vs/base/browser/ui/inputbox/inputBox": {
"alertErrorMessage": "错误: {0}",
"alertWarningMessage": "警告: {0}",
"alertInfoMessage": "信息: {0}"
},
"vs/base/browser/ui/findinput/findInputCheckboxes": {
"caseDescription": "区分大小写",
"wordsDescription": "全字匹配",
"regexDescription": "使用正则表达式"
},
"vs/base/browser/ui/tree/abstractTree": {
"clear": "清除",
"disable filter on type": "禁用输入时筛选",
"enable filter on type": "启用输入时筛选",
"empty": "未找到元素",
"found": "已匹配 {0} 个元素(共 {1} 个)"
},
"vs/base/browser/ui/menu/menubar": {
"mAppMenu": "应用程序菜单",
"mMore": "..."
},
"vs/editor/common/standaloneStrings": {
"noSelection": "无选择",
"singleSelectionRange": "行 {0}, 列 {1} (选中 {2})",
"singleSelection": "行 {0}, 列 {1}",
"multiSelectionRange": "{0} 选择(已选择 {1} 个字符)",
"multiSelection": "{0} 选择",
"emergencyConfOn": "现在将 \"辅助功能支持\" 设置更改为 \"打开\"。",
"openingDocs": "现在正在打开“编辑器辅助功能”文档页。",
"readonlyDiffEditor": "在差异编辑器的只读窗格中。",
"editableDiffEditor": "在一个差异编辑器的窗格中。",
"readonlyEditor": "在只读代码编辑器中",
"editableEditor": "在代码编辑器中",
"changeConfigToOnMac": "若要配置编辑器,将其进行优化以最好地配合屏幕阅读器的使用,请立即按 Command+E。",
"changeConfigToOnWinLinux": "若要配置编辑器,将其进行优化以最高效地配合屏幕阅读器的使用,按下 Ctrl+E。",
"auto_on": "配置编辑器,将其进行优化以最好地配合屏幕读取器的使用。",
"auto_off": "编辑器被配置为永远不进行优化以配合屏幕读取器的使用, 而当前不是这种情况。",
"tabFocusModeOnMsg": "在当前编辑器中按 Tab 会将焦点移动到下一个可聚焦的元素。通过按 {0} 切换此行为。",
"tabFocusModeOnMsgNoKb": "在当前编辑器中按 Tab 会将焦点移动到下一个可聚焦的元素。当前无法通过按键绑定触发命令 {0}。",
"tabFocusModeOffMsg": "在当前编辑器中按 Tab 将插入制表符。通过按 {0} 切换此行为。",
"tabFocusModeOffMsgNoKb": "在当前编辑器中按 Tab 会插入制表符。当前无法通过键绑定触发命令 {0}。",
"openDocMac": "现在按 Command+H 打开一个浏览器窗口, 其中包含有关编辑器辅助功能的详细信息。",
"openDocWinLinux": "现在按 Ctrl+H 打开一个浏览器窗口, 其中包含有关编辑器辅助功能的更多信息。",
"outroMsg": "你可以按 Esc 或 Shift+Esc 消除此工具提示并返回到编辑器。",
"showAccessibilityHelpAction": "显示辅助功能帮助",
"inspectTokens": "开发人员: 检查令牌",
"gotoLineLabelValidLineAndColumn": "转到第 {0} 行,第 {1} 列",
"gotoLineLabelValidLine": "转至行 {0}",
"gotoLineLabelEmptyWithLineLimit": "键入要导航到的介于 1 和 {0} 之间的行号",
"gotoLineLabelEmptyWithLineAndColumnLimit": "键入 1 和 {0} 之间的字符以导航到",
"gotoLineAriaLabel": "当前行: {0}. 转到行 {1}。",
"gotoLineActionInput": "键入行号, 后跟可选冒号和要导航到的字符数",
"gotoLineActionLabel": "转到行...",
"ariaLabelEntryWithKey": "{0}、{1} ,命令",
"ariaLabelEntry": "{0},命令",
"quickCommandActionInput": "键入要执行的操作的名称",
"quickCommandActionLabel": "命令面板",
"entryAriaLabel": "{0},符号",
"quickOutlineActionInput": "键入要导航到的标识符的名称",
"quickOutlineActionLabel": "转到符号...",
"symbols": "符号({0})",
"modules": "模块({0})",
"class": "类({0})",
"interface": "接口({0})",
"method": "方法({0})",
"function": "函数({0})",
"property": "属性 ({0})",
"variable": "变量({0})",
"variable2": "变量({0})",
"_constructor": "构造函数 ({0})",
"call": "调用 ({0})",
"editorViewAccessibleLabel": "编辑器内容",
"accessibilityHelpMessageIE": "按 Ctrl+F1 可打开辅助功能选项。",
"accessibilityHelpMessage": "按 Alt+F1 可打开辅助功能选项。",
"toggleHighContrast": "切换高对比度主题",
"bulkEditServiceSummary": "在 {1} 个文件中进行了 {0} 次编辑"
},
"vs/editor/common/modes/modesRegistry": {
"plainText.alias": "纯文本"
},
"vs/editor/common/view/editorColorRegistry": {
"lineHighlight": "光标所在行高亮内容的背景颜色。",
"lineHighlightBorderBox": "光标所在行四周边框的背景颜色。",
"rangeHighlight": "背景颜色的高亮范围,喜欢通过快速打开和查找功能。颜色不能不透明,以免隐藏底层装饰。",
"rangeHighlightBorder": "高亮区域边框的背景颜色。",
"symbolHighlight": "高亮显示符号的背景颜色,例如转到定义或转到下一个/上一个符号。颜色不能是不透明的,以免隐藏底层装饰。",
"symbolHighlightBorder": "高亮显示符号周围的边框的背景颜色。",
"caret": "编辑器光标颜色。",
"editorCursorBackground": "编辑器光标的背景色。可以自定义块型光标覆盖字符的颜色。",
"editorWhitespaces": "编辑器中空白字符的颜色。",
"editorIndentGuides": "编辑器缩进参考线的颜色。",
"editorActiveIndentGuide": "编辑器活动缩进参考线的颜色。",
"editorLineNumbers": "编辑器行号的颜色。",
"editorActiveLineNumber": "编辑器活动行号的颜色",
"deprecatedEditorActiveLineNumber": "\"Id\" 已被弃用,请改用 \"editorLineNumber.activeForeground\"。",
"editorRuler": "编辑器标尺的颜色。",
"editorCodeLensForeground": "编辑器 CodeLens 的前景色",
"editorBracketMatchBackground": "匹配括号的背景色",
"editorBracketMatchBorder": "匹配括号外框的颜色",
"editorOverviewRulerBorder": "概览标尺边框的颜色。",
"editorGutter": "编辑器导航线的背景色。导航线包括边缘符号和行号。",
"unnecessaryCodeBorder": "编辑器中不必要(未使用)的源代码的边框颜色。",
"unnecessaryCodeOpacity": "非必须(未使用)代码的在编辑器中显示的不透明度。例如,\"#000000c0\" 将以 75% 的不透明度显示代码。对于高对比度主题,请使用 ”editorUnnecessaryCode.border“ 主题来为非必须代码添加下划线,以避免颜色淡化。",
"overviewRulerRangeHighlight": "用于突出显示范围的概述标尺标记颜色。颜色必须透明,以免隐藏下面的修饰效果。",
"overviewRuleError": "概览标尺中错误标记的颜色。",
"overviewRuleWarning": "概览标尺中警告标记的颜色。",
"overviewRuleInfo": "概览标尺中信息标记的颜色。"
},
"vs/editor/common/config/commonEditorConfig": {
"editorConfigurationTitle": "编辑器",
"tabSize": "一个制表符等于的空格数。在 `#editor.detectIndentation#` 启用时,根据文件内容,该设置可能会被覆盖。",
"insertSpaces": "按 `Tab` 键时插入空格。该设置在 `#editor.detectIndentation#` 启用时根据文件内容可能会被覆盖。",
"detectIndentation": "控制是否在打开文件时,基于文件内容自动检测 `#editor.tabSize#` 和 `#editor.insertSpaces#`。",
"trimAutoWhitespace": "删除自动插入的尾随空白符号。",
"largeFileOptimizations": "对大型文件进行特殊处理,禁用某些内存密集型功能。",
"wordBasedSuggestions": "控制是否根据文档中的文字计算自动完成列表。",
"stablePeek": "在速览编辑器中,即使双击其中的内容或者按 `Esc` 键,也保持其打开状态。",
"maxTokenizationLineLength": "由于性能原因,超过这个长度的行将不会被标记",
"maxComputationTime": "超时(以毫秒为单位),之后将取消差异计算。使用0表示没有超时。",
"sideBySide": "控制差异编辑器的显示方式是并排还是内联。",
"ignoreTrimWhitespace": "控制在差异编辑器中是否把前导空格或尾随空格的改动显示为差异。",
"renderIndicators": "控制差异编辑器是否为添加/删除的更改显示 +/- 指示符号。"
},
"vs/editor/browser/controller/coreCommands": {
"miSelectAll": "全选(&&S)",
"miUndo": "撤消(&&U)",
"miRedo": "恢复(&&R)"
},
"vs/editor/browser/widget/codeEditorWidget": {
"cursors.maximum": "光标数量被限制为 {0}。"
},
"vs/editor/browser/widget/diffEditorWidget": {
"diff.tooLarge": "文件过大,无法比较。"
},
"vs/editor/browser/widget/inlineDiffMargin": {
"diff.clipboard.copyDeletedLinesContent.label": "复制已删除的行",
"diff.clipboard.copyDeletedLinesContent.single.label": "复制已删除的行",
"diff.clipboard.copyDeletedLineContent.label": "复制已删除的行({0})",
"diff.inline.revertChange.label": "还原此更改"
},
"vs/editor/common/config/editorOptions": {
"accessibilitySupport.auto": "编辑器将使用平台 API 以检测是否附加了屏幕阅读器。",
"accessibilitySupport.on": "编辑器将对屏幕阅读器的使用进行永久优化。",
"accessibilitySupport.off": "编辑器将不再对屏幕阅读器的使用进行优化。",
"accessibilitySupport": "控制编辑器是否应运行在对屏幕阅读器进行优化的模式。",
"emptySelectionClipboard": "控制在没有选择内容时进行复制是否复制当前行。",
"find.seedSearchStringFromSelection": "控制是否将编辑器选中内容作为搜索词填入到查找小组件中。",
"editor.find.autoFindInSelection.never": "切勿自动打开“选择中查找”(默认)",
"editor.find.autoFindInSelection.always": "始终自动打开“在选择中查找”",
"editor.find.autoFindInSelection.multiline": "选择多行内容时,自动打开“在选择中查找”。",
"find.autoFindInSelection": "在执行查找操作时,在编辑器中的选中文本中还是整个文件中进行查找。",
"find.globalFindClipboard": "控制“查找”小组件是否读取或修改 macOS 的共享查找剪贴板。",
"find.addExtraSpaceOnTop": "控制 \"查找小部件\" 是否应在编辑器顶部添加额外的行。如果为 true, 则可以在 \"查找小工具\" 可见时滚动到第一行之外。",
"fontLigatures": "启用或禁用字体连字。",
"fontFeatureSettings": "显式字体功能设置。",
"fontLigaturesGeneral": "配置字体连字。",
"fontSize": "以像素为单位控制字体大小。",
"editor.gotoLocation.multiple.peek": "显示结果的预览视图 (默认值)",
"editor.gotoLocation.multiple.gotoAndPeek": "转到主结果并显示预览视图",
"editor.gotoLocation.multiple.goto": "转到主结果,并对其他人启用防偷窥导航",
"editor.gotoLocation.multiple.deprecated": "此设置已弃用,请改用单独的设置,如\"editor.editor.gotoLocation.multipleDefinitions\"或\"editor.editor.gotoLocation.multipleImplementations\"。",
"editor.editor.gotoLocation.multipleDefinitions": "控制存在多个目标位置时\"转到定义\"命令的行为。",
"editor.editor.gotoLocation.multipleTypeDefinitions": "控制存在多个目标位置时\"转到类型定义\"命令的行为。",
"editor.editor.gotoLocation.multipleDeclarations": "控制存在多个目标位置时\"转到声明\"命令的行为。",
"editor.editor.gotoLocation.multipleImplemenattions": "控制存在多个目标位置时\"转到实现\"命令的行为。",
"editor.editor.gotoLocation.multipleReferences": "控制存在多个目标位置时\"转到引用\"命令的行为。",
"alternativeDefinitionCommand": "当\"转到定义\"的结果为当前位置时将要执行的替代命令的 ID。",
"alternativeTypeDefinitionCommand": "当\"转到类型定义\"的结果是当前位置时正在执行的备用命令 ID。",
"alternativeDeclarationCommand": "当\"转到声明\"的结果为当前位置时将要执行的替代命令的 ID。",
"alternativeImplementationCommand": "当\"转到实现\"的结果为当前位置时将要执行的替代命令的 ID。",
"alternativeReferenceCommand": "当\"转到引用\"的结果是当前位置时正在执行的替代命令 ID。",
"hover.enabled": "控制是否显示悬停提示。",
"hover.delay": "控制显示悬停提示前的等待时间 (毫秒)。",
"hover.sticky": "控制当鼠标移动到悬停提示上时,其是否保持可见。",
"codeActions": "在编辑器中启用代码操作小灯泡提示。",
"lineHeight": "控制行高。为 0 时则通过字体大小自动计算。",
"minimap.enabled": "控制是否显示缩略图。",
"minimap.side": "控制在哪一侧显示缩略图。",
"minimap.showSlider": "控制何时显示迷你地图滑块。",
"minimap.scale": "在缩略图中绘制内容的比例。",
"minimap.renderCharacters": "渲染每行的实际字符,而不是色块。",
"minimap.maxColumn": "限制缩略图的宽度,控制其最多显示的列数。",
"parameterHints.enabled": "在输入时显示含有参数文档和类型信息的小面板。",
"parameterHints.cycle": "控制参数提示菜单在到达列表末尾时进行循环还是关闭。",
"quickSuggestions.strings": "在字符串内启用快速建议。",
"quickSuggestions.comments": "在注释内启用快速建议。",
"quickSuggestions.other": "在字符串和注释外启用快速建议。",
"quickSuggestions": "控制是否在键入时自动显示建议。",
"lineNumbers.off": "不显示行号。",
"lineNumbers.on": "将行号显示为绝对行数。",
"lineNumbers.relative": "将行号显示为与光标相隔的行数。",
"lineNumbers.interval": "每 10 行显示一次行号。",
"lineNumbers": "控制行号的显示。",
"rulers": "在一定数量的等宽字符后显示垂直标尺。输入多个值,显示多个标尺。若数组为空,则不绘制标尺。",
"suggest.insertMode.insert": "插入建议而不覆盖光标右侧的文本。",
"suggest.insertMode.replace": "插入建议并覆盖光标右侧的文本。",
"suggest.insertMode": "控制接受补全时是否覆盖单词。请注意,这取决于扩展选择使用此功能。",
"suggest.insertHighlight": "控制在接受补全时是否应高亮显示意外的文本修改,例如\"插入模式\"是\"替换\",但补全仅支持\"插入\"。",
"suggest.filterGraceful": "控制对建议的筛选和排序是否考虑小的拼写错误。",
"suggest.localityBonus": "控制排序时是否提高靠近光标的词语的优先级。",
"suggest.shareSuggestSelections": "控制是否在多个工作区和窗口间共享记忆的建议选项(需要 `#editor.suggestSelection#`)。",
"suggest.snippetsPreventQuickSuggestions": "控制在活动代码片段内是否禁用快速建议。",
"suggest.showIcons": "控制是否在建议中显示或隐藏图标。",
"suggest.maxVisibleSuggestions": "控制在显示滚动条之前 IntelliSense 将显示的建议数 (最多 15个)。",
"deprecated": "此设置已弃用,请改用单独的设置,如\"editor.suggest.showKeywords\"或\"editor.suggest.showSnippets\"。",
"editor.suggest.showMethods": "启用后,IntelliSense 将显示“方法”建议。",
"editor.suggest.showFunctions": "启用后,IntelliSense 将显示“函数”建议。",
"editor.suggest.showConstructors": "启用后,IntelliSense 将显示“构造函数”建议。",
"editor.suggest.showFields": "启用后,IntelliSense 将显示“字段”建议。",
"editor.suggest.showVariables": "启用后,IntelliSense 将显示“变量”建议。",
"editor.suggest.showClasss": "启用后,IntelliSense 将显示“类”建议。",
"editor.suggest.showStructs": "启用后,IntelliSense 将显示“结构”建议。",
"editor.suggest.showInterfaces": "启用后,IntelliSense 将显示“接口”建议。",
"editor.suggest.showModules": "启用后,IntelliSense 将显示“模块”建议。",
"editor.suggest.showPropertys": "启用后,IntelliSense 将显示“属性”建议。",
"editor.suggest.showEvents": "启用后,IntelliSense 将显示“事件”建议。",
"editor.suggest.showOperators": "启用后,IntelliSense 将显示“操作符”建议。",
"editor.suggest.showUnits": "启用后,IntelliSense 将显示“单位”建议。",
"editor.suggest.showValues": "启用后,IntelliSense 将显示“值”建议。",
"editor.suggest.showConstants": "启用后,IntelliSense 将显示“常量”建议。",
"editor.suggest.showEnums": "启用后,IntelliSense 将显示“枚举”建议。",
"editor.suggest.showEnumMembers": "启用后,IntelliSense 将显示 \"enumMember\" 建议。",
"editor.suggest.showKeywords": "启用后,IntelliSense 将显示“关键字”建议。",
"editor.suggest.showTexts": "启用后,IntelliSense 将显示“文本”建议。",
"editor.suggest.showColors": "启用后,IntelliSense 将显示“颜色”建议。",
"editor.suggest.showFiles": "启用后,IntelliSense 将显示“文件”建议。",
"editor.suggest.showReferences": "启用后,IntelliSense 将显示“参考”建议。",
"editor.suggest.showCustomcolors": "启用后,IntelliSense 将显示“自定义颜色”建议。",
"editor.suggest.showFolders": "启用后,IntelliSense 将显示“文件夹”建议。",
"editor.suggest.showTypeParameters": "启用后,IntelliSense 将显示 \"typeParameter\" 建议。",
"editor.suggest.showSnippets": "启用后,IntelliSense 将显示“片段”建议。",
"acceptSuggestionOnCommitCharacter": "控制是否应在遇到提交字符时接受建议。例如,在 JavaScript 中,半角分号 (`;`) 可以为提交字符,能够在接受建议的同时键入该字符。",
"acceptSuggestionOnEnterSmart": "仅当建议包含文本改动时才可使用 `Enter` 键进行接受。",
"acceptSuggestionOnEnter": "控制除了 `Tab` 键以外, `Enter` 键是否同样可以接受建议。这能减少“插入新行”和“接受建议”命令之间的歧义。",
"accessibilityPageSize": "Controls the number of lines in the editor that can be read out by a screen reader. Warning: this has a performance implication for numbers larger than the default.",
"editorViewAccessibleLabel": "编辑器内容",
"editor.autoClosingBrackets.languageDefined": "使用语言配置确定何时自动闭合括号。",
"editor.autoClosingBrackets.beforeWhitespace": "仅当光标位于空白字符左侧时,才自动闭合括号。",
"autoClosingBrackets": "控制编辑器是否在左括号后自动插入右括号。",
"editor.autoClosingOvertype.auto": "仅在自动插入时才改写右引号或右括号。",
"autoClosingOvertype": "控制编辑器是否应改写右引号或右括号。",
"editor.autoClosingQuotes.languageDefined": "使用语言配置确定何时自动闭合引号。",
"editor.autoClosingQuotes.beforeWhitespace": "仅当光标位于空白字符左侧时,才自动闭合引号。",
"autoClosingQuotes": "控制编辑器是否在左引号后自动插入右引号。",
"editor.autoIndent.none": "编辑器不会自动插入缩进。",
"editor.autoIndent.keep": "编辑器将保留当前行的缩进。",
"editor.autoIndent.brackets": "The editor will keep the current line's indentation and honor language defined brackets.",
"editor.autoIndent.advanced": "The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages.",
"editor.autoIndent.full": "The editor will keep the current line's indentation, honor language defined brackets, invoke special onEnterRules defined by languages, and honor indentationRules defined by languages.",
"autoIndent": "Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines.",
"editor.autoSurround.languageDefined": "使用语言配置确定何时自动包住所选内容。",
"editor.autoSurround.quotes": "使用引号而非括号来包住所选内容。",
"editor.autoSurround.brackets": "使用括号而非引号来包住所选内容。",
"autoSurround": "控制编辑器是否应自动包住所选内容。",
"codeLens": "控制是否在编辑器中显示 CodeLens。",
"colorDecorators": "控制编辑器是否显示内联颜色修饰器和颜色选取器。",
"copyWithSyntaxHighlighting": "控制在复制时是否同时复制语法高亮。",
"cursorBlinking": "控制光标的动画样式。",
"cursorSmoothCaretAnimation": "控制是否启用平滑插入动画。",
"cursorStyle": "控制光标样式。",
"cursorSurroundingLines": "控制光标周围可见的前置行和尾随行的最小数目。在其他一些编辑器中称为“scrollOff”或“scrollOffset”。",
"cursorSurroundingLinesStyle.default": "仅当通过键盘或 API 触发时,才会强制执行\"光标环绕行\"。",
"cursorSurroundingLinesStyle.all": "始终强制执行 \"cursorSurroundingLines\"",
"cursorSurroundingLinesStyle": "控制何时应强制执行\"光标环绕行\"。",
"cursorWidth": "当 `#editor.cursorStyle#` 设置为 `line` 时,控制光标的宽度。",
"dragAndDrop": "控制在编辑器中是否允许通过拖放来移动选中内容。",
"fastScrollSensitivity": "按下\"Alt\"时滚动速度倍增。",
"folding": "控制编辑器是否启用了代码折叠。",
"foldingStrategy": "控制计算折叠范围的策略。`auto` 将使用语言特定的折叠策略 (若可用)。`indentation` 将使用基于缩进的折叠策略。",
"fontFamily": "控制字体系列。",
"fontWeight": "控制字体粗细。",
"formatOnPaste": "控制编辑器是否自动格式化粘贴的内容。格式化程序必须可用,并且能针对文档中的某一范围进行格式化。",
"formatOnType": "控制编辑器在键入一行后是否自动格式化该行。",
"glyphMargin": "控制编辑器是否应呈现垂直字形边距。字形边距最常用于调试。",
"hideCursorInOverviewRuler": "控制是否在概览标尺中隐藏光标。",
"highlightActiveIndentGuide": "控制是否突出显示编辑器中活动的缩进参考线。",
"letterSpacing": "控制以像素为单位的字母间距。",
"links": "控制是否在编辑器中检测链接并使其可被点击。",
"matchBrackets": "当选择其中一项时,将突出显示匹配的括号。",
"mouseWheelScrollSensitivity": "对鼠标滚轮滚动事件的 `deltaX` 和 `deltaY` 乘上的系数。",
"mouseWheelZoom": "按住 `Ctrl` 键并滚动鼠标滚轮时对编辑器字体大小进行缩放。",
"multiCursorMergeOverlapping": "当多个光标重叠时进行合并。",
"multiCursorModifier.ctrlCmd": "映射为 `Ctrl` (Windows 和 Linux) 或 `Command` (macOS)。",
"multiCursorModifier.alt": "映射为 `Alt` (Windows 和 Linux) 或 `Option` (macOS)。",
"multiCursorModifier": "在通过鼠标添加多个光标时使用的修改键。“转到定义”和“打开链接”功能所需的鼠标动作将会相应调整,不与多光标修改键冲突。[阅读详细信息](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier)。",
"multiCursorPaste.spread": "每个光标粘贴一行文本。",
"multiCursorPaste.full": "每个光标粘贴全文。",
"multiCursorPaste": "控制粘贴时粘贴文本的行计数与光标计数相匹配。",
"occurrencesHighlight": "控制编辑器是否突出显示语义符号的匹配项。",
"overviewRulerBorder": "控制是否在概览标尺周围绘制边框。",
"quickSuggestionsDelay": "控制显示快速建议前的等待时间 (毫秒)。",
"renderControlCharacters": "控制编辑器是否显示控制字符。",
"renderIndentGuides": "控制编辑器是否显示缩进参考线。",
"renderFinalNewline": "当文件以换行符结束时, 呈现最后一行的行号。",
"renderLineHighlight.all": "同时突出显示导航线和当前行。",
"renderLineHighlight": "控制编辑器的当前行进行高亮显示的方式。",
"renderWhitespace.selection": "仅在选定文本上呈现空白字符。",
"renderWhitespace": "控制编辑器在空白字符上显示符号的方式。",
"roundedSelection": "控制选区是否有圆角。",
"scrollBeyondLastColumn": "控制编辑器水平滚动时可以超过范围的字符数。",
"scrollBeyondLastLine": "控制编辑器是否可以滚动到最后一行之后。",
"selectionClipboard": "控制是否支持 Linux 主剪贴板。",
"selectionHighlight": "控制编辑器是否应突出显示与所选内容类似的匹配项。",
"showFoldingControls": "控制是否自动隐藏导航线上的折叠控件。",
"showUnused": "控制是否淡化未使用的代码。",
"snippetSuggestions.top": "在其他建议上方显示代码片段建议。",
"snippetSuggestions.bottom": "在其他建议下方显示代码片段建议。",
"snippetSuggestions.inline": "在其他建议中穿插显示代码片段建议。",
"snippetSuggestions.none": "不显示代码片段建议。",
"snippetSuggestions": "控制代码片段是否与其他建议一起显示及其排列的位置。",
"smoothScrolling": "控制编辑器是否在滚动时使用动画。",
"suggestFontSize": "建议小部件的字号。如果设置为 `0`,则使用 `#editor.fontSize#` 的值。",
"suggestLineHeight": "建议小部件的行高。如果设置为 `0`,则使用 `#editor.lineHeight#` 的值。",
"suggestOnTriggerCharacters": "控制在键入触发字符后是否自动显示建议。",
"suggestSelection.first": "始终选择第一个建议。",
"suggestSelection.recentlyUsed": "选择最近的建议,除非进一步键入选择其他项。例如 `console. -> console.log`,因为最近补全过 `log`。",
"suggestSelection.recentlyUsedByPrefix": "根据之前补全过的建议的前缀来进行选择。例如,`co -> console`、`con -> const`。",
"suggestSelection": "控制在建议列表中如何预先选择建议。",
"tabCompletion.on": "在按下 Tab 键时进行 Tab 补全,将插入最佳匹配建议。",
"tabCompletion.off": "禁用 Tab 补全。",
"tabCompletion.onlySnippets": "在前缀匹配时进行 Tab 补全。在 \"quickSuggestions\" 未启用时体验最好。",
"tabCompletion": "启用 Tab 补全。",
"useTabStops": "根据制表位插入和删除空格。",
"wordSeparators": "执行单词相关的导航或操作时作为单词分隔符的字符。",
"wordWrap.off": "永不换行。",
"wordWrap.on": "将在视区宽度处换行。",
"wordWrap.wordWrapColumn": "在 `#editor.wordWrapColumn#` 处折行。",
"wordWrap.bounded": "在视区宽度和 `#editor.wordWrapColumn#` 中的较小值处折行。",
"wordWrap": "控制折行的方式。",
"wordWrapColumn": "在 `#editor.wordWrap#` 为 `wordWrapColumn` 或 `bounded` 时,控制编辑器的折行列。",
"wrappingIndent.none": "没有缩进。折行从第 1 列开始。",
"wrappingIndent.same": "折行的缩进量与其父级相同。",
"wrappingIndent.indent": "折行的缩进量比其父级多 1。",
"wrappingIndent.deepIndent": "折行的缩进量比其父级多 2。",
"wrappingIndent": "控制折行的缩进。"
},
"vs/editor/browser/widget/diffReview": {
"label.close": "关闭",
"no_lines": "无内容",
"one_line": "1 行",
"more_lines": "{0} 行",
"header": "差异 {0},总共 {1}: 原始,{2},{3};改后,{4},{5}",
"blankLine": "空白",
"equalLine": "未修改 {0},已修改 {1}: {2}",
"insertLine": "+ 已修改 {0}: {1}",
"deleteLine": "- 未修改 {0}: {1} ",
"editor.action.diffReview.next": "转至下一个差异",
"editor.action.diffReview.prev": "转至上一个差异"
},
"vs/editor/browser/controller/textAreaHandler": {
"accessibilityOffAriaLabel": "现在无法访问编辑器。按 Alt+F1 显示选项。"
},
"vs/editor/contrib/caretOperations/caretOperations": {
"caret.moveLeft": "将插入点左移",
"caret.moveRight": "将插入点右移"
},
"vs/editor/contrib/caretOperations/transpose": {
"transposeLetters.label": "转置字母"
},
"vs/editor/contrib/comment/comment": {
"comment.line": "切换行注释",
"miToggleLineComment": "切换行注释(&&T)",
"comment.line.add": "添加行注释",
"comment.line.remove": "删除行注释",
"comment.block": "切换块注释",
"miToggleBlockComment": "切换块注释(&&B)"
},
"vs/editor/contrib/fontZoom/fontZoom": {
"EditorFontZoomIn.label": "放大编辑器字体",
"EditorFontZoomOut.label": "缩小编辑器字体",
"EditorFontZoomReset.label": "重置编辑器字体大小"
},
"vs/editor/contrib/parameterHints/parameterHints": {
"parameterHints.trigger.label": "触发参数提示"
},
"vs/editor/contrib/cursorUndo/cursorUndo": {
"cursor.undo": "光标撤消",
"cursor.redo": "光标重做"
},
"vs/editor/contrib/toggleTabFocusMode/toggleTabFocusMode": {
"toggle.tabMovesFocus": "切换 Tab 键移动焦点",
"toggle.tabMovesFocus.on": "Tab 键将移动到下一可聚焦的元素",
"toggle.tabMovesFocus.off": "Tab 键将插入制表符"
},
"vs/editor/contrib/tokenization/tokenization": {
"forceRetokenize": "开发者: 强制重新进行标记"
},
"vs/editor/contrib/clipboard/clipboard": {
"actions.clipboard.cutLabel": "剪切",
"miCut": "剪切(&&T)",
"actions.clipboard.copyLabel": "复制",
"miCopy": "复制(&&C)",
"actions.clipboard.pasteLabel": "粘贴",
"miPaste": "粘贴(&&P)",
"actions.clipboard.copyWithSyntaxHighlightingLabel": "复制并突出显示语法"
},
"vs/editor/contrib/bracketMatching/bracketMatching": {
"overviewRulerBracketMatchForeground": "概览标尺上表示匹配括号的标记颜色。",
"smartSelect.jumpBracket": "转到括号",
"smartSelect.selectToBracket": "选择括号所有内容",
"miGoToBracket": "转到括号(&&B)"
},
"vs/editor/contrib/format/formatActions": {
"formatDocument.label": "格式化文档",
"formatSelection.label": "格式化选定内容"
},
"vs/editor/contrib/contextmenu/contextmenu": {
"action.showContextMenu.label": "显示编辑器上下文菜单"
},
"vs/editor/contrib/links/links": {
"links.navigate.executeCmd": "执行命令",
"links.navigate.follow": "转到链接",
"links.navigate.kb.meta.mac": "cmd + 单击",
"links.navigate.kb.meta": "ctrl + 单击",
"links.navigate.kb.alt.mac": "option + 单击",
"links.navigate.kb.alt": "alt + 单击",
"invalid.url": "此链接格式不正确,无法打开: {0}",
"missing.url": "此链接目标已丢失,无法打开。",
"label": "打开链接"
},
"vs/editor/contrib/inPlaceReplace/inPlaceReplace": {
"InPlaceReplaceAction.previous.label": "替换为上一个值",
"InPlaceReplaceAction.next.label": "替换为下一个值"
},
"vs/editor/contrib/hover/hover": {
"showHover": "显示悬停",
"showDefinitionPreviewHover": "显示定义预览悬停"
},
"vs/editor/contrib/smartSelect/smartSelect": {
"smartSelect.expand": "展开选择",
"miSmartSelectGrow": "展开选定内容(&&E)",
"smartSelect.shrink": "收起选择",
"miSmartSelectShrink": "缩小选定范围(&&S)"
},
"vs/editor/contrib/rename/rename": {
"no result": "无结果。",
"resolveRenameLocationFailed": "解析重命名位置时发生未知错误",
"aria": "成功将“{0}”重命名为“{1}”。摘要: {2}",
"rename.failed": "无法进行重命名。",
"rename.label": "重命名符号"
},
"vs/editor/contrib/gotoError/gotoError": {
"markerAction.next.label": "转到下一个问题 (错误、警告、信息)",
"markerAction.previous.label": "转到上一个问题 (错误、警告、信息)",
"markerAction.nextInFiles.label": "转到文件中的下一个问题 (错误、警告、信息)",
"markerAction.previousInFiles.label": "转到文件中的上一个问题 (错误、警告、信息)",
"miGotoNextProblem": "下一个问题(&&P)",
"miGotoPreviousProblem": "上一个问题(&&P)"
},
"vs/editor/contrib/gotoSymbol/link/goToDefinitionAtPosition": {
"multipleResults": "单击显示 {0} 个定义。"
},
"vs/editor/contrib/peekView/peekView": {
"label.close": "关闭",
"peekViewTitleBackground": "速览视图标题区域背景颜色。",
"peekViewTitleForeground": "速览视图标题颜色。",
"peekViewTitleInfoForeground": "速览视图标题信息颜色。",
"peekViewBorder": "速览视图边框和箭头颜色。",
"peekViewResultsBackground": "速览视图结果列表背景色。",
"peekViewResultsMatchForeground": "速览视图结果列表中行节点的前景色。",
"peekViewResultsFileForeground": "速览视图结果列表中文件节点的前景色。",
"peekViewResultsSelectionBackground": "速览视图结果列表中所选条目的背景色。",
"peekViewResultsSelectionForeground": "速览视图结果列表中所选条目的前景色。",
"peekViewEditorBackground": "速览视图编辑器背景色。",
"peekViewEditorGutterBackground": "速览视图编辑器中装订线的背景色。",
"peekViewResultsMatchHighlight": "在速览视图结果列表中匹配突出显示颜色。",
"peekViewEditorMatchHighlight": "在速览视图编辑器中匹配突出显示颜色。",
"peekViewEditorMatchHighlightBorder": "在速览视图编辑器中匹配项的突出显示边框。"
},
"vs/editor/contrib/gotoSymbol/goToCommands": {
"peek.submenu": "快速查看",
"def.title": "定义",
"noResultWord": "未找到“{0}”的任何定义",
"generic.noResults": "找不到定义",
"actions.goToDecl.label": "转到定义",
"miGotoDefinition": "转到定义(&&D)...",
"actions.goToDeclToSide.label": "打开侧边的定义",
"actions.previewDecl.label": "查看定义",
"decl.title": "声明",
"decl.noResultWord": "未找到“{0}”的声明",
"decl.generic.noResults": "未找到声明",
"actions.goToDeclaration.label": "转到声明",
"miGotoDeclaration": "转到\"声明\"",
"actions.peekDecl.label": "查看声明",
"typedef.title": "类型定义",
"goToTypeDefinition.noResultWord": "未找到“{0}”的类型定义",
"goToTypeDefinition.generic.noResults": "未找到类型定义",
"actions.goToTypeDefinition.label": "转到类型定义",
"miGotoTypeDefinition": "转到类型定义(&&T)",
"actions.peekTypeDefinition.label": "快速查看类型定义",
"impl.title": "实现",
"goToImplementation.noResultWord": "未找到“{0}”的实现",
"goToImplementation.generic.noResults": "未找到实现",
"actions.goToImplementation.label": "转到实现",
"miGotoImplementation": "跳转到实现",
"actions.peekImplementation.label": "查看实现",
"references.no": "未找到\"{0}\"的引用",
"references.noGeneric": "未找到引用",
"goToReferences.label": "转到引用",
"miGotoReference": "转到引用",
"ref.title": "引用",
"references.action.label": "查看引用",
"label.generic": "转到任何符号",
"generic.title": "位置",
"generic.noResult": "\"{0}\"无结果"
},
"vs/editor/contrib/suggest/suggestController": {
"arai.alert.snippet": "选择“{0}”后进行了其他 {1} 次编辑",
"suggest.trigger.label": "触发建议"
},
"vs/editor/contrib/wordHighlighter/wordHighlighter": {
"wordHighlight": "读取访问期间符号的背景色,例如读取变量时。颜色必须透明,以免隐藏下面的修饰效果。",
"wordHighlightStrong": "写入访问过程中符号的背景色,例如写入变量时。颜色必须透明,以免隐藏下面的修饰效果。",
"wordHighlightBorder": "符号在进行读取访问操作时的边框颜色,例如读取变量。",
"wordHighlightStrongBorder": "符号在进行写入访问操作时的边框颜色,例如写入变量。",
"overviewRulerWordHighlightForeground": "用于突出显示符号的概述标尺标记颜色。颜色必须透明,以免隐藏下面的修饰效果。",
"overviewRulerWordHighlightStrongForeground": "用于突出显示写权限符号的概述标尺标记颜色。颜色必须透明,以免隐藏下面的修饰效果。",
"wordHighlight.next.label": "转到下一个突出显示的符号",
"wordHighlight.previous.label": "转到上一个突出显示的符号",
"wordHighlight.trigger.label": "触发符号高亮"
},
"vs/editor/contrib/find/findController": {
"startFindAction": "查找",
"miFind": "查找(&&F)",
"startFindWithSelectionAction": "查找选定内容",
"findNextMatchAction": "查找下一个",
"findPreviousMatchAction": "查找上一个",
"nextSelectionMatchFindAction": "查找下一个选择",
"previousSelectionMatchFindAction": "查找上一个选择",
"startReplace": "替换",
"miReplace": "替换(&&R)"
},
"vs/editor/contrib/folding/folding": {
"unfoldAction.label": "展开",
"unFoldRecursivelyAction.label": "以递归方式展开",
"foldAction.label": "折叠",
"toggleFoldAction.label": "切换折叠",
"foldRecursivelyAction.label": "以递归方式折叠",
"foldAllBlockComments.label": "折叠所有块注释",
"foldAllMarkerRegions.label": "折叠所有区域",
"unfoldAllMarkerRegions.label": "展开所有区域",
"foldAllAction.label": "全部折叠",
"unfoldAllAction.label": "全部展开",
"foldLevelAction.label": "折叠级别 {0}"
},
"vs/editor/contrib/linesOperations/linesOperations": {
"lines.copyUp": "向上复制行",
"miCopyLinesUp": "向上复制行(&&C)",
"lines.copyDown": "向下复制行",
"miCopyLinesDown": "向下复制一行(&&P)",
"duplicateSelection": "重复选择",
"miDuplicateSelection": "重复选择",
"lines.moveUp": "向上移动行",
"miMoveLinesUp": "向上移动一行(&&V)",
"lines.moveDown": "向下移动行",
"miMoveLinesDown": "向下移动一行(&&L)",
"lines.sortAscending": "按升序排列行",
"lines.sortDescending": "按降序排列行",
"lines.trimTrailingWhitespace": "裁剪尾随空格",
"lines.delete": "删除行",
"lines.indent": "行缩进",
"lines.outdent": "行减少缩进",
"lines.insertBefore": "在上面插入行",
"lines.insertAfter": "在下面插入行",
"lines.deleteAllLeft": "删除左侧所有内容",
"lines.deleteAllRight": "删除右侧所有内容",
"lines.joinLines": "合并行",
"editor.transpose": "转置光标处的字符",
"editor.transformToUppercase": "转换为大写",
"editor.transformToLowercase": "转换为小写",
"editor.transformToTitlecase": "转换为词首字母大写"
},
"vs/editor/contrib/multicursor/multicursor": {
"mutlicursor.insertAbove": "在上面添加光标",
"miInsertCursorAbove": "在上面添加光标(&&A)",
"mutlicursor.insertBelow": "在下面添加光标",
"miInsertCursorBelow": "在下面添加光标(&&D)",
"mutlicursor.insertAtEndOfEachLineSelected": "在行尾添加光标",
"miInsertCursorAtEndOfEachLineSelected": "在行尾添加光标(&&U)",
"mutlicursor.addCursorsToBottom": "在底部添加光标",
"mutlicursor.addCursorsToTop": "在顶部添加光标",
"addSelectionToNextFindMatch": "将下一个查找匹配项添加到选择",
"miAddSelectionToNextFindMatch": "添加下一个匹配项(&&N)",
"addSelectionToPreviousFindMatch": "将选择内容添加到上一查找匹配项",
"miAddSelectionToPreviousFindMatch": "添加上一个匹配项(&&R)",
"moveSelectionToNextFindMatch": "将上次选择移动到下一个查找匹配项",
"moveSelectionToPreviousFindMatch": "将上个选择内容移动到上一查找匹配项",
"selectAllOccurrencesOfFindMatch": "选择所有找到的查找匹配项",
"miSelectHighlights": "选择所有匹配项(&&O)",
"changeAll.label": "更改所有匹配项"
},
"vs/editor/contrib/parameterHints/parameterHintsWidget": {
"hint": "{0},提示"
},
"vs/editor/contrib/rename/renameInputField": {
"renameAriaLabel": "重命名输入。键入新名称并按 \"Enter\" 提交。"
},
"vs/editor/contrib/gotoSymbol/peek/referencesController": {
"labelLoading": "正在加载...",
"metaTitle.N": "{0} ({1})"
},
"vs/editor/contrib/codeAction/codeActionCommands": {
"args.schema.kind": "要运行的代码操作的种类。",
"args.schema.apply": "控制何时应用返回的操作。",
"args.schema.apply.first": "始终应用第一个返回的代码操作。",
"args.schema.apply.ifSingle": "如果仅返回的第一个代码操作,则应用该操作。",
"args.schema.apply.never": "不要应用返回的代码操作。",
"args.schema.preferred": "如果只应返回首选代码操作,则应返回控件。",
"applyCodeActionFailed": "应用代码操作时发生未知错误",
"quickfix.trigger.label": "快速修复...",
"editor.action.quickFix.noneMessage": "没有可用的代码操作",
"editor.action.codeAction.noneMessage.preferred.kind": "没有适用于\"{0}\"的首选代码操作",
"editor.action.codeAction.noneMessage.kind": "没有适用于\"{0}\"的代码操作",
"editor.action.codeAction.noneMessage.preferred": "没有可用的首选代码操作",
"editor.action.codeAction.noneMessage": "没有可用的代码操作",
"refactor.label": "重构...",
"editor.action.refactor.noneMessage.preferred.kind": "没有适用于\"{0}\"的首选重构",
"editor.action.refactor.noneMessage.kind": "没有可用的\"{0}\"重构",
"editor.action.refactor.noneMessage.preferred": "没有可用的首选重构",
"editor.action.refactor.noneMessage": "没有可用的重构操作",
"source.label": "源代码操作...",
"editor.action.source.noneMessage.preferred.kind": "没有适用于\"{0}\"的首选源操作",
"editor.action.source.noneMessage.kind": "没有适用于“ {0}”的源操作",
"editor.action.source.noneMessage.preferred": "没有可用的首选源操作",
"editor.action.source.noneMessage": "没有可用的源代码操作",
"organizeImports.label": "整理 import 语句",
"editor.action.organize.noneMessage": "没有可用的整理 import 语句操作",
"fixAll.label": "全部修复",
"fixAll.noneMessage": "没有可用的“全部修复”操作",
"autoFix.label": "自动修复...",
"editor.action.autoFix.noneMessage": "没有可用的自动修复程序"
},
"vs/editor/contrib/format/format": {
"hint11": "在第 {0} 行进行了 1 次格式编辑",
"hintn1": "在第 {1} 行进行了 {0} 次格式编辑",
"hint1n": "第 {0} 行到第 {1} 行间进行了 1 次格式编辑",
"hintnn": "第 {1} 行到第 {2} 行间进行了 {0} 次格式编辑"
},
"vs/editor/contrib/message/messageController": {
"editor.readonly": "无法在只读编辑器中编辑"
},
"vs/editor/contrib/snippet/snippetVariables": {
"Sunday": "星期天",
"Monday": "星期一",
"Tuesday": "星期二",
"Wednesday": "星期三",
"Thursday": "星期四",
"Friday": "星期五",
"Saturday": "星期六",
"SundayShort": "周日",
"MondayShort": "周一",
"TuesdayShort": "周二",
"WednesdayShort": "周三",
"ThursdayShort": "周四",
"FridayShort": "周五",
"SaturdayShort": "周六",
"January": "一月",
"February": "二月",
"March": "三月",
"April": "四月",
"May": "5月",
"June": "六月",
"July": "七月",
"August": "八月",
"September": "九月",
"October": "十月",
"November": "十一月",
"December": "十二月",
"JanuaryShort": "1月",
"FebruaryShort": "2月",
"MarchShort": "三月",
"AprilShort": "4月",
"MayShort": "5月",
"JuneShort": "6月",
"JulyShort": "七月",
"AugustShort": "八月",
"SeptemberShort": "九月",
"OctoberShort": "10月",
"NovemberShort": "11 月",
"DecemberShort": "12月"
},
"vs/editor/contrib/gotoError/gotoErrorWidget": {
"problems": "{0} 个问题(共 {1} 个)",
"change": "{0} 个问题(共 {1} 个})",
"editorMarkerNavigationError": "编辑器标记导航小组件错误颜色。",
"editorMarkerNavigationWarning": "编辑器标记导航小组件警告颜色。",
"editorMarkerNavigationInfo": "编辑器标记导航小组件信息颜色。",
"editorMarkerNavigationBackground": "编辑器标记导航小组件背景色。"
},
"vs/editor/contrib/gotoSymbol/symbolNavigation": {
"location.kb": "{1} 的符号 {0},下一个使用 {2}",
"location": "{1} 的符号 {0}"
},
"vs/editor/contrib/gotoSymbol/referencesModel": {
"aria.oneReference": "在文件 {0} 的 {1} 行 {2} 列的符号",
"aria.fileReferences.1": "{0} 中有 1 个符号,完整路径: {1}",
"aria.fileReferences.N": "{1} 中有 {0} 个符号,完整路径: {2}",
"aria.result.0": "未找到结果",
"aria.result.1": "在 {0} 中找到 1 个符号",
"aria.result.n1": "在 {1} 中找到 {0} 个符号",
"aria.result.nm": "在 {1} 个文件中找到 {0} 个符号"
},
"vs/editor/contrib/hover/modesContentHover": {
"modesContentHover.loading": "正在加载...",
"peek problem": "速览问题",
"checkingForQuickFixes": "正在检查快速修复...",
"noQuickFixes": "没有可用的快速修复",
"quick fixes": "快速修复..."
},
"vs/editor/contrib/documentSymbols/outlineTree": {
"provider": "大纲提供者",
"title.template": "{0} ({1})",
"1.problem": "此元素存在 1 个问题",
"N.problem": "此元素存在 {0} 个问题",
"deep.problem": "包含存在问题的元素",
"Array": "数组",
"Boolean": "布尔",
"Class": "类",
"Constant": "常量",
"Constructor": "构造函数",
"Enum": "枚举",
"EnumMember": "枚举成员",
"Event": "事件",
"Field": "字段",
"File": "文件",
"Function": "函数",
"Interface": "接口",
"Key": "键",
"Method": "方法",
"Module": "模块",
"Namespace": "命名空间",
"Null": "Null",
"Number": "编号",
"Object": "对象",
"Operator": "运算符",
"Package": "打包",
"Property": "属性",
"String": "字符串",
"Struct": "结构",
"TypeParameter": "类型形参",
"Variable": "变量",
"symbolIcon.arrayForeground": "数组符号的前景色。这些符号将显示在大纲、痕迹导航栏和建议小组件中。",
"symbolIcon.booleanForeground": "布尔符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.classForeground": "类符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.colorForeground": "颜色符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.constantForeground": "常量符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.constructorForeground": "构造函数符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.enumeratorForeground": "枚举符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.enumeratorMemberForeground": "枚举器成员符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.eventForeground": "事件符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.fieldForeground": "字段符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.fileForeground": "文件符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.folderForeground": "文件夹符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.functionForeground": "函数符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.interfaceForeground": "接口符号的前景色。这些符号将显示在大纲、痕迹导航栏和建议小组件中。",
"symbolIcon.keyForeground": "键符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.keywordForeground": "关键字符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.methodForeground": "方法符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.moduleForeground": "模块符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.namespaceForeground": "命名空间符号的前景颜色。这些符号出现在轮廓、痕迹导航栏和建议小部件中。",
"symbolIcon.nullForeground": "空符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.numberForeground": "数字符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.objectForeground": "对象符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.operatorForeground": "运算符符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.packageForeground": "包符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.propertyForeground": "属性符号的前景色。这些符号出现在大纲、痕迹导航栏和建议小组件中。",
"symbolIcon.referenceForeground": "参考符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.snippetForeground": "片段符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.stringForeground": "字符串符号的前景颜色。这些符号出现在轮廓、痕迹导航栏和建议小部件中。",
"symbolIcon.structForeground": "结构符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.textForeground": "文本符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.typeParameterForeground": "类型参数符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.unitForeground": "单位符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。",
"symbolIcon.variableForeground": "变量符号的前景颜色。这些符号出现在大纲、痕迹导航栏和建议小部件中。"
},
"vs/editor/contrib/gotoSymbol/peek/referencesWidget": {
"missingPreviewMessage": "无可用预览",
"treeAriaLabel": "引用",
"noResults": "无结果",
"peekView.alternateTitle": "引用"
},
"vs/editor/contrib/suggest/suggestWidget": {
"editorSuggestWidgetBackground": "建议小组件的背景色。",
"editorSuggestWidgetBorder": "建议小组件的边框颜色。",
"editorSuggestWidgetForeground": "建议小组件的前景色。",
"editorSuggestWidgetSelectedBackground": "建议小组件中所选条目的背景色。",
"editorSuggestWidgetHighlightForeground": "建议小组件中匹配内容的高亮颜色。",
"readMore": "阅读更多...{0}",
"readLess": "阅读简略信息...{0}",
"loading": "正在加载...",
"suggestWidget.loading": "正在加载...",
"suggestWidget.noSuggestions": "无建议。",
"ariaCurrenttSuggestionReadDetails": "项目 {0},文档: {1}"
},
"vs/editor/contrib/find/findWidget": {
"label.find": "查找",
"placeholder.find": "查找",
"label.previousMatchButton": "上一个匹配项",
"label.nextMatchButton": "下一个匹配项",
"label.toggleSelectionFind": "在选定内容中查找",
"label.closeButton": "关闭",
"label.replace": "替换",
"placeholder.replace": "替换",
"label.replaceButton": "替换",
"label.replaceAllButton": "全部替换",
"label.toggleReplaceButton": "切换替换模式",
"title.matchesCountLimit": "仅高亮了前 {0} 个结果,但所有查找操作均针对全文。",
"label.matchesLocation": "{1} 中的 {0}",
"label.noResults": "无结果",
"ariaSearchNoResultEmpty": "找到 {0}",
"ariaSearchNoResult": "为{1}找到了{0}",
"ariaSearchNoResultWithLineNum": "{0} 在 {2} 处找到 {1}",
"ariaSearchNoResultWithLineNumNoCurrentMatch": "{0} 已找到 {1}",
"ctrlEnter.keybindingChanged": "Ctrl+Enter 现在由全部替换改为插入换行。你可以修改editor.action.replaceAll 的按键绑定以覆盖此行为。"
},
"vs/editor/contrib/codeAction/lightBulbWidget": {
"prefferedQuickFixWithKb": "显示修复程序。首选可用修复程序 ({0})",
"quickFixWithKb": "显示修补程序({0})",
"quickFix": "显示修补程序"
},
"vs/editor/contrib/gotoSymbol/peek/referencesTree": {
"referencesFailre": "解析文件失败。",
"referencesCount": "{0} 个引用",
"referenceCount": "{0} 个引用"
},
"vs/editor/contrib/indentation/indentation": {
"indentationToSpaces": "将缩进转换为空格",
"indentationToTabs": "将缩进转换为制表符",
"configuredTabSize": "已配置制表符大小",
"selectTabWidth": "选择当前文件的制表符大小",
"indentUsingTabs": "使用 \"Tab\" 缩进",
"indentUsingSpaces": "使用空格缩进",
"detectIndentation": "从内容中检测缩进方式",
"editor.reindentlines": "重新缩进行",
"editor.reindentselectedlines": "重新缩进所选行"
},
"vs/platform/environment/node/argvHelper": {
"unknownOption": "选项\"{0}\"未知。忽略。",
"multipleValues": "选项\"{0}\"定义多次。使用值\"{1}\"。",
"gotoValidation": "\"--goto\" 模式中的参数格式应为 \"FILE(:LINE(:CHARACTER))\"。"
},
"vs/platform/request/common/request": {
"httpConfigurationTitle": "HTTP",
"proxy": "要使用的代理设置。如果未设置,则将从 \"http_proxy\" 和 \"https_proxy\" 环境变量中继承。",
"strictSSL": "控制是否根据提供的 CA 列表验证代理服务器证书。",
"proxyAuthorization": "要作为每个网络请求的 \"Proxy-Authorization\" 标头发送的值。",
"proxySupportOff": "禁用对扩展的代理支持。",
"proxySupportOn": "为扩展启用代理支持。",
"proxySupportOverride": "为扩展启用代理支持,覆盖请求选项。",
"proxySupport": "对扩展使用代理支持。",
"systemCertificates": "控制是否应从操作系统加载 CA 证书。(在 Windows 和 macOS 上, 关闭此窗口后需要重新加载窗口。"
},
"vs/platform/update/common/update.config.contribution": {
"updateConfigurationTitle": "更新",
"updateMode": "配置是否接收自动更新。更改后需要重新启动。更新是从微软在线服务获取的。",
"none": "禁用更新。",
"manual": "禁用自动后台更新检查。如果手动检查更新,更新将可用。",
"start": "仅在启动时检查更新。禁用自动后台更新检查。",
"default": "启用自动更新检查。代码将定期自动检查更新。",
"deprecated": "此设置已弃用,请改用“{0}”。",
"enableWindowsBackgroundUpdatesTitle": "在 Windows 上启用后台更新",
"enableWindowsBackgroundUpdates": "启用在 Windows 上后台下载和安装新的 VS Code 版本",
"showReleaseNotes": "在更新后显示发行说明。发行说明将从 Microsoft 联机服务中获取。"
},
"vs/platform/extensionManagement/common/extensionManagement": {
"extensions": "扩展",
"preferences": "首选项"
},
"vs/platform/telemetry/common/telemetryService": {
"telemetryConfigurationTitle": "遥测",
"telemetry.enableTelemetry": "将使用数据和错误发送到 Microsoft 联机服务。"
},
"vs/platform/files/electron-browser/diskFileSystemProvider": {
"binFailed": "未能将“{0}”移动到回收站",
"trashFailed": "未能将“{0}”移动到废纸篓"
},
"vs/platform/userDataSync/common/userDataSync": {
"sync": "同步",
"sync.enable": "启用同步。",
"sync.enableSettings": "启用同步设置。",
"sync.enableExtensions": "启用同步扩展。",
"sync.enableKeybindings": "Enable synchronizing keybindings.",
"sync.keybindingsPerPlatform": "Synchronize keybindings per platform.",
"sync.ignoredExtensions": "配置在同步时要忽略的扩展。",
"sync.ignoredSettings": "配置在同步时要忽略的设置。\n默认忽略设置:\n\n{0}"
},
"vs/platform/extensionManagement/node/extensionManagementUtil": {
"invalidManifest": "VSIX无效:package.json不是JSON文件。"
},
"vs/platform/files/common/files": {
"unknownError": "未知错误"
},
"vs/platform/environment/node/argv": {
"optionsUpperCase": "选项",
"extensionsManagement": "扩展管理",
"troubleshooting": "故障排查",
"diff": "将两个文件相互比较。",
"add": "将文件夹添加到上一个活动窗口。",
"goto": "打开路径下的文件并定位到特定行和特定列。",
"newWindow": "强制打开新窗口。",
"reuseWindow": "强制在已打开的窗口中打开文件或文件夹。",
"wait": "等文件关闭后再返回。",