Skip to content

Commit

Permalink
Merge pull request #239151 from mjbvz/tall-ferret
Browse files Browse the repository at this point in the history
Use more clear label for markdown validation item
  • Loading branch information
mjbvz authored Jan 29, 2025
2 parents 99d5479 + 94c2ff5 commit 2c56755
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ function registerMarkdownStatusItem(selector: vscode.DocumentSelector, commandMa

const enabled = vscode.workspace.getConfiguration('markdown', markdownDoc).get(enabledSettingId);
if (enabled) {
statusItem.text = vscode.l10n.t('Link validation enabled');
statusItem.text = vscode.l10n.t('Markdown link validation enabled');
statusItem.command = {
command: commandId,
arguments: [false],
title: vscode.l10n.t('Disable'),
tooltip: vscode.l10n.t('Disable validation of Markdown links'),
};
} else {
statusItem.text = vscode.l10n.t('Link validation disabled');
statusItem.text = vscode.l10n.t('Markdown link validation disabled');
statusItem.command = {
command: commandId,
arguments: [true],
Expand Down

0 comments on commit 2c56755

Please sign in to comment.