We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d17459d commit 91c4671Copy full SHA for 91c4671
1 file changed
src/settings/editorSettings.js
@@ -10,7 +10,7 @@ export default function editorSettings() {
10
const items = [
11
{
12
key: "autosave",
13
- text: strings.autosave.capitalize(),
+ text: strings.autosave,
14
value: values.autosave,
15
valueText: (value) => (value ? value : strings.no),
16
prompt: strings.delay + " (>=1000 || 0)",
@@ -88,12 +88,12 @@ export default function editorSettings() {
88
},
89
90
key: "liveAutoCompletion",
91
- text: strings["live autocompletion"].capitalize(),
+ text: strings["live autocompletion"],
92
checkbox: values.liveAutoCompletion,
93
94
95
key: "showPrintMargin",
96
- text: strings["show print margin"].capitalize(),
+ text: strings["show print margin"],
97
checkbox: values.showPrintMargin,
98
99
0 commit comments