From 7749465d780ab40faab7087349bb05f39c7a6bf2 Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Thu, 16 Aug 2018 16:14:46 +0200 Subject: [PATCH] update messag --- src/vs/workbench/parts/update/electron-browser/update.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/vs/workbench/parts/update/electron-browser/update.ts b/src/vs/workbench/parts/update/electron-browser/update.ts index 70def20275d..b966ed83ede 100644 --- a/src/vs/workbench/parts/update/electron-browser/update.ts +++ b/src/vs/workbench/parts/update/electron-browser/update.ts @@ -263,13 +263,12 @@ export class WinUserSetupContribution implements IWorkbenchContribution { } const handle = this.notificationService.prompt( - severity.Warning, - nls.localize('usersetupsystem', "You are running the system-wide installation of {0}, while having the user-wide distribution installed as well. Make sure you're running the {0} version you expect.", product.nameShort), + severity.Info, + nls.localize('usersetupsystem', "You are running the system-wide installation of {0}, while having the user-wide distribution installed as well.", product.nameShort), [ { label: nls.localize('ok', "OK"), run: () => null }, { - label: nls.localize('neveragain', "Don't Show Again"), - isSecondary: true, + label: nls.localize('okneveragain', "OK, Don't Show Again"), run: () => { neverShowAgain.action.run(handle); neverShowAgain.action.dispose();