@codingame/monaco-vscode-api 26.0.1 → 26.1.0

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.
Files changed (145) hide show
  1. package/package.json +8 -8
  2. package/services.js +3 -3
  3. package/vscode/src/vs/base/common/strings.d.ts +30 -0
  4. package/vscode/src/vs/base/common/strings.js +11 -0
  5. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css +2 -2
  6. package/vscode/src/vs/editor/contrib/colorPicker/browser/images/opacity-background.png +0 -0
  7. package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +2 -2
  8. package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/keyboard-dark.svg +10 -0
  9. package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/keyboard-light.svg +10 -0
  10. package/vscode/src/vs/platform/product/common/product.js +3 -3
  11. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +1 -1
  12. package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsViewlet.css +3 -3
  13. package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading-dark.svg +31 -0
  14. package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading-hc.svg +31 -0
  15. package/vscode/src/vs/workbench/contrib/extensions/browser/media/loading.svg +31 -0
  16. package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +9 -9
  17. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
  18. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
  19. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
  20. package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
  21. package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
  22. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
  23. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
  24. package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +2 -2
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +3 -3
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +7 -7
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +1 -1
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +5 -5
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +1 -1
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +3 -3
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
  38. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
  39. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
  40. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
  41. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
  42. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
  43. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
  44. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
  45. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
  46. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
  47. package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
  48. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
  49. package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
  50. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
  51. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
  52. package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
  53. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
  54. package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
  55. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
  56. package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
  57. package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +50 -50
  58. package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +3 -3
  59. package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
  60. package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
  61. package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
  62. package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +59 -59
  63. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
  64. package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
  65. package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
  66. package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
  67. package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
  68. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
  69. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
  70. package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
  71. package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +5 -5
  72. package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
  73. package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
  74. package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
  75. package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
  76. package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
  77. package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +8 -8
  78. package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
  79. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
  80. package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
  81. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  82. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  83. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  84. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  85. package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
  86. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  87. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
  88. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  89. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +3 -3
  90. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
  91. package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +40 -40
  92. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
  93. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +9 -9
  94. package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
  95. package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
  96. package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
  97. package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
  98. package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +3 -2
  99. package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +54 -54
  100. package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
  101. package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
  102. package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +1 -1
  103. package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
  104. package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
  105. package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
  106. package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
  107. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  108. package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
  109. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  110. package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
  111. package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
  112. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
  113. package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
  114. package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +100 -41
  115. package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
  116. package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
  117. package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +14 -14
  118. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
  119. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
  120. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  121. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  122. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
  123. package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
  124. package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
  125. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +88 -88
  126. package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
  127. package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
  128. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  129. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
  130. package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
  131. package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
  132. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  133. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  134. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  135. package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
  136. package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
  137. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
  138. package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
  139. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  140. package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
  141. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
  142. package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
  143. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
  144. package/vscode/src/vs/workbench/services/views/browser/viewsService.js +9 -9
  145. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
