Skip to content

Commit 4fee12e

Browse files
authored
1 parent d4968e8 commit 4fee12e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/workbench/contrib/extensions/browser/extensionsActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ export class UpdateAction extends ExtensionAction {
916916
const { result } = await this.dialogService.prompt<'update' | 'review' | 'cancel'>({
917917
type: 'warning',
918918
title: localize('updateExtensionConsentTitle', "Update {0} Extension", this.extension.displayName),
919-
message: localize('updateExtensionConsent', "{0}\n\nWould you like to proceed with the update?", consent),
919+
message: localize('updateExtensionConsent', "{0}\n\nWould you like to update the extension?", consent),
920920
buttons: [{
921921
label: localize('update', "Update"),
922922
run: () => 'update'

src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1921,7 +1921,7 @@ export class ExtensionsWorkbenchService extends Disposable implements IExtension
19211921
}
19221922
}
19231923

1924-
return nls.localize('consentRequiredToUpdate', "The update for {0} extension introduces executable code, which is not present in the current version.", extension.displayName);
1924+
return nls.localize('consentRequiredToUpdate', "The update for {0} extension introduces executable code, which is not present in the currently installed version.", extension.displayName);
19251925
}
19261926

19271927
isAutoUpdateEnabledFor(extensionOrPublisher: IExtension | string): boolean {

0 commit comments

Comments
 (0)