Screenreader prompt "Inline Suggestion:" -> "Suggestion:".

Shorter is better here.
This commit is contained in:
Henning Dieterichs 2021-08-11 11:59:58 +02:00
parent a6a19ffa64
commit aa91460a85
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06

View file

@ -154,7 +154,7 @@ export class InlineCompletionsHoverParticipant implements IEditorHoverParticipan
this._hover.onContentsChanged();
}));
const inlineSuggestionAvailable = nls.localize('inlineSuggestionFollows', "Inline Suggestion:");
const inlineSuggestionAvailable = nls.localize('inlineSuggestionFollows', "Suggestion:");
const renderedContents = disposableStore.add(renderer.render(new MarkdownString().appendText(inlineSuggestionAvailable).appendCodeblock('text', code)));
hoverContentsElement.replaceChildren(renderedContents.element);
};