@@ -55,14 +55,14 @@ let FilesConfigurationService = class FilesConfigurationService extends Disposab
55
55
  this.READONLY_MESSAGES = {
56
56
  providerReadonly: {
57
57
  value: ( localize(
58
- 14487,
58
+ 14488,
59
59
  "Editor is read-only because the file system of the file is read-only."
60
60
  )),
61
61
  isTrusted: true
62
62
  },
63
63
  sessionReadonly: {
64
64
  value: ( localize(
65
- 14488,
65
+ 14489,
66
66
  "Editor is read-only because the file was set read-only in this session. [Click here](command:{0}) to set writeable.",
67
67
  "workbench.action.files.setActiveEditorWriteableInSession"
68
68
  )),
@@ -70,7 +70,7 @@ let FilesConfigurationService = class FilesConfigurationService extends Disposab
70
70
  },
71
71
  configuredReadonly: {
72
72
  value: ( localize(
73
- 14489,
73
+ 14490,
74
74
  "Editor is read-only because the file was set read-only via settings. [Click here](command:{0}) to configure or [toggle for this session](command:{1}).",
75
75
  `workbench.action.openSettings?${encodeURIComponent("[\"files.readonly\"]")}`,
76
76
  "workbench.action.files.toggleActiveEditorReadonlyInSession"
@@ -79,14 +79,14 @@ let FilesConfigurationService = class FilesConfigurationService extends Disposab
79
79
  },
80
80
  fileLocked: {
81
81
  value: ( localize(
82
- 14490,
82
+ 14491,
83
83
  "Editor is read-only because of file permissions. [Click here](command:{0}) to set writeable anyway.",
84
84
  "workbench.action.files.setActiveEditorWriteableInSession"
85
85
  )),
86
86
  isTrusted: true
87
87
  },
88
88
  fileReadonly: {
89
- value: ( localize(14491, "Editor is read-only because the file is read-only.")),
89
+ value: ( localize(14492, "Editor is read-only because the file is read-only.")),
90
90
  isTrusted: true
91
91
  }
92
92
  };
@@ -23,7 +23,7 @@ import { isString } from '../../../../base/common/types.js';
23
23
  const languagesExtPoint = ExtensionsRegistry.registerExtensionPoint({
24
24
  extensionPoint: "languages",
25
25
  jsonSchema: {
26
- description: ( localize(14545, "Contributes language declarations.")),
26
+ description: ( localize(14546, "Contributes language declarations.")),
27
27
  type: "array",
28
28
  items: {
29
29
  type: "object",
@@ -37,18 +37,18 @@ const languagesExtPoint = ExtensionsRegistry.registerExtensionPoint({
37
37
  }],
38
38
  properties: {
39
39
  id: {
40
- description: ( localize(14546, "ID of the language.")),
40
+ description: ( localize(14547, "ID of the language.")),
41
41
  type: "string"
42
42
  },
43
43
  aliases: {
44
- description: ( localize(14547, "Name aliases for the language.")),
44
+ description: ( localize(14548, "Name aliases for the language.")),
45
45
  type: "array",
46
46
  items: {
47
47
  type: "string"
48
48
  }
49
49
  },
50
50
  extensions: {
51
- description: ( localize(14548, "File extensions associated to the language.")),
51
+ description: ( localize(14549, "File extensions associated to the language.")),
52
52
  default: [".foo"],
53
53
  type: "array",
54
54
  items: {
@@ -56,21 +56,21 @@ const languagesExtPoint = ExtensionsRegistry.registerExtensionPoint({
56
56
  }
57
57
  },
58
58
  filenames: {
59
- description: ( localize(14549, "File names associated to the language.")),
59
+ description: ( localize(14550, "File names associated to the language.")),
60
60
  type: "array",
61
61
  items: {
62
62
  type: "string"
63
63
  }
64
64
  },
65
65
  filenamePatterns: {
66
- description: ( localize(14550, "File name glob patterns associated to the language.")),
66
+ description: ( localize(14551, "File name glob patterns associated to the language.")),
67
67
  type: "array",
68
68
  items: {
69
69
  type: "string"
70
70
  }
71
71
  },
72
72
  mimetypes: {
73
- description: ( localize(14551, "Mime types associated to the language.")),
73
+ description: ( localize(14552, "Mime types associated to the language.")),
74
74
  type: "array",
75
75
  items: {
76
76
  type: "string"
@@ -78,14 +78,14 @@ const languagesExtPoint = ExtensionsRegistry.registerExtensionPoint({
78
78
  },
79
79
  firstLine: {
80
80
  description: ( localize(
81
- 14552,
81
+ 14553,
82
82
  "A regular expression matching the first line of a file of the language."
83
83
  )),
84
84
  type: "string"
85
85
  },
86
86
  configuration: {
87
87
  description: ( localize(
88
- 14553,
88
+ 14554,
89
89
  "A relative path to a file containing configuration options for the language."
90
90
  )),
91
91
  type: "string",
@@ -94,16 +94,16 @@ const languagesExtPoint = ExtensionsRegistry.registerExtensionPoint({
94
94
  icon: {
95
95
  type: "object",
96
96
  description: ( localize(
97
- 14554,
97
+ 14555,
98
98
  "A icon to use as file icon, if no icon theme provides one for the language."
99
99
  )),
100
100
  properties: {
101
101
  light: {
102
- description: ( localize(14555, "Icon path when a light theme is used")),
102
+ description: ( localize(14556, "Icon path when a light theme is used")),
103
103
  type: "string"
104
104
  },
105
105
  dark: {
106
- description: ( localize(14556, "Icon path when a dark theme is used")),
106
+ description: ( localize(14557, "Icon path when a dark theme is used")),
107
107
  type: "string"
108
108
  }
109
109
  }
@@ -192,7 +192,7 @@ class LanguageTableRenderer extends Disposable {
192
192
  dispose: () => {}
193
193
  };
194
194
  }
195
- const headers = [( localize(14557, "ID")), ( localize(14558, "Name")), ( localize(14559, "File Extensions")), ( localize(14560, "Grammar")), ( localize(14561, "Snippets"))];
195
+ const headers = [( localize(14558, "ID")), ( localize(14559, "Name")), ( localize(14560, "File Extensions")), ( localize(14561, "Grammar")), ( localize(14562, "Snippets"))];
196
196
  const rows = ( languages.sort((a, b) => a.id.localeCompare(b.id)).map(l => {
197
197
  return [l.id, l.name, ( new MarkdownString()).appendMarkdown(`${( l.extensions.map(e => `\`${e}\``)).join(" ")}`), l.hasGrammar ? "✔︎" : "—", l.hasSnippets ? "✔︎" : "—"];
198
198
  }));
@@ -207,7 +207,7 @@ class LanguageTableRenderer extends Disposable {
207
207
  }
208
208
  ( Registry.as(Extensions.ExtensionFeaturesRegistry)).registerExtensionFeature({
209
209
  id: "languages",
210
- label: ( localize(14562, "Programming Languages")),
210
+ label: ( localize(14563, "Programming Languages")),
211
211
  access: {
212
212
  canToggle: false
213
213
  },
@@ -227,7 +227,7 @@ let WorkbenchLanguageService = class WorkbenchLanguageService extends LanguageSe
227
227
  const extension = extensions[i];
228
228
  if (!Array.isArray(extension.value)) {
229
229
  extension.collector.error(( localize(
230
- 14563,
230
+ 14564,
231
231
  "Invalid `contributes.{0}`. Expected an array.",
232
232
  languagesExtPoint.name
233
233
  )));
@@ -308,16 +308,16 @@ function isUndefinedOrStringArray(value) {
308
308
  }
309
309
  function isValidLanguageExtensionPoint(value, collector) {
310
310
  if (!value) {
311
- collector?.error(( localize(14564, "Empty value for `contributes.{0}`", languagesExtPoint.name)));
311
+ collector?.error(( localize(14565, "Empty value for `contributes.{0}`", languagesExtPoint.name)));
312
312
  return false;
313
313
  }
314
314
  if (typeof value.id !== "string") {
315
- collector?.error(( localize(14565, "property `{0}` is mandatory and must be of type `string`", "id")));
315
+ collector?.error(( localize(14566, "property `{0}` is mandatory and must be of type `string`", "id")));
316
316
  return false;
317
317
  }
318
318
  if (!isUndefinedOrStringArray(value.extensions)) {
319
319
  collector?.error(( localize(
320
- 14566,
320
+ 14567,
321
321
  "property `{0}` can be omitted and must be of type `string[]`",
322
322
  "extensions"
323
323
  )));
@@ -325,7 +325,7 @@ function isValidLanguageExtensionPoint(value, collector) {
325
325
  }
326
326
  if (!isUndefinedOrStringArray(value.filenames)) {
327
327
  collector?.error(( localize(
328
- 14567,
328
+ 14568,
329
329
  "property `{0}` can be omitted and must be of type `string[]`",
330
330
  "filenames"
331
331
  )));
@@ -333,7 +333,7 @@ function isValidLanguageExtensionPoint(value, collector) {
333
333
  }
334
334
  if (typeof value.firstLine !== "undefined" && typeof value.firstLine !== "string") {
335
335
  collector?.error(( localize(
336
- 14568,
336
+ 14569,
337
337
  "property `{0}` can be omitted and must be of type `string`",
338
338
  "firstLine"
339
339
  )));
@@ -341,7 +341,7 @@ function isValidLanguageExtensionPoint(value, collector) {
341
341
  }
342
342
  if (typeof value.configuration !== "undefined" && typeof value.configuration !== "string") {
343
343
  collector?.error(( localize(
344
- 14569,
344
+ 14570,
345
345
  "property `{0}` can be omitted and must be of type `string`",
346
346
  "configuration"
347
347
  )));
@@ -349,7 +349,7 @@ function isValidLanguageExtensionPoint(value, collector) {
349
349
  }
350
350
  if (!isUndefinedOrStringArray(value.aliases)) {
351
351
  collector?.error(( localize(
352
- 14570,
352
+ 14571,
353
353
  "property `{0}` can be omitted and must be of type `string[]`",
354
354
  "aliases"
355
355
  )));
@@ -357,7 +357,7 @@ function isValidLanguageExtensionPoint(value, collector) {
357
357
  }
358
358
  if (!isUndefinedOrStringArray(value.mimetypes)) {
359
359
  collector?.error(( localize(
360
- 14571,
360
+ 14572,
361
361
  "property `{0}` can be omitted and must be of type `string[]`",
362
362
  "mimetypes"
363
363
  )));
@@ -366,7 +366,7 @@ function isValidLanguageExtensionPoint(value, collector) {
366
366
  if (typeof value.icon !== "undefined") {
367
367
  if (typeof value.icon !== "object" || typeof value.icon.light !== "string" || typeof value.icon.dark !== "string") {
368
368
  collector?.error(( localize(
369
- 14572,
369
+ 14573,
370
370
  "property `{0}` can be omitted and must be of type `object` with properties `{1}` and `{2}` of type `string`",
371
371
  "icon",
372
372
  "light",
@@ -4,7 +4,7 @@ import { localize } from '../../../../nls.js';
4
4
  const windowLogId = "rendererLog";
5
5
  const windowLogGroup = {
6
6
  id: windowLogId,
7
- name: ( localize(14579, "Window"))
7
+ name: ( localize(14580, "Window"))
8
8
  };
9
9
  const showWindowLogActionId = "workbench.action.showWindowLog";
10
10
 
@@ -9,7 +9,7 @@ import { EditorInput } from '../../../common/editor/editorInput.js';
9
9
  import { KeybindingsEditorModel } from './keybindingsEditorModel.js';
10
10
 
11
11
  var KeybindingsEditorInput_1;
12
- const KeybindingsEditorIcon = registerIcon("keybindings-editor-label-icon", Codicon.keyboard, ( localize(14581, "Icon of the keybindings editor label.")));
12
+ const KeybindingsEditorIcon = registerIcon("keybindings-editor-label-icon", Codicon.keyboard, ( localize(14582, "Icon of the keybindings editor label.")));
13
13
  let KeybindingsEditorInput = class KeybindingsEditorInput extends EditorInput {
14
14
  static {
15
15
  KeybindingsEditorInput_1 = this;
@@ -27,7 +27,7 @@ let KeybindingsEditorInput = class KeybindingsEditorInput extends EditorInput {
27
27
  return KeybindingsEditorInput_1.ID;
28
28
  }
29
29
  getName() {
30
- return localize(14582, "Keyboard Shortcuts");
30
+ return localize(14583, "Keyboard Shortcuts");
31
31
  }
32
32
  getIcon() {
33
33
  return KeybindingsEditorIcon;
@@ -18,9 +18,9 @@ import { ContextKeyExpr } from '../../../../platform/contextkey/common/contextke
18
18
 
19
19
  var KeybindingsEditorModel_1;
20
20
  const KEYBINDING_ENTRY_TEMPLATE_ID = "keybinding.entry.template";
21
- const SOURCE_SYSTEM = ( localize(14583, "System"));
22
- const SOURCE_EXTENSION = ( localize(14584, "Extension"));
23
- const SOURCE_USER = ( localize(14585, "User"));
21
+ const SOURCE_SYSTEM = ( localize(14584, "System"));
22
+ const SOURCE_EXTENSION = ( localize(14585, "Extension"));
23
+ const SOURCE_USER = ( localize(14586, "User"));
24
24
  function createKeybindingCommandQuery(commandId, when) {
25
25
  const whenPart = when ? ` +when:${when}` : "";
26
26
  return `@command:${commandId}${whenPart}`;
@@ -270,7 +270,7 @@ let KeybindingsEditorModel = KeybindingsEditorModel_1 = class KeybindingsEditorM
270
270
  if (menuCommand && menuCommand.title && menuCommand.title.original) {
271
271
  const category = menuCommand.category ? menuCommand.category.original : undefined;
272
272
  const title = menuCommand.title.original;
273
- return category ? ( localize(14586, "{0}: {1}", category, title)) : title;
273
+ return category ? ( localize(14587, "{0}: {1}", category, title)) : title;
274
274
  }
275
275
  }
276
276
  return null;
@@ -279,7 +279,7 @@ let KeybindingsEditorModel = KeybindingsEditorModel_1 = class KeybindingsEditorM
279
279
  if (menuCommand) {
280
280
  const category = menuCommand.category ? typeof menuCommand.category === "string" ? menuCommand.category : menuCommand.category.value : undefined;
281
281
  const title = typeof menuCommand.title === "string" ? menuCommand.title : menuCommand.title.value;
282
- return category ? ( localize(14586, "{0}: {1}", category, title)) : title;
282
+ return category ? ( localize(14587, "{0}: {1}", category, title)) : title;
283
283
  }
284
284
  if (editorActionLabel) {
285
285
  return editorActionLabel;
@@ -582,7 +582,7 @@ class KeybindingItemMatches {
582
582
  if (equalsIgnoreCase(this.modifierLabels.user.altKey, word)) {
583
583
  return true;
584
584
  }
585
- if (equalsIgnoreCase(( localize(14587, "option")), word)) {
585
+ if (equalsIgnoreCase(( localize(14588, "option")), word)) {
586
586
  return true;
587
587
  }
588
588
  return false;
@@ -609,7 +609,7 @@ class KeybindingItemMatches {
609
609
  if (equalsIgnoreCase(this.modifierLabels.user.metaKey, word)) {
610
610
  return true;
611
611
  }
612
- if (equalsIgnoreCase(( localize(14588, "meta")), word)) {
612
+ if (equalsIgnoreCase(( localize(14589, "meta")), word)) {
613
613
  return true;
614
614
  }
615
615
  return false;
@@ -9,7 +9,7 @@ import { EditorInput } from '../../../common/editor/editorInput.js';
9
9
  import { IPreferencesService } from './preferences.service.js';
10
10
 
11
11
  var SettingsEditor2Input_1;
12
- const SettingsEditorIcon = registerIcon("settings-editor-label-icon", Codicon.settings, ( localize(14593, "Icon of the settings editor label.")));
12
+ const SettingsEditorIcon = registerIcon("settings-editor-label-icon", Codicon.settings, ( localize(14594, "Icon of the settings editor label.")));
13
13
  let SettingsEditor2Input = class SettingsEditor2Input extends EditorInput {
14
14
  static {
15
15
  SettingsEditor2Input_1 = this;
@@ -32,7 +32,7 @@ let SettingsEditor2Input = class SettingsEditor2Input extends EditorInput {
32
32
  return SettingsEditor2Input_1.ID;
33
33
  }
34
34
  getName() {
35
- return localize(14594, "Settings");
35
+ return localize(14595, "Settings");
36
36
  }
37
37
  getIcon() {
38
38
  return SettingsEditorIcon;
@@ -46,7 +46,7 @@ let SettingsEditor2Input = class SettingsEditor2Input extends EditorInput {
46
46
  }
47
47
  };
48
48
  SettingsEditor2Input = SettingsEditor2Input_1 = ( __decorate([( __param(0, IPreferencesService))], SettingsEditor2Input));
49
- const PreferencesEditorIcon = registerIcon("preferences-editor-label-icon", Codicon.settings, ( localize(14595, "Icon of the preferences editor label.")));
49
+ const PreferencesEditorIcon = registerIcon("preferences-editor-label-icon", Codicon.settings, ( localize(14596, "Icon of the preferences editor label.")));
50
50
  class PreferencesEditorInput extends EditorInput {
51
51
  constructor() {
52
52
  super(...arguments);
@@ -65,7 +65,7 @@ class PreferencesEditorInput extends EditorInput {
65
65
  return PreferencesEditorInput.ID;
66
66
  }
67
67
  getName() {
68
- return localize(14596, "Preferences");
68
+ return localize(14597, "Preferences");
69
69
  }
70
70
  getIcon() {
71
71
  return PreferencesEditorIcon;
@@ -38,7 +38,7 @@ const getStartedWalkthrough = {
38
38
  required: ["id"],
39
39
  properties: {
40
40
  id: {
41
- description: ( localize(14638, "The ID of a Get Started walkthrough to open.")),
41
+ description: ( localize(14639, "The ID of a Get Started walkthrough to open.")),
42
42
  type: "string"
43
43
  }
44
44
  }
@@ -46,12 +46,12 @@ const getStartedWalkthrough = {
46
46
  const remoteHelpExtPoint = ExtensionsRegistry.registerExtensionPoint({
47
47
  extensionPoint: "remoteHelp",
48
48
  jsonSchema: {
49
- description: ( localize(14639, "Contributes help information for Remote")),
49
+ description: ( localize(14640, "Contributes help information for Remote")),
50
50
  type: "object",
51
51
  properties: {
52
52
  "getStarted": {
53
53
  description: ( localize(
54
- 14640,
54
+ 14641,
55
55
  "The url, or a command that returns the url, to your project's Getting Started page, or a walkthrough ID contributed by your project's extension"
56
56
  )),
57
57
  oneOf: [{
@@ -60,29 +60,29 @@ const remoteHelpExtPoint = ExtensionsRegistry.registerExtensionPoint({
60
60
  },
61
61
  "documentation": {
62
62
  description: ( localize(
63
- 14641,
63
+ 14642,
64
64
  "The url, or a command that returns the url, to your project's documentation page"
65
65
  )),
66
66
  type: "string"
67
67
  },
68
68
  "feedback": {
69
69
  description: ( localize(
70
- 14642,
70
+ 14643,
71
71
  "The url, or a command that returns the url, to your project's feedback reporter"
72
72
  )),
73
73
  type: "string",
74
- markdownDeprecationMessage: ( localize(14643, "Use {0} instead", "`reportIssue`"))
74
+ markdownDeprecationMessage: ( localize(14644, "Use {0} instead", "`reportIssue`"))
75
75
  },
76
76
  "reportIssue": {
77
77
  description: ( localize(
78
- 14644,
78
+ 14645,
79
79
  "The url, or a command that returns the url, to your project's issue reporter"
80
80
  )),
81
81
  type: "string"
82
82
  },
83
83
  "issues": {
84
84
  description: ( localize(
85
- 14645,
85
+ 14646,
86
86
  "The url, or a command that returns the url, to your project's issues list"
87
87
  )),
88
88
  type: "string"
@@ -28,8 +28,8 @@ const TUNNELS_TO_RESTORE = "remote.tunnels.toRestore";
28
28
  const TUNNELS_TO_RESTORE_EXPIRATION = "remote.tunnels.toRestoreExpiration";
29
29
  const RESTORE_EXPIRATION_TIME = 1000 * 60 * 60 * 24 * 14;
30
30
  const ACTIVATION_EVENT = "onTunnel";
31
- const forwardedPortsFeaturesEnabled = ( new RawContextKey("forwardedPortsViewEnabled", false, ( localize(14646, "Whether the Ports view is enabled."))));
32
- const forwardedPortsViewEnabled = ( new RawContextKey("forwardedPortsViewOnlyEnabled", false, ( localize(14646, "Whether the Ports view is enabled."))));
31
+ const forwardedPortsFeaturesEnabled = ( new RawContextKey("forwardedPortsViewEnabled", false, ( localize(14647, "Whether the Ports view is enabled."))));
32
+ const forwardedPortsViewEnabled = ( new RawContextKey("forwardedPortsViewOnlyEnabled", false, ( localize(14647, "Whether the Ports view is enabled."))));
33
33
  function parseAddress(address) {
34
34
  const matches = address.match(/^([a-zA-Z0-9_-]+(?:\.[a-zA-Z0-9_-]+)*:)?([0-9]+)$/);
35
35
  if (!matches) {
@@ -54,11 +54,11 @@ var TunnelSource;
54
54
  })(TunnelSource || (TunnelSource = {}));
55
55
  const UserTunnelSource = {
56
56
  source: TunnelSource.User,
57
- description: ( localize(14647, "User Forwarded"))
57
+ description: ( localize(14648, "User Forwarded"))
58
58
  };
59
59
  const AutoTunnelSource = {
60
60
  source: TunnelSource.Auto,
61
- description: ( localize(14648, "Auto Forwarded"))
61
+ description: ( localize(14649, "Auto Forwarded"))
62
62
  };
63
63
  function mapHasAddress(map, host, port) {
64
64
  const initialAddress = map.get(makeAddress(host, port));
@@ -596,7 +596,7 @@ let TunnelModel = class TunnelModel extends Disposable {
596
596
  }
597
597
  this.mismatchCooldown = newCooldown;
598
598
  const mismatchString = ( localize(
599
- 14649,
599
+ 14650,
600
600
  "Local port {0} could not be used for forwarding to remote port {1}.\n\nThis usually happens when there is already another process using local port {0}.\n\nPort number {2} has been used instead.",
601
601
  expectedLocal,
602
602
  tunnel.tunnelRemotePort,
@@ -785,7 +785,7 @@ let TunnelModel = class TunnelModel extends Disposable {
785
785
  privacy: TunnelPrivacyId.ConstantPrivate,
786
786
  source: {
787
787
  source: TunnelSource.Extension,
788
- description: ( localize(14650, "Statically Forwarded"))
788
+ description: ( localize(14651, "Statically Forwarded"))
789
789
  }
790
790
  });
791
791
  this.tunnelService.setEnvironmentTunnel(
@@ -372,7 +372,7 @@ let QueryBuilder = class QueryBuilder {
372
372
  } else {
373
373
  const probableWorkspaceFolderNameMatch = searchPath.match(/\.[\/\\](.+)[\/\\]?/);
374
374
  const probableWorkspaceFolderName = probableWorkspaceFolderNameMatch ? probableWorkspaceFolderNameMatch[1] : searchPath;
375
- const searchPathNotFoundError = ( localize(14654, "Workspace folder does not exist: {0}", probableWorkspaceFolderName));
375
+ const searchPathNotFoundError = ( localize(14655, "Workspace folder does not exist: {0}", probableWorkspaceFolderName));
376
376
  throw ( new Error(searchPathNotFoundError));
377
377
  }
378
378
  }
@@ -7,7 +7,7 @@ const grammarsExtPoint = ExtensionsRegistry.registerExtensionPoint({
7
7
  extensionPoint: "grammars",
8
8
  deps: [languagesExtPoint],
9
9
  jsonSchema: {
10
- description: ( localize(14680, "Contributes textmate tokenizers.")),
10
+ description: ( localize(14681, "Contributes textmate tokenizers.")),
11
11
  type: "array",
12
12
  defaultSnippets: [{
13
13
  body: [{
@@ -27,29 +27,29 @@ const grammarsExtPoint = ExtensionsRegistry.registerExtensionPoint({
27
27
  }],
28
28
  properties: {
29
29
  language: {
30
- description: ( localize(14681, "Language identifier for which this syntax is contributed to.")),
30
+ description: ( localize(14682, "Language identifier for which this syntax is contributed to.")),
31
31
  type: "string"
32
32
  },
33
33
  scopeName: {
34
- description: ( localize(14682, "Textmate scope name used by the tmLanguage file.")),
34
+ description: ( localize(14683, "Textmate scope name used by the tmLanguage file.")),
35
35
  type: "string"
36
36
  },
37
37
  path: {
38
38
  description: ( localize(
39
- 14683,
39
+ 14684,
40
40
  "Path of the tmLanguage file. The path is relative to the extension folder and typically starts with './syntaxes/'."
41
41
  )),
42
42
  type: "string"
43
43
  },
44
44
  embeddedLanguages: {
45
45
  description: ( localize(
46
- 14684,
46
+ 14685,
47
47
  "A map of scope name to language id if this grammar contains embedded languages."
48
48
  )),
49
49
  type: "object"
50
50
  },
51
51
  tokenTypes: {
52
- description: ( localize(14685, "A map of scope name to token types.")),
52
+ description: ( localize(14686, "A map of scope name to token types.")),
53
53
  type: "object",
54
54
  additionalProperties: {
55
55
  enum: ["string", "comment", "other"]
@@ -57,7 +57,7 @@ const grammarsExtPoint = ExtensionsRegistry.registerExtensionPoint({
57
57
  },
58
58
  injectTo: {
59
59
  description: ( localize(
60
- 14686,
60
+ 14687,
61
61
  "List of language scope names to which this grammar is injected to."
62
62
  )),
63
63
  type: "array",
@@ -66,7 +66,7 @@ const grammarsExtPoint = ExtensionsRegistry.registerExtensionPoint({
66
66
  }
67
67
  },
68
68
  balancedBracketScopes: {
69
- description: ( localize(14687, "Defines which scope names contain balanced brackets.")),
69
+ description: ( localize(14688, "Defines which scope names contain balanced brackets.")),
70
70
  type: "array",
71
71
  items: {
72
72
  type: "string"
@@ -74,7 +74,7 @@ const grammarsExtPoint = ExtensionsRegistry.registerExtensionPoint({
74
74
  default: ["*"]
75
75
  },
76
76
  unbalancedBracketScopes: {
77
- description: ( localize(14688, "Defines which scope names do not contain balanced brackets.")),
77
+ description: ( localize(14689, "Defines which scope names do not contain balanced brackets.")),
78
78
  type: "array",
79
79
  items: {
80
80
  type: "string"
@@ -40,7 +40,7 @@ let TextFileEditorModel = class TextFileEditorModel extends BaseTextEditorModel
40
40
  TextFileEditorModel_1 = this;
41
41
  }
42
42
  static {
43
- this.TEXTFILE_SAVE_ENCODING_SOURCE = SaveSourceRegistry.registerSource("textFileEncoding.source", ( localize(14702, "File Encoding Changed")));
43
+ this.TEXTFILE_SAVE_ENCODING_SOURCE = SaveSourceRegistry.registerSource("textFileEncoding.source", ( localize(14703, "File Encoding Changed")));
44
44
  }
45
45
  static {
46
46
  this.UNDO_REDO_SAVE_PARTICIPANTS_AUTO_SAVE_THROTTLE_THRESHOLD = 500;
@@ -562,7 +562,7 @@ let TextFileEditorModel = class TextFileEditorModel extends BaseTextEditorModel
562
562
  }
563
563
  const saveCancellation = ( new CancellationTokenSource());
564
564
  return this.progressService.withProgress({
565
- title: ( localize(14703, "Saving '{0}'", this.name)),
565
+ title: ( localize(14704, "Saving '{0}'", this.name)),
566
566
  location: ProgressLocation.Window,
567
567
  cancellable: true,
568
568
  delay: this.isDirty() ? 3000 : 5000
@@ -622,7 +622,7 @@ let TextFileEditorModel = class TextFileEditorModel extends BaseTextEditorModel
622
622
  versionId = this.versionId;
623
623
  this.inErrorMode = false;
624
624
  progress.report({
625
- message: ( localize(14704, "Writing into file..."))
625
+ message: ( localize(14705, "Writing into file..."))
626
626
  });
627
627
  this.trace(`doSave(${versionId}) - before write()`);
628
628
  const lastResolvedFileStat = assertReturnsDefined(this.lastResolvedFileStat);