Skip to content

Commit 95b449d

Browse files
authored
Merge pull request microsoft#208795 from microsoft/merogge/acc-view-tweaks
fix small issues w accessibiliity help
2 parents 86c791e + a6c7311 commit 95b449d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/accessibility/browser/accessibleView.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ export class AccessibleView extends Disposable {
684684
private _getAccessibleViewHelpDialogContent(providerHasSymbols?: boolean): string {
685685
const navigationHint = this._getNavigationHint();
686686
const goToSymbolHint = this._getGoToSymbolHint(providerHasSymbols);
687-
const toolbarHint = localize('toolbar', "Navigate to the toolbar (Shift+Tab)).");
687+
const toolbarHint = localize('toolbar', "Navigate to the toolbar (Shift+Tab).");
688688
const chatHints = this._getChatHints();
689689

690690
let hint = localize('intro', "In the accessible view, you can:\n");
@@ -720,7 +720,7 @@ export class AccessibleView extends Disposable {
720720
if (insertIntoNewFileKb) {
721721
hint += localize('insertIntoNewFile', " - Insert the code block into a new file ({0}).\n", insertIntoNewFileKb);
722722
} else {
723-
hint += localize('insertIntoNewFileNoKb', " - Insert the code block into a new file by configuring a keybinding for the Chat: Insert at Cursor command.\n");
723+
hint += localize('insertIntoNewFileNoKb', " - Insert the code block into a new file by configuring a keybinding for the Chat: Insert into New File command.\n");
724724
}
725725
if (runInTerminalKb) {
726726
hint += localize('runInTerminal', " - Run the code block in the terminal ({0}).\n", runInTerminalKb);
@@ -761,7 +761,7 @@ export class AccessibleView extends Disposable {
761761
let goToSymbolHint = '';
762762
if (providerHasSymbols) {
763763
if (goToSymbolKb) {
764-
goToSymbolHint = localize('goToSymbolHint', 'Go to a symbol ({0})', goToSymbolKb);
764+
goToSymbolHint = localize('goToSymbolHint', 'Go to a symbol ({0}).', goToSymbolKb);
765765
} else {
766766
goToSymbolHint = localize('goToSymbolHintNoKb', 'To go to a symbol, configure a keybinding for the command Go To Symbol in Accessible View');
767767
}

0 commit comments

Comments
 (0)