From fb9f488e51af2e2efe95a34f24ca11e1b2a3f744 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Thu, 2 Jun 2022 11:44:28 +0200 Subject: [PATCH] fix #151008 (#151068) --- .../workbench/contrib/extensions/browser/extensionsActions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts b/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts index 957d227d42d..7f38b6df4be 100644 --- a/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts +++ b/src/vs/workbench/contrib/extensions/browser/extensionsActions.ts @@ -282,7 +282,7 @@ export abstract class AbstractInstallAction extends ExtensionAction { } if (this.extension.deprecationInfo) { - let detail = localize('deprecated message', "This extension is deprecated as it is no longer being maintained"); + let detail = localize('deprecated message', "This extension is deprecated as it is no longer being maintained."); let action: () => Promise = async () => undefined; const buttons = [ localize('install anyway', "Install Anyway"), @@ -2311,7 +2311,7 @@ export class ExtensionStatusAction extends ExtensionAction { const link = `[${localize('settings', "settings")}](${URI.parse(`command:workbench.action.openSettings?${encodeURIComponent(JSON.stringify([this.extension.deprecationInfo.settings.map(setting => `@id:${setting}`).join(' ')]))}`)})`; this.updateStatus({ icon: warningIcon, message: new MarkdownString(localize('deprecated with alternate settings tooltip', "This extension is deprecated as this functionality is now built-in to VS Code. Configure these {0} to use this functionality.", link)) }, true); } else { - this.updateStatus({ icon: warningIcon, message: new MarkdownString(localize('deprecated tooltip', "This extension is deprecated as it is no longer being maintained")) }, true); + this.updateStatus({ icon: warningIcon, message: new MarkdownString(localize('deprecated tooltip', "This extension is deprecated as it is no longer being maintained.")) }, true); } return; }