mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
Make collapse quotes optional for #902
This commit is contained in:
parent
b859cd6aec
commit
426c92fe33
44 changed files with 53 additions and 2 deletions
|
|
@ -22,6 +22,7 @@ const
|
|||
return result;
|
||||
},
|
||||
blockquoteSwitcher = () => {
|
||||
SettingsUserStore.collapseBlockquotes() &&
|
||||
// tpl.content.querySelectorAll('blockquote').forEach(node => {
|
||||
[...tpl.content.querySelectorAll('blockquote')].reverse().forEach(node => {
|
||||
let h = node.clientHeight || getRealHeight(node);
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList', 'collapseBlockquotes',
|
||||
'useCheckboxesInList', 'listGrouped', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
|
||||
].forEach(name => this[name] = SettingsUserStore[name]);
|
||||
|
||||
|
|
@ -104,7 +104,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
|
|||
this.addSettings(['ViewHTML', 'ViewImages', 'ViewImagesWhitelist', 'HideDeleted',
|
||||
'ListInlineAttachments', 'simpleAttachmentsList', 'UseCheckboxesInList', 'listGrouped', 'ReplySameFolder',
|
||||
'requestReadReceipt', 'requestDsn', 'requireTLS', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck',
|
||||
'DesktopNotifications', 'SoundNotification']);
|
||||
'DesktopNotifications', 'SoundNotification', 'CollapseBlockquotes']);
|
||||
|
||||
const fReloadLanguageHelper = (saveSettingsStep) => () => {
|
||||
this.languageTrigger(saveSettingsStep);
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ export const SettingsUserStore = new class {
|
|||
viewImages: 0,
|
||||
viewImagesWhitelist: '',
|
||||
removeColors: 0,
|
||||
collapseBlockquotes: 1,
|
||||
listInlineAttachments: 0,
|
||||
simpleAttachmentsList: 0,
|
||||
useCheckboxesInList: 1,
|
||||
|
|
@ -86,6 +87,7 @@ export const SettingsUserStore = new class {
|
|||
self.viewImages(SettingsGet('ViewImages'));
|
||||
self.viewImagesWhitelist(SettingsGet('ViewImagesWhitelist'));
|
||||
self.removeColors(SettingsGet('RemoveColors'));
|
||||
self.collapseBlockquotes(SettingsGet('CollapseBlockquotes'));
|
||||
self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
|
||||
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
|
||||
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
|
||||
|
|
|
|||
|
|
@ -692,6 +692,7 @@ class Actions
|
|||
'ViewImagesWhitelist' => '',
|
||||
'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false),
|
||||
'ListInlineAttachments' => false,
|
||||
'CollapseBlockquotes' => true,
|
||||
'simpleAttachmentsList' => false,
|
||||
'listGrouped' => false,
|
||||
'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25),
|
||||
|
|
@ -802,6 +803,7 @@ class Actions
|
|||
$aResult['ViewImagesWhitelist'] = $oSettings->GetConf('ViewImagesWhitelist', '');
|
||||
$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['simpleAttachmentsList'] = (bool)$oSettings->GetConf('simpleAttachmentsList', $aResult['simpleAttachmentsList']);
|
||||
$aResult['listGrouped'] = (bool)$oSettings->GetConf('listGrouped', $aResult['listGrouped']);
|
||||
$aResult['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']);
|
||||
|
|
|
|||
|
|
@ -182,6 +182,7 @@ trait User
|
|||
$this->setSettingsFromParams($oSettings, 'ViewImagesWhitelist', 'string');
|
||||
$this->setSettingsFromParams($oSettings, 'RemoveColors', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'ListInlineAttachments', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'CollapseBlockquotes', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'simpleAttachmentsList', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'listGrouped', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool');
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "صوت التنبيهات",
|
||||
"CHROME_NOTIFICATION_DESC": "إظهار نافذة منبثقة في حالة قدوم ايميل جديد",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(تم إعتراضها من قبل المتصفح)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Звуково известяване",
|
||||
"CHROME_NOTIFICATION_DESC": "Покажи известие при ново съобщение",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокирано от браузъра)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Zvukové notifikace",
|
||||
"CHROME_NOTIFICATION_DESC": "Zobrazovat upozornění na nové zprávy",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prohlížečem)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Lyd notifikationer",
|
||||
"CHROME_NOTIFICATION_DESC": "Vis ny meddelelses notifikations popup",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokeret af browseren)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Benachrichtigungston",
|
||||
"CHROME_NOTIFICATION_DESC": "Popups einblenden, wenn neue Nachrichten vorhanden sind",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Vom Browser blockiert.)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Ηχητική επισήμανση",
|
||||
"CHROME_NOTIFICATION_DESC": "Να εμφανίζονται τα νέα μηνύματα σε αναδυόμενες επισημάνσεις",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Αποκλείστηκε από το φυλλομετρητή)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Show new messages notification popups",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Show new messages notification popups",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sonido de la notificación",
|
||||
"CHROME_NOTIFICATION_DESC": "Mostrar notificación de nuevos mensajes en Popup",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado por el explorador)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Teavitused heliga",
|
||||
"CHROME_NOTIFICATION_DESC": "Näita uute kirjade teavitust hüpikaknaga",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Veebilehitseja poolt blokeeritud)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Soinu-jakinarazpena",
|
||||
"CHROME_NOTIFICATION_DESC": "Erakutsi mezu berrien jakinarazpen popup-ak",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Nabigatzaileak blokeatuta)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "آگاهسازی با صدا",
|
||||
"CHROME_NOTIFICATION_DESC": "پنجره اعلان دریافت پیام جدید را نمایش بده",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(مسدود شده توسط مرورگر)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Äänimerkit",
|
||||
"CHROME_NOTIFICATION_DESC": "Näytä uusien viestien ponnahdusikkuna",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Estetty selaimessa)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Son de notification",
|
||||
"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",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Hangos értesítés",
|
||||
"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",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Notifikasi suara",
|
||||
"CHROME_NOTIFICATION_DESC": "Tampilkan jendela sembul notifikasi pesan",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(diblokir oleh browser)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Tilkynningarhljóð",
|
||||
"CHROME_NOTIFICATION_DESC": "Sýna tilkynningarglugga fyrir ný skilaboð",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Lokað af vafra)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Notifica sonora",
|
||||
"CHROME_NOTIFICATION_DESC": "Mostra le notifiche in caso di nuovi messaggi",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloccate dal browser)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "サウンド通知",
|
||||
"CHROME_NOTIFICATION_DESC": "新しいメッセージを受信したらポップアップで知らせる",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(ブラウザでブロックされています)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "소리 알림",
|
||||
"CHROME_NOTIFICATION_DESC": "새 메시지 알림 팝업 사용",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(브라우저에 의해 차단됨)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Garsinis pranešimas",
|
||||
"CHROME_NOTIFICATION_DESC": "Rodyti iššokančius pranešimus apie naujas žinutes",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokuoja naršyklė)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"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",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Lydvarsel",
|
||||
"CHROME_NOTIFICATION_DESC": "Vis sprettopp-varsel om nye meldinger",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(blokkert av nettleser)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Notificatie geluid",
|
||||
"CHROME_NOTIFICATION_DESC": "Toon nieuwe berichten popup",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Geblokkeerd door de browser)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Powiadomienia dźwiękowe",
|
||||
"CHROME_NOTIFICATION_DESC": "Wyświetlaj powiadomienia o nowych wiadomościach",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokowane przez przeglądarkę)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Notificação sonora",
|
||||
"CHROME_NOTIFICATION_DESC": "Mostrar notificação popup para novas mensagens",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Notificações sonoras",
|
||||
"CHROME_NOTIFICATION_DESC": "Apresentar notificações para novas mensagens",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Notificações sonoras",
|
||||
"CHROME_NOTIFICATION_DESC": "Apresentar notificações para novas mensagens",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Afișați notificări desktop pentru mesaje noi",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(browser-ul blocat)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Звуковые уведомления",
|
||||
"CHROME_NOTIFICATION_DESC": "Показывать уведомления о новых сообщениях в всплывающих подсказках",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокировано браузером)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Zobrazovať upozornenia na nové správy",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prehliadačom)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Zvočno obvestilo",
|
||||
"CHROME_NOTIFICATION_DESC": "Prikaži obvestila ob novih sporočilih",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zavrnil brskalnik)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Ljudnotifikation",
|
||||
"CHROME_NOTIFICATION_DESC": "Visa nya meddelande-aviseringar som popup-fönster",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blockat av webbläsaren)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"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",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Звукове сповіщення",
|
||||
"CHROME_NOTIFICATION_DESC": "Показувати сповіщення про нові повідомлення у підказках",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Заблоковано браузером)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Thông báo âm thanh",
|
||||
"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",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "提示音",
|
||||
"CHROME_NOTIFICATION_DESC": "显示新邮件弹窗",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(被浏览器阻止)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "简洁附件列表",
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,7 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "顯示新郵件彈窗",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(被瀏覽器阻止)",
|
||||
"COLLAPSE_BLOCKQUOTES": "Collapse quoted text",
|
||||
"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)",
|
||||
|
|
|
|||
|
|
@ -178,6 +178,13 @@
|
|||
</div>
|
||||
<div class="control-group">
|
||||
<div>
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
label: 'SETTINGS_GENERAL/COLLAPSE_BLOCKQUOTES',
|
||||
value: collapseBlockquotes
|
||||
}
|
||||
}"></div>
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue