Added message maximum quoted text level for speed.

Read https://github.com/the-djmaze/snappymail/issues/902#issuecomment-1416777217
This commit is contained in:
the-djmaze 2023-02-04 16:39:50 +01:00
parent b0a4fb77be
commit fc5b26dfc2
44 changed files with 59 additions and 1 deletions

View file

@ -119,6 +119,8 @@ export const
debug = false, // Config()->Get('debug', 'enable', false);
detectHiddenImages = true, // !!SettingsGet('try_to_detect_hidden_images'),
bqLevel = parseInt(SettingsUserStore.maxBlockquotesLevel()),
result = {
hasExternals: false
},
@ -201,6 +203,10 @@ export const
nodeIterator.referenceNode.remove();
}
if (0 < bqLevel) {
tpl.content.querySelectorAll(new Array(1 + bqLevel).fill('blockquote').join(' ')).forEach(node => node.remove());
}
tpl.content.querySelectorAll('*').forEach(oElement => {
const name = oElement.tagName,
oStyle = oElement.style;

View file

@ -45,7 +45,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
['layout', 'messageReadDelay', 'messagesPerPage', 'checkMailInterval',
'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'requireTLS', 'pgpSign', 'pgpEncrypt',
'viewHTML', 'viewImages', 'viewImagesWhitelist', 'removeColors',
'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList', 'collapseBlockquotes',
'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList', 'collapseBlockquotes', 'maxBlockquotesLevel',
'useCheckboxesInList', 'listGrouped', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
].forEach(name => this[name] = SettingsUserStore[name]);
@ -100,6 +100,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
this.addSetting('MessagesPerPage');
this.addSetting('CheckMailInterval');
this.addSetting('Layout');
this.addSetting('MaxBlockquotesLevel');
this.addSettings(['ViewHTML', 'ViewImages', 'ViewImagesWhitelist', 'HideDeleted',
'ListInlineAttachments', 'simpleAttachmentsList', 'UseCheckboxesInList', 'listGrouped', 'ReplySameFolder',

View file

@ -20,6 +20,7 @@ export const SettingsUserStore = new class {
viewImagesWhitelist: '',
removeColors: 0,
collapseBlockquotes: 1,
maxBlockquotesLevel: 0,
listInlineAttachments: 0,
simpleAttachmentsList: 0,
useCheckboxesInList: 1,
@ -88,6 +89,7 @@ export const SettingsUserStore = new class {
self.viewImagesWhitelist(SettingsGet('ViewImagesWhitelist'));
self.removeColors(SettingsGet('RemoveColors'));
self.collapseBlockquotes(SettingsGet('CollapseBlockquotes'));
self.maxBlockquotesLevel(SettingsGet('MaxBlockquotesLevel'));
self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));

View file

@ -693,6 +693,7 @@ class Actions
'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false),
'ListInlineAttachments' => false,
'CollapseBlockquotes' => true,
'MaxBlockquotesLevel' => 0,
'simpleAttachmentsList' => false,
'listGrouped' => false,
'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25),
@ -804,6 +805,7 @@ class Actions
$aResult['RemoveColors'] = (bool)$oSettings->GetConf('RemoveColors', $aResult['RemoveColors']);
$aResult['ListInlineAttachments'] = (bool)$oSettings->GetConf('ListInlineAttachments', $aResult['ListInlineAttachments']);
$aResult['CollapseBlockquotes'] = (bool)$oSettings->GetConf('CollapseBlockquotes', $aResult['CollapseBlockquotes']);
$aResult['MaxBlockquotesLevel'] = (int)$oSettings->GetConf('MaxBlockquotesLevel', $aResult['MaxBlockquotesLevel']);
$aResult['simpleAttachmentsList'] = (bool)$oSettings->GetConf('simpleAttachmentsList', $aResult['simpleAttachmentsList']);
$aResult['listGrouped'] = (bool)$oSettings->GetConf('listGrouped', $aResult['listGrouped']);
$aResult['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']);

View file

@ -183,6 +183,7 @@ trait User
$this->setSettingsFromParams($oSettings, 'RemoveColors', 'bool');
$this->setSettingsFromParams($oSettings, 'ListInlineAttachments', 'bool');
$this->setSettingsFromParams($oSettings, 'CollapseBlockquotes', 'bool');
$this->setSettingsFromParams($oSettings, 'MaxBlockquotesLevel', 'int');
$this->setSettingsFromParams($oSettings, 'simpleAttachmentsList', 'bool');
$this->setSettingsFromParams($oSettings, 'listGrouped', 'bool');
$this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool');

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "إظهار نافذة منبثقة في حالة قدوم ايميل جديد",
"CHROME_NOTIFICATION_DESC_DENIED": "(تم إعتراضها من قبل المتصفح)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Покажи известие при ново съобщение",
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокирано от браузъра)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Zobrazovat upozornění na nové zprávy",
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prohlížečem)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Vis ny meddelelses notifikations popup",
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokeret af browseren)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Popups einblenden, wenn neue Nachrichten vorhanden sind",
"CHROME_NOTIFICATION_DESC_DENIED": "(Vom Browser blockiert.)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Inline-Anhänge in der Liste anzeigen",
"LIST_SIMPLE_ATTACHMENTS": "Vereinfachte Liste der Anhänge",
"LIST_MESSAGES_GROUPED": "Nachrichten bei Sortierung nach Datum oder Absender gruppieren",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Να εμφανίζονται τα νέα μηνύματα σε αναδυόμενες επισημάνσεις",
"CHROME_NOTIFICATION_DESC_DENIED": "(Αποκλείστηκε από το φυλλομετρητή)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Show new messages notification popups",
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Show new messages notification popups",
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Mostrar notificación de nuevos mensajes en Popup",
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado por el explorador)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Näita uute kirjade teavitust hüpikaknaga",
"CHROME_NOTIFICATION_DESC_DENIED": "(Veebilehitseja poolt blokeeritud)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Erakutsi mezu berrien jakinarazpen popup-ak",
"CHROME_NOTIFICATION_DESC_DENIED": "(Nabigatzaileak blokeatuta)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Erakutsi sareko eranskinak zerrendan",
"LIST_SIMPLE_ATTACHMENTS": "Eranskinen zerrenda arrunta",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "پنجره اعلان دریافت پیام جدید را نمایش بده",
"CHROME_NOTIFICATION_DESC_DENIED": "(مسدود شده توسط مرورگر)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Näytä uusien viestien ponnahdusikkuna",
"CHROME_NOTIFICATION_DESC_DENIED": "(Estetty selaimessa)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Afficher un pop-up de notification pour les nouveaux messages",
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqué par le navigateur)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Új üzenetek értesítő ablakainak megjelenítése",
"CHROME_NOTIFICATION_DESC_DENIED": "(a böngésző blokkolta)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Tampilkan jendela sembul notifikasi pesan",
"CHROME_NOTIFICATION_DESC_DENIED": "(diblokir oleh browser)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Sýna tilkynningarglugga fyrir ný skilaboð",
"CHROME_NOTIFICATION_DESC_DENIED": "(Lokað af vafra)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Mostra le notifiche in caso di nuovi messaggi",
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloccate dal browser)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "新しいメッセージを受信したらポップアップで知らせる",
"CHROME_NOTIFICATION_DESC_DENIED": "(ブラウザでブロックされています)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "새 메시지 알림 팝업 사용",
"CHROME_NOTIFICATION_DESC_DENIED": "(브라우저에 의해 차단됨)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Rodyti iššokančius pranešimus apie naujas žinutes",
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokuoja naršyklė)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Rādīt jaunus paziņojumus kā izlecošus logus",
"CHROME_NOTIFICATION_DESC_DENIED": "(Parlūkprogramma bloķēja)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Vis sprettopp-varsel om nye meldinger",
"CHROME_NOTIFICATION_DESC_DENIED": "(blokkert av nettleser)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Toon nieuwe berichten popup",
"CHROME_NOTIFICATION_DESC_DENIED": "(Geblokkeerd door de browser)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Toon inline bijlagen in lijst",
"LIST_SIMPLE_ATTACHMENTS": "Simpele bijlagen lijst",
"LIST_MESSAGES_GROUPED": "Toon berichten gegroepeerd (bij sorteren op Datum of Van)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Wyświetlaj powiadomienia o nowych wiadomościach",
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokowane przez przeglądarkę)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Mostrar notificação popup para novas mensagens",
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Apresentar notificações para novas mensagens",
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Apresentar notificações para novas mensagens",
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Afișați notificări desktop pentru mesaje noi",
"CHROME_NOTIFICATION_DESC_DENIED": "(browser-ul blocat)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Показывать уведомления о новых сообщениях в всплывающих подсказках",
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокировано браузером)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Zobrazovať upozornenia na nové správy",
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prehliadačom)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Prikaži obvestila ob novih sporočilih",
"CHROME_NOTIFICATION_DESC_DENIED": "(Zavrnil brskalnik)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Visa nya meddelande-aviseringar som popup-fönster",
"CHROME_NOTIFICATION_DESC_DENIED": "(Blockat av webbläsaren)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Yeni mesajları pop-up ile göster",
"CHROME_NOTIFICATION_DESC_DENIED": "(Tarayıcınız tarafından engellendi)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Показувати сповіщення про нові повідомлення у підказках",
"CHROME_NOTIFICATION_DESC_DENIED": "(Заблоковано браузером)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "Hiện thị thông báo nẩy lên nhanh khi có thư mới",
"CHROME_NOTIFICATION_DESC_DENIED": "(Đang bị chặn bởi trình duyệt web)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "显示新邮件弹窗",
"CHROME_NOTIFICATION_DESC_DENIED": "(被浏览器阻止)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件",
"LIST_SIMPLE_ATTACHMENTS": "简洁附件列表",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -414,6 +414,7 @@
"CHROME_NOTIFICATION_DESC": "顯示新郵件彈窗",
"CHROME_NOTIFICATION_DESC_DENIED": "(被瀏覽器阻止)",
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
"MAX_QUOTE_LEVEL": "Maximum visible quoted text levels",
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

@ -216,6 +216,14 @@
<em style="margin: 0 0 1em 2em;display: block;" data-i18n="SETTINGS_GENERAL/PREFER_HTML_INFO"></em>
</div>
</div>
<div class="control-group">
<label data-i18n="SETTINGS_GENERAL/MAX_QUOTE_LEVEL"></label>
<div>
<input type="number" min="0" step="1" class="span1" data-bind="textInput: maxBlockquotesLevel">
&nbsp;
<span data-bind="saveTrigger: maxBlockquotesLevelTrigger"></span>
</div>
</div>
<div class="control-group">
<label data-i18n="SETTINGS_GENERAL/EXTERNAL_IMAGES"></label>