Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-extensions-service-override

Package Overview
Dependencies
Maintainers
6
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-extensions-service-override - npm Package Compare versions

Comparing version 11.0.2 to 11.1.0

14

package.json
{
"name": "@codingame/monaco-vscode-extensions-service-override",
"version": "11.0.2",
"version": "11.1.0",
"keywords": [],

@@ -29,9 +29,9 @@ "author": {

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@11.0.2",
"@codingame/monaco-vscode-files-service-override": "11.0.2",
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.0.2",
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.0.2",
"@codingame/monaco-vscode-chat-extensions-notebook-terminal-common": "11.0.2",
"@codingame/monaco-vscode-comments-extensions-common": "11.0.2"
"vscode": "npm:@codingame/monaco-vscode-api@11.1.0",
"@codingame/monaco-vscode-files-service-override": "11.1.0",
"@codingame/monaco-vscode-chat-extensions-notebook-common": "11.1.0",
"@codingame/monaco-vscode-chat-extensions-interactive-notebook-quickaccess-search-terminal-common": "11.1.0",
"@codingame/monaco-vscode-chat-extensions-notebook-terminal-common": "11.1.0",
"@codingame/monaco-vscode-comments-extensions-common": "11.1.0"
}
}

@@ -14,5 +14,5 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

const notFound = (id) => ( localize(9994, "Extension '{0}' not found.", id));
const notFound = (id) => ( localize(9983, "Extension '{0}' not found.", id));
const useId = ( localize(
9995,
9984,
"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(9996, "Extensions installed on {0}:", this.location)));
this.logger.info(( localize(9985, "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(9997, "Installing extensions on {0}...", this.location)) : ( localize(9998, "Installing extensions...")));
this.logger.info(this.location ? ( localize(9986, "Installing extensions on {0}...", this.location)) : ( localize(9987, "Installing extensions...")));
}

@@ -114,7 +114,7 @@ const installVSIXInfos = [];

catch (error) {
this.logger.error(( localize(9999, "Error while installing extensions: {0}", getErrorMessage(error))));
this.logger.error(( localize(9988, "Error while installing extensions: {0}", getErrorMessage(error))));
throw error;
}
if (failed.length) {
throw ( (new Error(localize(10000, "Failed Installing Extensions: {0}", failed.join(', ')))));
throw ( (new Error(localize(9989, "Failed Installing Extensions: {0}", failed.join(', ')))));
}

@@ -131,3 +131,3 @@ }

this.logger.trace(( localize(
10001,
9990,
"Fetching latest versions for {0} extensions",

@@ -149,7 +149,7 @@ installedExtensionsQuery.length

if (!extensionsToUpdate.length) {
this.logger.info(( localize(10002, "No extension to update")));
this.logger.info(( localize(9991, "No extension to update")));
return;
}
this.logger.info(( localize(
10003,
9992,
"Updating extensions: {0}",

@@ -162,3 +162,3 @@ ( (extensionsToUpdate.map(ext => ext.extension.identifier.id))).join(', ')

this.logger.error(( localize(
10004,
9993,
"Error while updating extension {0}: {1}",

@@ -171,3 +171,3 @@ extensionResult.identifier.id,

this.logger.info(( localize(
10005,
9994,
"Extension '{0}' v{1} was successfully updated.",

@@ -186,3 +186,3 @@ extensionResult.identifier.id,

this.logger.info(( localize(
10006,
9995,
"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(10007, "Extension '{0}' is already installed.", `${id}@${version}`)));
this.logger.info(( localize(9996, "Extension '{0}' is already installed.", `${id}@${version}`)));
return false;

@@ -231,3 +231,3 @@ }

this.logger.info(( localize(
10007,
9996,
"Extension '{0}' is already installed.",

@@ -239,3 +239,3 @@ version ? `${id}@${version}` : id

this.logger.info(( localize(
10008,
9997,
"Updating the extension '{0}' to the version {1}",

@@ -247,6 +247,6 @@ id,

if (installOptions.isBuiltin) {
this.logger.info(version ? ( localize(10009, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(10010, "Installing builtin extension '{0}'...", id)));
this.logger.info(version ? ( localize(9998, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9999, "Installing builtin extension '{0}'...", id)));
}
else {
this.logger.info(version ? ( localize(10011, "Installing extension '{0}' v{1}...", id, version)) : ( localize(10012, "Installing extension '{0}'...", id)));
this.logger.info(version ? ( localize(10000, "Installing extension '{0}' v{1}...", id, version)) : ( localize(10001, "Installing extension '{0}'...", id)));
}

@@ -263,3 +263,3 @@ extensionsToInstall.push({

this.logger.error(( localize(
10013,
10002,
"Error while installing extension {0}: {1}",

@@ -273,3 +273,3 @@ extensionResult.identifier.id,

this.logger.info(( localize(
10014,
10003,
"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(10015, "Extension '{0}' was successfully installed.", basename(vsix))));
this.logger.info(( localize(10004, "Extension '{0}' was successfully installed.", basename(vsix))));
}
catch (error) {
if (isCancellationError(error)) {
this.logger.info(( localize(10016, "Cancelled installing extension '{0}'.", basename(vsix))));
this.logger.info(( localize(10005, "Cancelled installing extension '{0}'.", basename(vsix))));
}

@@ -333,3 +333,3 @@ else {

this.logger.info(( localize(
10017,
10006,
"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(
10018,
10007,
"Extension '{0}' is a Built-in extension and cannot be uninstalled",

@@ -371,3 +371,3 @@ id

this.logger.info(( localize(
10019,
10008,
"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(10020, "Uninstalling {0}...", id)));
this.logger.info(( localize(10009, "Uninstalling {0}...", id)));
for (const extensionToUninstall of extensionsToUninstall) {

@@ -385,3 +385,3 @@ await this.extensionManagementService.uninstall(extensionToUninstall, { profileLocation });

this.logger.info(( localize(
10021,
10010,
"Extension '{0}' was successfully uninstalled from {1}!",

@@ -393,3 +393,3 @@ id,

else {
this.logger.info(( localize(10022, "Extension '{0}' was successfully uninstalled!", id)));
this.logger.info(( localize(10011, "Extension '{0}' was successfully uninstalled!", id)));
}

@@ -412,3 +412,3 @@ }

notInstalled(id) {
return this.location ? ( localize(10023, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(10024, "Extension '{0}' is not installed.", id));
return this.location ? ( localize(10012, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(10013, "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(4890, "Successfully signed out.")));
this.notificationService.info(( localize(4541, "Successfully signed out.")));
}

@@ -100,3 +100,3 @@ }

message = ( localize(
4891,
4542,
"The extension '{0}' wants to access the language models provided by {1}.",

@@ -110,3 +110,3 @@ extensionName,

? ( localize(
4892,
4543,
"The extension '{0}' wants you to sign in again using {1}.",

@@ -117,3 +117,3 @@ extensionName,

: ( localize(
4893,
4544,
"The extension '{0}' wants to sign in using {1}.",

@@ -126,3 +126,3 @@ extensionName,

{
label: ( localize(4894, "&&Allow")),
label: ( localize(4545, "&&Allow")),
run() {

@@ -135,3 +135,3 @@ return true;

buttons.push({
label: ( localize(4895, "Learn more")),
label: ( localize(4546, "Learn more")),
run: async () => {

@@ -155,5 +155,5 @@ const result = this.loginPrompt(provider, extensionName, recreatingSession, options);

const result = await this.dialogService.prompt({
message: ( localize(4896, "Incorrect account detected")),
message: ( localize(4547, "Incorrect account detected")),
detail: ( localize(
4897,
4548,
"The chosen account, {0}, does not match the requested account, {1}.",

@@ -167,7 +167,7 @@ chosenAccountLabel,

{
label: ( localize(4898, 'Keep {0}', chosenAccountLabel)),
label: ( localize(4549, 'Keep {0}', chosenAccountLabel)),
run: () => chosenAccountLabel
},
{
label: ( localize(4899, 'Login with {0}', requestedAccountLabel)),
label: ( localize(4550, '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(
4841,
4492,
"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(4885, 'View icon of the comments view.')));
const commentsViewIcon = registerIcon('comments-view-icon', Codicon.commentDiscussion, ( localize(4536, '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(10038, "A custom editor for '{0}' is open.", this.name)));
e.veto(true, ( localize(10027, "A custom editor for '{0}' is open.", this.name)));
}));

@@ -359,3 +359,3 @@ }

resource: this._editorResource,
label: label ?? ( localize(10039, "Edit")),
label: label ?? ( localize(10028, "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(4877, "Aborted onWillCreateEditSessionIdentity-event after 10000ms")))))), this.timeout);
setTimeout(() => reject(( (new Error(( localize(4528, "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(
4842,
4493,
"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(4843, "Reload Window")), '', true, () => this._hostService.reload())))]
primary: [( (new Action('reload', ( localize(4494, "Reload Window")), '', true, () => this._hostService.reload())))]
}

@@ -109,3 +109,3 @@ });

message: ( localize(
4844,
4495,
"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(
4845,
4496,
"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(4846, "Manage Workspace Trust")), '', true, () => this._commandService.executeCommand('workbench.trust.manage'))))]
primary: [( (new Action('manageWorkspaceTrust', ( localize(4497, "Manage Workspace Trust")), '', true, () => this._commandService.executeCommand('workbench.trust.manage'))))]
}

@@ -137,3 +137,3 @@ });

message: ( localize(
4847,
4498,
"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(4848, "Enable and Reload")), '', true, () => this._extensionEnablementService.setEnablement([missingInstalledDependency], enablementState === 7 ? 9 : 10 )
primary: [( (new Action('enable', ( localize(4499, "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(
4849,
4500,
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is disabled.",

@@ -176,3 +176,3 @@ extName,

message: ( localize(
4850,
4501,
"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(4851, "Install and Reload")), '', true, () => this._extensionsWorkbenchService.install(dependencyExtension)
primary: [( (new Action('install', ( localize(4502, "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(
4852,
4503,
"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(
4853,
4504,
"Extension '{0}' wants to make refactoring changes with this file creation",

@@ -82,3 +82,3 @@ data.extensionNames[0]

message = ( localize(
4854,
4505,
"Extension '{0}' wants to make refactoring changes with this file copy",

@@ -90,3 +90,3 @@ data.extensionNames[0]

message = ( localize(
4855,
4506,
"Extension '{0}' wants to make refactoring changes with this file move",

@@ -98,3 +98,3 @@ data.extensionNames[0]

message = ( localize(
4856,
4507,
"Extension '{0}' wants to make refactoring changes with this file deletion",

@@ -108,3 +108,3 @@ data.extensionNames[0]

message = ( localize(
4857,
4508,
"{0} extensions want to make refactoring changes with this file creation",

@@ -116,3 +116,3 @@ data.extensionNames.length

message = ( localize(
4858,
4509,
"{0} extensions want to make refactoring changes with this file copy",

@@ -124,3 +124,3 @@ data.extensionNames.length

message = ( localize(
4859,
4510,
"{0} extensions want to make refactoring changes with this file move",

@@ -132,3 +132,3 @@ data.extensionNames.length

message = ( localize(
4860,
4511,
"{0} extensions want to make refactoring changes with this file deletion",

@@ -143,4 +143,4 @@ data.extensionNames.length

message,
primaryButton: ( localize(4861, "Show &&Preview")),
cancelButton: ( localize(4862, "Skip Changes"))
primaryButton: ( localize(4512, "Show &&Preview")),
cancelButton: ( localize(4513, "Skip Changes"))
});

@@ -164,7 +164,7 @@ showPreview = true;

{
label: ( localize(4863, "&&OK")),
label: ( localize(4514, "&&OK")),
run: () => Choice.OK
},
{
label: ( localize(4861, "Show &&Preview")),
label: ( localize(4512, "Show &&Preview")),
run: () => Choice.Preview

@@ -174,6 +174,6 @@ }

cancelButton: {
label: ( localize(4862, "Skip Changes")),
label: ( localize(4513, "Skip Changes")),
run: () => Choice.Cancel
},
checkbox: { label: ( localize(4864, "Do not ask me again")) }
checkbox: { label: ( localize(4515, "Do not ask me again")) }
});

@@ -195,11 +195,11 @@ if (result === Choice.Cancel) {

case 0 :
return ( localize(4865, "Running 'File Create' participants..."));
return ( localize(4516, "Running 'File Create' participants..."));
case 2 :
return ( localize(4866, "Running 'File Rename' participants..."));
return ( localize(4517, "Running 'File Rename' participants..."));
case 3 :
return ( localize(4867, "Running 'File Copy' participants..."));
return ( localize(4518, "Running 'File Copy' participants..."));
case 1 :
return ( localize(4868, "Running 'File Delete' participants..."));
return ( localize(4519, "Running 'File Delete' participants..."));
case 4 :
return ( localize(4869, "Running 'File Write' participants..."));
return ( localize(4520, "Running 'File Write' participants..."));
}

@@ -275,3 +275,3 @@ }

title: {
value: ( localize(4870, "Reset choice for 'File operation needs preview'")),
value: ( localize(4521, "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(4840, 'Language Models'));
const accountLabel = auth.accountLabel ?? ( localize(4491, '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(4871, "Extension"));
source = ( localize(4522, "Extension"));
}

@@ -61,3 +61,3 @@ const secondaryActions = [];

id: options.source.identifier.value,
label: ( localize(4872, "Manage Extension")),
label: ( localize(4523, "Manage Extension")),
run: () => {

@@ -98,3 +98,3 @@ return this._commandService.executeCommand('_extensions.manage', options.source.identifier.value);

cancelButton = {
label: ( localize(4873, "Cancel")),
label: ( localize(4524, "Cancel")),
run: () => undefined

@@ -105,3 +105,3 @@ };

cancelButton = {
label: ( localize(4874, "&&OK")),
label: ( localize(4525, "&&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(4886, "Aborted onWillSaveNotebookDocument-event after 1750ms")))))), 1750);
_warningTimeout = setTimeout(() => reject(( (new Error(( localize(4537, "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(4875, "Manage Extension")), this._commandService)))]
secondaryActions: [( (new ManageExtensionAction(extensionId, ( localize(4526, "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(4876, "Aborted onWillSaveTextDocument-event after 1750ms")))))), 1750);
setTimeout(() => reject(( (new Error(( localize(4527, "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(4887, '{0}: {1}', source.label, task.name));
const label = ( localize(4538, '{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(
4888,
4539,
"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(4889, "Use Port {0} as Sudo...", tunnel.tunnelRemotePort)),
label: ( localize(4540, "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(4878, "Open using default opener")), undefined, undefined, async () => {
const openDefaultAction = ( (new Action('default', ( localize(4529, "Open using default opener")), undefined, undefined, async () => {
await this.openerService.open(uri, {

@@ -65,3 +65,3 @@ allowTunneling: false,

message: ( localize(
4879,
4530,
'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(9993, "An error occurred while loading view: {0}", escape(viewType)))}</body>
<body>${( localize(9982, "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(4880, "Extension '{0}' added 1 folder to the workspace", extensionName));
message = ( localize(4531, "Extension '{0}' added 1 folder to the workspace", extensionName));
}
else {
message = ( localize(
4881,
4532,
"Extension '{0}' added {1} folders to the workspace",

@@ -93,7 +93,7 @@ extensionName,

if (removeCount === 1) {
message = ( localize(4882, "Extension '{0}' removed 1 folder from the workspace", extensionName));
message = ( localize(4533, "Extension '{0}' removed 1 folder from the workspace", extensionName));
}
else {
message = ( localize(
4883,
4534,
"Extension '{0}' removed {1} folders from the workspace",

@@ -106,3 +106,3 @@ extensionName,

else {
message = ( localize(4884, "Extension '{0}' changed folders of the workspace", extensionName));
message = ( localize(4535, "Extension '{0}' changed folders of the workspace", extensionName));
}

@@ -109,0 +109,0 @@ return message;

@@ -49,3 +49,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

this._register(extensionService.onWillStop(e => {
e.veto(true, ( localize(11520, "A custom text editor for '{0}' is open.", this.resource.path)));
e.veto(true, ( localize(11515, "A custom text editor for '{0}' is open.", this.resource.path)));
}));

@@ -52,0 +52,0 @@ }

@@ -141,7 +141,7 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

const goodPrompt = {
label: ( localize(1150, "I can't reproduce")),
label: ( localize(598, "I can't reproduce")),
run: () => this._commandService.executeCommand('extension.bisect.next', false)
};
const badPrompt = {
label: ( localize(1151, "I can reproduce")),
label: ( localize(599, "I can reproduce")),
run: () => this._commandService.executeCommand('extension.bisect.next', true)

@@ -155,7 +155,7 @@ };

? ( localize(
1152,
600,
"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(
1153,
601,
"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(1154, 'Start Extension Bisect')),
title: ( localize2(602, 'Start Extension Bisect')),
category: Categories.Help,

@@ -199,9 +199,9 @@ f1: true,

const res = await dialogService.confirm({
message: ( localize(1155, "Extension Bisect")),
message: ( localize(603, "Extension Bisect")),
detail: ( localize(
1156,
604,
"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(1157, "&&Start Extension Bisect"))
primaryButton: ( localize(605, "&&Start Extension Bisect"))
});

@@ -218,3 +218,3 @@ if (res.confirmed) {

id: 'extension.bisect.next',
title: ( localize2(1158, 'Continue Extension Bisect')),
title: ( localize2(606, 'Continue Extension Bisect')),
category: Categories.Help,

@@ -253,4 +253,4 @@ f1: true,

if (done.bad) {
await dialogService.info(( localize(1159, "Extension Bisect")), ( localize(
1160,
await dialogService.info(( localize(607, "Extension Bisect")), ( localize(
608,
"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(1159, "Extension Bisect")),
primaryButton: ( localize(1161, "&&Report Issue & Continue")),
cancelButton: ( localize(1162, "Continue")),
message: ( localize(607, "Extension Bisect")),
primaryButton: ( localize(609, "&&Report Issue & Continue")),
cancelButton: ( localize(610, "Continue")),
detail: ( localize(
1163,
611,
"Extension Bisect is done and has identified {0} as the extension causing the problem.",
done.id
)),
checkbox: { label: ( localize(1164, "Keep this extension disabled")), checked: true }
checkbox: { label: ( localize(612, "Keep this extension disabled")), checked: true }
});

@@ -287,5 +287,5 @@ if (res.checkboxChecked) {

type: Severity$1.Info,
message: ( localize(1165, "Extension Bisect")),
message: ( localize(613, "Extension Bisect")),
detail: ( localize(
1166,
614,
"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(1167, "I ca&&n't reproduce")),
label: ( localize(615, "I ca&&n't reproduce")),
run: () => false
},
{
label: ( localize(1168, "I can &&reproduce")),
label: ( localize(616, "I can &&reproduce")),
run: () => true
},
{
label: ( localize(1169, "&&Stop Bisect")),
label: ( localize(617, "&&Stop Bisect")),
run: () => undefined

@@ -310,3 +310,3 @@ }

cancelButton: {
label: ( localize(1170, "&&Cancel Bisect")),
label: ( localize(618, "&&Cancel Bisect")),
run: () => null

@@ -322,3 +322,3 @@ }

id: 'extension.bisect.stop',
title: ( localize2(1171, 'Stop Extension Bisect')),
title: ( localize2(619, '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(1137, "Disconnect Remote Agent")),
label: ( localize(585, "Disconnect Remote Agent")),
order: WillShutdownJoinerOrder.Last

@@ -186,3 +186,3 @@ });

id: 'join.stopExtensionHosts',
label: ( localize(1138, "Stopping Extension Hosts")),
label: ( localize(586, "Stopping Extension Hosts")),
});

@@ -258,3 +258,3 @@ }

message: ( localize(
1139,
587,
"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(
1139,
587,
"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(
1140,
588,
"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(1141, "{0} (Error: {1})", reason, toErrorMessage(error))));
vetoReasons.add(( localize(589, "{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(1142, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ?
( localize(1143, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) :
await this._dialogService.warn(( localize(590, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ?
( localize(591, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) :
( localize(
1144,
592,
"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(1145, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 });
this._notificationService.status(( localize(593, "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(
1146,
594,
"Remote Extension host terminated unexpectedly 3 times within the last 5 minutes."
)), [{
label: ( localize(1147, "Restart Remote Extension Host")),
label: ( localize(595, "Restart Remote Extension Host")),
run: () => {

@@ -1211,3 +1211,3 @@ this._startExtensionHostsIfNecessary(false, Array.from(( (this._allRequestedActivateEvents.keys()))));

id: 'activationEvents',
label: ( localize(1148, "Activation Events")),
label: ( localize(596, "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(4836, "Measure Extension Host Latency")),
title: ( localize2(4156, "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(1149, "API Proposals")),
label: ( localize(597, "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(
4837,
4157,
"Overwriting extension {0} with {1}.",

@@ -32,3 +32,3 @@ extension.extensionLocation.fsPath,

logService.warn(( localize(
4837,
4157,
"Overwriting extension {0} with {1}.",

@@ -50,3 +50,3 @@ extension.extensionLocation.fsPath,

logService.warn(( localize(
4838,
4158,
"Overwriting {0} with Workspace Extension {1}.",

@@ -61,3 +61,3 @@ extension.extensionLocation.fsPath,

logService.info(( localize(
4839,
4159,
"Loading development extension at {0}",

@@ -64,0 +64,0 @@ developedExtension.extensionLocation.fsPath

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc