@node-red/editor-client 4.0.0-beta.3 → 4.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/locales/en-US/editor.json +3 -0
- package/locales/fr/editor.json +3 -0
- package/locales/ja/editor.json +2 -0
- package/package.json +1 -1
- package/public/red/about +33 -657
- package/public/red/red.js +69 -11
- package/public/red/red.min.js +1 -1
- package/public/red/style.min.css +1 -1
- package/public/red/tours/welcome.js +24 -29
- package/public/types/node-red/util.d.ts +1 -1
- package/public/vendor/ace/worker-jsonata.js +1 -1
- package/public/vendor/mermaid/mermaid.min.js +705 -318
- package/public/vendor/monaco/dist/{0c718f5b7d2bce997c5f.ttf → 8f3abbcbc983396e1f13.ttf} +0 -0
- package/public/vendor/monaco/dist/css.worker.js +1 -1
- package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/editor.js +1 -1
- package/public/vendor/monaco/dist/editor.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/editor.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/json.worker.js +1 -1
- package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
- package/public/vendor/monaco/dist/locale/cs.js +227 -139
- package/public/vendor/monaco/dist/locale/de.js +229 -141
- package/public/vendor/monaco/dist/locale/es.js +225 -137
- package/public/vendor/monaco/dist/locale/fr.js +226 -138
- package/public/vendor/monaco/dist/locale/it.js +226 -138
- package/public/vendor/monaco/dist/locale/ja.js +227 -139
- package/public/vendor/monaco/dist/locale/ko.js +226 -138
- package/public/vendor/monaco/dist/locale/pl.js +227 -139
- package/public/vendor/monaco/dist/locale/pt-br.js +243 -155
- package/public/vendor/monaco/dist/locale/qps-ploc.js +229 -141
- package/public/vendor/monaco/dist/locale/ru.js +225 -137
- package/public/vendor/monaco/dist/locale/tr.js +227 -139
- package/public/vendor/monaco/dist/locale/zh-hans.js +225 -137
- package/public/vendor/monaco/dist/locale/zh-hant.js +228 -140
- package/public/vendor/monaco/dist/ts.worker.js +2 -2
- package/public/vendor/vendor.js +1 -1
- package/templates/index.mst +2 -2
|
@@ -35,9 +35,6 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
35
35
|
"acessibleViewHint": "使用 {0} 在可存取檢視中檢查此項目。",
|
|
36
36
|
"acessibleViewHintNoKbOpen": "透過目前無法透過按鍵繫結關係觸發的開啟可存取檢視命令,在可存取檢視中檢查此項目。"
|
|
37
37
|
},
|
|
38
|
-
"vs/base/browser/ui/iconLabel/iconLabelHover": {
|
|
39
|
-
"iconLabel.loading": "正在載入..."
|
|
40
|
-
},
|
|
41
38
|
"vs/base/browser/ui/inputbox/inputBox": {
|
|
42
39
|
"alertErrorMessage": "錯誤: {0}",
|
|
43
40
|
"alertInfoMessage": "資訊: {0}",
|
|
@@ -108,10 +105,30 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
108
105
|
"selectAll": "全選",
|
|
109
106
|
"undo": "復原"
|
|
110
107
|
},
|
|
111
|
-
"vs/editor/browser/
|
|
108
|
+
"vs/editor/browser/services/hoverService/hoverWidget": {
|
|
109
|
+
"hoverhint": "按住 {0} 鍵將滑鼠懸停在上面"
|
|
110
|
+
},
|
|
111
|
+
"vs/editor/browser/services/hoverService/updatableHoverWidget": {
|
|
112
|
+
"iconLabel.loading": "正在載入..."
|
|
113
|
+
},
|
|
114
|
+
"vs/editor/browser/widget/codeEditor/codeEditorWidget": {
|
|
112
115
|
"cursors.maximum": "游標數目已限制為 {0}。請考慮使用 [尋找和取代](https://code.visualstudio.com/docs/editor/codebasics#_find-and-replace) 進行較大型的變更,或增加編輯器的多重游標限制設定。",
|
|
113
116
|
"goToSetting": "增加多重游標限制"
|
|
114
117
|
},
|
|
118
|
+
"vs/editor/browser/widget/diffEditor/commands": {
|
|
119
|
+
"accessibleDiffViewer": "可存取的 Diff 檢視器",
|
|
120
|
+
"collapseAllUnchangedRegions": "摺疊所有未變更的區域",
|
|
121
|
+
"diffEditor": "Diff 編輯器",
|
|
122
|
+
"editor.action.accessibleDiffViewer.next": "移至下一個差異",
|
|
123
|
+
"editor.action.accessibleDiffViewer.prev": "移至上一個差異",
|
|
124
|
+
"exitCompareMove": "結束比較移動",
|
|
125
|
+
"revert": "還原",
|
|
126
|
+
"showAllUnchangedRegions": "顯示所有未變更的區域",
|
|
127
|
+
"switchSide": "切換側邊",
|
|
128
|
+
"toggleCollapseUnchangedRegions": "切換摺疊未變更的區域",
|
|
129
|
+
"toggleShowMovedCodeBlocks": "切換顯示移動的程式碼區塊",
|
|
130
|
+
"toggleUseInlineViewWhenSpaceIsLimited": "當空間有限時切換使用內嵌檢視"
|
|
131
|
+
},
|
|
115
132
|
"vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer": {
|
|
116
133
|
"accessibleDiffViewerCloseIcon": "易存取差異檢視器中的 [關閉] 圖示。",
|
|
117
134
|
"accessibleDiffViewerInsertIcon": "易存取差異檢視器中的 [插入] 圖示。",
|
|
@@ -142,18 +159,9 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
142
159
|
},
|
|
143
160
|
"vs/editor/browser/widget/diffEditor/diffEditor.contribution": {
|
|
144
161
|
"Open Accessible Diff Viewer": "開啟易存取差異檢視器",
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"diffEditor": "Diff 編輯器",
|
|
148
|
-
"editor.action.accessibleDiffViewer.next": "移至下一個差異",
|
|
149
|
-
"editor.action.accessibleDiffViewer.prev": "移至上一個差異",
|
|
150
|
-
"exitCompareMove": "結束比較移動",
|
|
151
|
-
"showAllUnchangedRegions": "顯示所有未變更的區域",
|
|
162
|
+
"revertHunk": "還原區塊",
|
|
163
|
+
"revertSelection": "還原選取範圍",
|
|
152
164
|
"showMoves": "顯示移動的程式碼區塊",
|
|
153
|
-
"switchSide": "切換側邊",
|
|
154
|
-
"toggleCollapseUnchangedRegions": "切換摺疊未變更的區域",
|
|
155
|
-
"toggleShowMovedCodeBlocks": "切換顯示移動的程式碼區塊",
|
|
156
|
-
"toggleUseInlineViewWhenSpaceIsLimited": "當空間有限時切換使用內嵌檢視",
|
|
157
165
|
"useInlineViewWhenSpaceIsLimited": "空間有限時使用內嵌檢視"
|
|
158
166
|
},
|
|
159
167
|
"vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature": {
|
|
@@ -181,14 +189,14 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
181
189
|
"diffInsertIcon": "Diff 編輯器中用於插入的線條裝飾。",
|
|
182
190
|
"diffRemoveIcon": "Diff 編輯器中用於移除的線條裝飾。"
|
|
183
191
|
},
|
|
184
|
-
"vs/editor/browser/widget/
|
|
185
|
-
"hoverhint": "按住 {0} 鍵將滑鼠懸停在上面"
|
|
186
|
-
},
|
|
187
|
-
"vs/editor/browser/widget/multiDiffEditorWidget/colors": {
|
|
192
|
+
"vs/editor/browser/widget/multiDiffEditor/colors": {
|
|
188
193
|
"multiDiffEditor.background": "多重檔案 Diff 編輯器的背景色彩",
|
|
189
194
|
"multiDiffEditor.border": "多重檔案 Diff 編輯器的框線色彩",
|
|
190
195
|
"multiDiffEditor.headerBackground": "Diff 編輯器標頭的背景色彩"
|
|
191
196
|
},
|
|
197
|
+
"vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl": {
|
|
198
|
+
"noChangedFiles": "沒有變更的檔案"
|
|
199
|
+
},
|
|
192
200
|
"vs/editor/common/config/editorConfigurationSchema": {
|
|
193
201
|
"codeLens": "控制編輯器是否顯示 codelens。",
|
|
194
202
|
"detectIndentation": "根據檔案內容,控制當檔案開啟時,是否自動偵測 {0} 和 {1}。",
|
|
@@ -209,6 +217,7 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
209
217
|
"maxComputationTime": "取消 Diff 計算前的逾時限制 (毫秒)。若無逾時,請使用 0。",
|
|
210
218
|
"maxFileSize": "要計算差異的檔案大小上限 (MB)。使用 0 表示無限制。",
|
|
211
219
|
"maxTokenizationLineLength": "因效能的緣故,不會將超過此高度的行 Token 化",
|
|
220
|
+
"renderGutterMenu": "啟用時,Diff 編輯器會顯示還原和暫存動作的特殊裝訂邊。",
|
|
212
221
|
"renderIndicators": "控制 Diff 編輯器是否要為新增/移除的變更顯示 +/- 標記。",
|
|
213
222
|
"renderMarginRevertIcon": "啟用時,Diff 編輯器會在其字元邊緣顯示箭頭,以還原變更。",
|
|
214
223
|
"renderSideBySideInlineBreakpoint": "如果差異編輯器寬度小於此值,則使用內嵌檢視。",
|
|
@@ -276,7 +285,7 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
276
285
|
"cursorSmoothCaretAnimation.on": "永遠啟用平滑插入號動畫。",
|
|
277
286
|
"cursorStyle": "控制資料指標樣式。",
|
|
278
287
|
"cursorSurroundingLines": "控制游標上下周圍可顯示的前置線 (最小為 0) 和後置線 (最小為 1) 的最小數目。在某些編輯器中稱為 'scrollOff' 或 'scrollOffset'。",
|
|
279
|
-
"cursorSurroundingLinesStyle": "控制應強制執行 `#cursorSurroundingLines#`
|
|
288
|
+
"cursorSurroundingLinesStyle": "控制應強制執行 `#editor.cursorSurroundingLines#` 的時間。",
|
|
280
289
|
"cursorSurroundingLinesStyle.all": "一律強制執行 `cursorSurroundingLines`",
|
|
281
290
|
"cursorSurroundingLinesStyle.default": "只有通過鍵盤或 API 觸發時,才會施行 `cursorSurroundingLines`。",
|
|
282
291
|
"cursorWidth": "控制游標寬度,當 `#editor.cursorStyle#` 設定為 `line` 時。",
|
|
@@ -452,6 +461,9 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
452
461
|
"minimap.maxColumn": "限制縮圖的寬度,最多顯示某個數目的列。",
|
|
453
462
|
"minimap.renderCharacters": "顯示行中的實際字元,而不是色彩區塊。",
|
|
454
463
|
"minimap.scale": "縮圖內所繪製的內容大小: 1、2 或 3。",
|
|
464
|
+
"minimap.sectionHeaderFontSize": "控制縮圖中區段標頭的字型大小。",
|
|
465
|
+
"minimap.showMarkSectionHeaders": "控制是否將 MARK: 註解顯示為縮圖中的區段標頭。",
|
|
466
|
+
"minimap.showRegionSectionHeaders": "控制指定的區域是否在縮圖中顯示為區段標頭。",
|
|
455
467
|
"minimap.showSlider": "控制何時顯示迷你地圖滑桿。",
|
|
456
468
|
"minimap.side": "控制要在哪端呈現縮圖。",
|
|
457
469
|
"minimap.size": "控制縮圖的大小。",
|
|
@@ -581,10 +593,11 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
581
593
|
"unusualLineTerminators.auto": "自動移除異常的行結束字元。",
|
|
582
594
|
"unusualLineTerminators.off": "忽略異常的行結束字元。",
|
|
583
595
|
"unusualLineTerminators.prompt": "要移除之異常的行結束字元提示。",
|
|
584
|
-
"useTabStops": "
|
|
596
|
+
"useTabStops": "空格和索引標籤的插入和刪除會與索引標籤的停頓對齊。",
|
|
585
597
|
"wordBreak": "控制用於中文/日文/韓文 (CJK) 文字的斷字規則。",
|
|
586
598
|
"wordBreak.keepAll": "中文/日文/韓文 (CJK) 文字不應該使用斷字。非中日韓的文字行為與一般文字相同。",
|
|
587
599
|
"wordBreak.normal": "使用預設的分行符號規則。",
|
|
600
|
+
"wordSegmenterLocales": "執行與文字相關的瀏覽或作業時,用於文字分割的地區設定。指定您要辨識的文字的 BCP 47 語言標記 (例如 ja、zh-CN、zh-Hant-TW 等)。",
|
|
588
601
|
"wordSeparators": "在執行文字相關導覽或作業時要用作文字分隔符號的字元",
|
|
589
602
|
"wordWrap": "控制如何換行。",
|
|
590
603
|
"wordWrap.bounded": "當檢視區縮至最小並設定 '#editor.wordWrapColumn#' 時換行。",
|
|
@@ -650,6 +663,10 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
650
663
|
"editorIndentGuides5": "編輯器縮排輔助線的色彩 (5)。",
|
|
651
664
|
"editorIndentGuides6": "編輯器縮排輔助線的色彩 (6)。",
|
|
652
665
|
"editorLineNumbers": "編輯器行號的色彩。",
|
|
666
|
+
"editorMultiCursorPrimaryBackground": "有多個游標存在時,主要編輯器游標的背景色彩。允許自訂區塊游標重疊的字元色彩。",
|
|
667
|
+
"editorMultiCursorPrimaryForeground": "有多個游標存在時,主要編輯器游標的色彩。",
|
|
668
|
+
"editorMultiCursorSecondaryBackground": "有多個游標存在時,次要編輯器游標的背景色彩。允許自訂區塊游標重疊的字元色彩。",
|
|
669
|
+
"editorMultiCursorSecondaryForeground": "有多個游標存在時,次要編輯器游標的色彩。",
|
|
653
670
|
"editorOverviewRulerBackground": "編輯器概觀尺規的背景色彩。",
|
|
654
671
|
"editorOverviewRulerBorder": "預覽檢視編輯器尺規的邊框色彩.",
|
|
655
672
|
"editorRuler": "編輯器尺規的色彩",
|
|
@@ -673,6 +690,11 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
673
690
|
"accessibleDiffViewerVisible": "是否顯示易存取差異檢視器",
|
|
674
691
|
"comparingMovedCode": "是否選取移動的程式碼區塊進行比較",
|
|
675
692
|
"diffEditorHasChanges": "Diff 編輯器是否有變更",
|
|
693
|
+
"diffEditorInlineMode": "內嵌模式是否作用中",
|
|
694
|
+
"diffEditorModifiedUri": "已修改文件的 URI",
|
|
695
|
+
"diffEditorModifiedWritable": "修改是否可以在 Diff 編輯器中寫入",
|
|
696
|
+
"diffEditorOriginalUri": "原始文件的 URI",
|
|
697
|
+
"diffEditorOriginalWritable": "修改是否可以在 Diff 編輯器中寫入",
|
|
676
698
|
"diffEditorRenderSideBySideInlineBreakpointReached": "是否已達到差異編輯器並排呈現內嵌中斷點",
|
|
677
699
|
"editorColumnSelection": "'editor.columnSelection' 是否已啟用",
|
|
678
700
|
"editorFocus": "編輯器或編輯器小工具是否有焦點 (例如焦點位於 [尋找] 小工具中)",
|
|
@@ -765,8 +787,7 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
765
787
|
"listAnnouncementsCommand": "執行命令: List Signal Announcements 以查看公告及其目前狀態的概觀。",
|
|
766
788
|
"listSignalSoundsCommand": "執行命令: List Signal Sounds 以查看所有音效及其目前狀態的概觀。",
|
|
767
789
|
"openingDocs": "正在開啟協助工具文件頁面。",
|
|
768
|
-
"quickChatCommand": "切換快速聊天
|
|
769
|
-
"quickChatCommandNoKb": "切換快速聊天目前無法由按鍵繫結關係觸發。",
|
|
790
|
+
"quickChatCommand": "切換快速聊天 <keybinding:workbench.action.quickchat.toggle> 以開啟或關閉聊天工作階段。",
|
|
770
791
|
"quickCommandActionHelp": "顯示並執行命令",
|
|
771
792
|
"quickCommandActionLabel": "命令選擇區",
|
|
772
793
|
"quickOutlineActionLabel": "移至符號...",
|
|
@@ -776,14 +797,10 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
776
797
|
"screenReaderModeDisabled": "螢幕助讀程式最佳化模式已停用。",
|
|
777
798
|
"screenReaderModeEnabled": "螢幕閱讀程式最佳化模式已啟用。",
|
|
778
799
|
"showAccessibilityHelpAction": "顯示協助工具說明",
|
|
779
|
-
"startInlineChatCommand": "開始內嵌聊天
|
|
780
|
-
"
|
|
781
|
-
"
|
|
782
|
-
"
|
|
783
|
-
"tabFocusModeOffMsg": "在目前的編輯器中按 Tab 鍵會插入定位字元。切換此行為 {0}。",
|
|
784
|
-
"tabFocusModeOffMsgNoKb": "在目前的編輯器中按 Tab 鍵會插入定位字元。命令 {0} 目前無法由按鍵繫結關係觸發。",
|
|
785
|
-
"tabFocusModeOnMsg": "在目前的編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。切換此行為 {0}。",
|
|
786
|
-
"tabFocusModeOnMsgNoKb": "在目前的編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。命令 {0} 目前無法由按鍵繫結關係觸發。",
|
|
800
|
+
"startInlineChatCommand": "開始內嵌聊天 <keybinding:inlineChat.start> 以建立編輯器中的聊天工作階段。",
|
|
801
|
+
"stickScrollKb": "聚焦自黏捲動 <keybinding:editor.action.focusStickyScroll> 以聚焦目前巢狀範圍。",
|
|
802
|
+
"tabFocusModeOffMsg": "在目前的編輯器中按 Tab 鍵會插入定位字元。切換此行為 <keybinding:editor.action.toggleTabFocusMode>",
|
|
803
|
+
"tabFocusModeOnMsg": "在目前的編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。切換此行為 <keybinding:editor.action.toggleTabFocusMode>",
|
|
787
804
|
"toggleHighContrast": "切換高對比佈景主題"
|
|
788
805
|
},
|
|
789
806
|
"vs/editor/common/viewLayout/viewLineRenderer": {
|
|
@@ -892,9 +909,12 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
892
909
|
},
|
|
893
910
|
"vs/editor/contrib/colorPicker/browser/standaloneColorPickerActions": {
|
|
894
911
|
"hideColorPicker": "隱藏顏色選擇器",
|
|
912
|
+
"hideColorPickerDescription": "隱藏獨立色彩選擇器。",
|
|
895
913
|
"insertColorWithStandaloneColorPicker": "使用獨立的顏色選擇器插入顏色",
|
|
914
|
+
"insertColorWithStandaloneColorPickerDescription": "使用焦點獨立色彩選擇器插入十六進位/RGB/HSL 色彩。",
|
|
896
915
|
"mishowOrFocusStandaloneColorPicker": "&&顯示或聚焦獨立的顏色選擇器",
|
|
897
|
-
"showOrFocusStandaloneColorPicker": "顯示或聚焦獨立的顏色選擇器"
|
|
916
|
+
"showOrFocusStandaloneColorPicker": "顯示或聚焦獨立的顏色選擇器",
|
|
917
|
+
"showOrFocusStandaloneColorPickerDescription": "顯示或聚焦使用預設色彩提供者的獨立色彩選擇器。它會顯示十六進位/RGB/HSL 色彩。"
|
|
898
918
|
},
|
|
899
919
|
"vs/editor/contrib/comment/browser/comment": {
|
|
900
920
|
"comment.block": "切換區塊註解",
|
|
@@ -922,7 +942,7 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
922
942
|
},
|
|
923
943
|
"vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution": {
|
|
924
944
|
"pasteAs": "貼上為...",
|
|
925
|
-
"pasteAs.
|
|
945
|
+
"pasteAs.kind": "要嘗試套用的貼上編輯種類。若未提供或有多個此類型的編輯,編輯器會顯示選擇器。",
|
|
926
946
|
"pasteAsText": "貼上為文字"
|
|
927
947
|
},
|
|
928
948
|
"vs/editor/contrib/dropOrPasteInto/browser/copyPasteController": {
|
|
@@ -934,7 +954,6 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
934
954
|
"postPasteWidgetTitle": "顯示貼上選項..."
|
|
935
955
|
},
|
|
936
956
|
"vs/editor/contrib/dropOrPasteInto/browser/defaultProviders": {
|
|
937
|
-
"builtIn": "內建",
|
|
938
957
|
"defaultDropProvider.uriList.path": "插入路徑",
|
|
939
958
|
"defaultDropProvider.uriList.paths": "插入路徑",
|
|
940
959
|
"defaultDropProvider.uriList.relativePath": "插入相對路徑",
|
|
@@ -952,6 +971,10 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
952
971
|
"dropWidgetVisible": "是否顯示卸除小工具",
|
|
953
972
|
"postDropWidgetTitle": "顯示卸除選項..."
|
|
954
973
|
},
|
|
974
|
+
"vs/editor/contrib/dropOrPasteInto/browser/postEditWidget": {
|
|
975
|
+
"applyError": "套用編輯 '{0}' 時發生錯誤:\r\n{1}",
|
|
976
|
+
"resolveError": "解析編輯 '{0}' 時發生錯誤:\r\n{1}"
|
|
977
|
+
},
|
|
955
978
|
"vs/editor/contrib/editorState/browser/keybindingCancellation": {
|
|
956
979
|
"cancellableOperation": "編輯器是否執行可取消的作業,例如「預覽參考」"
|
|
957
980
|
},
|
|
@@ -1136,22 +1159,40 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1136
1159
|
"location": "{1} 的符號 {0}",
|
|
1137
1160
|
"location.kb": "{1} 的符號 {0},{2} 為下一個"
|
|
1138
1161
|
},
|
|
1139
|
-
"vs/editor/contrib/hover/browser/
|
|
1162
|
+
"vs/editor/contrib/hover/browser/hoverActions": {
|
|
1163
|
+
"decreaseHoverVerbosityLevel": "降低暫留詳細程度層級",
|
|
1140
1164
|
"goToBottomHover": "移至下方暫留",
|
|
1165
|
+
"goToBottomHoverDescription": "移至編輯器暫留的底部。",
|
|
1141
1166
|
"goToTopHover": "移至上方暫留",
|
|
1167
|
+
"goToTopHoverDescription": "移至編輯器暫留的頂端。",
|
|
1168
|
+
"increaseHoverVerbosityLevel": "提高暫留詳細程度層級",
|
|
1142
1169
|
"pageDownHover": "下一頁暫留",
|
|
1170
|
+
"pageDownHoverDescription": "將編輯器暫留向下一頁。",
|
|
1143
1171
|
"pageUpHover": "上一頁暫留",
|
|
1172
|
+
"pageUpHoverDescription": "將編輯器暫留向上一頁。",
|
|
1144
1173
|
"scrollDownHover": "向下捲動暫留",
|
|
1174
|
+
"scrollDownHoverDescription": "向下捲動編輯器暫留。",
|
|
1145
1175
|
"scrollLeftHover": "向左捲動暫留",
|
|
1176
|
+
"scrollLeftHoverDescription": "向左捲動編輯器暫留。",
|
|
1146
1177
|
"scrollRightHover": "向右捲動暫留",
|
|
1178
|
+
"scrollRightHoverDescription": "向右捲動編輯器暫留。",
|
|
1147
1179
|
"scrollUpHover": "向上捲動暫留",
|
|
1180
|
+
"scrollUpHoverDescription": "向上捲動編輯器暫留。",
|
|
1148
1181
|
"showDefinitionPreviewHover": "顯示定義預覽懸停",
|
|
1182
|
+
"showDefinitionPreviewHoverDescription": "在編輯器中顯示定義預覽暫留。",
|
|
1149
1183
|
"showOrFocusHover": "顯示或聚焦暫留",
|
|
1150
1184
|
"showOrFocusHover.focus.autoFocusImmediately": "游標暫留出現時將自動聚焦。",
|
|
1151
1185
|
"showOrFocusHover.focus.focusIfVisible": "只有在游標暫留顯示時才會聚焦。",
|
|
1152
|
-
"showOrFocusHover.focus.noAutoFocus": "游標暫留將不會自動聚焦。"
|
|
1186
|
+
"showOrFocusHover.focus.noAutoFocus": "游標暫留將不會自動聚焦。",
|
|
1187
|
+
"showOrFocusHoverDescription": "顯示或聚焦編輯器暫留,這會顯示目前游標位置符號的文件、參考及其他內容。"
|
|
1153
1188
|
},
|
|
1154
1189
|
"vs/editor/contrib/hover/browser/markdownHoverParticipant": {
|
|
1190
|
+
"decreaseHoverVerbosity": "降低暫留詳細程度的圖示。",
|
|
1191
|
+
"decreaseVerbosity": "降低詳細程度",
|
|
1192
|
+
"decreaseVerbosityWithKb": "降低詳細程度 ({0})",
|
|
1193
|
+
"increaseHoverVerbosity": "提高暫留詳細程度的圖示。",
|
|
1194
|
+
"increaseVerbosity": "提高詳細程度",
|
|
1195
|
+
"increaseVerbosityWithKb": "提高詳細程度 ({0})",
|
|
1155
1196
|
"modesContentHover.loading": "正在載入...",
|
|
1156
1197
|
"stopped rendering": "由於效能原因,已暫停轉譯。這可透過 `editor.stopRenderingLineAfter` 進行設定。",
|
|
1157
1198
|
"too many characters": "因效能的緣故,已跳過將長的行 Token 化。您可透過 `editor.maxTokenizationLineLength` 設定。"
|
|
@@ -1164,16 +1205,24 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1164
1205
|
},
|
|
1165
1206
|
"vs/editor/contrib/indentation/browser/indentation": {
|
|
1166
1207
|
"changeTabDisplaySize": "變更索引標籤顯示大小",
|
|
1208
|
+
"changeTabDisplaySizeDescription": "變更與定位字元相等的空格大小。",
|
|
1167
1209
|
"configuredTabSize": "已設定的定位點大小",
|
|
1168
1210
|
"currentTabSize": "目前的索引標籤大小",
|
|
1169
1211
|
"defaultTabSize": "預設索引標籤大小",
|
|
1170
1212
|
"detectIndentation": "偵測內容中的縮排",
|
|
1213
|
+
"detectIndentationDescription": "偵測內容中的縮排。",
|
|
1171
1214
|
"editor.reindentlines": "重新將行縮排",
|
|
1215
|
+
"editor.reindentlinesDescription": "重新縮排編輯器的行。",
|
|
1172
1216
|
"editor.reindentselectedlines": "重新將選取的行縮排",
|
|
1217
|
+
"editor.reindentselectedlinesDescription": "重新縮排編輯器的選取行。",
|
|
1173
1218
|
"indentUsingSpaces": "使用空格鍵進行縮排",
|
|
1219
|
+
"indentUsingSpacesDescription": "使用空格縮排。",
|
|
1174
1220
|
"indentUsingTabs": "使用 Tab 進行縮排",
|
|
1221
|
+
"indentUsingTabsDescription": "使用定位字元縮排。",
|
|
1175
1222
|
"indentationToSpaces": "將縮排轉換成空格",
|
|
1223
|
+
"indentationToSpacesDescription": "將定位字元縮排轉換為空格。",
|
|
1176
1224
|
"indentationToTabs": "將縮排轉換成定位點",
|
|
1225
|
+
"indentationToTabsDescription": "將空格縮排轉換為定位字元。",
|
|
1177
1226
|
"selectTabWidth": "選取目前檔案的定位點大小"
|
|
1178
1227
|
},
|
|
1179
1228
|
"vs/editor/contrib/inlayHints/browser/inlayHintsHover": {
|
|
@@ -1230,6 +1279,7 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1230
1279
|
"editor.transformToCamelcase": "轉換為 Camel 案例",
|
|
1231
1280
|
"editor.transformToKebabcase": "轉換成 Kebab Case",
|
|
1232
1281
|
"editor.transformToLowercase": "轉換到小寫",
|
|
1282
|
+
"editor.transformToPascalcase": "轉換為 Pascal 命名法的大小寫",
|
|
1233
1283
|
"editor.transformToSnakecase": "轉換為底線連接字",
|
|
1234
1284
|
"editor.transformToTitlecase": "轉換為字首大寫",
|
|
1235
1285
|
"editor.transformToUppercase": "轉換到大寫",
|
|
@@ -1386,7 +1436,9 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1386
1436
|
"rename.label": "重新命名符號",
|
|
1387
1437
|
"resolveRenameLocationFailed": "解析重新命名位置時發生未知的錯誤"
|
|
1388
1438
|
},
|
|
1389
|
-
"vs/editor/contrib/rename/browser/
|
|
1439
|
+
"vs/editor/contrib/rename/browser/renameWidget": {
|
|
1440
|
+
"cancelRenameSuggestionsButton": "取消",
|
|
1441
|
+
"generateRenameSuggestionsButton": "產生新名稱建議",
|
|
1390
1442
|
"label": "按 {0} 進行重新命名,按 {1} 進行預覽",
|
|
1391
1443
|
"renameAriaLabel": "為輸入重新命名。請鍵入新名稱,然後按 Enter 以提交。",
|
|
1392
1444
|
"renameInputFocused": "是否聚焦於重新命名輸入小工具",
|
|
@@ -1446,16 +1498,17 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1446
1498
|
"WednesdayShort": "週三"
|
|
1447
1499
|
},
|
|
1448
1500
|
"vs/editor/contrib/stickyScroll/browser/stickyScrollActions": {
|
|
1449
|
-
"focusStickyScroll": "
|
|
1450
|
-
"goToFocusedStickyScrollLine.title": "
|
|
1501
|
+
"focusStickyScroll": "專注於編輯器自黏捲動",
|
|
1502
|
+
"goToFocusedStickyScrollLine.title": "移至焦點自黏捲動行",
|
|
1451
1503
|
"miStickyScroll": "自黏捲動(&&S)",
|
|
1452
1504
|
"mifocusStickyScroll": "焦點自黏捲動(&&F)",
|
|
1453
1505
|
"mitoggleStickyScroll": "切換編輯器自黏捲動(&&T)",
|
|
1454
1506
|
"selectEditor.title": "選取編輯器",
|
|
1455
|
-
"selectNextStickyScrollLine.title": "
|
|
1507
|
+
"selectNextStickyScrollLine.title": "選取下一個編輯器自黏捲動行",
|
|
1456
1508
|
"selectPreviousStickyScrollLine.title": "選取上一個自黏捲動行",
|
|
1457
1509
|
"stickyScroll": "自黏捲動",
|
|
1458
|
-
"toggleEditorStickyScroll": "切換編輯器自黏捲動"
|
|
1510
|
+
"toggleEditorStickyScroll": "切換編輯器自黏捲動",
|
|
1511
|
+
"toggleEditorStickyScroll.description": "切換/啟用顯示檢視區頂端巢狀範圍的編輯器自黏捲動"
|
|
1459
1512
|
},
|
|
1460
1513
|
"vs/editor/contrib/suggest/browser/suggest": {
|
|
1461
1514
|
"acceptSuggestionOnEnter": "是否在按下 Enter 時插入建議",
|
|
@@ -1541,6 +1594,7 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1541
1594
|
"symbolIcon.variableForeground": "變數符號的前景色彩。這些符號會出現在大綱、階層連結和建議小工具中。"
|
|
1542
1595
|
},
|
|
1543
1596
|
"vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode": {
|
|
1597
|
+
"tabMovesFocusDescriptions": "決定 Tab 鍵要在工作台四處移動焦點,或在目前的編輯器中插入定位字元。這也稱為定位點補漏白、定位點瀏覽或定位點焦點模式。",
|
|
1544
1598
|
"toggle.tabMovesFocus": "切換 TAB 鍵移動焦點",
|
|
1545
1599
|
"toggle.tabMovesFocus.off": "按 Tab 現在會插入定位字元。",
|
|
1546
1600
|
"toggle.tabMovesFocus.on": "按 Tab 現在會將焦點移至下一個可設定焦點的元素。"
|
|
@@ -1602,25 +1656,27 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1602
1656
|
},
|
|
1603
1657
|
"vs/platform/accessibilitySignal/browser/accessibilitySignalService": {
|
|
1604
1658
|
"accessibility.signals.chatRequestSent": "聊天要求已傳送",
|
|
1605
|
-
"accessibility.signals.chatResponsePending": "聊天回應擱置中",
|
|
1606
1659
|
"accessibility.signals.clear": "清除",
|
|
1607
1660
|
"accessibility.signals.format": "格式",
|
|
1608
1661
|
"accessibility.signals.lineHasBreakpoint": "中斷點",
|
|
1609
|
-
"accessibility.signals.lineHasError": "
|
|
1662
|
+
"accessibility.signals.lineHasError": "錯誤於行",
|
|
1610
1663
|
"accessibility.signals.lineHasFoldedArea": "已摺疊",
|
|
1611
|
-
"accessibility.signals.lineHasWarning": "
|
|
1664
|
+
"accessibility.signals.lineHasWarning": "警告於行",
|
|
1612
1665
|
"accessibility.signals.noInlayHints": "無內嵌提示",
|
|
1613
1666
|
"accessibility.signals.notebookCellCompleted": "Notebook 儲存格已完成",
|
|
1614
1667
|
"accessibility.signals.notebookCellFailed": "Notebook 儲存格失敗",
|
|
1615
1668
|
"accessibility.signals.onDebugBreak": "中斷點",
|
|
1669
|
+
"accessibility.signals.positionHasError": "錯誤",
|
|
1670
|
+
"accessibility.signals.positionHasWarning": "警告",
|
|
1671
|
+
"accessibility.signals.progress": "進度",
|
|
1616
1672
|
"accessibility.signals.save": "儲存",
|
|
1617
1673
|
"accessibility.signals.taskCompleted": "工作完成",
|
|
1618
1674
|
"accessibility.signals.taskFailed": "工作失敗",
|
|
1619
1675
|
"accessibility.signals.terminalBell": "終端鈴",
|
|
1620
1676
|
"accessibility.signals.terminalCommandFailed": "命令失敗",
|
|
1677
|
+
"accessibility.signals.terminalCommandSucceeded": "命令已成功",
|
|
1621
1678
|
"accessibility.signals.terminalQuickFix": "快速修正",
|
|
1622
1679
|
"accessibilitySignals.chatRequestSent": "聊天要求已傳送",
|
|
1623
|
-
"accessibilitySignals.chatResponsePending": "聊天回應擱置中",
|
|
1624
1680
|
"accessibilitySignals.chatResponseReceived": "聊天回應已接收",
|
|
1625
1681
|
"accessibilitySignals.clear": "清除",
|
|
1626
1682
|
"accessibilitySignals.diffLineDeleted": "差異行已刪除",
|
|
@@ -1636,12 +1692,18 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1636
1692
|
"accessibilitySignals.notebookCellCompleted": "Notebook 儲存格已完成",
|
|
1637
1693
|
"accessibilitySignals.notebookCellFailed": "Notebook 儲存格失敗",
|
|
1638
1694
|
"accessibilitySignals.onDebugBreak.name": "在中斷點停止偵錯工具",
|
|
1695
|
+
"accessibilitySignals.positionHasError.name": "在位置發生錯誤",
|
|
1696
|
+
"accessibilitySignals.positionHasWarning.name": "警告位置",
|
|
1697
|
+
"accessibilitySignals.progress": "進度",
|
|
1639
1698
|
"accessibilitySignals.save": "儲存",
|
|
1640
1699
|
"accessibilitySignals.taskCompleted": "工作完成",
|
|
1641
1700
|
"accessibilitySignals.taskFailed": "工作失敗",
|
|
1642
1701
|
"accessibilitySignals.terminalBell": "終端鈴聲",
|
|
1643
1702
|
"accessibilitySignals.terminalCommandFailed": "終端機命令失敗",
|
|
1644
|
-
"accessibilitySignals.
|
|
1703
|
+
"accessibilitySignals.terminalCommandSucceeded": "終端機命令已成功",
|
|
1704
|
+
"accessibilitySignals.terminalQuickFix.name": "終端機快速修正",
|
|
1705
|
+
"accessibilitySignals.voiceRecordingStarted": "語音錄製已開始",
|
|
1706
|
+
"accessibilitySignals.voiceRecordingStopped": "語音錄製已停止"
|
|
1645
1707
|
},
|
|
1646
1708
|
"vs/platform/action/common/actionCommonCategories": {
|
|
1647
1709
|
"developer": "開發人員",
|
|
@@ -1660,13 +1722,14 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1660
1722
|
"resetThisMenu": "重設功能表"
|
|
1661
1723
|
},
|
|
1662
1724
|
"vs/platform/actions/common/menuService": {
|
|
1725
|
+
"configure keybinding": "設定按鍵繫結關係",
|
|
1663
1726
|
"hide.label": "隱藏 '{0}'"
|
|
1664
1727
|
},
|
|
1665
1728
|
"vs/platform/actionWidget/browser/actionList": {
|
|
1666
1729
|
"customQuickFixWidget": "動作小工具",
|
|
1667
1730
|
"customQuickFixWidget.labels": "{0},停用原因: {1}",
|
|
1668
|
-
"label": "{0}
|
|
1669
|
-
"label-preview": "{0}
|
|
1731
|
+
"label": "{0} 以套用",
|
|
1732
|
+
"label-preview": "{0} 套用,{1} 至預覽"
|
|
1670
1733
|
},
|
|
1671
1734
|
"vs/platform/actionWidget/browser/actionWidget": {
|
|
1672
1735
|
"acceptSelected.title": "接受選取的動作",
|
|
@@ -1776,6 +1839,14 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1776
1839
|
"typeNavigationMode2": "控制工作台中清單和樹狀目錄的類型瀏覽運作方式。設定為 'trigger' 時,類型瀏覽會在執行 'list.triggerTypeNavigation' 命令時隨即開始。",
|
|
1777
1840
|
"workbenchConfigurationTitle": "工作台"
|
|
1778
1841
|
},
|
|
1842
|
+
"vs/platform/log/common/log": {
|
|
1843
|
+
"debug": "偵錯",
|
|
1844
|
+
"error": "錯誤",
|
|
1845
|
+
"info": "資訊",
|
|
1846
|
+
"off": "關閉",
|
|
1847
|
+
"trace": "追蹤",
|
|
1848
|
+
"warn": "警告"
|
|
1849
|
+
},
|
|
1779
1850
|
"vs/platform/markers/common/markers": {
|
|
1780
1851
|
"sev.error": "錯誤",
|
|
1781
1852
|
"sev.info": "資訊",
|
|
@@ -1793,11 +1864,14 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1793
1864
|
"helpPickAriaLabel": "{0}, {1}"
|
|
1794
1865
|
},
|
|
1795
1866
|
"vs/platform/quickinput/browser/quickInput": {
|
|
1867
|
+
"cursorAtEndOfQuickInputBox": "快速輸入中的游標是否位於輸入方塊的尾端",
|
|
1868
|
+
"inQuickInput": "鍵盤焦點是否位於快速輸入控制項內",
|
|
1796
1869
|
"inputModeEntry": "按 'Enter' 鍵確認您的輸入或按 'Esc' 鍵取消",
|
|
1797
1870
|
"inputModeEntryDescription": "{0} (按 'Enter' 鍵確認或按 'Esc' 鍵取消)",
|
|
1798
1871
|
"quickInput.back": "上一頁",
|
|
1799
1872
|
"quickInput.steps": "{0}/{1}",
|
|
1800
|
-
"quickInputBox.ariaLabel": "輸入以縮小結果範圍。"
|
|
1873
|
+
"quickInputBox.ariaLabel": "輸入以縮小結果範圍。",
|
|
1874
|
+
"quickInputType": "目前可見的快速輸入類型"
|
|
1801
1875
|
},
|
|
1802
1876
|
"vs/platform/quickinput/browser/quickInputController": {
|
|
1803
1877
|
"custom": "自訂",
|
|
@@ -1808,29 +1882,32 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1808
1882
|
"quickInput.countSelected": "已選擇 {0}",
|
|
1809
1883
|
"quickInput.visibleCount": "{0} 個結果"
|
|
1810
1884
|
},
|
|
1811
|
-
"vs/platform/quickinput/browser/
|
|
1885
|
+
"vs/platform/quickinput/browser/quickInputTree": {
|
|
1812
1886
|
"quickInput": "快速輸入"
|
|
1813
1887
|
},
|
|
1814
1888
|
"vs/platform/quickinput/browser/quickInputUtils": {
|
|
1815
1889
|
"executeCommand": "按一下以執行命令 ‘{0}’"
|
|
1816
1890
|
},
|
|
1817
|
-
"vs/platform/theme/common/
|
|
1891
|
+
"vs/platform/theme/common/colors/baseColors": {
|
|
1818
1892
|
"activeContrastBorder": "使用中項目周圍的額外邊界,可將項目從其他項目中區隔出來以提高對比。",
|
|
1819
|
-
"
|
|
1820
|
-
"
|
|
1821
|
-
"
|
|
1822
|
-
"
|
|
1823
|
-
"
|
|
1824
|
-
"
|
|
1825
|
-
"
|
|
1826
|
-
"
|
|
1827
|
-
"
|
|
1828
|
-
"
|
|
1829
|
-
"
|
|
1830
|
-
"
|
|
1831
|
-
"
|
|
1832
|
-
"
|
|
1833
|
-
"
|
|
1893
|
+
"contrastBorder": "項目周圍的額外框線,可將項目從其他項目中區隔出來以提高對比。",
|
|
1894
|
+
"descriptionForeground": "提供附加訊息的前景顏色,例如標籤",
|
|
1895
|
+
"disabledForeground": "已停用元素的整體前景。只有在元件未覆蓋時,才能使用這個色彩。",
|
|
1896
|
+
"errorForeground": "整體錯誤訊息的前景色彩。僅當未被任何元件覆蓋時,才會使用此色彩。",
|
|
1897
|
+
"focusBorder": "焦點項目的整體框線色彩。只在沒有任何元件覆寫此色彩時,才會加以使用。",
|
|
1898
|
+
"foreground": "整體的前景色彩。僅當未被任何元件覆疊時,才會使用此色彩。",
|
|
1899
|
+
"iconForeground": "工作台中圖示的預設色彩。",
|
|
1900
|
+
"selectionBackground": "作業區域選取的背景顏色(例如輸入或文字區域)。請注意,這不適用於編輯器中的選取。",
|
|
1901
|
+
"textBlockQuoteBackground": "文內引用區塊背景色彩。",
|
|
1902
|
+
"textBlockQuoteBorder": "引用文字的框線顏色。",
|
|
1903
|
+
"textCodeBlockBackground": "文字區塊的背景顏色。",
|
|
1904
|
+
"textLinkActiveForeground": "當滑鼠點擊或懸停時,文字中連結的前景色彩。",
|
|
1905
|
+
"textLinkForeground": "內文連結的前景色彩",
|
|
1906
|
+
"textPreformatBackground": "預先格式化文字區段的背景色彩。",
|
|
1907
|
+
"textPreformatForeground": "提示及建議文字的前景色彩。",
|
|
1908
|
+
"textSeparatorForeground": "文字分隔符號的顏色。"
|
|
1909
|
+
},
|
|
1910
|
+
"vs/platform/theme/common/colors/chartsColors": {
|
|
1834
1911
|
"chartsBlue": "圖表視覺效果中所使用的藍色。",
|
|
1835
1912
|
"chartsForeground": "圖表中使用的前景色彩。",
|
|
1836
1913
|
"chartsGreen": "圖表視覺效果中所使用的綠色。",
|
|
@@ -1838,14 +1915,14 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1838
1915
|
"chartsOrange": "圖表視覺效果中所使用的橙色。",
|
|
1839
1916
|
"chartsPurple": "圖表視覺效果中所使用的紫色。",
|
|
1840
1917
|
"chartsRed": "圖表視覺效果中所使用的紅色。",
|
|
1841
|
-
"chartsYellow": "圖表視覺效果中所使用的黃色。"
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
"
|
|
1845
|
-
"
|
|
1846
|
-
"
|
|
1847
|
-
"
|
|
1848
|
-
"
|
|
1918
|
+
"chartsYellow": "圖表視覺效果中所使用的黃色。"
|
|
1919
|
+
},
|
|
1920
|
+
"vs/platform/theme/common/colors/editorColors": {
|
|
1921
|
+
"activeLinkForeground": "使用中之連結的色彩。",
|
|
1922
|
+
"breadcrumbsBackground": "階層連結的背景色。",
|
|
1923
|
+
"breadcrumbsFocusForeground": "焦點階層連結項目的色彩。",
|
|
1924
|
+
"breadcrumbsSelectedBackground": "階層連結項目選擇器的背景色彩。",
|
|
1925
|
+
"breadcrumbsSelectedForeground": "所選階層連結項目的色彩。",
|
|
1849
1926
|
"diffDiagonalFill": "Diff 編輯器的斜紋填滿色彩。斜紋填滿用於並排 Diff 檢視。",
|
|
1850
1927
|
"diffEditor.unchangedCodeBackground": "Diff 編輯器中未變更程式碼的背景色彩。",
|
|
1851
1928
|
"diffEditor.unchangedRegionBackground": "Diff 編輯器中未變更區塊的背景色彩。",
|
|
@@ -1861,11 +1938,6 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1861
1938
|
"diffEditorRemovedLineGutter": "移除程式行所在邊界的背景色彩。",
|
|
1862
1939
|
"diffEditorRemovedLines": "已移除程式行的背景色彩。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1863
1940
|
"diffEditorRemovedOutline": "移除的文字外框色彩。",
|
|
1864
|
-
"disabledForeground": "已停用元素的整體前景。只有在元件未覆蓋時,才能使用這個色彩。",
|
|
1865
|
-
"dropdownBackground": "下拉式清單的背景。",
|
|
1866
|
-
"dropdownBorder": "下拉式清單的框線。",
|
|
1867
|
-
"dropdownForeground": "下拉式清單的前景。",
|
|
1868
|
-
"dropdownListBackground": "下拉式清單的背景。",
|
|
1869
1941
|
"editorBackground": "編輯器的背景色彩。",
|
|
1870
1942
|
"editorError.background": "編輯器中錯誤文字的背景色彩。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1871
1943
|
"editorError.foreground": "編輯器內錯誤提示線的前景色彩.",
|
|
@@ -1900,21 +1972,61 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1900
1972
|
"editorWidgetForeground": "編輯器小工具 (例如尋找/取代) 的前景色彩。",
|
|
1901
1973
|
"editorWidgetResizeBorder": "編輯器小工具之調整大小列的邊界色彩。只在小工具選擇具有調整大小邊界且未覆寫該色彩時,才使用該色彩。",
|
|
1902
1974
|
"errorBorder": "如果設定,編輯器中的錯誤會顯示雙底線色彩。",
|
|
1903
|
-
"errorForeground": "整體錯誤訊息的前景色彩。僅當未被任何元件覆蓋時,才會使用此色彩。",
|
|
1904
1975
|
"findMatchHighlight": "其他搜尋相符項目的色彩。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1905
1976
|
"findMatchHighlightBorder": "符合其他搜尋的框線色彩。",
|
|
1906
1977
|
"findRangeHighlight": "限制搜尋之範圍的色彩。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1907
1978
|
"findRangeHighlightBorder": "限制搜尋之範圍的框線色彩。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1908
|
-
"focusBorder": "焦點項目的整體框線色彩。只在沒有任何元件覆寫此色彩時,才會加以使用。",
|
|
1909
|
-
"foreground": "整體的前景色彩。僅當未被任何元件覆疊時,才會使用此色彩。",
|
|
1910
|
-
"highlight": "在清單/樹狀內搜尋時,相符醒目提示的清單/樹狀前景色彩。",
|
|
1911
1979
|
"hintBorder": "如果設定,編輯器中的提示會顯示雙底線色彩。",
|
|
1912
1980
|
"hoverBackground": "編輯器動態顯示的背景色彩。",
|
|
1913
1981
|
"hoverBorder": "編輯器動態顯示的框線色彩。",
|
|
1914
1982
|
"hoverForeground": "編輯器動態顯示的前景色彩。",
|
|
1915
1983
|
"hoverHighlight": "在顯示動態顯示的文字下醒目提示。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1916
|
-
"iconForeground": "工作台中圖示的預設色彩。",
|
|
1917
1984
|
"infoBorder": "如果設定,編輯器中的提示會顯示雙底線色彩。",
|
|
1985
|
+
"mergeBorder": "內嵌合併衝突中標頭及分隔器的邊界色彩。",
|
|
1986
|
+
"mergeCommonContentBackground": "內嵌合併衝突中的一般上階內容背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1987
|
+
"mergeCommonHeaderBackground": "內嵌合併衝突中的一般上階標頭背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1988
|
+
"mergeCurrentContentBackground": "內嵌合併衝突中的目前內容背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1989
|
+
"mergeCurrentHeaderBackground": "內嵌合併衝突中目前的標頭背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1990
|
+
"mergeIncomingContentBackground": "內嵌合併衝突中的傳入內容背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1991
|
+
"mergeIncomingHeaderBackground": "內嵌合併衝突中的傳入標頭背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1992
|
+
"overviewRulerCommonContentForeground": "內嵌合併衝突中的共同上階概觀尺規前景。",
|
|
1993
|
+
"overviewRulerCurrentContentForeground": "目前內嵌合併衝突的概觀尺規前景。",
|
|
1994
|
+
"overviewRulerFindMatchForeground": "尋找相符項目的概觀尺規標記色彩。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1995
|
+
"overviewRulerIncomingContentForeground": "傳入內嵌合併衝突的概觀尺規前景。",
|
|
1996
|
+
"overviewRulerSelectionHighlightForeground": "選取項目醒目提示的概觀尺規標記。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1997
|
+
"problemsErrorIconForeground": "用於問題錯誤圖示的色彩。",
|
|
1998
|
+
"problemsInfoIconForeground": "用於問題資訊圖示的色彩。",
|
|
1999
|
+
"problemsWarningIconForeground": "用於問題警告圖示的色彩。",
|
|
2000
|
+
"snippetFinalTabstopHighlightBackground": "程式碼片段最終定位停駐點的反白顯示背景色彩。",
|
|
2001
|
+
"snippetFinalTabstopHighlightBorder": "程式碼片段最終定位停駐點的醒目提示框線色彩。",
|
|
2002
|
+
"snippetTabstopHighlightBackground": "程式碼片段定位停駐點的反白顯示背景色彩。",
|
|
2003
|
+
"snippetTabstopHighlightBorder": "程式碼片段定位停駐點的反白顯示邊界色彩。",
|
|
2004
|
+
"statusBarBackground": "編輯器暫留狀態列的背景色彩。",
|
|
2005
|
+
"toolbarActiveBackground": "將滑鼠移到動作上方時的工具列背景",
|
|
2006
|
+
"toolbarHoverBackground": "使用滑鼠將游標停留在動作上方時的工具列背景",
|
|
2007
|
+
"toolbarHoverOutline": "使用滑鼠將游標停留在動作上方時的工具列外框",
|
|
2008
|
+
"warningBorder": "如果設定,編輯器中的警告會顯示雙底線色彩。",
|
|
2009
|
+
"widgetBorder": "小工具的框線色彩,例如編輯器中的尋找/取代。",
|
|
2010
|
+
"widgetShadow": "小工具的陰影色彩,例如編輯器中的尋找/取代。"
|
|
2011
|
+
},
|
|
2012
|
+
"vs/platform/theme/common/colors/inputColors": {
|
|
2013
|
+
"buttonBackground": "按鈕背景色彩。",
|
|
2014
|
+
"buttonBorder": "按鈕框線色彩。",
|
|
2015
|
+
"buttonForeground": "按鈕前景色彩。",
|
|
2016
|
+
"buttonHoverBackground": "暫留時的按鈕背景色彩。",
|
|
2017
|
+
"buttonSecondaryBackground": "次要按鈕背景色彩。",
|
|
2018
|
+
"buttonSecondaryForeground": "次要按鈕前景色彩。",
|
|
2019
|
+
"buttonSecondaryHoverBackground": "滑鼠暫留時的次要按鈕背景色彩。",
|
|
2020
|
+
"buttonSeparator": "分隔線色彩按鈕。",
|
|
2021
|
+
"checkbox.background": "核取方塊小工具的背景色彩。",
|
|
2022
|
+
"checkbox.border": "核取方塊小工具的框線色彩。",
|
|
2023
|
+
"checkbox.foreground": "核取方塊小工具的前景色彩。",
|
|
2024
|
+
"checkbox.select.background": "選取其所處元素時,核取方塊小工具的背景色彩。",
|
|
2025
|
+
"checkbox.select.border": "選取其所處元素時,核取方塊小工具的框線色彩。",
|
|
2026
|
+
"dropdownBackground": "下拉式清單的背景。",
|
|
2027
|
+
"dropdownBorder": "下拉式清單的框線。",
|
|
2028
|
+
"dropdownForeground": "下拉式清單的前景。",
|
|
2029
|
+
"dropdownListBackground": "下拉式清單的背景。",
|
|
1918
2030
|
"inputBoxActiveOptionBorder": "輸入欄位中可使用之項目的框線色彩。",
|
|
1919
2031
|
"inputBoxBackground": "輸入方塊的背景。",
|
|
1920
2032
|
"inputBoxBorder": "輸入方塊的框線。",
|
|
@@ -1932,15 +2044,18 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1932
2044
|
"inputValidationWarningBackground": "警告嚴重性的輸入驗證背景色彩。",
|
|
1933
2045
|
"inputValidationWarningBorder": "警告嚴重性的輸入驗證邊界色彩。",
|
|
1934
2046
|
"inputValidationWarningForeground": "警告嚴重性的輸入驗證前景色彩。",
|
|
1935
|
-
"invalidItemForeground": "列表/樹狀 無效項目的前景色彩,例如在瀏覽視窗無法解析的根目錄",
|
|
1936
2047
|
"keybindingLabelBackground": "金鑰綁定標籤背景色彩。按鍵綁定標籤用來代表鍵盤快速鍵。",
|
|
1937
2048
|
"keybindingLabelBorder": "金鑰綁定標籤邊框色彩。按鍵綁定標籤用來代表鍵盤快速鍵。",
|
|
1938
2049
|
"keybindingLabelBottomBorder": "金鑰綁定標籤邊框底部色彩。按鍵綁定標籤用來代表鍵盤快速鍵。",
|
|
1939
|
-
"keybindingLabelForeground": "金鑰綁定標籤前景色彩。按鍵綁定標籤用來代表鍵盤快速鍵。"
|
|
2050
|
+
"keybindingLabelForeground": "金鑰綁定標籤前景色彩。按鍵綁定標籤用來代表鍵盤快速鍵。"
|
|
2051
|
+
},
|
|
2052
|
+
"vs/platform/theme/common/colors/listColors": {
|
|
2053
|
+
"highlight": "在清單/樹狀內搜尋時,相符醒目提示的清單/樹狀前景色彩。",
|
|
2054
|
+
"invalidItemForeground": "列表/樹狀 無效項目的前景色彩,例如在瀏覽視窗無法解析的根目錄",
|
|
1940
2055
|
"listActiveSelectionBackground": "當清單/樹狀為使用中狀態時,所選項目的清單/樹狀背景色彩。使用中的清單/樹狀有鍵盤焦點,非使用中者則沒有。",
|
|
1941
2056
|
"listActiveSelectionForeground": "當清單/樹狀為使用中狀態時,所選項目的清單/樹狀前景色彩。使用中的清單/樹狀有鍵盤焦點,非使用中者則沒有。",
|
|
1942
2057
|
"listActiveSelectionIconForeground": "當清單/樹狀為使用中狀態時,所選項目的清單/樹狀圖示前景色彩。使用中的清單/樹狀有鍵盤焦點,非使用中者則沒有。",
|
|
1943
|
-
"listDeemphasizedForeground": "
|
|
2058
|
+
"listDeemphasizedForeground": "已取消強調的清單/樹狀前景色彩。",
|
|
1944
2059
|
"listDropBackground": "使用滑鼠將項目移到其他項目上時的清單/樹狀拖放背景。",
|
|
1945
2060
|
"listDropBetweenBackground": "使用滑鼠移動項目時的清單/樹狀目錄拖放邊界色彩。",
|
|
1946
2061
|
"listErrorForeground": "包含錯誤清單項目的前景色彩",
|
|
@@ -1963,20 +2078,21 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1963
2078
|
"listInactiveSelectionForeground": "當清單/樹狀為使用中狀態時,所選項目的清單/樹狀前景色彩。使用中的清單/樹狀有鍵盤焦點,非使用中則沒有。",
|
|
1964
2079
|
"listInactiveSelectionIconForeground": "當清單/樹狀為非使用中狀態時,所選項目的清單/樹狀圖示前景色彩。使用中的清單/樹狀有鍵盤焦點,非使用中者則沒有。",
|
|
1965
2080
|
"listWarningForeground": "包含警告清單項目的前景色彩",
|
|
2081
|
+
"tableColumnsBorder": "資料行之間的資料表邊界色彩。",
|
|
2082
|
+
"tableOddRowsBackgroundColor": "奇數資料表資料列的背景色彩。",
|
|
2083
|
+
"treeInactiveIndentGuidesStroke": "非使用中縮排輔助線的樹狀筆觸色彩。",
|
|
2084
|
+
"treeIndentGuidesStroke": "縮排輔助線的樹狀筆觸色彩。"
|
|
2085
|
+
},
|
|
2086
|
+
"vs/platform/theme/common/colors/menuColors": {
|
|
1966
2087
|
"menuBackground": "功能表項目的背景色彩。",
|
|
1967
2088
|
"menuBorder": "功能表的邊框色彩。",
|
|
1968
2089
|
"menuForeground": "功能表項目的前景色彩。",
|
|
1969
2090
|
"menuSelectionBackground": "功能表中所選功能表項目的背景色彩。",
|
|
1970
2091
|
"menuSelectionBorder": "功能表中所選功能表項目的框線色彩。",
|
|
1971
2092
|
"menuSelectionForeground": "功能表中所選功能表項目的前景色彩。",
|
|
1972
|
-
"menuSeparatorBackground": "功能表中分隔線功能表項目的色彩。"
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
"mergeCommonHeaderBackground": "內嵌合併衝突中的一般上階標頭背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1976
|
-
"mergeCurrentContentBackground": "內嵌合併衝突中的目前內容背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1977
|
-
"mergeCurrentHeaderBackground": "內嵌合併衝突中目前的標頭背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1978
|
-
"mergeIncomingContentBackground": "內嵌合併衝突中的傳入內容背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
1979
|
-
"mergeIncomingHeaderBackground": "內嵌合併衝突中的傳入標頭背景。其不得為不透明色彩,以免隱藏底層裝飾。",
|
|
2093
|
+
"menuSeparatorBackground": "功能表中分隔線功能表項目的色彩。"
|
|
2094
|
+
},
|
|
2095
|
+
"vs/platform/theme/common/colors/minimapColors": {
|
|
1980
2096
|
"minimapBackground": "縮圖背景色彩。",
|
|
1981
2097
|
"minimapError": "錯誤的縮圖標記色彩。",
|
|
1982
2098
|
"minimapFindMatchHighlight": "用於尋找相符項目的縮圖標記色彩。",
|
|
@@ -1987,57 +2103,33 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
1987
2103
|
"minimapSliderActiveBackground": "按一下時的縮圖滑桿背景色彩。",
|
|
1988
2104
|
"minimapSliderBackground": "縮圖滑桿背景色彩。",
|
|
1989
2105
|
"minimapSliderHoverBackground": "暫留時的縮圖滑桿背景色彩。",
|
|
1990
|
-
"overviewRuleWarning": "警告的縮圖標記色彩。"
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
"
|
|
1994
|
-
"
|
|
1995
|
-
"
|
|
2106
|
+
"overviewRuleWarning": "警告的縮圖標記色彩。"
|
|
2107
|
+
},
|
|
2108
|
+
"vs/platform/theme/common/colors/miscColors": {
|
|
2109
|
+
"badgeBackground": "標記的背景顏色。標記為小型的訊息標籤,例如搜尋結果的數量。",
|
|
2110
|
+
"badgeForeground": "標記的前景顏色。標記為小型的訊息標籤,例如搜尋結果的數量。",
|
|
2111
|
+
"progressBarBackground": "長時間運行進度條的背景色彩.",
|
|
2112
|
+
"sashActiveBorder": "使用中飾帶的框線色彩。",
|
|
2113
|
+
"scrollbarShadow": "指出在捲動該檢視的捲軸陰影。",
|
|
2114
|
+
"scrollbarSliderActiveBackground": "當點擊時捲軸滑桿的背景顏色。",
|
|
2115
|
+
"scrollbarSliderBackground": "捲軸滑桿的背景顏色。",
|
|
2116
|
+
"scrollbarSliderHoverBackground": "動態顯示時捲軸滑桿的背景顏色。"
|
|
2117
|
+
},
|
|
2118
|
+
"vs/platform/theme/common/colors/quickpickColors": {
|
|
1996
2119
|
"pickerBackground": "快速選擇器背景色彩。該快速選擇器小工具是類似命令選擇區的選擇器容器。",
|
|
1997
2120
|
"pickerForeground": "快速選擇器前景色彩。快速選擇器小工具是類似命令選擇區等選擇器的容器。",
|
|
1998
2121
|
"pickerGroupBorder": "分組邊界的快速選擇器色彩。",
|
|
1999
2122
|
"pickerGroupForeground": "分組標籤的快速選擇器色彩。",
|
|
2000
2123
|
"pickerTitleBackground": "快速選擇器標題背景色彩。快速選擇器小工具是類似命令選擇區的選擇器容器。",
|
|
2001
|
-
"problemsErrorIconForeground": "用於問題錯誤圖示的色彩。",
|
|
2002
|
-
"problemsInfoIconForeground": "用於問題資訊圖示的色彩。",
|
|
2003
|
-
"problemsWarningIconForeground": "用於問題警告圖示的色彩。",
|
|
2004
|
-
"progressBarBackground": "長時間運行進度條的背景色彩.",
|
|
2005
2124
|
"quickInput.list.focusBackground deprecation": "請改用 quickInputList.focusBackground",
|
|
2006
2125
|
"quickInput.listFocusBackground": "焦點項目的快速選擇器背景色彩。",
|
|
2007
2126
|
"quickInput.listFocusForeground": "焦點項目的快速選擇器前景色彩。",
|
|
2008
|
-
"quickInput.listFocusIconForeground": "焦點項目的快速選擇器圖示前景色彩。"
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
"scrollbarSliderActiveBackground": "當點擊時捲軸滑桿的背景顏色。",
|
|
2012
|
-
"scrollbarSliderBackground": "捲軸滑桿的背景顏色。",
|
|
2013
|
-
"scrollbarSliderHoverBackground": "動態顯示時捲軸滑桿的背景顏色。",
|
|
2127
|
+
"quickInput.listFocusIconForeground": "焦點項目的快速選擇器圖示前景色彩。"
|
|
2128
|
+
},
|
|
2129
|
+
"vs/platform/theme/common/colors/searchColors": {
|
|
2014
2130
|
"search.resultsInfoForeground": "搜尋 Viewlet 完成訊息中文字的色彩。",
|
|
2015
2131
|
"searchEditor.editorFindMatchBorder": "搜索編輯器查詢符合的邊框色彩。",
|
|
2016
|
-
"searchEditor.queryMatch": "搜尋編輯器查詢符合的色彩。"
|
|
2017
|
-
"selectionBackground": "作業區域選取的背景顏色(例如輸入或文字區域)。請注意,這不適用於編輯器中的選取。",
|
|
2018
|
-
"snippetFinalTabstopHighlightBackground": "程式碼片段最終定位停駐點的反白顯示背景色彩。",
|
|
2019
|
-
"snippetFinalTabstopHighlightBorder": "程式碼片段最終定位停駐點的醒目提示框線色彩。",
|
|
2020
|
-
"snippetTabstopHighlightBackground": "程式碼片段定位停駐點的反白顯示背景色彩。",
|
|
2021
|
-
"snippetTabstopHighlightBorder": "程式碼片段定位停駐點的反白顯示邊界色彩。",
|
|
2022
|
-
"statusBarBackground": "編輯器暫留狀態列的背景色彩。",
|
|
2023
|
-
"tableColumnsBorder": "資料行之間的資料表邊界色彩。",
|
|
2024
|
-
"tableOddRowsBackgroundColor": "奇數資料表資料列的背景色彩。",
|
|
2025
|
-
"textBlockQuoteBackground": "文內引用區塊背景色彩。",
|
|
2026
|
-
"textBlockQuoteBorder": "引用文字的框線顏色。",
|
|
2027
|
-
"textCodeBlockBackground": "文字區塊的背景顏色。",
|
|
2028
|
-
"textLinkActiveForeground": "當滑鼠點擊或懸停時,文字中連結的前景色彩。",
|
|
2029
|
-
"textLinkForeground": "內文連結的前景色彩",
|
|
2030
|
-
"textPreformatBackground": "預先格式化文字區段的背景色彩。",
|
|
2031
|
-
"textPreformatForeground": "提示及建議文字的前景色彩。",
|
|
2032
|
-
"textSeparatorForeground": "文字分隔符號的顏色。",
|
|
2033
|
-
"toolbarActiveBackground": "將滑鼠移到動作上方時的工具列背景",
|
|
2034
|
-
"toolbarHoverBackground": "使用滑鼠將游標停留在動作上方時的工具列背景",
|
|
2035
|
-
"toolbarHoverOutline": "使用滑鼠將游標停留在動作上方時的工具列外框",
|
|
2036
|
-
"treeInactiveIndentGuidesStroke": "非使用中縮排輔助線的樹狀筆觸色彩。",
|
|
2037
|
-
"treeIndentGuidesStroke": "縮排輔助線的樹狀筆觸色彩。",
|
|
2038
|
-
"warningBorder": "如果設定,編輯器中的警告會顯示雙底線色彩。",
|
|
2039
|
-
"widgetBorder": "小工具的框線色彩,例如編輯器中的尋找/取代。",
|
|
2040
|
-
"widgetShadow": "小工具的陰影色彩,例如編輯器中的尋找/取代。"
|
|
2132
|
+
"searchEditor.queryMatch": "搜尋編輯器查詢符合的色彩。"
|
|
2041
2133
|
},
|
|
2042
2134
|
"vs/platform/theme/common/iconRegistry": {
|
|
2043
2135
|
"iconDefinition.fontCharacter": "與圖示定義建立關聯的字型字元。",
|
|
@@ -2068,10 +2160,6 @@ window.MonacoEnvironment.Locale = window.MonacoLocale = {
|
|
|
2068
2160
|
},
|
|
2069
2161
|
"vs/platform/workspace/common/workspace": {
|
|
2070
2162
|
"codeWorkspace": "Code 工作區"
|
|
2071
|
-
},
|
|
2072
|
-
"vs/platform/workspace/common/workspaceTrust": {
|
|
2073
|
-
"trusted": "受信任",
|
|
2074
|
-
"untrusted": "受限模式"
|
|
2075
2163
|
}
|
|
2076
2164
|
}
|
|
2077
2165
|
};
|