mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Use more clear label for markdown validation item
This commit is contained in:
@@ -91,7 +91,7 @@ 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],
|
||||
@@ -99,7 +99,7 @@ function registerMarkdownStatusItem(selector: vscode.DocumentSelector, commandMa
|
||||
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],
|
||||
|
||||
Reference in New Issue
Block a user