Skip to content

Commit 405f21f

Browse files
authored
feedback on publisher trust dialog (microsoft#239220)
1 parent 921db9e commit 405f21f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/services/extensionManagement/common/extensionManagementService.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ export class ExtensionManagementService extends Disposable implements IWorkbench
907907
for (const publisher of verifiedPublishers) {
908908
customMessage.appendText('\n');
909909
const publisherDomainLink = URI.parse(publisher.publisherDomain!.link);
910-
const publisherVerifiedMessage = localize('verifiedPublisherWithName', "{0} has verified ownership of {1}.", getPublisherLink(publisher), `${publisherDomainLink.authority}${publisherDomainLink.path === '/' ? '' : publisherDomainLink.path}`);
910+
const publisherVerifiedMessage = localize('verifiedPublisherWithName', "{0} has verified ownership of `{1}`.", getPublisherLink(publisher), `${publisherDomainLink.authority}${publisherDomainLink.path === '/' ? '' : publisherDomainLink.path}`);
911911
customMessage.appendMarkdown(`$(${verifiedPublisherIcon.id}) ${publisherVerifiedMessage}`);
912912
}
913913
if (unverfiiedPublishers.length) {
@@ -925,9 +925,9 @@ export class ExtensionManagementService extends Disposable implements IWorkbench
925925

926926
customMessage.appendText('\n');
927927
if (allPublishers.length > 1) {
928-
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));
928+
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));
929929
} else {
930-
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));
930+
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));
931931
}
932932

933933
await this.dialogService.prompt({

0 commit comments

Comments
 (0)