Skip to content

Commit 7060fb8

Browse files
authored
Shorten markdown link button titles (microsoft#164764)
Fixes microsoft#164556
1 parent 54bd3cc commit 7060fb8

File tree

1 file changed

+3
-3
lines changed
  • extensions/markdown-language-features/src/languageFeatures

1 file changed

+3
-3
lines changed

extensions/markdown-language-features/src/languageFeatures/linkUpdater.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,17 @@ class UpdateLinksOnFileRenameHandler extends Disposable {
131131
};
132132

133133
const alwaysItem: vscode.MessageItem = {
134-
title: localize('always.title', "Always automatically update Markdown Links"),
134+
title: localize('always.title', "Always"),
135135
};
136136

137137
const neverItem: vscode.MessageItem = {
138-
title: localize('never.title', "Never automatically update Markdown Links"),
138+
title: localize('never.title', "Never"),
139139
};
140140

141141
const choice = await vscode.window.showInformationMessage(
142142
newResources.length === 1
143143
? localize('prompt', "Update Markdown links for '{0}'?", path.basename(newResources[0].fsPath))
144-
: this.getConfirmMessage(localize('promptMoreThanOne', "Update Markdown link for the following {0} files?", newResources.length), newResources), {
144+
: this.getConfirmMessage(localize('promptMoreThanOne', "Update Markdown links for the following {0} files?", newResources.length), newResources), {
145145
modal: true,
146146
}, rejectItem, acceptItem, alwaysItem, neverItem);
147147

0 commit comments

Comments
 (0)