Make collapse quotes optional for #902

This commit is contained in:
the-djmaze 2023-02-03 14:40:56 +01:00
parent b859cd6aec
commit 426c92fe33
44 changed files with 53 additions and 2 deletions

View file

@ -22,6 +22,7 @@ const
return result; return result;
}, },
blockquoteSwitcher = () => { blockquoteSwitcher = () => {
SettingsUserStore.collapseBlockquotes() &&
// tpl.content.querySelectorAll('blockquote').forEach(node => { // tpl.content.querySelectorAll('blockquote').forEach(node => {
[...tpl.content.querySelectorAll('blockquote')].reverse().forEach(node => { [...tpl.content.querySelectorAll('blockquote')].reverse().forEach(node => {
let h = node.clientHeight || getRealHeight(node); let h = node.clientHeight || getRealHeight(node);

View file

@ -45,7 +45,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
['layout', 'messageReadDelay', 'messagesPerPage', 'checkMailInterval', ['layout', 'messageReadDelay', 'messagesPerPage', 'checkMailInterval',
'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'requireTLS', 'pgpSign', 'pgpEncrypt', 'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'requireTLS', 'pgpSign', 'pgpEncrypt',
'viewHTML', 'viewImages', 'viewImagesWhitelist', 'removeColors', 'viewHTML', 'viewImages', 'viewImagesWhitelist', 'removeColors',
'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList', 'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList', 'collapseBlockquotes',
'useCheckboxesInList', 'listGrouped', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck' 'useCheckboxesInList', 'listGrouped', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
].forEach(name => this[name] = SettingsUserStore[name]); ].forEach(name => this[name] = SettingsUserStore[name]);
@ -104,7 +104,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
this.addSettings(['ViewHTML', 'ViewImages', 'ViewImagesWhitelist', 'HideDeleted', this.addSettings(['ViewHTML', 'ViewImages', 'ViewImagesWhitelist', 'HideDeleted',
'ListInlineAttachments', 'simpleAttachmentsList', 'UseCheckboxesInList', 'listGrouped', 'ReplySameFolder', 'ListInlineAttachments', 'simpleAttachmentsList', 'UseCheckboxesInList', 'listGrouped', 'ReplySameFolder',
'requestReadReceipt', 'requestDsn', 'requireTLS', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck', 'requestReadReceipt', 'requestDsn', 'requireTLS', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck',
'DesktopNotifications', 'SoundNotification']); 'DesktopNotifications', 'SoundNotification', 'CollapseBlockquotes']);
const fReloadLanguageHelper = (saveSettingsStep) => () => { const fReloadLanguageHelper = (saveSettingsStep) => () => {
this.languageTrigger(saveSettingsStep); this.languageTrigger(saveSettingsStep);

View file

@ -19,6 +19,7 @@ export const SettingsUserStore = new class {
viewImages: 0, viewImages: 0,
viewImagesWhitelist: '', viewImagesWhitelist: '',
removeColors: 0, removeColors: 0,
collapseBlockquotes: 1,
listInlineAttachments: 0, listInlineAttachments: 0,
simpleAttachmentsList: 0, simpleAttachmentsList: 0,
useCheckboxesInList: 1, useCheckboxesInList: 1,
@ -86,6 +87,7 @@ export const SettingsUserStore = new class {
self.viewImages(SettingsGet('ViewImages')); self.viewImages(SettingsGet('ViewImages'));
self.viewImagesWhitelist(SettingsGet('ViewImagesWhitelist')); self.viewImagesWhitelist(SettingsGet('ViewImagesWhitelist'));
self.removeColors(SettingsGet('RemoveColors')); self.removeColors(SettingsGet('RemoveColors'));
self.collapseBlockquotes(SettingsGet('CollapseBlockquotes'));
self.listInlineAttachments(SettingsGet('ListInlineAttachments')); self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList')); self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList')); self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));

View file

@ -692,6 +692,7 @@ class Actions
'ViewImagesWhitelist' => '', 'ViewImagesWhitelist' => '',
'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false), 'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false),
'ListInlineAttachments' => false, 'ListInlineAttachments' => false,
'CollapseBlockquotes' => true,
'simpleAttachmentsList' => false, 'simpleAttachmentsList' => false,
'listGrouped' => false, 'listGrouped' => false,
'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25), 'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25),
@ -802,6 +803,7 @@ class Actions
$aResult['ViewImagesWhitelist'] = $oSettings->GetConf('ViewImagesWhitelist', ''); $aResult['ViewImagesWhitelist'] = $oSettings->GetConf('ViewImagesWhitelist', '');
$aResult['RemoveColors'] = (bool)$oSettings->GetConf('RemoveColors', $aResult['RemoveColors']); $aResult['RemoveColors'] = (bool)$oSettings->GetConf('RemoveColors', $aResult['RemoveColors']);
$aResult['ListInlineAttachments'] = (bool)$oSettings->GetConf('ListInlineAttachments', $aResult['ListInlineAttachments']); $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['simpleAttachmentsList'] = (bool)$oSettings->GetConf('simpleAttachmentsList', $aResult['simpleAttachmentsList']);
$aResult['listGrouped'] = (bool)$oSettings->GetConf('listGrouped', $aResult['listGrouped']); $aResult['listGrouped'] = (bool)$oSettings->GetConf('listGrouped', $aResult['listGrouped']);
$aResult['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']); $aResult['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']);

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -413,6 +413,7 @@
"SOUND_NOTIFICATION": "Sound notification", "SOUND_NOTIFICATION": "Sound notification",
"CHROME_NOTIFICATION_DESC": "Yeni mesajları pop-up ile göster", "CHROME_NOTIFICATION_DESC": "Yeni mesajları pop-up ile göster",
"CHROME_NOTIFICATION_DESC_DENIED": "(Tarayıcınız tarafından engellendi)", "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_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list", "LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)", "LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

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

View file

@ -413,6 +413,7 @@
"SOUND_NOTIFICATION": "Thông báo âm thanh", "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": "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)", "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_INLINE_ATTACHMENTS": "Show inline attachments in list",
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list", "LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)", "LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)",

View file

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

View file

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

View file

@ -178,6 +178,13 @@
</div> </div>
<div class="control-group"> <div class="control-group">
<div> <div>
<div data-bind="component: {
name: 'Checkbox',
params: {
label: 'SETTINGS_GENERAL/COLLAPSE_BLOCKQUOTES',
value: collapseBlockquotes
}
}"></div>
<div data-bind="component: { <div data-bind="component: {
name: 'Checkbox', name: 'Checkbox',
params: { params: {