Skip to content

Commit 8720906

Browse files
committed
1 parent 53e7651 commit 8720906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/browser/controller/textAreaHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ export class TextAreaHandler extends ViewPart {
553553
private _getAriaLabel(options: IComputedEditorOptions): string {
554554
const accessibilitySupport = options.get(EditorOption.accessibilitySupport);
555555
if (accessibilitySupport === AccessibilitySupport.Disabled) {
556-
return nls.localize('accessibilityOffAriaLabel', "The editor is not accessible at this time. Press {0} for options.", platform.isLinux ? 'Shift+Alt+F1' : 'Alt+F1');
556+
return nls.localize('accessibilityOffAriaLabel', "The editor is not accessible at this time. Open the quick pick with {0} and run the command: Toggle Screen Reader Accessibility Mode for a screen reader optimized experience.", platform.isMacintosh ? 'Cmd+Shift+P' : 'Ctrl+Shift+P');
557557
}
558558
return options.get(EditorOption.ariaLabel);
559559
}

0 commit comments

Comments
 (0)