diff --git a/src/lang/en-us.json b/src/lang/en-us.json index ada3a1b59..b2fcbae24 100644 --- a/src/lang/en-us.json +++ b/src/lang/en-us.json @@ -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", diff --git a/src/lang/mm-unicode.json b/src/lang/mm-unicode.json index 52e4c0a1f..b8b211fd8 100644 --- a/src/lang/mm-unicode.json +++ b/src/lang/mm-unicode.json @@ -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": "ဝမ်းနည်းပါတယ်။ဖိုင်ဖွင့်မရပါ။", diff --git a/src/lang/mm-zawgyi.json b/src/lang/mm-zawgyi.json index 6528de8dc..5a57884a8 100644 --- a/src/lang/mm-zawgyi.json +++ b/src/lang/mm-zawgyi.json @@ -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": "ဝမ္းနည္းပါတယ္။ဖိုင္ဖြင့္မရပါ။", diff --git a/src/lang/tl-ph.json b/src/lang/tl-ph.json index e251db1ba..1a7f24865 100644 --- a/src/lang/tl-ph.json +++ b/src/lang/tl-ph.json @@ -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", diff --git a/src/settings/editorSettings.js b/src/settings/editorSettings.js index 9969c0550..966efe57e 100644 --- a/src/settings/editorSettings.js +++ b/src/settings/editorSettings.js @@ -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"], diff --git a/src/settings/scrollSettings.js b/src/settings/scrollSettings.js index 0e3e69335..ca3ab78b9 100644 --- a/src/settings/scrollSettings.js +++ b/src/settings/scrollSettings.js @@ -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);