@codingame/monaco-vscode-extensions-service-override
Advanced tools
Comparing version 11.0.0 to 11.0.1
{ | ||
"name": "@codingame/monaco-vscode-extensions-service-override", | ||
"version": "11.0.0", | ||
"version": "11.0.1", | ||
"keywords": [], | ||
@@ -29,9 +29,9 @@ "author": { | ||
"dependencies": { | ||
"vscode": "npm:@codingame/monaco-vscode-api@11.0.0", | ||
"@codingame/monaco-vscode-files-service-override": "11.0.0", | ||
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.0.0", | ||
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.0", | ||
"@codingame/monaco-vscode-chat-extensions-notebook-terminal-common": "11.0.0", | ||
"@codingame/monaco-vscode-comments-extensions-common": "11.0.0" | ||
"vscode": "npm:@codingame/monaco-vscode-api@11.0.1", | ||
"@codingame/monaco-vscode-files-service-override": "11.0.1", | ||
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.0.1", | ||
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.1", | ||
"@codingame/monaco-vscode-chat-extensions-notebook-terminal-common": "11.0.1", | ||
"@codingame/monaco-vscode-comments-extensions-common": "11.0.1" | ||
} | ||
} |
@@ -14,5 +14,5 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
const notFound = (id) => ( localize(10002, "Extension '{0}' not found.", id)); | ||
const notFound = (id) => ( localize(9986, "Extension '{0}' not found.", id)); | ||
const useId = ( localize( | ||
10003, | ||
9987, | ||
"Make sure you use the full extension ID, including the publisher, e.g.: {0}", | ||
@@ -54,3 +54,3 @@ 'ms-dotnettools.csharp' | ||
if (this.location) { | ||
this.logger.info(( localize(10004, "Extensions installed on {0}:", this.location))); | ||
this.logger.info(( localize(9988, "Extensions installed on {0}:", this.location))); | ||
} | ||
@@ -70,3 +70,3 @@ extensions = extensions.sort((e1, e2) => e1.identifier.id.localeCompare(e2.identifier.id)); | ||
if (extensions.length) { | ||
this.logger.info(this.location ? ( localize(10005, "Installing extensions on {0}...", this.location)) : ( localize(10006, "Installing extensions..."))); | ||
this.logger.info(this.location ? ( localize(9989, "Installing extensions on {0}...", this.location)) : ( localize(9990, "Installing extensions..."))); | ||
} | ||
@@ -114,7 +114,7 @@ const installVSIXInfos = []; | ||
catch (error) { | ||
this.logger.error(( localize(10007, "Error while installing extensions: {0}", getErrorMessage(error)))); | ||
this.logger.error(( localize(9991, "Error while installing extensions: {0}", getErrorMessage(error)))); | ||
throw error; | ||
} | ||
if (failed.length) { | ||
throw ( (new Error(localize(10008, "Failed Installing Extensions: {0}", failed.join(', '))))); | ||
throw ( (new Error(localize(9992, "Failed Installing Extensions: {0}", failed.join(', '))))); | ||
} | ||
@@ -131,3 +131,3 @@ } | ||
this.logger.trace(( localize( | ||
10009, | ||
9993, | ||
"Fetching latest versions for {0} extensions", | ||
@@ -149,7 +149,7 @@ installedExtensionsQuery.length | ||
if (!extensionsToUpdate.length) { | ||
this.logger.info(( localize(10010, "No extension to update"))); | ||
this.logger.info(( localize(9994, "No extension to update"))); | ||
return; | ||
} | ||
this.logger.info(( localize( | ||
10011, | ||
9995, | ||
"Updating extensions: {0}", | ||
@@ -162,3 +162,3 @@ ( (extensionsToUpdate.map(ext => ext.extension.identifier.id))).join(', ') | ||
this.logger.error(( localize( | ||
10012, | ||
9996, | ||
"Error while updating extension {0}: {1}", | ||
@@ -171,3 +171,3 @@ extensionResult.identifier.id, | ||
this.logger.info(( localize( | ||
10013, | ||
9997, | ||
"Extension '{0}' v{1} was successfully updated.", | ||
@@ -186,3 +186,3 @@ extensionResult.identifier.id, | ||
this.logger.info(( localize( | ||
10014, | ||
9998, | ||
"Extension '{0}' v{1} is already installed. Use '--force' option to update to latest version or provide '@<version>' to install a specific version, for example: '{2}@1.2.3'.", | ||
@@ -196,3 +196,3 @@ id, | ||
if (version && installedExtension.manifest.version === version) { | ||
this.logger.info(( localize(10015, "Extension '{0}' is already installed.", `${id}@${version}`))); | ||
this.logger.info(( localize(9999, "Extension '{0}' is already installed.", `${id}@${version}`))); | ||
return false; | ||
@@ -231,3 +231,3 @@ } | ||
this.logger.info(( localize( | ||
10015, | ||
9999, | ||
"Extension '{0}' is already installed.", | ||
@@ -239,3 +239,3 @@ version ? `${id}@${version}` : id | ||
this.logger.info(( localize( | ||
10016, | ||
10000, | ||
"Updating the extension '{0}' to the version {1}", | ||
@@ -247,6 +247,6 @@ id, | ||
if (installOptions.isBuiltin) { | ||
this.logger.info(version ? ( localize(10017, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(10018, "Installing builtin extension '{0}'...", id))); | ||
this.logger.info(version ? ( localize(10001, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(10002, "Installing builtin extension '{0}'...", id))); | ||
} | ||
else { | ||
this.logger.info(version ? ( localize(10019, "Installing extension '{0}' v{1}...", id, version)) : ( localize(10020, "Installing extension '{0}'...", id))); | ||
this.logger.info(version ? ( localize(10003, "Installing extension '{0}' v{1}...", id, version)) : ( localize(10004, "Installing extension '{0}'...", id))); | ||
} | ||
@@ -263,3 +263,3 @@ extensionsToInstall.push({ | ||
this.logger.error(( localize( | ||
10021, | ||
10005, | ||
"Error while installing extension {0}: {1}", | ||
@@ -273,3 +273,3 @@ extensionResult.identifier.id, | ||
this.logger.info(( localize( | ||
10022, | ||
10006, | ||
"Extension '{0}' v{1} was successfully installed.", | ||
@@ -293,7 +293,7 @@ extensionResult.identifier.id, | ||
await this.extensionManagementService.install(vsix, { ...installOptions, installGivenVersion: true }); | ||
this.logger.info(( localize(10023, "Extension '{0}' was successfully installed.", basename(vsix)))); | ||
this.logger.info(( localize(10007, "Extension '{0}' was successfully installed.", basename(vsix)))); | ||
} | ||
catch (error) { | ||
if (isCancellationError(error)) { | ||
this.logger.info(( localize(10024, "Cancelled installing extension '{0}'.", basename(vsix)))); | ||
this.logger.info(( localize(10008, "Cancelled installing extension '{0}'.", basename(vsix)))); | ||
} | ||
@@ -333,3 +333,3 @@ else { | ||
this.logger.info(( localize( | ||
10025, | ||
10009, | ||
"A newer version of extension '{0}' v{1} is already installed. Use '--force' option to downgrade to older version.", | ||
@@ -362,3 +362,3 @@ newer.identifier.id, | ||
this.logger.info(( localize( | ||
10026, | ||
10010, | ||
"Extension '{0}' is a Built-in extension and cannot be uninstalled", | ||
@@ -371,3 +371,3 @@ id | ||
this.logger.info(( localize( | ||
10027, | ||
10011, | ||
"Extension '{0}' is marked as a Built-in extension by user. Please use '--force' option to uninstall it.", | ||
@@ -378,3 +378,3 @@ id | ||
} | ||
this.logger.info(( localize(10028, "Uninstalling {0}...", id))); | ||
this.logger.info(( localize(10012, "Uninstalling {0}...", id))); | ||
for (const extensionToUninstall of extensionsToUninstall) { | ||
@@ -385,3 +385,3 @@ await this.extensionManagementService.uninstall(extensionToUninstall, { profileLocation }); | ||
this.logger.info(( localize( | ||
10029, | ||
10013, | ||
"Extension '{0}' was successfully uninstalled from {1}!", | ||
@@ -393,3 +393,3 @@ id, | ||
else { | ||
this.logger.info(( localize(10030, "Extension '{0}' was successfully uninstalled!", id))); | ||
this.logger.info(( localize(10014, "Extension '{0}' was successfully uninstalled!", id))); | ||
} | ||
@@ -412,3 +412,3 @@ } | ||
notInstalled(id) { | ||
return this.location ? ( localize(10031, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(10032, "Extension '{0}' is not installed.", id)); | ||
return this.location ? ( localize(10015, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(10016, "Extension '{0}' is not installed.", id)); | ||
} | ||
@@ -415,0 +415,0 @@ }; |
@@ -39,3 +39,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
await this._proxy.$removeSession(this.id, sessionId); | ||
this.notificationService.info(( localize(4984, "Successfully signed out."))); | ||
this.notificationService.info(( localize(4890, "Successfully signed out."))); | ||
} | ||
@@ -100,3 +100,3 @@ } | ||
message = ( localize( | ||
4985, | ||
4891, | ||
"The extension '{0}' wants to access the language models provided by {1}.", | ||
@@ -110,3 +110,3 @@ extensionName, | ||
? ( localize( | ||
4986, | ||
4892, | ||
"The extension '{0}' wants you to sign in again using {1}.", | ||
@@ -117,3 +117,3 @@ extensionName, | ||
: ( localize( | ||
4987, | ||
4893, | ||
"The extension '{0}' wants to sign in using {1}.", | ||
@@ -126,3 +126,3 @@ extensionName, | ||
{ | ||
label: ( localize(4988, "&&Allow")), | ||
label: ( localize(4894, "&&Allow")), | ||
run() { | ||
@@ -135,3 +135,3 @@ return true; | ||
buttons.push({ | ||
label: ( localize(4989, "Learn more")), | ||
label: ( localize(4895, "Learn more")), | ||
run: async () => { | ||
@@ -155,5 +155,5 @@ const result = this.loginPrompt(provider, extensionName, recreatingSession, options); | ||
const result = await this.dialogService.prompt({ | ||
message: ( localize(4990, "Incorrect account detected")), | ||
message: ( localize(4896, "Incorrect account detected")), | ||
detail: ( localize( | ||
4991, | ||
4897, | ||
"The chosen account, {0}, does not match the requested account, {1}.", | ||
@@ -167,7 +167,7 @@ chosenAccountLabel, | ||
{ | ||
label: ( localize(4992, 'Keep {0}', chosenAccountLabel)), | ||
label: ( localize(4898, 'Keep {0}', chosenAccountLabel)), | ||
run: () => chosenAccountLabel | ||
}, | ||
{ | ||
label: ( localize(4993, 'Login with {0}', requestedAccountLabel)), | ||
label: ( localize(4899, 'Login with {0}', requestedAccountLabel)), | ||
run: () => requestedAccountLabel | ||
@@ -174,0 +174,0 @@ } |
@@ -94,3 +94,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
this.logger.info(( localize( | ||
4935, | ||
4841, | ||
"Cannot install the '{0}' extension because it is declared to not run in this setup.", | ||
@@ -97,0 +97,0 @@ getExtensionId(manifest.publisher, manifest.name) |
@@ -434,3 +434,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
} | ||
const commentsViewIcon = registerIcon('comments-view-icon', Codicon.commentDiscussion, ( localize(4979, 'View icon of the comments view.'))); | ||
const commentsViewIcon = registerIcon('comments-view-icon', Codicon.commentDiscussion, ( localize(4885, 'View icon of the comments view.'))); | ||
let MainThreadComments = class MainThreadComments extends Disposable { | ||
@@ -437,0 +437,0 @@ constructor(extHostContext, _commentService, _viewsService, _viewDescriptorService, _uriIdentityService, _editorService) { |
@@ -291,3 +291,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
this._register(extensionService.onWillStop(e => { | ||
e.veto(true, ( localize(10047, "A custom editor for '{0}' is open.", this.name))); | ||
e.veto(true, ( localize(10030, "A custom editor for '{0}' is open.", this.name))); | ||
})); | ||
@@ -359,3 +359,3 @@ } | ||
resource: this._editorResource, | ||
label: label ?? ( localize(10048, "Edit")), | ||
label: label ?? ( localize(10031, "Edit")), | ||
code: 'undoredo.customEditorEdit', | ||
@@ -362,0 +362,0 @@ undo: () => this.undo(), |
@@ -16,3 +16,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
const p = ( (new Promise((resolve, reject) => { | ||
setTimeout(() => reject(( (new Error(( localize(4971, "Aborted onWillCreateEditSessionIdentity-event after 10000ms")))))), this.timeout); | ||
setTimeout(() => reject(( (new Error(( localize(4877, "Aborted onWillCreateEditSessionIdentity-event after 10000ms")))))), this.timeout); | ||
this._proxy.$onWillCreateEditSessionIdentity(workspaceFolder.uri, token, this.timeout).then(resolve, reject); | ||
@@ -19,0 +19,0 @@ }))); |
@@ -91,3 +91,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
message: ( localize( | ||
4936, | ||
4842, | ||
"Cannot activate the '{0}' extension because it depends on the '{1}' extension, which is not loaded. Would you like to reload the window to load the extension?", | ||
@@ -98,3 +98,3 @@ extName, | ||
actions: { | ||
primary: [( (new Action('reload', ( localize(4937, "Reload Window")), '', true, () => this._hostService.reload())))] | ||
primary: [( (new Action('reload', ( localize(4843, "Reload Window")), '', true, () => this._hostService.reload())))] | ||
} | ||
@@ -109,3 +109,3 @@ }); | ||
message: ( localize( | ||
4938, | ||
4844, | ||
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is not supported in the current workspace", | ||
@@ -121,3 +121,3 @@ extName, | ||
message: ( localize( | ||
4939, | ||
4845, | ||
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is not supported in Restricted Mode", | ||
@@ -128,3 +128,3 @@ extName, | ||
actions: { | ||
primary: [( (new Action('manageWorkspaceTrust', ( localize(4940, "Manage Workspace Trust")), '', true, () => this._commandService.executeCommand('workbench.trust.manage'))))] | ||
primary: [( (new Action('manageWorkspaceTrust', ( localize(4846, "Manage Workspace Trust")), '', true, () => this._commandService.executeCommand('workbench.trust.manage'))))] | ||
} | ||
@@ -137,3 +137,3 @@ }); | ||
message: ( localize( | ||
4941, | ||
4847, | ||
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is disabled. Would you like to enable the extension and reload the window?", | ||
@@ -144,3 +144,3 @@ extName, | ||
actions: { | ||
primary: [( (new Action('enable', ( localize(4942, "Enable and Reload")), '', true, () => this._extensionEnablementService.setEnablement([missingInstalledDependency], enablementState === 7 ? 9 : 10 ) | ||
primary: [( (new Action('enable', ( localize(4848, "Enable and Reload")), '', true, () => this._extensionEnablementService.setEnablement([missingInstalledDependency], enablementState === 7 ? 9 : 10 ) | ||
.then(() => this._hostService.reload(), e => this._notificationService.error(e)))))] | ||
@@ -154,3 +154,3 @@ } | ||
message: ( localize( | ||
4943, | ||
4849, | ||
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is disabled.", | ||
@@ -176,3 +176,3 @@ extName, | ||
message: ( localize( | ||
4944, | ||
4850, | ||
"Cannot activate the '{0}' extension because it depends on the '{1}' extension from '{2}', which is not installed. Would you like to install the extension and reload the window?", | ||
@@ -184,3 +184,3 @@ extName, | ||
actions: { | ||
primary: [( (new Action('install', ( localize(4945, "Install and Reload")), '', true, () => this._extensionsWorkbenchService.install(dependencyExtension) | ||
primary: [( (new Action('install', ( localize(4851, "Install and Reload")), '', true, () => this._extensionsWorkbenchService.install(dependencyExtension) | ||
.then(() => this._hostService.reload(), e => this._notificationService.error(e)))))] | ||
@@ -192,3 +192,3 @@ } | ||
this._notificationService.error(( localize( | ||
4946, | ||
4852, | ||
"Cannot activate the '{0}' extension because it depends on an unknown '{1}' extension.", | ||
@@ -195,0 +195,0 @@ extName, |
@@ -74,3 +74,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
message = ( localize( | ||
4947, | ||
4853, | ||
"Extension '{0}' wants to make refactoring changes with this file creation", | ||
@@ -82,3 +82,3 @@ data.extensionNames[0] | ||
message = ( localize( | ||
4948, | ||
4854, | ||
"Extension '{0}' wants to make refactoring changes with this file copy", | ||
@@ -90,3 +90,3 @@ data.extensionNames[0] | ||
message = ( localize( | ||
4949, | ||
4855, | ||
"Extension '{0}' wants to make refactoring changes with this file move", | ||
@@ -98,3 +98,3 @@ data.extensionNames[0] | ||
message = ( localize( | ||
4950, | ||
4856, | ||
"Extension '{0}' wants to make refactoring changes with this file deletion", | ||
@@ -108,3 +108,3 @@ data.extensionNames[0] | ||
message = ( localize( | ||
4951, | ||
4857, | ||
"{0} extensions want to make refactoring changes with this file creation", | ||
@@ -116,3 +116,3 @@ data.extensionNames.length | ||
message = ( localize( | ||
4952, | ||
4858, | ||
"{0} extensions want to make refactoring changes with this file copy", | ||
@@ -124,3 +124,3 @@ data.extensionNames.length | ||
message = ( localize( | ||
4953, | ||
4859, | ||
"{0} extensions want to make refactoring changes with this file move", | ||
@@ -132,3 +132,3 @@ data.extensionNames.length | ||
message = ( localize( | ||
4954, | ||
4860, | ||
"{0} extensions want to make refactoring changes with this file deletion", | ||
@@ -143,4 +143,4 @@ data.extensionNames.length | ||
message, | ||
primaryButton: ( localize(4955, "Show &&Preview")), | ||
cancelButton: ( localize(4956, "Skip Changes")) | ||
primaryButton: ( localize(4861, "Show &&Preview")), | ||
cancelButton: ( localize(4862, "Skip Changes")) | ||
}); | ||
@@ -164,7 +164,7 @@ showPreview = true; | ||
{ | ||
label: ( localize(4957, "&&OK")), | ||
label: ( localize(4863, "&&OK")), | ||
run: () => Choice.OK | ||
}, | ||
{ | ||
label: ( localize(4955, "Show &&Preview")), | ||
label: ( localize(4861, "Show &&Preview")), | ||
run: () => Choice.Preview | ||
@@ -174,6 +174,6 @@ } | ||
cancelButton: { | ||
label: ( localize(4956, "Skip Changes")), | ||
label: ( localize(4862, "Skip Changes")), | ||
run: () => Choice.Cancel | ||
}, | ||
checkbox: { label: ( localize(4958, "Do not ask me again")) } | ||
checkbox: { label: ( localize(4864, "Do not ask me again")) } | ||
}); | ||
@@ -195,11 +195,11 @@ if (result === Choice.Cancel) { | ||
case 0 : | ||
return ( localize(4959, "Running 'File Create' participants...")); | ||
return ( localize(4865, "Running 'File Create' participants...")); | ||
case 2 : | ||
return ( localize(4960, "Running 'File Rename' participants...")); | ||
return ( localize(4866, "Running 'File Rename' participants...")); | ||
case 3 : | ||
return ( localize(4961, "Running 'File Copy' participants...")); | ||
return ( localize(4867, "Running 'File Copy' participants...")); | ||
case 1 : | ||
return ( localize(4962, "Running 'File Delete' participants...")); | ||
return ( localize(4868, "Running 'File Delete' participants...")); | ||
case 4 : | ||
return ( localize(4963, "Running 'File Write' participants...")); | ||
return ( localize(4869, "Running 'File Write' participants...")); | ||
} | ||
@@ -275,3 +275,3 @@ } | ||
title: { | ||
value: ( localize(4964, "Reset choice for 'File operation needs preview'")), | ||
value: ( localize(4870, "Reset choice for 'File operation needs preview'")), | ||
original: `Reset choice for 'File operation needs preview'` | ||
@@ -278,0 +278,0 @@ }, |
@@ -137,3 +137,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
} | ||
const accountLabel = auth.accountLabel ?? ( localize(4934, 'Language Models')); | ||
const accountLabel = auth.accountLabel ?? ( localize(4840, 'Language Models')); | ||
const disposables = ( (new DisposableStore())); | ||
@@ -140,0 +140,0 @@ this._authenticationService.registerAuthenticationProvider(authProviderId, ( (new LanguageModelAccessAuthProvider(authProviderId, auth.providerLabel, accountLabel)))); |
@@ -54,3 +54,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
if (!source) { | ||
source = ( localize(4965, "Extension")); | ||
source = ( localize(4871, "Extension")); | ||
} | ||
@@ -61,3 +61,3 @@ const secondaryActions = []; | ||
id: options.source.identifier.value, | ||
label: ( localize(4966, "Manage Extension")), | ||
label: ( localize(4872, "Manage Extension")), | ||
run: () => { | ||
@@ -98,3 +98,3 @@ return this._commandService.executeCommand('_extensions.manage', options.source.identifier.value); | ||
cancelButton = { | ||
label: ( localize(4967, "Cancel")), | ||
label: ( localize(4873, "Cancel")), | ||
run: () => undefined | ||
@@ -105,3 +105,3 @@ }; | ||
cancelButton = { | ||
label: ( localize(4968, "&&OK")), | ||
label: ( localize(4874, "&&OK")), | ||
run: () => undefined | ||
@@ -108,0 +108,0 @@ }; |
@@ -20,3 +20,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
const p = ( (new Promise((resolve, reject) => { | ||
_warningTimeout = setTimeout(() => reject(( (new Error(( localize(4980, "Aborted onWillSaveNotebookDocument-event after 1750ms")))))), 1750); | ||
_warningTimeout = setTimeout(() => reject(( (new Error(( localize(4886, "Aborted onWillSaveNotebookDocument-event after 1750ms")))))), 1750); | ||
this._proxy.$participateInSave(workingCopy.resource, context.reason, token).then(_ => { | ||
@@ -23,0 +23,0 @@ clearTimeout(_warningTimeout); |
@@ -33,3 +33,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
location: 15 , | ||
secondaryActions: [( (new ManageExtensionAction(extensionId, ( localize(4969, "Manage Extension")), this._commandService)))] | ||
secondaryActions: [( (new ManageExtensionAction(extensionId, ( localize(4875, "Manage Extension")), this._commandService)))] | ||
}; | ||
@@ -36,0 +36,0 @@ options = notificationOptions; |
@@ -19,3 +19,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
const p = ( (new Promise((resolve, reject) => { | ||
setTimeout(() => reject(( (new Error(( localize(4970, "Aborted onWillSaveTextDocument-event after 1750ms")))))), 1750); | ||
setTimeout(() => reject(( (new Error(( localize(4876, "Aborted onWillSaveTextDocument-event after 1750ms")))))), 1750); | ||
this._proxy.$participateInSave(editorModel.resource, context.reason).then(values => { | ||
@@ -22,0 +22,0 @@ if (!values.every(success => success)) { |
@@ -380,3 +380,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
const source = TaskSourceDTO.to(task.source, workspace); | ||
const label = ( localize(4981, '{0}: {1}', source.label, task.name)); | ||
const label = ( localize(4887, '{0}: {1}', source.label, task.name)); | ||
const definition = TaskDefinitionDTO.to(task.definition, executeOnly); | ||
@@ -383,0 +383,0 @@ const id = (CustomExecutionDTO.is(task.execution) && task._id) ? task._id : `${task.source.extensionId}.${definition._key}`; |
@@ -114,3 +114,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
return this.notificationService.prompt(Severity$1.Info, ( localize( | ||
4982, | ||
4888, | ||
"The extension {0} has forwarded port {1}. You'll need to run as superuser to use port {2} locally.", | ||
@@ -121,3 +121,3 @@ source, | ||
)), [{ | ||
label: ( localize(4983, "Use Port {0} as Sudo...", tunnel.tunnelRemotePort)), | ||
label: ( localize(4889, "Use Port {0} as Sudo...", tunnel.tunnelRemotePort)), | ||
run: async () => { | ||
@@ -124,0 +124,0 @@ this.elevateionRetry = true; |
@@ -54,3 +54,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
if (!isCancellationError(e)) { | ||
const openDefaultAction = ( (new Action('default', ( localize(4972, "Open using default opener")), undefined, undefined, async () => { | ||
const openDefaultAction = ( (new Action('default', ( localize(4878, "Open using default opener")), undefined, undefined, async () => { | ||
await this.openerService.open(uri, { | ||
@@ -65,3 +65,3 @@ allowTunneling: false, | ||
message: ( localize( | ||
4973, | ||
4879, | ||
'Could not open uri with \'{0}\': {1}', | ||
@@ -68,0 +68,0 @@ id, |
@@ -106,3 +106,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
</head> | ||
<body>${( localize(10033, "An error occurred while loading view: {0}", escape(viewType)))}</body> | ||
<body>${( localize(9985, "An error occurred while loading view: {0}", escape(viewType)))}</body> | ||
</html>`; | ||
@@ -109,0 +109,0 @@ } |
@@ -79,7 +79,7 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
if (addCount === 1) { | ||
message = ( localize(4974, "Extension '{0}' added 1 folder to the workspace", extensionName)); | ||
message = ( localize(4880, "Extension '{0}' added 1 folder to the workspace", extensionName)); | ||
} | ||
else { | ||
message = ( localize( | ||
4975, | ||
4881, | ||
"Extension '{0}' added {1} folders to the workspace", | ||
@@ -93,7 +93,7 @@ extensionName, | ||
if (removeCount === 1) { | ||
message = ( localize(4976, "Extension '{0}' removed 1 folder from the workspace", extensionName)); | ||
message = ( localize(4882, "Extension '{0}' removed 1 folder from the workspace", extensionName)); | ||
} | ||
else { | ||
message = ( localize( | ||
4977, | ||
4883, | ||
"Extension '{0}' removed {1} folders from the workspace", | ||
@@ -106,3 +106,3 @@ extensionName, | ||
else { | ||
message = ( localize(4978, "Extension '{0}' changed folders of the workspace", extensionName)); | ||
message = ( localize(4884, "Extension '{0}' changed folders of the workspace", extensionName)); | ||
} | ||
@@ -109,0 +109,0 @@ return message; |
@@ -141,7 +141,7 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
const goodPrompt = { | ||
label: ( localize(1320, "I can't reproduce")), | ||
label: ( localize(1150, "I can't reproduce")), | ||
run: () => this._commandService.executeCommand('extension.bisect.next', false) | ||
}; | ||
const badPrompt = { | ||
label: ( localize(1321, "I can reproduce")), | ||
label: ( localize(1151, "I can reproduce")), | ||
run: () => this._commandService.executeCommand('extension.bisect.next', true) | ||
@@ -155,7 +155,7 @@ }; | ||
? ( localize( | ||
1322, | ||
1152, | ||
"Extension Bisect is active and has disabled 1 extension. Check if you can still reproduce the problem and proceed by selecting from these options." | ||
)) | ||
: ( localize( | ||
1323, | ||
1153, | ||
"Extension Bisect is active and has disabled {0} extensions. Check if you can still reproduce the problem and proceed by selecting from these options.", | ||
@@ -178,3 +178,3 @@ this._extensionBisectService.disabledCount | ||
id: 'extension.bisect.start', | ||
title: ( localize2(1324, 'Start Extension Bisect')), | ||
title: ( localize2(1154, 'Start Extension Bisect')), | ||
category: Categories.Help, | ||
@@ -199,9 +199,9 @@ f1: true, | ||
const res = await dialogService.confirm({ | ||
message: ( localize(1325, "Extension Bisect")), | ||
message: ( localize(1155, "Extension Bisect")), | ||
detail: ( localize( | ||
1326, | ||
1156, | ||
"Extension Bisect will use binary search to find an extension that causes a problem. During the process the window reloads repeatedly (~{0} times). Each time you must confirm if you are still seeing problems.", | ||
2 + Math.log2(extensions.length) | 0 | ||
)), | ||
primaryButton: ( localize(1327, "&&Start Extension Bisect")) | ||
primaryButton: ( localize(1157, "&&Start Extension Bisect")) | ||
}); | ||
@@ -218,3 +218,3 @@ if (res.confirmed) { | ||
id: 'extension.bisect.next', | ||
title: ( localize2(1328, 'Continue Extension Bisect')), | ||
title: ( localize2(1158, 'Continue Extension Bisect')), | ||
category: Categories.Help, | ||
@@ -253,4 +253,4 @@ f1: true, | ||
if (done.bad) { | ||
await dialogService.info(( localize(1329, "Extension Bisect")), ( localize( | ||
1330, | ||
await dialogService.info(( localize(1159, "Extension Bisect")), ( localize( | ||
1160, | ||
"Extension Bisect is done but no extension has been identified. This might be a problem with {0}.", | ||
@@ -263,11 +263,11 @@ productService.nameShort | ||
type: Severity$1.Info, | ||
message: ( localize(1329, "Extension Bisect")), | ||
primaryButton: ( localize(1331, "&&Report Issue & Continue")), | ||
cancelButton: ( localize(1332, "Continue")), | ||
message: ( localize(1159, "Extension Bisect")), | ||
primaryButton: ( localize(1161, "&&Report Issue & Continue")), | ||
cancelButton: ( localize(1162, "Continue")), | ||
detail: ( localize( | ||
1333, | ||
1163, | ||
"Extension Bisect is done and has identified {0} as the extension causing the problem.", | ||
done.id | ||
)), | ||
checkbox: { label: ( localize(1334, "Keep this extension disabled")), checked: true } | ||
checkbox: { label: ( localize(1164, "Keep this extension disabled")), checked: true } | ||
}); | ||
@@ -287,5 +287,5 @@ if (res.checkboxChecked) { | ||
type: Severity$1.Info, | ||
message: ( localize(1335, "Extension Bisect")), | ||
message: ( localize(1165, "Extension Bisect")), | ||
detail: ( localize( | ||
1336, | ||
1166, | ||
"Extension Bisect is active and has disabled {0} extensions. Check if you can still reproduce the problem and proceed by selecting from these options.", | ||
@@ -296,11 +296,11 @@ bisectService.disabledCount | ||
{ | ||
label: ( localize(1337, "I ca&&n't reproduce")), | ||
label: ( localize(1167, "I ca&&n't reproduce")), | ||
run: () => false | ||
}, | ||
{ | ||
label: ( localize(1338, "I can &&reproduce")), | ||
label: ( localize(1168, "I can &&reproduce")), | ||
run: () => true | ||
}, | ||
{ | ||
label: ( localize(1339, "&&Stop Bisect")), | ||
label: ( localize(1169, "&&Stop Bisect")), | ||
run: () => undefined | ||
@@ -310,3 +310,3 @@ } | ||
cancelButton: { | ||
label: ( localize(1340, "&&Cancel Bisect")), | ||
label: ( localize(1170, "&&Cancel Bisect")), | ||
run: () => null | ||
@@ -322,3 +322,3 @@ } | ||
id: 'extension.bisect.stop', | ||
title: ( localize2(1341, 'Stop Extension Bisect')), | ||
title: ( localize2(1171, 'Stop Extension Bisect')), | ||
category: Categories.Help, | ||
@@ -325,0 +325,0 @@ f1: true, |
@@ -178,3 +178,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
id: 'join.disconnectRemote', | ||
label: ( localize(1307, "Disconnect Remote Agent")), | ||
label: ( localize(1137, "Disconnect Remote Agent")), | ||
order: WillShutdownJoinerOrder.Last | ||
@@ -186,3 +186,3 @@ }); | ||
id: 'join.stopExtensionHosts', | ||
label: ( localize(1308, "Stopping Extension Hosts")), | ||
label: ( localize(1138, "Stopping Extension Hosts")), | ||
}); | ||
@@ -258,3 +258,3 @@ } | ||
message: ( localize( | ||
1309, | ||
1139, | ||
"The following extensions contain dependency loops and have been disabled: {0}", | ||
@@ -413,3 +413,3 @@ ( (result.removedDueToLooping.map(e => `'${e.identifier.value}'`))).join(', ') | ||
message: ( localize( | ||
1309, | ||
1139, | ||
"The following extensions contain dependency loops and have been disabled: {0}", | ||
@@ -429,3 +429,3 @@ ( (result.removedDueToLooping.map(e => `'${e.identifier.value}'`))).join(', ') | ||
const msg = ( localize( | ||
1310, | ||
1140, | ||
"No extension host found that can launch the test runner at {0}.", | ||
@@ -600,3 +600,3 @@ (this._environmentService.extensionTestsLocationURI.toString()) | ||
}).catch(error => { | ||
vetoReasons.add(( localize(1311, "{0} (Error: {1})", reason, toErrorMessage(error)))); | ||
vetoReasons.add(( localize(1141, "{0} (Error: {1})", reason, toErrorMessage(error)))); | ||
}); | ||
@@ -614,6 +614,6 @@ } | ||
this._logService.warn(`Extension host was not stopped because of veto (stop reason: ${reason}, veto reason: ${vetoReasonsArray.join(', ')})`); | ||
await this._dialogService.warn(( localize(1312, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ? | ||
( localize(1313, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) : | ||
await this._dialogService.warn(( localize(1142, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ? | ||
( localize(1143, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) : | ||
( localize( | ||
1314, | ||
1144, | ||
"The reasons for blocking the operation:\n- {0}", | ||
@@ -716,3 +716,3 @@ vetoReasonsArray.join('\n -') | ||
this._logService.info(`Automatically restarting the remote extension host.`); | ||
this._notificationService.status(( localize(1315, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 }); | ||
this._notificationService.status(( localize(1145, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 }); | ||
this._startExtensionHostsIfNecessary(false, Array.from(( (this._allRequestedActivateEvents.keys())))); | ||
@@ -722,6 +722,6 @@ } | ||
this._notificationService.prompt(Severity$1.Error, ( localize( | ||
1316, | ||
1146, | ||
"Remote Extension host terminated unexpectedly 3 times within the last 5 minutes." | ||
)), [{ | ||
label: ( localize(1317, "Restart Remote Extension Host")), | ||
label: ( localize(1147, "Restart Remote Extension Host")), | ||
run: () => { | ||
@@ -1211,3 +1211,3 @@ this._startExtensionHostsIfNecessary(false, Array.from(( (this._allRequestedActivateEvents.keys())))); | ||
id: 'activationEvents', | ||
label: ( localize(1318, "Activation Events")), | ||
label: ( localize(1148, "Activation Events")), | ||
access: { | ||
@@ -1214,0 +1214,0 @@ canToggle: false |
@@ -484,3 +484,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
id: 'editor.action.measureExtHostLatency', | ||
title: ( localize2(4930, "Measure Extension Host Latency")), | ||
title: ( localize2(4836, "Measure Extension Host Latency")), | ||
category: Categories.Developer, | ||
@@ -487,0 +487,0 @@ f1: true |
@@ -110,3 +110,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js'; | ||
id: 'enabledApiProposals', | ||
label: ( localize(1319, "API Proposals")), | ||
label: ( localize(1149, "API Proposals")), | ||
access: { | ||
@@ -113,0 +113,0 @@ canToggle: false |
@@ -11,3 +11,3 @@ import { ExtensionIdentifierMap } from 'vscode/vscode/vs/platform/extensions/common/extensions'; | ||
logService.warn(( localize( | ||
4931, | ||
4837, | ||
"Overwriting extension {0} with {1}.", | ||
@@ -32,3 +32,3 @@ extension.extensionLocation.fsPath, | ||
logService.warn(( localize( | ||
4931, | ||
4837, | ||
"Overwriting extension {0} with {1}.", | ||
@@ -50,3 +50,3 @@ extension.extensionLocation.fsPath, | ||
logService.warn(( localize( | ||
4932, | ||
4838, | ||
"Overwriting {0} with Workspace Extension {1}.", | ||
@@ -61,3 +61,3 @@ extension.extensionLocation.fsPath, | ||
logService.info(( localize( | ||
4933, | ||
4839, | ||
"Loading development extension at {0}", | ||
@@ -64,0 +64,0 @@ developedExtension.extensionLocation.fsPath |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
882903
+ Added@codingame/monaco-vscode-api@11.0.1(transitive)
+ Added@codingame/monaco-vscode-base-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-chat-extensions-notebook-terminal-testing-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-comments-extensions-common@11.0.1(transitive)
+ Added@codingame/monaco-vscode-environment-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-files-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-host-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-layout-service-override@11.0.1(transitive)
+ Added@codingame/monaco-vscode-quickaccess-service-override@11.0.1(transitive)
- Removed@codingame/monaco-vscode-api@11.0.0(transitive)
- Removed@codingame/monaco-vscode-base-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-comments-extensions-interactive-notebook-search-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-task-terminal-testing-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-chat-extensions-notebook-terminal-testing-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-comments-extensions-common@11.0.0(transitive)
- Removed@codingame/monaco-vscode-environment-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-files-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-host-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-layout-service-override@11.0.0(transitive)
- Removed@codingame/monaco-vscode-quickaccess-service-override@11.0.0(transitive)
Updated@codingame/monaco-vscode-chat-extensions-notebook-common@11.0.1
Updated@codingame/monaco-vscode-chat-extensions-notebook-terminal-common@11.0.1
Updated@codingame/monaco-vscode-comments-extensions-common@11.0.1
Updated@codingame/monaco-vscode-files-service-override@11.0.1