Files
SysTray-X/webext/options.html

973 lines
28 KiB
HTML
Raw Permalink Normal View History

2022-06-07 22:27:19 +02:00
<!DOCTYPE html>
2020-01-05 00:54:40 +01:00
<html>
2020-01-09 21:03:06 +01:00
<head>
2020-11-07 20:40:37 +01:00
<title>__MSG_preferences__</title>
2020-01-09 21:03:06 +01:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
2021-09-04 22:16:18 +02:00
<script src="js/systrayx.js"></script>
2020-01-09 21:03:06 +01:00
<script src="js/styles.js" stylesheet="css/options.css"></script>
<script src="js/i18n.js"></script>
2021-09-04 22:16:18 +02:00
<script src="js/info.js"></script>
2020-01-09 23:37:33 +01:00
<script src="js/options_accounts.js"></script>
2020-01-24 22:20:30 +01:00
2020-04-04 18:02:35 +02:00
<p>
2020-11-07 20:40:37 +01:00
__MSG_intro_line_1__
2020-04-04 18:02:35 +02:00
<br />
<br />
<a
href="https://github.com/Ximi1970/systray-x/releases"
id="VersioHomeLink"
2020-11-07 20:40:37 +01:00
>__MSG_intro_link__</a
2020-04-04 18:02:35 +02:00
>
</p>
<br />
<br />
2020-01-09 21:03:06 +01:00
<div class="tab">
2020-03-01 22:35:06 +01:00
<button class="tablinks active" id="Windows">__MSG_tab_windows__</button>
<button class="tablinks" id="Icon">__MSG_tab_icon__</button>
2023-08-27 21:01:48 +02:00
<button class="tablinks" id="Count">__MSG_tab_count__</button>
<button class="tablinks" id="Apps">__MSG_tab_apps__</button>
2020-03-01 22:35:06 +01:00
<button class="tablinks" id="Mail">__MSG_tab_mail__</button>
2023-12-04 23:12:03 +01:00
<button class="tablinks" id="Shortcuts">__MSG_tab_shortcuts__</button>
2020-03-01 22:35:06 +01:00
<button class="tablinks" id="Debug">__MSG_tab_debug__</button>
2020-01-09 21:03:06 +01:00
</div>
2020-11-07 20:40:37 +01:00
<div id="WindowsContent" class="tabcontent" style="display: block">
2020-01-09 21:03:06 +01:00
<form>
2020-06-13 20:30:12 +02:00
<h3>__MSG_windows__</h3>
2020-04-07 17:19:02 +02:00
<table id="minimizeselect">
2020-06-03 11:01:42 +02:00
<caption>
2020-06-13 20:30:12 +02:00
__MSG_windows_min_options__
2020-06-03 11:01:42 +02:00
</caption>
<tr id="minimizedefault">
2020-11-07 20:40:37 +01:00
<td>
2020-06-13 20:30:12 +02:00
<input
type="radio"
name="minimizeType"
id="minDefault"
value="0"
/>
<label for="minDefault" id="minimizedefaultlabel"
2020-11-07 20:40:37 +01:00
>__MSG_windows_min_default__</label
>
2020-04-07 17:19:02 +02:00
</td>
</tr>
<tr id="minimizemethod1">
2020-11-07 20:40:37 +01:00
<td>
2020-06-13 20:30:12 +02:00
<input type="radio" name="minimizeType" id="minMeth1" value="1" />
<label for="minMeth1" id="minimizemethod1label"
2020-11-09 11:17:47 +01:00
>__MSG_windows_min_to_tray__</label
2020-11-07 20:40:37 +01:00
>
2020-04-07 17:19:02 +02:00
</td>
</tr>
</table>
2020-06-28 23:23:12 +02:00
<table id="closeselect">
<caption>
2020-08-12 00:33:30 +02:00
__MSG_windows_close_options__
2020-06-28 23:23:12 +02:00
</caption>
2020-08-02 16:59:53 +02:00
<tr id="defaultclosewindows">
2020-06-28 23:23:12 +02:00
<td>
2020-11-07 20:40:37 +01:00
<input
type="radio"
name="closeType"
id="closeDefault"
value="0"
/>
<label for="closeDefault" id="defaultclosewindowslabel"
>__MSG_windows_close_default__</label
>
2020-06-28 23:23:12 +02:00
</td>
</tr>
<tr id="minimizemaintrayclosechildrenwindows">
2020-06-28 23:23:12 +02:00
<td>
2020-11-07 20:40:37 +01:00
<input type="radio" name="closeType" id="closeMeth1" value="1" />
2023-08-05 11:06:55 +02:00
<label for="closeMeth1" id="minimizemaintrayclosechildrenwindowslabel"
>__MSG_windows_close_tray_1__</label
>
</td>
</tr>
<tr id="minimizealltraywindows">
<td>
<input type="radio" name="closeType" id="closeMeth2" value="2" />
2023-08-05 11:06:55 +02:00
<label for="closeMeth2" id="minimizealltraywindowslabel"
>__MSG_windows_close_tray_2__</label
>
</td>
</tr>
<tr id="minimizemainclosechildrenwindows">
<td>
<input type="radio" name="closeType" id="closeMeth3" value="3" />
2023-08-05 11:06:55 +02:00
<label for="closeMeth3" id="minimizemainclosechildrenwindowslabel"
2020-11-07 20:40:37 +01:00
>__MSG_windows_close_1__</label
>
2020-06-28 23:23:12 +02:00
</td>
</tr>
<tr id="minimizeallwindows">
<td>
<input type="radio" name="closeType" id="closeMeth4" value="4" />
2023-08-05 11:06:55 +02:00
<label for="closeMeth4" id="minimizeallwindowslabel"
2020-11-07 20:40:37 +01:00
>__MSG_windows_close_2__</label
>
2020-06-28 23:23:12 +02:00
</td>
</tr>
</table>
<table id="minimizeiconselect">
<caption>
__MSG_windows_min_icon_options__
</caption>
<tr id="minimizedefaulticon">
<td>
<input
type="radio"
name="minimizeIconType"
id="minDefaultIcon"
value="0"
/>
<label for="minDefaultIcon" id="minimizedefaulticonlabel"
>__MSG_windows_min_default_icon__</label
>
</td>
</tr>
<tr id="minimizetrayicon">
<td>
<input type="radio" name="minimizeIconType" id="minTrayIcon" value="1" />
<label for="minTrayIcon" id="minimizetrayiconlabel"
>__MSG_windows_min_to_tray_icon__</label
>
</td>
</tr>
</table>
2023-11-14 22:43:51 +01:00
<table id="startupselect">
<caption>
__MSG_windows_startup_options__
</caption>
<tr id="defaultstartup">
<td>
<input
type="radio"
name="startupType"
id="defaultStartup"
value="0"
/>
<label for="defaultStartup" id="defaultstartuplabel">
__MSG_windows_default_startup__
</label>
</td>
</tr>
<tr id="minimizedstartup">
<td>
<input
type="radio"
name="startupType"
id="minimizedStartup"
value="1"
/>
<label for="minimizedStartup" id="minimizedstartuplabel">
__MSG_windows_minimized_startup__
</label>
</td>
</tr>
<tr id="dockedstartup">
<td>
<input
type="radio"
name="startupType"
id="dockedStartup"
value="2" />
<label for="dockedStartup" id="dockedstartuplabel">
__MSG_windows_docked_startup__
</label>
</td>
</tr>
</table>
<table id="positionscorrectionselect">
<caption>
__MSG_windows_positions_correction_options__
</caption>
<tr id="positionscorrection">
<td>
<input
type="checkbox"
name="positionsCorrection"
id="posCor"
value=""
/>
<label for="posCor" id="positionscorrectionLabel"
>__MSG_windows_positions_correction__</label
>
</td>
</tr>
<tr id="nocorrection">
<td>
<input
type="radio"
name="positionsCorrectionType"
id="noCorrection"
value="0"
/>
<label for="noCorrection" id="nocorrectionlabel">
__MSG_windows_no_correction__
</label>
</td>
</tr>
<tr id="addtitlebarsize">
<td>
<input
type="radio"
name="positionsCorrectionType"
id="addTitlebarSize"
value="1"
/>
<label for="addTitlebarSize" id="addtitlebarsizelabel">
__MSG_windows_add_titlebar_size__
</label>
</td>
</tr>
<tr id="subtracttitlebarsize">
<td>
<input
type="radio"
name="positionsCorrectionType"
id="subtractTitlebarSize"
value="2" />
<label for="subtractTitlebarSize" id="subtracttitlebarsizelabel">
__MSG_windows_subtract_titlebar_size__
</label>
</td>
</tr>
</table>
<div id="inputcheck">
<input
type="checkbox"
name="restorePositions"
id="restorePos"
value=""
/>
<label for="restorePos" id="restorePositionsLabel"
>__MSG_restore_positions_on_startup__</label
>
</div>
2020-01-09 21:03:06 +01:00
</form>
</div>
<div id="IconContent" class="tabcontent">
<form name="iconform">
2020-06-13 20:30:12 +02:00
<h3>__MSG_icons__</h3>
2020-05-22 22:54:10 +02:00
<table id="defaulticonselect">
<caption>
2020-06-13 20:30:12 +02:00
__MSG_icons_default_options__
2020-05-22 22:54:10 +02:00
</caption>
<tr>
2020-11-07 20:40:37 +01:00
<td>
2020-06-13 20:30:12 +02:00
<input
type="radio"
name="defaultIconType"
id="defauttTb"
value="0"
/>
<label for="defauttTb" id="defauttTbLabel"
2020-11-07 20:40:37 +01:00
>__MSG_icons_default_tb__</label
2020-06-13 20:30:12 +02:00
>
2020-05-22 22:54:10 +02:00
</td>
</tr>
<tr>
2020-11-07 20:40:37 +01:00
<td>
2020-06-13 20:30:12 +02:00
<input
type="radio"
name="defaultIconType"
id="defauttLookThrough"
value="1"
/>
<label for="defauttLookThrough" id="defauttLookThroughLabel"
2020-11-07 20:40:37 +01:00
>__MSG_icons_default_lookthrough__</label
2020-06-13 20:30:12 +02:00
>
2020-05-22 22:54:10 +02:00
</td>
</tr>
<tr>
2020-11-07 20:40:37 +01:00
<td>
2020-06-13 20:30:12 +02:00
<input
type="radio"
name="defaultIconType"
id="defaultCustom"
value="2"
/>
<label for="defaultCustom" id="defaultCustomLabel"
2020-11-07 20:40:37 +01:00
>__MSG_icons_default_custom__</label
2020-06-13 20:30:12 +02:00
>
2020-05-22 22:54:10 +02:00
</td>
<td>
<img
id="defaultCustomIconImage"
height="25"
width="25"
align="middle"
src="icons/Thunderbird.png"
/>
</td>
<td>
<label
for="selectedFileDefaultIconType"
id="fileDefaultIconTypeLabel"
2020-06-13 20:30:12 +02:00
>__MSG_icons_default_custom_choose__</label
2020-05-22 22:54:10 +02:00
>
<input
type="file"
id="selectedFileDefaultIconType"
accept="image/*"
2020-11-07 20:40:37 +01:00
style="display: none"
2020-05-22 22:54:10 +02:00
/>
</td>
2020-11-07 20:40:37 +01:00
<td>&emsp;</td>
2020-05-22 22:54:10 +02:00
</tr>
</table>
2020-06-07 16:19:39 +02:00
<div id="kdeintegration">
2020-06-13 20:30:12 +02:00
<div id="inputcheck">
<input
type="checkbox"
name="hideDefaultIcon"
2020-11-07 20:40:37 +01:00
id="kdeInt"
2020-06-13 20:30:12 +02:00
value=""
2020-11-07 20:40:37 +01:00
/>
<label for="kdeInt" id="kdeIntegrationLabel"
>__MSG_icons_default_kde_integration__</label
>
2020-06-13 20:30:12 +02:00
</div>
2020-06-07 16:19:39 +02:00
</div>
2020-06-03 22:46:46 +02:00
<table id="iconselect">
2020-05-22 22:54:10 +02:00
<caption>
2020-11-07 20:40:37 +01:00
__MSG_icons_unread_options__
2020-05-22 22:54:10 +02:00
</caption>
<tr>
2020-11-07 20:40:37 +01:00
<td>
<input
type="radio"
name="iconType"
id="unreadBlank"
value="0"
/><label for="unreadBlank" id="unreadBlankLabel"
>__MSG_icons_unread_blank__</label
2020-06-13 20:30:12 +02:00
>
</td>
</tr>
<tr>
2020-11-07 20:40:37 +01:00
<td>
<input
type="radio"
name="iconType"
id="unreadNew"
value="1"
/><label for="unreadNew" id="unreadNewLabel"
>__MSG_icons_unread_new__</label
2020-06-13 20:30:12 +02:00
>
2020-01-24 22:20:30 +01:00
</td>
</tr>
<tr>
2020-11-07 20:40:37 +01:00
<td>
<input
type="radio"
name="iconType"
id="unreadCustom"
value="2"
/><label for="unreadCustom" id="unreadCustomLabel"
>__MSG_icons_unread_custom__</label
2020-06-13 20:30:12 +02:00
>
2020-01-24 22:20:30 +01:00
</td>
<td>
<img
id="customIconImage"
height="25"
width="25"
align="middle"
src="icons/blank-icon.png"
/>
</td>
<td>
<label
for="selectedFileIconType"
id="fileIconTypeLabel"
2020-06-13 20:30:12 +02:00
>__MSG_icons_unread_custom_choose__</label
2020-01-24 22:20:30 +01:00
>
<input
type="file"
id="selectedFileIconType"
accept="image/*"
2020-11-07 20:40:37 +01:00
style="display: none"
2020-01-24 22:20:30 +01:00
/>
</td>
2020-11-07 20:40:37 +01:00
<td>&emsp;</td>
2020-04-05 14:39:19 +02:00
</tr>
2020-05-27 11:35:10 +02:00
<tr>
2020-11-07 20:40:37 +01:00
<td>
<input
type="radio"
name="iconType"
id="unreadNo"
value="3"
/><label for="unreadNo" id="unreadNoLabel"
>__MSG_icons_unread_no__</label
2020-06-13 20:30:12 +02:00
>
</td>
2020-05-27 11:35:10 +02:00
</tr>
2021-01-18 22:13:01 +01:00
<tr>
<td>
<input type="radio" name="iconType" id="iconTb" value="4" />
<label for="iconTb" id="iconTbLabel"
>__MSG_icons_default_tb__</label
>
</td>
</tr>
2020-04-05 14:39:19 +02:00
</table>
2023-08-29 19:41:21 +02:00
2023-10-24 22:42:56 +02:00
<div id="inverticon">
<div id="inputcheck">
<input
type="checkbox"
name="invertIcon"
id="invertIcon"
value=""
/>
<label for="invertIcon" id="invertIconLabel"
>__MSG_icons_invert_icon__</label
>
</div>
</div>
2023-08-29 19:41:21 +02:00
</form>
<div
id="defaultIcon"
data-default-icon-mime=""
data-default-icon=""
></div>
<div id="icon" data-icon-mime="" data-icon=""></div>
<script src="js/options_iconform.js"></script>
</div>
<div id="CountContent" class="tabcontent">
<form name="countform">
<h3>__MSG_count__</h3>
<tr>
<td>
<div id="inputcheck">
<input type="checkbox" name="showNumber" id="showNo" value="" />
<label for="showNo" id="showNumberLabel"
>__MSG_count_number_display__</label
>
</div>
</td>
<td>
<div id="inputcheck">
<input type="checkbox" name="showNewIndicator" id="showNew" value="" />
<label for="showNew" id="showNewIndicatorLabel"
>__MSG_count_new_indicator_display__</label
>
</div>
</td>
</tr>
<tr>
<td>
<label for="startupDelay">__MSG_count_startup_delay__</label>
<input
type="number"
id="startupDelay"
name="startupDelay"
value="5"
min="0"
max="99"
step="1"
size="2"
/>
</td>
</tr>
<tr>
<td>&emsp;</td>
</tr>
<table id="counttypeselect">
<caption>
__MSG_count_number_count_type__
</caption>
<tr id="unreadtype">
<td>
<input type="radio" name="countType" id="numberUnread" value="0" />
<label for="numberUnread">__MSG_count_number_count_unread__</label>
</td>
</tr>
<tr id="newtype">
<td>
<input type="radio" name="countType" id="numberNew" value="1" />
<label for="numberNew">__MSG_count_number_count_new__</label>
</td>
</tr>
</table>
2020-04-05 14:39:19 +02:00
2023-11-13 20:14:30 +01:00
<div id="apicountmethod">
<div id="inputcheck">
<input type="checkbox" name="apiCountMethod" id="apiCountMethod" value="" />
<label for="apiCountMethod" id="apiCountMethodLabel">
__MSG_count_api_count_method__
</label>
</div>
</div>
2020-04-05 14:39:19 +02:00
<table id="numberprops">
2020-05-26 22:39:25 +02:00
<caption>
2023-08-29 19:41:21 +02:00
__MSG_count_number_options__
2020-05-26 22:39:25 +02:00
</caption>
<tr>
<td>
2023-08-29 19:41:21 +02:00
<label for="numberColor">__MSG_count_number_color__</label>
2020-04-05 14:39:19 +02:00
<input
type="color"
id="numberColor"
name="numberColor"
value=""
/>
</td>
</tr>
2020-05-26 22:39:25 +02:00
<tr>
<td>
2023-08-29 19:41:21 +02:00
<label for="numberSize">__MSG_count_number_size__</label>
2020-05-27 11:35:10 +02:00
<input
type="number"
2020-11-07 20:40:37 +01:00
id="numberSize"
2020-05-27 11:35:10 +02:00
name="numberSize"
value="0"
min="1"
max="999"
step="1"
size="3"
/>
2020-05-26 22:39:25 +02:00
</td>
</tr>
2020-12-11 20:57:30 +01:00
<tr>
<td>
<label for="numberAlignment"
2023-08-29 19:41:21 +02:00
>__MSG_count_number_alignment__</label
2020-12-11 20:57:30 +01:00
>
<select name="numberAlignment" id="numberAlignment">
2023-08-29 19:41:21 +02:00
<option value="0">__MSG_count_number_top_left__</option>
<option value="1">__MSG_count_number_top_center__</option>
<option value="2">__MSG_count_number_top_right__</option>
<option value="3">__MSG_count_number_middle_left__</option>
<option value="4">__MSG_count_number_middle_center__</option>
<option value="5">__MSG_count_number_middle_right__</option>
<option value="6">__MSG_count_number_bottom_left__</option>
<option value="7">__MSG_count_number_bottom_center__</option>
<option value="8">__MSG_count_number_bottom_right__</option>
2020-12-11 20:57:30 +01:00
</select>
</td>
</tr>
<tr>
<td>
2023-08-29 19:41:21 +02:00
<label>__MSG_count_number_margins__</label>
2020-12-11 20:57:30 +01:00
</td>
</tr>
<tr>
<td>
<input
type="number"
id="numberMarginLeft"
name="numberMarginLeft"
value="0"
min="0"
max="999"
step="1"
2020-12-15 22:46:02 +01:00
size="3"
2020-12-11 20:57:30 +01:00
/>
<input
type="number"
id="numberMarginTop"
name="numberMarginTop"
value="0"
min="0"
max="999"
step="1"
2020-12-15 22:46:02 +01:00
size="3"
2020-12-11 20:57:30 +01:00
/>
<input
type="number"
id="numberMarginRight"
name="numberMarginRight"
value="0"
min="0"
max="999"
step="1"
2020-12-15 22:46:02 +01:00
size="3"
2020-12-11 20:57:30 +01:00
/>
<input
type="number"
id="numberMarginBottom"
name="numberMarginBottom"
value="0"
min="0"
max="999"
step="1"
2020-12-15 22:46:02 +01:00
size="3"
2020-12-11 20:57:30 +01:00
/>
</td>
</tr>
</table>
2020-12-06 00:36:31 +01:00
2023-08-29 19:41:21 +02:00
<table id="newindicatorselect">
2020-12-06 00:36:31 +01:00
<caption>
2023-08-29 19:41:21 +02:00
__MSG_count_new_indicator__
2020-12-06 00:36:31 +01:00
</caption>
2023-08-29 19:41:21 +02:00
<tr id="newindicatorround">
2020-12-06 00:36:31 +01:00
<td>
2023-08-29 19:41:21 +02:00
<input type="radio" name="newIndicatorType" id="newIndicatorRound" value="0" />
<label for="newIndicatorRound">__MSG_count_new_indicator_round__</label>
2020-12-06 00:36:31 +01:00
</td>
</tr>
2023-08-29 19:41:21 +02:00
<tr id="newindicatorstar">
2020-12-06 00:36:31 +01:00
<td>
2023-08-29 19:41:21 +02:00
<input type="radio" name="newIndicatorType" id="newIndicatorStar" value="1" />
<label for="newIndicatorStar">__MSG_count_new_indicator_star__</label>
</td>
</tr>
<tr id="newshade">
<td>
<input type="radio" name="newIndicatorType" id="newShade" value="2" />
<label for="newShade">__MSG_count_new_shade_color__</label>
<input type="color" name="newShadeColor" id="newShadeColor" value="" />
2020-12-06 00:36:31 +01:00
</td>
</tr>
</table>
2023-08-27 21:01:48 +02:00
</form>
</div>
<div id="AppsContent" class="tabcontent">
<form name="appsform">
<h3>__MSG_apps__</h3>
2023-08-25 20:44:32 +02:00
<table id="startappselect">
<caption>
2023-08-31 13:05:06 +02:00
__MSG_apps_start_application__
</caption>
2023-08-25 18:18:20 +02:00
<tr id="startApp">
<td>
2023-08-31 13:05:06 +02:00
<label>__MSG_apps_start_app__</label>
</td>
<td>
<input
type="text"
2023-08-25 18:18:20 +02:00
id="startAppInput"
/>
</td>
</tr>
2023-08-25 18:18:20 +02:00
<tr id="startAppArgs">
<td>
2023-08-31 13:05:06 +02:00
<label>__MSG_apps_start_app_args__</label>
</td>
<td>
<input
type="text"
2023-08-25 18:18:20 +02:00
id="startAppArgsInput"
/>
</td>
</tr>
</table>
2023-08-25 20:44:32 +02:00
<table id="closeappselect">
<caption>
2023-08-31 13:05:06 +02:00
__MSG_apps_close_application__
</caption>
<tr id="closeApp">
<td>
2023-08-31 13:05:06 +02:00
<label>__MSG_apps_close_app__</label>
</td>
<td>
<input
type="text"
id="closeAppInput"
/>
</td>
</tr>
<tr id="closeAppArgs">
<td>
2023-08-31 13:05:06 +02:00
<label>__MSG_apps_close_app_args__</label>
</td>
<td>
<input
type="text"
id="closeAppArgsInput"
/>
</td>
</tr>
</table>
</form>
</div>
2020-01-09 21:03:06 +01:00
<div id="MailContent" class="tabcontent">
<form name="mailform">
2020-06-13 20:30:12 +02:00
<h3>__MSG_accounts__</h3>
2020-01-09 21:03:06 +01:00
2024-08-23 22:44:22 +02:00
<div id="accountsFolders">
<div id="accountsTreeHeader">
2024-08-31 16:03:36 +02:00
<p id="accountsTreeHeaderLeft">__MSG_accounts_folders__</p>
<p id="accountsTreeHeaderRight">__MSG_accounts_new__</p>
2024-08-23 22:44:22 +02:00
</div>
<ul id="accountsTree"></ul>
2024-08-17 14:40:45 +02:00
</div>
2024-08-23 22:44:22 +02:00
<div id="accountMenuDialog" style="display: none">
2024-08-25 20:37:44 +02:00
<table id="accountmenudialog1">
<caption>
<div style="display: flex; flex-direction: row">
<h4>__MSG_accounts_defaults__</h4>
<h4>&nbsp;:&nbsp;</h4>
<h4 id="accountMenuId">x@y</h4>
</div>
</caption>
<tr id="accountmenureplyto">
2024-08-25 20:37:44 +02:00
<td>
<label for="accountMenuReplyToInput" id="accountMenuReplyToInputLabel">
__MSG_accounts_defaults_replyto__
</label>
2024-08-25 20:37:44 +02:00
</td>
<td>
<input
type="text"
name="accountmenureplyto"
id="accountMenuReplyToInput"
2024-08-25 20:37:44 +02:00
value=""
placeholder="Name <email@example.com> [ ; Name <email@example.com> ]"
/>
</td>
</tr>
<tr id="accountmenuto">
<td>
<label for="accountMenuToInput" id="accountMenuToInputLabel">
__MSG_accounts_defaults_to__
</label>
</td>
<td>
<input
type="text"
name="accountmenuto"
id="accountMenuToInput"
value=""
placeholder="Name <email@example.com> [ ; Name <email@example.com> ]"
2024-08-25 20:37:44 +02:00
/>
</td>
</tr>
<tr id="accountmenucc">
<td>
<label for="accountMenuCcInput" id="accountMenuCcInputLabel">
__MSG_accounts_defaults_cc__
</label>
</td>
<td>
<input
type="text"
name="accountmenucc"
id="accountMenuCcInput"
value=""
placeholder="Name <email@example.com> [ ; Name <email@example.com> ]"
2024-08-25 20:37:44 +02:00
/>
</td>
</tr>
<tr id="accountmenubcc">
<td>
<label for="accountMenuBccInput" id="accountMenuBccInputLabel">
__MSG_accounts_defaults_bcc__
</label>
</td>
<td>
<input
type="text"
name="accountmenubcc"
id="accountMenuBccInput"
value=""
placeholder="Name <email@example.com> [ ; Name <email@example.com> ]"
2024-08-25 20:37:44 +02:00
/>
</td>
</tr>
<tr id="accountmenusubject">
2024-08-25 20:37:44 +02:00
<td>
<label>__MSG_accounts_defaults_subject__</label>
2024-08-25 20:37:44 +02:00
</td>
<td>
<input
type="text"
name="accountmenusubject"
id="accountMenuSubjectInput"
2024-08-25 20:37:44 +02:00
value=""
/>
</td>
</tr>
<tr id="accountmenubody">
<td>
<label>__MSG_accounts_defaults_body__</label>
</td>
<td>
<textarea
id="accountMenuBodyTextArea"
rows="8"
>
</textarea>
</td>
</tr>
2024-08-25 20:37:44 +02:00
</table>
<table id="accountmenudialog2">
<tr id="accountmenupgpkey">
<td>
<input
type="checkbox"
name="accountmenupgpkey"
id="accountMenuPgpKeyChk"
2024-08-25 20:37:44 +02:00
value=""
/>
<label for="accountMenuPgpKeyChk" id="accountMenuPgpKeyLabel">
2024-08-25 20:37:44 +02:00
__MSG_accounts_defaults_pgp_key__
</label>
</td>
<tr id="accountmenuvcard">
<td>
<input
type="checkbox"
name="accountmenuvcard"
id="accountMenuVCardChk"
2024-08-25 20:37:44 +02:00
value=""
/>
<label for="accountMenuVCardChk" id="accountMenuVCardLabel">
2024-08-25 20:37:44 +02:00
__MSG_accounts_defaults_vcard__
</label>
</td>
<tr id="accountmenustatnot">
<td>
<input
type="checkbox"
name="accountmenustatnot"
id="accountMenuStatNotChk"
2024-08-25 20:37:44 +02:00
value=""
/>
<label for="accountMenuStatNotChk" id="accountMenuStatNotLabel">
2024-08-25 20:37:44 +02:00
__MSG_accounts_defaults_stat_not__
</label>
</td>
<tr id="accountmenureturnreceipt">
<td>
<input
type="checkbox"
name="accountmenureturnreceipt"
id="accountMenuReturnReceiptChk"
2024-08-25 20:37:44 +02:00
value=""
/>
<label for="accountMenuReturnReceiptChk" id="accountMenuReturnReceiptLabel">
2024-08-25 20:37:44 +02:00
__MSG_accounts_defaults_return_receipt__
</label>
</td>
</table>
<div>
<button id="accountMenuBack">__MSG_accounts_defaults_back__</button>
<button id="accountMenuClear">__MSG_accounts_defaults_clear__</button>
<button id="accountMenuAccept">__MSG_accounts_defaults_accept__</button>
2024-08-25 20:37:44 +02:00
</div>
2024-08-23 22:44:22 +02:00
</div>
2020-04-01 23:33:08 +02:00
<br />
2020-01-24 22:20:30 +01:00
</form>
2020-04-01 23:33:08 +02:00
<script src="js/options_mailform.js"></script>
2020-01-09 21:03:06 +01:00
</div>
2020-01-24 22:20:30 +01:00
2023-12-04 23:12:03 +01:00
<div id="ShortcutsContent" class="tabcontent">
<form name="shortcutsform">
<h3>__MSG_shortcuts__</h3>
<div id="showhideshortcutinput">
<div>
<label for="showHideShortcutInput" id="showHideShortcutInputLabel">
__MSG_shortcuts_showhide_shortcut__
</label>
<input
type="text"
name="showhideshortcut"
id="showHideShortcutInput"
value=""
/>
2023-12-06 22:01:14 +01:00
<button type="button" name="showhideshortcutbutton">__MSG_shortcuts_clear_button__</button>
2023-12-04 23:12:03 +01:00
</div>
</div>
</form>
<script src="js/options_shortcutsform.js"></script>
</div>
2020-02-29 20:36:08 +01:00
<div id="DebugContent" class="tabcontent">
<form name="debugform">
2020-06-13 20:30:12 +02:00
<h3>__MSG_debug__</h3>
2021-09-04 22:16:18 +02:00
2020-02-29 20:36:08 +01:00
<br />
2021-09-05 22:02:47 +02:00
2020-02-29 20:36:08 +01:00
<div id="debugselect">
2020-06-13 20:30:12 +02:00
<div id="inputcheck">
<input
type="checkbox"
name="debug"
id="debugDisplay"
value="Debug"
2020-11-07 20:40:37 +01:00
/><label for="debugDisplay" id="debugDisplayLabel"
>__MSG_debug_display__</label
2020-06-13 20:30:12 +02:00
>
<br />
</div>
2020-02-29 20:36:08 +01:00
</div>
<br />
</form>
</div>
2020-01-09 23:46:07 +01:00
<br />
2021-09-04 22:16:18 +02:00
<table id="buttonselect">
<tr>
<form name="saveform">
<td>
<label>__MSG_save_preferences__</label>
</td>
<td>
<button type="submit" name="savebutton">__MSG_save_preferences_button__</button>
2021-09-04 22:16:18 +02:00
</td>
</form>
</tr>
<tr>
<td><br /></td>
</tr>
<tr>
<td>
<label>__MSG_reset_preferences__</label>
</td>
<td>
<button type="submit" name="resetbutton">
__MSG_reset_preferences_button__
</button>
</td>
2021-09-04 22:16:18 +02:00
</tr>
</table>
2020-01-05 23:28:42 +01:00
2020-01-09 21:03:06 +01:00
<script src="js/options_tabbutton.js"></script>
2020-01-08 23:36:19 +01:00
2020-01-09 21:03:06 +01:00
<script src="options.js"></script>
</body>
</html>