Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/settings/editorSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function editorSettings() {
const items = [
{
key: "autosave",
text: strings.autosave.capitalize(),
text: strings.autosave,
value: values.autosave,
valueText: (value) => (value ? value : strings.no),
prompt: strings.delay + " (>=1000 || 0)",
Expand Down Expand Up @@ -88,12 +88,12 @@ export default function editorSettings() {
},
{
key: "liveAutoCompletion",
text: strings["live autocompletion"].capitalize(),
text: strings["live autocompletion"],
checkbox: values.liveAutoCompletion,
},
{
key: "showPrintMargin",
text: strings["show print margin"].capitalize(),
text: strings["show print margin"],
checkbox: values.showPrintMargin,
},
{
Expand Down
8 changes: 4 additions & 4 deletions src/settings/terminalSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function terminalSettings() {
const items = [
{
key: "all_file_access",
text: strings.allFileAccess?.capitalize(),
text: strings["allFileAccess"],
info: "Enable access of /sdcard and /storage in terminal",
},
{
Expand Down Expand Up @@ -173,17 +173,17 @@ export default function terminalSettings() {
},
{
key: "backup",
text: strings.backup.capitalize(),
text: strings.backup,
info: "Creates a backup of the terminal installation",
},
{
key: "restore",
text: strings.restore.capitalize(),
text: strings.restore,
info: "Restores a backup of the terminal installation",
},
{
key: "uninstall",
text: strings.uninstall.capitalize(),
text: strings.uninstall,
info: "Uninstalls the terminal installation",
},
];
Expand Down