Skip to content

Commit

Permalink
fix #4248
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Mar 16, 2016
1 parent 8c21a4a commit 1c469f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions extensions/typescript/src/utils/projectStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function create(client: ITypescriptServiceClient, memento: vscode.Memento

if (!configFileName) {
currentHint = {
message: localize('hintCreate', "Have a project and experience better IntelliSense and code navigation."),
message: localize('hintCreate', "Create a jsconfig.json to enable richer IntelliSense and code navigation across the entire workspace."),
options: [{
title: localize('ignore.cmdCreate', 'Ignore'),
execute: () => {
Expand All @@ -82,7 +82,7 @@ export function create(client: ITypescriptServiceClient, memento: vscode.Memento
item.hide();
}
},{
title: localize('cmdCreate', "Create jsconfig.json..."),
title: localize('cmdCreate', "Create jsconfig.json"),
execute: () => {
client.logTelemetry('js.hintProjectCreation.accepted');
projectHinted[configFileName] = true;
Expand All @@ -95,7 +95,7 @@ export function create(client: ITypescriptServiceClient, memento: vscode.Memento
}]
};
item.text = '$(light-bulb)';
item.tooltip = localize('hint.tooltip', "Have a project and have better IntelliSense, better symbol search, and much more.");
item.tooltip = localize('hintCreate.tooltip', "Create a jsconfig.json to enable richer IntelliSense and code navigation across the entire workspace.");
item.color = 'white';
item.show();
client.logTelemetry('js.hintProjectCreation');
Expand All @@ -107,7 +107,7 @@ export function create(client: ITypescriptServiceClient, memento: vscode.Memento
currentHint = {
message: localize('hintExclude', "For better performance exclude folders with many files, like: {0}...", largeRoots),
options: [{
title: localize('open', "Configure Excludes..."),
title: localize('open', "Configure Excludes"),
execute: () => {
client.logTelemetry('js.hintProjectExcludes.accepted');
projectHinted[configFileName] = true;
Expand Down

0 comments on commit 1c469f4

Please sign in to comment.