Skip to content

Commit ab2f68f

Browse files
committed
fixing grammar
1 parent 59b5a2f commit ab2f68f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class ExeBasedRecommendations extends ExtensionRecommendations {
141141
await this.tasExperimentService.getTreatment<boolean>('wslpopupaa');
142142
}
143143

144-
const message = localize('exeRecommended', "You have {0} installed on your system. Do you want to install recommended extensions for it?", tips[0].exeFriendlyName);
144+
const message = localize('exeRecommended', "You have {0} installed on your system. Do you want to install the recommended extensions for it?", tips[0].exeFriendlyName);
145145
this.promptImportantExtensionsInstallNotification(extensionIds, message, `@exe:"${tips[0].exeName}"`);
146146
}
147147
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ export class ExtensionRecommendationsService extends Disposable implements IExte
330330
const searchValue = '@recommended ';
331331
this.notificationService.prompt(
332332
Severity.Info,
333-
localize('workspaceRecommended', "Do you want to install recommended extensions for this repository?"),
333+
localize('workspaceRecommended', "Do you want to install the recommended extensions for this repository?"),
334334
[{
335335
label: localize('install', "Install"),
336336
run: async () => {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export class FileBasedRecommendations extends ExtensionRecommendations {
232232
return false;
233233
}
234234

235-
this.promptImportantExtensionsInstallNotification([extensionId], localize('reallyRecommended', "Do you want to install recommended extensions for {0}?", languageName), `@id:${extensionId}`);
235+
this.promptImportantExtensionsInstallNotification([extensionId], localize('reallyRecommended', "Do you want to install the recommended extensions for {0}?", languageName), `@id:${extensionId}`);
236236
return true;
237237
}
238238

0 commit comments

Comments
 (0)