Skip to content

Commit ebe1981

Browse files
committed
1 parent 44da505 commit ebe1981

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ export class TextAreaHandler extends ViewPart {
349349
private _getAriaLabel(options: IComputedEditorOptions): string {
350350
const accessibilitySupport = options.get(EditorOption.accessibilitySupport);
351351
if (accessibilitySupport === AccessibilitySupport.Disabled) {
352-
return nls.localize('accessibilityOffAriaLabel', "The editor is not accessible at this time. Press Alt+F1 for options.");
352+
return nls.localize('accessibilityOffAriaLabel', "The editor is not accessible at this time. Press {0} for options.", platform.isLinux ? 'Shift+Alt+F1' : 'Alt+F1');
353353
}
354354
return options.get(EditorOption.ariaLabel);
355355
}

0 commit comments

Comments
 (0)