diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/suite/editor/components/prefs/content/pref-composer.xhtml | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/suite/editor/components/prefs/content/pref-composer.xhtml')
-rw-r--r-- | comm/suite/editor/components/prefs/content/pref-composer.xhtml | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/comm/suite/editor/components/prefs/content/pref-composer.xhtml b/comm/suite/editor/components/prefs/content/pref-composer.xhtml new file mode 100644 index 0000000000..79b4a1514c --- /dev/null +++ b/comm/suite/editor/components/prefs/content/pref-composer.xhtml @@ -0,0 +1,84 @@ +<?xml version="1.0"?> +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<!DOCTYPE overlay SYSTEM "chrome://editor/locale/pref-composer.dtd"> + +<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml"> + <prefpane id="composer_pane" label="&pref.composer.title;"> + + <preferences id="composer_preferences"> + <preference id="editor.history.url_maximum" + name="editor.history.url_maximum" + type="int"/> + <preference id="editor.prettyprint" + name="editor.prettyprint" + type="bool" + inverted="true"/> + <preference id="editor.save_associated_files" + name="editor.save_associated_files" + type="bool"/> + <preference id="editor.always_show_publish_dialog" + name="editor.always_show_publish_dialog" + type="bool"/> + <preference id="editor.table.maintain_structure" + name="editor.table.maintain_structure" + type="bool"/> + <preference id="editor.use_css" + name="editor.use_css" + type="bool"/> + <preference id="editor.CR_creates_new_p" + name="editor.CR_creates_new_p" + type="bool"/> + </preferences> + + <!-- Recent files menu --> + <groupbox> + <label class="header">&recentFiles.title;</label> + <hbox align="center"> + <label value="&documentsInMenu.label;" + accesskey="&documentsInMenu.accesskey;" + control="recentFiles"/> + <html:input id="recentFiles" type="number" class="size3" + min="0" max="99" value="10" + preference="editor.history.url_maximum"/> + </hbox> + </groupbox> + + <!-- HTML formatting on output --> + <groupbox> + <label class="header">&savingFiles.title;</label> + <checkbox id="preserveFormatting" + label="&preserveExisting.label;" + accesskey="&preserveExisting.accesskey;" + tooltiptext="&preserveExisting.tooltip;" + preference="editor.prettyprint"/> + <checkbox id="saveAssociatedFiles" + label="&saveAssociatedFiles.label;" + accesskey="&saveAssociatedFiles.accesskey;" + preference="editor.save_associated_files"/> + <checkbox id="showPublishDialog" + label="&showPublishDialog.label;" + accesskey="&showPublishDialog.accesskey;" + preference="editor.always_show_publish_dialog"/> + </groupbox> + + <groupbox align="start"> + <label class="header">&composerEditing.label;</label> + <checkbox id="maintainTableStructure" + label="&maintainStructure.label;" + accesskey="&maintainStructure.accesskey;" + tooltiptext="&maintainStructure.tooltip;" + preference="editor.table.maintain_structure"/> + <checkbox id="useCSS" + label="&useCSS.label;" + accesskey="&useCSS.accesskey;" + preference="editor.use_css"/> + <checkbox id="crInPCreatesNewP" + label="&crInPCreatesNewP.label;" + accesskey="&crInPCreatesNewP.accesskey;" + preference="editor.CR_creates_new_p"/> + </groupbox> + </prefpane> +</overlay> |