From 3b667bb8418b83ce191d23b7188ed6390aa96f3a Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 26 Feb 2016 12:48:11 +0100 Subject: [PATCH] Minor word tweak --- src/vs/editor/common/commonCodeEditor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/common/commonCodeEditor.ts b/src/vs/editor/common/commonCodeEditor.ts index a1e1027f605..82a3c551cc4 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 ''; } -- GitLab