Skip to content

Commit

Permalink
fix(copy): change the language of the tool tip
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Feb 22, 2020
1 parent d47b872 commit 09949e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/statusbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function initStatusBar(context: ExtensionContext, client: CSpellClient) {
const { languageEnabled = true, fileEnabled = true } = response;
const isChecked = languageEnabled && fileEnabled;
const isCheckedText = isChecked ? 'is' : 'is NOT';
const langReason = languageEnabled ? '' : `The "${languageId}" language is not enabled.`;
const langReason = languageEnabled ? '' : `The "${languageId}" language / filetype is not enabled.`;
const fileReason = fileEnabled ? '' : 'The file path is excluded in settings.';
const fileName = path.basename(uri.fsPath);
const langText = `${genOnOffIcon(languageEnabled)} ${languageId}`;
Expand Down

0 comments on commit 09949e4

Please sign in to comment.