Skip to content

Commit 0290d8d

Browse files
committed
feat: Update terminalSettings.js
1 parent b8ddbd0 commit 0290d8d

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

src/settings/terminalSettings.js

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ export default function terminalSettings() {
7373
text: strings["terminal:font weight"],
7474
value: terminalValues.fontWeight,
7575
select: [
76-
"normal",
77-
"bold",
76+
["normal", strings["terminal:normal"]],
77+
["bold", strings["terminal:bold"]],
7878
"100",
7979
"200",
8080
"300",
@@ -108,15 +108,25 @@ export default function terminalSettings() {
108108
key: "cursorStyle",
109109
text: strings["terminal:cursor style"],
110110
value: terminalValues.cursorStyle,
111-
select: ["block", "underline", "bar"],
111+
select: [
112+
["block", strings["terminal:block"]],
113+
["underline", strings["terminal:underline"]],
114+
["bar", strings["terminal:bar"]]
115+
],
112116
info: strings["info-cursorStyle"],
113117
category: categories.cursor,
114118
},
115119
{
116120
key: "cursorInactiveStyle",
117121
text: strings["terminal:cursor inactive style"],
118122
value: terminalValues.cursorInactiveStyle,
119-
select: ["outline", "block", "bar", "underline", "none"],
123+
select: [
124+
["outline", strings["terminal:inactive outline"]],
125+
["block", strings["terminal:inactive block"]],
126+
["bar", strings["terminal:inactive bar"]],
127+
["underline", strings["terminal:inactive underline"]],
128+
["none", strings["terminal:inactive none"]]
129+
],
120130
info: strings["info-cursorInactiveStyle"],
121131
category: categories.cursor,
122132
},

0 commit comments

Comments
 (0)