Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/lang/en-us.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"sort by name": "Sort by name",
"success": "Success",
"tab size": "Tab size",
"text wrap": "Text wrap",
"text wrap": "Text wrap / Word wrap",
"theme": "Theme",
"unable to delete file": "unable to delete file",
"unable to open file": "Sorry, unable to open file",
Expand Down
2 changes: 1 addition & 1 deletion src/lang/mm-unicode.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"sort by name": "နာမည်နဲ့စီပါ",
"success": "အောင်မြင်ပါတယ်။",
"tab size": "Tab အရွယ်အစား",
"text wrap": "Text wrap",
"text wrap": "Text wrap / Word wrap",
"theme": "theme",
"unable to delete file": "ဖိုင်ဖျက်လို့မရပါ",
"unable to open file": "ဝမ်းနည်းပါတယ်။ဖိုင်ဖွင့်မရပါ။",
Expand Down
2 changes: 1 addition & 1 deletion src/lang/mm-zawgyi.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"sort by name": "နာမည္နဲ႕စီပါ",
"success": "ေအာင္ျမင္ပါတယ္။",
"tab size": "Tab အ႐ြယ္အစား",
"text wrap": "Text wrap",
"text wrap": "Text wrap / Word wrap",
"theme": "theme",
"unable to delete file": "ဖိုင္ဖ်က္လို႔မရပါ",
"unable to open file": "ဝမ္းနည္းပါတယ္။ဖိုင္ဖြင့္မရပါ။",
Expand Down
2 changes: 1 addition & 1 deletion src/lang/tl-ph.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"sort by name": "I-ayos ayon sa pangalan",
"success": "Tagumpay",
"tab size": "Tab size",
"text wrap": "Text wrap",
"text wrap": "Text wrap / Word wrap",
"theme": "Tema",
"unable to delete file": "hindi ma-delete ang file",
"unable to open file": "Paumanhin, hindi ma-open ang file",
Expand Down
5 changes: 5 additions & 0 deletions src/settings/editorSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ export default function editorSettings() {
text: strings["show print margin"],
checkbox: values.showPrintMargin,
},
{
key: "textWrap",
text: strings["text wrap"],
checkbox: values.textWrap,
},
{
key: "printMargin",
text: strings["print margin"],
Expand Down
5 changes: 0 additions & 5 deletions src/settings/scrollSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ export default function scrollSettings() {
valueText: (size) => `${size}px`,
select: [5, 10, 15, 20],
},
{
key: "textWrap",
text: strings["text wrap"],
checkbox: values.textWrap,
},
];

return settingsPage(title, items, callback);
Expand Down