Merge pull request #2284 from Tyriar/blank_line

Remove blankLine localized string
This commit is contained in:
Daniel Imms
2019-07-03 10:42:35 -07:00
committed by GitHub
3 changed files with 5 additions and 7 deletions
+5 -1
View File
@@ -258,7 +258,11 @@ export class AccessibilityManager extends Disposable {
const posInSet = (buffer.ydisp + i + 1).toString();
const element = this._rowElements[i];
if (element) {
element.textContent = lineData.length === 0 ? Strings.blankLine : lineData;
if (lineData.length === 0) {
element.innerHTML = ' ';
} else {
element.textContent = lineData;
}
element.setAttribute('aria-posinset', posInSet);
element.setAttribute('aria-setsize', setSize);
}
-1
View File
@@ -3,6 +3,5 @@
* @license MIT
*/
export let blankLine = 'Blank line';
export let promptLabel = 'Terminal input';
export let tooMuchOutput = 'Too much output to announce, navigate to rows manually to read';
-5
View File
@@ -316,11 +316,6 @@ declare module 'xterm' {
* The set of localizable strings.
*/
export interface ILocalizableStrings {
/**
* Announcement for a blank line when `screenReaderMode` is enabled.
*/
blankLine: string;
/**
* The aria label for the underlying input textarea for the terminal.
*/