Skip to content

Commit

Permalink
Update recommendation text #36650
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a committed Oct 31, 2017
1 parent ebe55bf commit ee6e73d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export class ExtensionTipsService extends Disposable implements IExtensionTipsSe

getAllRecommendationsWithReason(): { [id: string]: string; } {
let output: { [id: string]: string; } = Object.create(null);
Object.keys(this._fileBasedRecommendations).forEach(x => output[x.toLowerCase()] = localize('fileBasedRecommendation', "Based on your recent file history, we recommend this extension."));
this._allWorkspaceRecommendedExtensions.forEach(x => output[x.toLowerCase()] = localize('workspaceRecommendation', "Your team recommends this extension."));
Object.keys(this._fileBasedRecommendations).forEach(x => output[x.toLowerCase()] = localize('fileBasedRecommendation', "This extension is recommended based on the files you recently opened."));
this._allWorkspaceRecommendedExtensions.forEach(x => output[x.toLowerCase()] = localize('workspaceRecommendation', "This extension is recommended by users of the current workspace."));
return output;
}

Expand Down

0 comments on commit ee6e73d

Please sign in to comment.