diff --git a/src/vs/editor/common/commonCodeEditor.ts b/src/vs/editor/common/commonCodeEditor.ts index a1e1027f6056d486f76324d36d24d89d97e59efa..82a3c551cc410914fdc7007342af5fb21a598ce3 100644 --- a/src/vs/editor/common/commonCodeEditor.ts +++ b/src/vs/editor/common/commonCodeEditor.ts @@ -174,7 +174,7 @@ export abstract class CommonCodeEditor extends EventEmitter implements IActionPr private _ariaLabelAppendMessage(): string { let keybindings = this._keybindingService.lookupKeybindings(editorCommon.SHOW_ACCESSIBILITY_HELP_ACTION_ID); if (keybindings.length > 0) { - return nls.localize('showAccessibilityHelp', "Press {0} for more info.", this._keybindingService.getLabelFor(keybindings[0])); + return nls.localize('showAccessibilityHelp', "Press {0} if you are using a screen reader.", this._keybindingService.getLabelFor(keybindings[0])); } return ''; }