feat: restore LocalizableStrings.ts const export

This commit is contained in:
greenmashimaro
2022-08-24 22:43:00 +08:00
parent 559b6950b2
commit ac81d3f72d
+9 -2
View File
@@ -3,5 +3,12 @@
* @license MIT
*/
export const promptLabel = 'Terminal input';
export const tooMuchOutput = 'Too much output to announce, navigate to rows manually to read';
/*
* note: intentional design, it's exposed to embedders of xterm.js
* so they can change the strings to localize xterm.js. #4055
*/
// eslint-disable-next-line prefer-const
export let promptLabel = 'Terminal input';
// eslint-disable-next-line prefer-const
export let tooMuchOutput = 'Too much output to announce, navigate to rows manually to read';