Skip to content

Commit

Permalink
fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Feb 3, 2025
1 parent ff39acb commit 96b2f64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1873,7 +1873,7 @@ class ExtensionsContributions extends Disposable implements IWorkbenchContributi

this.registerExtensionAction({
id: 'workbench.extensions.action.manageTrustedPublishers',
title: localize2('workbench.extensions.action.manageTrustedPublishers', "Manage Trusted Extensions Publishers"),
title: localize2('workbench.extensions.action.manageTrustedPublishers', "Manage Trusted Extension Publishers"),
category: EXTENSIONS_CATEGORY,
f1: true,
run: async (accessor: ServicesAccessor) => {
Expand All @@ -1888,7 +1888,7 @@ class ExtensionsContributions extends Disposable implements IWorkbenchContributi
})).sort((a, b) => a.label.localeCompare(b.label));
const result = await quickInputService.pick(trustedPublisherItems, {
canPickMany: true,
title: localize('trustedPublishers', "Manage Trusted Extensions Publishers"),
title: localize('trustedPublishers', "Manage Trusted Extension Publishers"),
placeHolder: localize('trustedPublishersPlaceholder', "Choose which publishers to trust"),
});
if (result) {
Expand Down

0 comments on commit 96b2f64

Please sign in to comment.