From 405f21fb2ced1b91c31eea0bd49b74f0eeb4588d Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Thu, 30 Jan 2025 15:26:12 +0100 Subject: [PATCH] feedback on publisher trust dialog (#239220) --- .../common/extensionManagementService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/services/extensionManagement/common/extensionManagementService.ts b/src/vs/workbench/services/extensionManagement/common/extensionManagementService.ts index 0b672bc527a..33ff44eee87 100644 --- a/src/vs/workbench/services/extensionManagement/common/extensionManagementService.ts +++ b/src/vs/workbench/services/extensionManagement/common/extensionManagementService.ts @@ -907,7 +907,7 @@ export class ExtensionManagementService extends Disposable implements IWorkbench for (const publisher of verifiedPublishers) { customMessage.appendText('\n'); const publisherDomainLink = URI.parse(publisher.publisherDomain!.link); - const publisherVerifiedMessage = localize('verifiedPublisherWithName', "{0} has verified ownership of {1}.", getPublisherLink(publisher), `${publisherDomainLink.authority}${publisherDomainLink.path === '/' ? '' : publisherDomainLink.path}`); + const publisherVerifiedMessage = localize('verifiedPublisherWithName', "{0} has verified ownership of `{1}`.", getPublisherLink(publisher), `${publisherDomainLink.authority}${publisherDomainLink.path === '/' ? '' : publisherDomainLink.path}`); customMessage.appendMarkdown(`$(${verifiedPublisherIcon.id}) ${publisherVerifiedMessage}`); } if (unverfiiedPublishers.length) { @@ -925,9 +925,9 @@ export class ExtensionManagementService extends Disposable implements IWorkbench customMessage.appendText('\n'); if (allPublishers.length > 1) { - customMessage.appendMarkdown(localize('message4', "{0} has no control over the behavior of third-party extensions, including how they manage your personal data. Please proceed only if you trust the publishers.", this.productService.nameLong)); + customMessage.appendMarkdown(localize('message4', "{0} has no control over the behavior of third-party extensions, including how they manage your personal data. Proceed only if you trust the publishers.", this.productService.nameLong)); } else { - customMessage.appendMarkdown(localize('message2', "{0} has no control over the behavior of third-party extensions, including how they manage your personal data. Please proceed only if you trust the publisher.", this.productService.nameLong)); + customMessage.appendMarkdown(localize('message2', "{0} has no control over the behavior of third-party extensions, including how they manage your personal data. Proceed only if you trust the publisher.", this.productService.nameLong)); } await this.dialogService.prompt({