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 9.0.0 to 9.0.2

6

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

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

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@9.0.0",
"@codingame/monaco-vscode-files-service-override": "9.0.0"
"vscode": "npm:@codingame/monaco-vscode-api@9.0.2",
"@codingame/monaco-vscode-files-service-override": "9.0.2"
}
}

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

const notFound = (id) => ( localize(9844, "Extension '{0}' not found.", id));
const notFound = (id) => ( localize(9830, "Extension '{0}' not found.", id));
const useId = ( localize(
9845,
9831,
"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(9846, "Extensions installed on {0}:", this.location)));
this.logger.info(( localize(9832, "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(9847, "Installing extensions on {0}...", this.location)) : ( localize(9848, "Installing extensions...")));
this.logger.info(this.location ? ( localize(9833, "Installing extensions on {0}...", this.location)) : ( localize(9834, "Installing extensions...")));
}

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

catch (error) {
this.logger.error(( localize(9849, "Error while installing extensions: {0}", getErrorMessage(error))));
this.logger.error(( localize(9835, "Error while installing extensions: {0}", getErrorMessage(error))));
throw error;
}
if (failed.length) {
throw ( (new Error(localize(9850, "Failed Installing Extensions: {0}", failed.join(', ')))));
throw ( (new Error(localize(9836, "Failed Installing Extensions: {0}", failed.join(', ')))));
}

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

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

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

if (!extensionsToUpdate.length) {
this.logger.info(( localize(9852, "No extension to update")));
this.logger.info(( localize(9838, "No extension to update")));
return;
}
this.logger.info(( localize(
9853,
9839,
"Updating extensions: {0}",

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

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

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

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

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

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

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

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

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

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

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

if (installOptions.isBuiltin) {
this.logger.info(version ? ( localize(9859, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9860, "Installing builtin extension '{0}'...", id)));
this.logger.info(version ? ( localize(9845, "Installing builtin extension '{0}' v{1}...", id, version)) : ( localize(9846, "Installing builtin extension '{0}'...", id)));
}
else {
this.logger.info(version ? ( localize(9861, "Installing extension '{0}' v{1}...", id, version)) : ( localize(9862, "Installing extension '{0}'...", id)));
this.logger.info(version ? ( localize(9847, "Installing extension '{0}' v{1}...", id, version)) : ( localize(9848, "Installing extension '{0}'...", id)));
}

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

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

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

this.logger.info(( localize(
9864,
9850,
"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(9865, "Extension '{0}' was successfully installed.", basename(vsix))));
this.logger.info(( localize(9851, "Extension '{0}' was successfully installed.", basename(vsix))));
}
catch (error) {
if (isCancellationError(error)) {
this.logger.info(( localize(9866, "Cancelled installing extension '{0}'.", basename(vsix))));
this.logger.info(( localize(9852, "Cancelled installing extension '{0}'.", basename(vsix))));
}

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

this.logger.info(( localize(
9867,
9853,
"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(
9868,
9854,
"Extension '{0}' is a Built-in extension and cannot be uninstalled",

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

this.logger.info(( localize(
9869,
9855,
"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(9870, "Uninstalling {0}...", id)));
this.logger.info(( localize(9856, "Uninstalling {0}...", id)));
for (const extensionToUninstall of extensionsToUninstall) {

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

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

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

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

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

notInstalled(id) {
return this.location ? ( localize(9873, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(9874, "Extension '{0}' is not installed.", id));
return this.location ? ( localize(9859, "Extension '{0}' is not installed on {1}.", id, this.location)) : ( localize(9860, "Extension '{0}' is not installed.", id));
}

@@ -415,0 +415,0 @@ };

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

await this._proxy.$removeSession(this.id, sessionId);
this.notificationService.info(( localize(4946, "Successfully signed out.")));
this.notificationService.info(( localize(4852, "Successfully signed out.")));
}

@@ -97,3 +97,3 @@ }

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

@@ -107,3 +107,3 @@ extensionName,

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

@@ -114,3 +114,3 @@ extensionName,

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

@@ -123,3 +123,3 @@ extensionName,

{
label: ( localize(4950, "&&Allow")),
label: ( localize(4856, "&&Allow")),
run() {

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

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

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

const result = await this.dialogService.prompt({
message: ( localize(4952, "Incorrect account detected")),
message: ( localize(4858, "Incorrect account detected")),
detail: ( localize(
4953,
4859,
"The chosen account, {0}, does not match the requested account, {1}.",

@@ -164,7 +164,7 @@ chosenAccountLabel,

{
label: ( localize(4954, 'Keep {0}', chosenAccountLabel)),
label: ( localize(4860, 'Keep {0}', chosenAccountLabel)),
run: () => chosenAccountLabel
},
{
label: ( localize(4955, 'Login with {0}', requestedAccountLabel)),
label: ( localize(4861, 'Login with {0}', requestedAccountLabel)),
run: () => requestedAccountLabel

@@ -171,0 +171,0 @@ }

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

this.logger.info(( localize(
4897,
4803,
"Cannot install the '{0}' extension because it is declared to not run in this setup.",

@@ -91,0 +91,0 @@ getExtensionId(manifest.publisher, manifest.name)

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

}
const commentsViewIcon = registerIcon('comments-view-icon', Codicon.commentDiscussion, ( localize(4941, 'View icon of the comments view.')));
const commentsViewIcon = registerIcon('comments-view-icon', Codicon.commentDiscussion, ( localize(4847, 'View icon of the comments view.')));
let MainThreadComments = class MainThreadComments extends Disposable {

@@ -425,0 +425,0 @@ constructor(extHostContext, _commentService, _viewsService, _viewDescriptorService, _uriIdentityService, _editorService) {

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

return false;
})(), ( localize(9875, "Custom editor '{0}' could not be saved.", this.name)));
})(), ( localize(9861, "Custom editor '{0}' could not be saved.", this.name)));
}));

@@ -376,3 +376,3 @@ }

resource: this._editorResource,
label: label ?? ( localize(9876, "Edit")),
label: label ?? ( localize(9862, "Edit")),
code: 'undoredo.customEditorEdit',

@@ -379,0 +379,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(4933, "Aborted onWillCreateEditSessionIdentity-event after 10000ms")))))), this.timeout);
setTimeout(() => reject(( (new Error(( localize(4839, "Aborted onWillCreateEditSessionIdentity-event after 10000ms")))))), this.timeout);
this._proxy.$onWillCreateEditSessionIdentity(workspaceFolder.uri, token, this.timeout).then(resolve, reject);

@@ -19,0 +19,0 @@ })));

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

message: ( localize(
4898,
4804,
"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?",

@@ -100,3 +100,3 @@ extName,

actions: {
primary: [( (new Action('reload', ( localize(4899, "Reload Window")), '', true, () => this._hostService.reload())))]
primary: [( (new Action('reload', ( localize(4805, "Reload Window")), '', true, () => this._hostService.reload())))]
}

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

message: ( localize(
4900,
4806,
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is not supported in the current workspace",

@@ -123,3 +123,3 @@ extName,

message: ( localize(
4901,
4807,
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is not supported in Restricted Mode",

@@ -130,3 +130,3 @@ extName,

actions: {
primary: [( (new Action('manageWorkspaceTrust', ( localize(4902, "Manage Workspace Trust")), '', true, () => this._commandService.executeCommand('workbench.trust.manage'))))]
primary: [( (new Action('manageWorkspaceTrust', ( localize(4808, "Manage Workspace Trust")), '', true, () => this._commandService.executeCommand('workbench.trust.manage'))))]
}

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

message: ( localize(
4903,
4809,
"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?",

@@ -146,3 +146,3 @@ extName,

actions: {
primary: [( (new Action('enable', ( localize(4904, "Enable and Reload")), '', true, () => this._extensionEnablementService.setEnablement([missingInstalledDependency], enablementState === EnablementState.DisabledGlobally ? EnablementState.EnabledGlobally : EnablementState.EnabledWorkspace)
primary: [( (new Action('enable', ( localize(4810, "Enable and Reload")), '', true, () => this._extensionEnablementService.setEnablement([missingInstalledDependency], enablementState === EnablementState.DisabledGlobally ? EnablementState.EnabledGlobally : EnablementState.EnabledWorkspace)
.then(() => this._hostService.reload(), e => this._notificationService.error(e)))))]

@@ -156,3 +156,3 @@ }

message: ( localize(
4905,
4811,
"Cannot activate the '{0}' extension because it depends on the '{1}' extension which is disabled.",

@@ -178,3 +178,3 @@ extName,

message: ( localize(
4906,
4812,
"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?",

@@ -186,3 +186,3 @@ extName,

actions: {
primary: [( (new Action('install', ( localize(4907, "Install and Reload")), '', true, () => this._extensionsWorkbenchService.install(dependencyExtension)
primary: [( (new Action('install', ( localize(4813, "Install and Reload")), '', true, () => this._extensionsWorkbenchService.install(dependencyExtension)
.then(() => this._hostService.reload(), e => this._notificationService.error(e)))))]

@@ -194,3 +194,3 @@ }

this._notificationService.error(( localize(
4908,
4814,
"Cannot activate the '{0}' extension because it depends on an unknown '{1}' extension.",

@@ -197,0 +197,0 @@ extName,

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

message = ( localize(
4909,
4815,
"Extension '{0}' wants to make refactoring changes with this file creation",

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

message,
primaryButton: ( localize(4917, "Show &&Preview")),
cancelButton: ( localize(4918, "Skip Changes"))
primaryButton: ( localize(4823, "Show &&Preview")),
cancelButton: ( localize(4824, "Skip Changes"))
});

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

{
label: ( localize(4919, "&&OK")),
label: ( localize(4825, "&&OK")),
run: () => Choice.OK
},
{
label: ( localize(4917, "Show &&Preview")),
label: ( localize(4823, "Show &&Preview")),
run: () => Choice.Preview

@@ -184,6 +184,6 @@ }

cancelButton: {
label: ( localize(4918, "Skip Changes")),
label: ( localize(4824, "Skip Changes")),
run: () => Choice.Cancel
},
checkbox: { label: ( localize(4920, "Do not ask me again")) }
checkbox: { label: ( localize(4826, "Do not ask me again")) }
});

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

case FileOperation.CREATE:
return ( localize(4921, "Running 'File Create' participants..."));
return ( localize(4827, "Running 'File Create' participants..."));
case FileOperation.MOVE:
return ( localize(4922, "Running 'File Rename' participants..."));
return ( localize(4828, "Running 'File Rename' participants..."));
case FileOperation.COPY:
return ( localize(4923, "Running 'File Copy' participants..."));
return ( localize(4829, "Running 'File Copy' participants..."));
case FileOperation.DELETE:
return ( localize(4924, "Running 'File Delete' participants..."));
return ( localize(4830, "Running 'File Delete' participants..."));
case FileOperation.WRITE:
return ( localize(4925, "Running 'File Write' participants..."));
return ( localize(4831, "Running 'File Write' participants..."));
}

@@ -316,3 +316,3 @@ }

title: {
value: ( localize(4926, "Reset choice for 'File operation needs preview'")),
value: ( localize(4832, "Reset choice for 'File operation needs preview'")),
original: `Reset choice for 'File operation needs preview'`

@@ -319,0 +319,0 @@ },

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

}
const accountLabel = auth.accountLabel ?? ( localize(4896, 'Language Models'));
const accountLabel = auth.accountLabel ?? ( localize(4802, 'Language Models'));
const disposables = ( (new DisposableStore()));

@@ -135,0 +135,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(4927, "Extension"));
source = ( localize(4833, "Extension"));
}

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

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

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

cancelButton = {
label: ( localize(4929, "Cancel")),
label: ( localize(4835, "Cancel")),
run: () => undefined

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

cancelButton = {
label: ( localize(4930, "&&OK")),
label: ( localize(4836, "&&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(4942, "Aborted onWillSaveNotebookDocument-event after 1750ms")))))), 1750);
_warningTimeout = setTimeout(() => reject(( (new Error(( localize(4848, "Aborted onWillSaveNotebookDocument-event after 1750ms")))))), 1750);
this._proxy.$participateInSave(workingCopy.resource, context.reason, token).then(_ => {

@@ -23,0 +23,0 @@ clearTimeout(_warningTimeout);

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

location: ProgressLocation.Notification,
secondaryActions: [( (new ManageExtensionAction(extensionId, ( localize(4931, "Manage Extension")), this._commandService)))]
secondaryActions: [( (new ManageExtensionAction(extensionId, ( localize(4837, "Manage Extension")), this._commandService)))]
};

@@ -37,0 +37,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(4932, "Aborted onWillSaveTextDocument-event after 1750ms")))))), 1750);
setTimeout(() => reject(( (new Error(( localize(4838, "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(4943, '{0}: {1}', source.label, task.name));
const label = ( localize(4849, '{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}`;

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

return this.notificationService.prompt(Severity$1.Info, ( localize(
4944,
4850,
"The extension {0} has forwarded port {1}. You'll need to run as superuser to use port {2} locally.",

@@ -119,3 +119,3 @@ source,

)), [{
label: ( localize(4945, "Use Port {0} as Sudo...", tunnel.tunnelRemotePort)),
label: ( localize(4851, "Use Port {0} as Sudo...", tunnel.tunnelRemotePort)),
run: async () => {

@@ -122,0 +122,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(4934, "Open using default opener")), undefined, undefined, async () => {
const openDefaultAction = ( (new Action('default', ( localize(4840, "Open using default opener")), undefined, undefined, async () => {
await this.openerService.open(uri, {

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

message: ( localize(
4935,
4841,
'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(9843, "An error occurred while loading view: {0}", escape(viewType)))}</body>
<body>${( localize(9829, "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(4936, "Extension '{0}' added 1 folder to the workspace", extensionName));
message = ( localize(4842, "Extension '{0}' added 1 folder to the workspace", extensionName));
}
else {
message = ( localize(
4937,
4843,
"Extension '{0}' added {1} folders to the workspace",

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

if (removeCount === 1) {
message = ( localize(4938, "Extension '{0}' removed 1 folder from the workspace", extensionName));
message = ( localize(4844, "Extension '{0}' removed 1 folder from the workspace", extensionName));
}
else {
message = ( localize(
4939,
4845,
"Extension '{0}' removed {1} folders from the workspace",

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

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

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

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

const goodPrompt = {
label: ( localize(1309, "I can't reproduce")),
label: ( localize(1141, "I can't reproduce")),
run: () => this._commandService.executeCommand('extension.bisect.next', false)
};
const badPrompt = {
label: ( localize(1310, "I can reproduce")),
label: ( localize(1142, "I can reproduce")),
run: () => this._commandService.executeCommand('extension.bisect.next', true)

@@ -158,7 +158,7 @@ };

? ( localize(
1311,
1143,
"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(
1312,
1144,
"Extension Bisect is active and has disabled {0} extensions. Check if you can still reproduce the problem and proceed by selecting from these options.",

@@ -181,3 +181,3 @@ this._extensionBisectService.disabledCount

id: 'extension.bisect.start',
title: ( localize2(1313, 'Start Extension Bisect')),
title: ( localize2(1145, 'Start Extension Bisect')),
category: Categories.Help,

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

const res = await dialogService.confirm({
message: ( localize(1314, "Extension Bisect")),
message: ( localize(1146, "Extension Bisect")),
detail: ( localize(
1315,
1147,
"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(1316, "&&Start Extension Bisect"))
primaryButton: ( localize(1148, "&&Start Extension Bisect"))
});

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

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

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

if (done.bad) {
await dialogService.info(( localize(1318, "Extension Bisect")), ( localize(
1319,
await dialogService.info(( localize(1150, "Extension Bisect")), ( localize(
1151,
"Extension Bisect is done but no extension has been identified. This might be a problem with {0}.",

@@ -266,11 +266,11 @@ productService.nameShort

type: Severity$1.Info,
message: ( localize(1318, "Extension Bisect")),
primaryButton: ( localize(1320, "&&Report Issue & Continue")),
cancelButton: ( localize(1321, "Continue")),
message: ( localize(1150, "Extension Bisect")),
primaryButton: ( localize(1152, "&&Report Issue & Continue")),
cancelButton: ( localize(1153, "Continue")),
detail: ( localize(
1322,
1154,
"Extension Bisect is done and has identified {0} as the extension causing the problem.",
done.id
)),
checkbox: { label: ( localize(1323, "Keep this extension disabled")), checked: true }
checkbox: { label: ( localize(1155, "Keep this extension disabled")), checked: true }
});

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

type: Severity$1.Info,
message: ( localize(1324, "Extension Bisect")),
message: ( localize(1156, "Extension Bisect")),
detail: ( localize(
1325,
1157,
"Extension Bisect is active and has disabled {0} extensions. Check if you can still reproduce the problem and proceed by selecting from these options.",

@@ -299,11 +299,11 @@ bisectService.disabledCount

{
label: ( localize(1326, "I ca&&n't reproduce")),
label: ( localize(1158, "I ca&&n't reproduce")),
run: () => false
},
{
label: ( localize(1327, "I can &&reproduce")),
label: ( localize(1159, "I can &&reproduce")),
run: () => true
},
{
label: ( localize(1328, "&&Stop Bisect")),
label: ( localize(1160, "&&Stop Bisect")),
run: () => undefined

@@ -313,3 +313,3 @@ }

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

@@ -325,3 +325,3 @@ }

id: 'extension.bisect.stop',
title: ( localize2(1330, 'Stop Extension Bisect')),
title: ( localize2(1162, 'Stop Extension Bisect')),
category: Categories.Help,

@@ -328,0 +328,0 @@ f1: true,

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

id: 'join.disconnectRemote',
label: ( localize(1296, "Disconnect Remote Agent")),
label: ( localize(1128, "Disconnect Remote Agent")),
order: WillShutdownJoinerOrder.Last

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

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

@@ -256,3 +256,3 @@ }

message: ( localize(
1298,
1130,
"The following extensions contain dependency loops and have been disabled: {0}",

@@ -411,3 +411,3 @@ ( (result.removedDueToLooping.map(e => `'${e.identifier.value}'`))).join(', ')

message: ( localize(
1298,
1130,
"The following extensions contain dependency loops and have been disabled: {0}",

@@ -427,3 +427,3 @@ ( (result.removedDueToLooping.map(e => `'${e.identifier.value}'`))).join(', ')

const msg = ( localize(
1299,
1131,
"No extension host found that can launch the test runner at {0}.",

@@ -595,3 +595,3 @@ (this._environmentService.extensionTestsLocationURI.toString())

}).catch(error => {
vetoReasons.add(( localize(1300, "{0} (Error: {1})", reason, toErrorMessage(error))));
vetoReasons.add(( localize(1132, "{0} (Error: {1})", reason, toErrorMessage(error))));
});

@@ -609,6 +609,6 @@ }

this._logService.warn(`Extension host was not stopped because of veto (stop reason: ${reason}, veto reason: ${vetoReasonsArray.join(', ')})`);
await this._dialogService.warn(( localize(1301, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ?
( localize(1302, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) :
await this._dialogService.warn(( localize(1133, "The following operation was blocked: {0}", reason)), vetoReasonsArray.length === 1 ?
( localize(1134, "The reason for blocking the operation: {0}", vetoReasonsArray[0])) :
( localize(
1303,
1135,
"The reasons for blocking the operation:\n- {0}",

@@ -711,3 +711,3 @@ vetoReasonsArray.join('\n -')

this._logService.info(`Automatically restarting the remote extension host.`);
this._notificationService.status(( localize(1304, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 });
this._notificationService.status(( localize(1136, "The remote extension host terminated unexpectedly. Restarting...")), { hideAfter: 5000 });
this._startExtensionHostsIfNecessary(false, Array.from(( (this._allRequestedActivateEvents.keys()))));

@@ -717,6 +717,6 @@ }

this._notificationService.prompt(Severity$1.Error, ( localize(
1305,
1137,
"Remote Extension host terminated unexpectedly 3 times within the last 5 minutes."
)), [{
label: ( localize(1306, "Restart Remote Extension Host")),
label: ( localize(1138, "Restart Remote Extension Host")),
run: () => {

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

id: 'activationEvents',
label: ( localize(1307, "Activation Events")),
label: ( localize(1139, "Activation Events")),
access: {

@@ -1209,0 +1209,0 @@ canToggle: false

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

id: 'editor.action.measureExtHostLatency',
title: ( localize2(4892, "Measure Extension Host Latency")),
title: ( localize2(4798, "Measure Extension Host Latency")),
category: Categories.Developer,

@@ -488,0 +488,0 @@ f1: true

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

id: 'enabledApiProposals',
label: ( localize(1308, "API Proposals")),
label: ( localize(1140, "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(
4893,
4799,
"Overwriting extension {0} with {1}.",

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

logService.warn(( localize(
4893,
4799,
"Overwriting extension {0} with {1}.",

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

logService.warn(( localize(
4894,
4800,
"Overwriting {0} with Workspace Extension {1}.",

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

logService.info(( localize(
4895,
4801,
"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