This commit is contained in:
meganrogge
2023-08-11 11:52:49 -07:00
parent 01d8f7d47c
commit 081ebb4f8d
3 changed files with 12 additions and 7 deletions

View File

@@ -96,6 +96,6 @@ export class HoverAction extends Disposable {
}
}
export function getHoverAriaLabel(shouldHaveHint?: boolean, keybinding?: string | null): string | undefined {
export function getHoverAccessibleViewHint(shouldHaveHint?: boolean, keybinding?: string | null): string | undefined {
return shouldHaveHint && keybinding ? localize('acessibleViewHint', "Inspect this in the accessible view with {0}.", keybinding) : shouldHaveHint ? localize('acessibleViewHintNoKbOpen', "Inspect this in the accessible view via the command Open Accessible View which is currently not triggerable via keybinding.") : '';
}