From 3afa5a4a5853486522d5483efedb376844a8ccdd Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Wed, 3 Jun 2020 21:23:45 +0200 Subject: [PATCH] Fix #92890 --- src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts b/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts index d0dd5d6211f..650e671ce2b 100644 --- a/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts +++ b/src/vs/workbench/contrib/userDataSync/browser/userDataSync.ts @@ -298,7 +298,7 @@ export class UserDataSyncWorkbenchContribution extends Disposable implements IWo this.disableSync(); this.notificationService.notify({ severity: Severity.Error, - message: localize('error upgrade required', "Turned off sync because the current version ({0}, {1}) of {2} is not compatible with the Preferences Sync Service. Please update and turn on sync to continue syncing.", this.productService.version, this.productService.commit, this.productService.nameLong), + message: localize('error upgrade required', "Preferences sync is disabled because the current version ({0}, {1}) of is not compatible with the sync service. Please update before turning on sync.", this.productService.version, this.productService.commit), }); return true; }