You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
info: "The style of the cursor when the terminal is not focused.",
88
+
info: strings["info-cursorInactiveStyle"],
89
89
},
90
90
{
91
91
key: "fontWeight",
@@ -104,13 +104,13 @@ export default function terminalSettings() {
104
104
"800",
105
105
"900",
106
106
],
107
-
info: "The font weight used to render non-bold text.",
107
+
info: strings["info-fontWeight"],
108
108
},
109
109
{
110
110
key: "cursorBlink",
111
111
text: strings["terminal:cursor blink"],
112
112
checkbox: terminalValues.cursorBlink,
113
-
info: "Whether the cursor blinks.",
113
+
info: strings["info-cursorBlink"],
114
114
},
115
115
{
116
116
key: "scrollback",
@@ -124,7 +124,7 @@ export default function terminalSettings() {
124
124
returnvalue>=100&&value<=10000;
125
125
},
126
126
},
127
-
info: "The amount of scrollback in the terminal. Scrollback is the amount of rows that are retained when lines are scrolled beyond the initial viewport.",
127
+
info: strings["info-scrollback"],
128
128
},
129
129
{
130
130
key: "tabStopWidth",
@@ -138,15 +138,15 @@ export default function terminalSettings() {
138
138
returnvalue>=1&&value<=8;
139
139
},
140
140
},
141
-
info: "The size of tab stops in the terminal.",
141
+
info: strings["info-tabStopWidth"],
142
142
},
143
143
{
144
144
key: "letterSpacing",
145
145
text: strings["letter spacing"],
146
146
value: terminalValues.letterSpacing,
147
147
prompt: strings["letter spacing"],
148
148
promptType: "number",
149
-
info: "The spacing in whole pixels between characters.",
149
+
info: strings["info-letterSpacing"],
150
150
},
151
151
{
152
152
key: "convertEol",
@@ -157,34 +157,34 @@ export default function terminalSettings() {
157
157
key: "imageSupport",
158
158
text: strings["terminal:image support"],
159
159
checkbox: terminalValues.imageSupport,
160
-
info: "Whether images are supported in the terminal.",
160
+
info: strings["info-imageSupport"],
161
161
},
162
162
{
163
163
key: "fontLigatures",
164
164
text: strings["font ligatures"],
165
165
checkbox: terminalValues.fontLigatures,
166
-
info: "Whether font ligatures are enabled in the terminal.",
166
+
info: strings["info-fontLigatures"],
167
167
},
168
168
{
169
169
key: "confirmTabClose",
170
170
text: strings["terminal:confirm tab close"],
171
171
checkbox: terminalValues.confirmTabClose!==false,
172
-
info: "Ask for confirmation before closing terminal tabs.",
172
+
info: strings["info-confirmTabClose"],
173
173
},
174
174
{
175
175
key: "backup",
176
176
text: strings.backup,
177
-
info: "Creates a backup of the terminal installation",
177
+
info: strings["info-backup"],
178
178
},
179
179
{
180
180
key: "restore",
181
181
text: strings.restore,
182
-
info: "Restores a backup of the terminal installation",
0 commit comments