diff --git a/packages/plugin-ext/src/main/browser/authentication-main.ts b/packages/plugin-ext/src/main/browser/authentication-main.ts index 046e5a7c81751..65765e457ab98 100644 --- a/packages/plugin-ext/src/main/browser/authentication-main.ts +++ b/packages/plugin-ext/src/main/browser/authentication-main.ts @@ -361,7 +361,9 @@ export class AuthenticationProviderImpl implements AuthenticationProvider { removeSession(sessionId: string): Thenable { return this.proxy.$removeSession(this.id, sessionId) - .then(() => { this.messageService.info('Successfully signed out.'); }); + .then(() => { + this.messageService.info(nls.localizeByDefault('Successfully signed out.')); + }); } }