mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-04 15:07:02 +03:00
149 lines
4.6 KiB
HTML
149 lines
4.6 KiB
HTML
<div class="b-settings-general g-ui-user-select-none">
|
|
<div class="form-horizontal">
|
|
<div class="legend" data-i18n="SETTINGS_GENERAL/LEGEND_GENERAL"></div>
|
|
<div class="control-group">
|
|
<label class="control-label" data-i18n="SETTINGS_GENERAL/LABEL_IDENTITY"></label>
|
|
<div class="controls">
|
|
<div style="display: inline-block; margin-top: 5px">
|
|
<b data-bind="click: editMainIdentity, text: identityMainDesc"
|
|
style="border-bottom: 1px dashed #555; cursor: pointer; padding: 2px 0px;"></b>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group" data-bind="visible: allowLanguagesOnSettings">
|
|
<label class="control-label" data-i18n="SETTINGS_GENERAL/LABEL_LANGUAGE"></label>
|
|
<div class="controls">
|
|
<span class="select" tabindex="0" data-bind="text: languageFullName, click: selectLanguage, onSpace: selectLanguage, onEnter: selectLanguage"></span>
|
|
<span data-bind="saveTrigger: languageTrigger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label" data-i18n="SETTINGS_GENERAL/LABEL_LAYOUT"></label>
|
|
<div class="controls">
|
|
<div data-bind="component: {
|
|
name: 'Select',
|
|
params: {
|
|
options: layoutTypes,
|
|
value: layout,
|
|
trigger: layoutTrigger,
|
|
optionsText: 'name',
|
|
optionsValue: 'id'
|
|
}
|
|
}"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label" data-i18n="SETTINGS_GENERAL/LABEL_EDITOR"></label>
|
|
<div class="controls">
|
|
<div data-bind="component: {
|
|
name: 'Select',
|
|
params: {
|
|
options: editorDefaultTypes,
|
|
value: editorDefaultType,
|
|
trigger: editorDefaultTypeTrigger,
|
|
optionsText: 'name',
|
|
optionsValue: 'id'
|
|
}
|
|
}"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label" data-i18n="SETTINGS_GENERAL/LABEL_MESSAGE_PER_PAGE"></label>
|
|
<div class="controls">
|
|
<div data-bind="component: {
|
|
name: 'Select',
|
|
params: {
|
|
options: messagesPerPageArray,
|
|
value: messagesPerPage,
|
|
trigger: mppTrigger,
|
|
size: 2,
|
|
width: 80
|
|
}
|
|
}"></div>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<label class="control-label" data-i18n="SETTINGS_GENERAL/LABEL_MARK_MESSAGE_READ_AFTER"></label>
|
|
<div class="controls">
|
|
<input type="number" min="0" step="1" class="span1" data-bind="textInput: messageReadDelay"/>
|
|
|
|
<span data-i18n="SETTINGS_GENERAL/SECONDS"></label>
|
|
<span data-bind="saveTrigger: messageReadDelayTrigger"></span>
|
|
</div>
|
|
</div>
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<div data-bind="component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_SHOW_IMAGES',
|
|
value: showImages
|
|
}
|
|
}"></div>
|
|
<div data-bind="component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_REMOVE_COLORS',
|
|
value: removeColors
|
|
}
|
|
}"></div>
|
|
<div data-bind="component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_USE_CHECKBOXES_IN_LIST',
|
|
value: useCheckboxesInList
|
|
}
|
|
}"></div>
|
|
<br />
|
|
<div data-bind="visible: threadsAllowed, component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_USE_THREADS',
|
|
value: useThreads
|
|
}
|
|
}"></div>
|
|
<div data-bind="component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_REPLY_SAME_FOLDER',
|
|
value: replySameFolder
|
|
}
|
|
}"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="legend" data-i18n="SETTINGS_GENERAL/LABEL_NOTIFICATIONS"></div>
|
|
<div class="control-group">
|
|
<div class="controls">
|
|
<div>
|
|
<div data-bind="component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC',
|
|
value: enableDesktopNotification,
|
|
disable: isDesktopNotificationDenied,
|
|
inline: true
|
|
}
|
|
}"></div>
|
|
|
|
<span data-bind="visible: isDesktopNotificationDenied" style="color: #999" data-i18n="SETTINGS_GENERAL/LABEL_CHROME_NOTIFICATION_DESC_DENIED"></span>
|
|
<span class="fontastic" data-bind="click: testSystemNotification" style="color:green;cursor:pointer">▶️</span>
|
|
</div>
|
|
<div>
|
|
<div data-bind="component: {
|
|
name: 'Checkbox',
|
|
params: {
|
|
label: 'SETTINGS_GENERAL/LABEL_SOUND_NOTIFICATION',
|
|
value: enableSoundNotification,
|
|
inline: true
|
|
}
|
|
}"></div>
|
|
|
|
<select data-bind="options: notificationSounds, value: notificationSound"></select>
|
|
|
|
<span class="fontastic" data-bind="click: testSoundNotification" style="color:green;cursor:pointer">▶️</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|