Skip to content

Commit

Permalink
Fix localization for the removeSession method (#13257)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuebner authored Jan 10, 2024
1 parent 6a7bd87 commit c487054
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/plugin-ext/src/main/browser/authentication-main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,9 @@ export class AuthenticationProviderImpl implements AuthenticationProvider {

removeSession(sessionId: string): Thenable<void> {
return this.proxy.$removeSession(this.id, sessionId)
.then(() => { this.messageService.info('Successfully signed out.'); });
.then(() => {
this.messageService.info(nls.localizeByDefault('Successfully signed out.'));
});
}
}

Expand Down

0 comments on commit c487054

Please sign in to comment.