Add option for composing emails in plain text format. see #350
This commit is contained in:
parent
c15fcb466e
commit
70e89e52d2
3 changed files with 20 additions and 0 deletions
|
|
@ -1270,5 +1270,13 @@
|
|||
"CORS_give_allurls_perm": {
|
||||
"message": "Give \"all URLs\" permission",
|
||||
"description": ""
|
||||
},
|
||||
"prefs_OptionText_composing_plain_text": {
|
||||
"message": "Composing in plain text",
|
||||
"description": ""
|
||||
},
|
||||
"prefs_OptionText_composing_plain_text_Info": {
|
||||
"message": "Check this option if you're composing the emails in plain text format.",
|
||||
"description": ""
|
||||
}
|
||||
}
|
||||
|
|
@ -22,6 +22,7 @@ export const prefs_default = {
|
|||
chatgpt_win_width: 700,
|
||||
default_chatgpt_lang: '',
|
||||
default_sign_name: '',
|
||||
composing_plain_text: false,
|
||||
connection_type: 'chatgpt_web', //Other values: 'chatgpt_api', 'ollama_api', 'openai_comp_api', 'google_gemini_api'
|
||||
chatgpt_web_model: '',
|
||||
chatgpt_web_tempchat: false,
|
||||
|
|
|
|||
|
|
@ -101,6 +101,17 @@
|
|||
</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label>
|
||||
<span>__MSG_prefs_OptionText_composing_plain_text__</span>
|
||||
</label></td>
|
||||
<td>
|
||||
<label>
|
||||
<input type="checkbox" id="composing_plain_text" name="composing_plain_text" class="option-input" />
|
||||
<span>__MSG_prefs_OptionText_composing_plain_text_info__</span>
|
||||
</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<label>
|
||||
|
|
|
|||
Loading…
Reference in a new issue