mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-08 14:14:26 +08:00
Activate "Simple attachments list" for #672
This commit is contained in:
parent
58e9ebc37b
commit
b47035ef43
44 changed files with 94 additions and 44 deletions
|
@ -42,7 +42,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
|
|||
|
||||
['layout', 'messageReadDelay', 'messagesPerPage',
|
||||
'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt',
|
||||
'viewHTML', 'showImages', 'removeColors', 'hideDeleted', 'listInlineAttachments',
|
||||
'viewHTML', 'showImages', 'removeColors', 'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList',
|
||||
'useCheckboxesInList', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
|
||||
].forEach(name => this[name] = SettingsUserStore[name]);
|
||||
|
||||
|
@ -97,7 +97,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
|
|||
this.addSetting('MessagesPerPage');
|
||||
this.addSetting('Layout');
|
||||
|
||||
this.addSettings(['ViewHTML', 'ShowImages', 'HideDeleted', 'ListInlineAttachments',
|
||||
this.addSettings(['ViewHTML', 'ShowImages', 'HideDeleted', 'ListInlineAttachments', 'simpleAttachmentsList',
|
||||
'UseCheckboxesInList', 'ReplySameFolder',
|
||||
'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck',
|
||||
'DesktopNotifications', 'SoundNotification']);
|
||||
|
|
|
@ -19,6 +19,7 @@ export const SettingsUserStore = new class {
|
|||
showImages: 0,
|
||||
removeColors: 0,
|
||||
listInlineAttachments: 0,
|
||||
simpleAttachmentsList: 0,
|
||||
useCheckboxesInList: 1,
|
||||
allowDraftAutosave: 1,
|
||||
useThreads: 0,
|
||||
|
@ -80,6 +81,7 @@ export const SettingsUserStore = new class {
|
|||
self.showImages(SettingsGet('ShowImages'));
|
||||
self.removeColors(SettingsGet('RemoveColors'));
|
||||
self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
|
||||
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
|
||||
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
|
||||
self.allowDraftAutosave(SettingsGet('AllowDraftAutosave'));
|
||||
self.useThreads(SettingsGet('UseThreads'));
|
||||
|
|
|
@ -92,13 +92,13 @@ export class MailMessageView extends AbstractViewRight {
|
|||
}, this.messageVisibility);
|
||||
|
||||
this.msgDefaultAction = SettingsUserStore.msgDefaultAction;
|
||||
this.simpleAttachmentsList = SettingsUserStore.simpleAttachmentsList;
|
||||
|
||||
addObservablesTo(this, {
|
||||
showAttachmentControls: !!Local.get(ClientSideKeyNameMessageAttachmentControls),
|
||||
downloadAsZipLoading: false,
|
||||
showFullInfo: '1' === Local.get(ClientSideKeyNameMessageHeaderFullInfo),
|
||||
moreDropdownTrigger: false,
|
||||
attachmentListSimple: false,
|
||||
|
||||
// viewer
|
||||
viewFromShort: '',
|
||||
|
|
|
@ -695,6 +695,7 @@ class Actions
|
|||
'ShowImages' => (bool) $oConfig->Get('defaults', 'show_images', false),
|
||||
'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false),
|
||||
'ListInlineAttachments' => false,
|
||||
'simpleAttachmentsList' => false,
|
||||
'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25),
|
||||
'MessageReadDelay' => (int) $oConfig->Get('webmail', 'message_read_delay', 5),
|
||||
'MsgDefaultAction' => 1,
|
||||
|
@ -794,6 +795,7 @@ class Actions
|
|||
$aResult['ShowImages'] = (bool)$oSettings->GetConf('ShowImages', $aResult['ShowImages']);
|
||||
$aResult['RemoveColors'] = (bool)$oSettings->GetConf('RemoveColors', $aResult['RemoveColors']);
|
||||
$aResult['ListInlineAttachments'] = (bool)$oSettings->GetConf('ListInlineAttachments', $aResult['ListInlineAttachments']);
|
||||
$aResult['simpleAttachmentsList'] = (bool)$oSettings->GetConf('simpleAttachmentsList', $aResult['simpleAttachmentsList']);
|
||||
$aResult['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']);
|
||||
$aResult['MessagesPerPage'] = (int)$oSettings->GetConf('MessagesPerPage', $aResult['MessagesPerPage']);
|
||||
$aResult['MessageReadDelay'] = (int)$oSettings->GetConf('MessageReadDelay', $aResult['MessageReadDelay']);
|
||||
|
|
|
@ -340,6 +340,7 @@ trait User
|
|||
$this->setSettingsFromParams($oSettings, 'ShowImages', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'RemoveColors', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'ListInlineAttachments', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'simpleAttachmentsList', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'DesktopNotifications', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'SoundNotification', 'bool');
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "صوت التنبيهات",
|
||||
"CHROME_NOTIFICATION_DESC": "إظهار نافذة منبثقة في حالة قدوم ايميل جديد",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(تم إعتراضها من قبل المتصفح)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "قم باضافة المستلمين تلقائيا الى دفتر العناوين",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Звуково известяване",
|
||||
"CHROME_NOTIFICATION_DESC": "Покажи известие при ново съобщение",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокирано от браузъра)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Автоматично добавяне на получателите към адресната ви книга",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Zvukové notifikace",
|
||||
"CHROME_NOTIFICATION_DESC": "Zobrazovat upozornění na nové zprávy",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prohlížečem)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automaticky přidávat adresy příjemců do Adresáře",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Lyd notifikationer",
|
||||
"CHROME_NOTIFICATION_DESC": "Vis ny meddelelses notifikations popup",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokeret af browseren)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Tilføj automatisk modtager til adressebog",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Benachrichtigungston",
|
||||
"CHROME_NOTIFICATION_DESC": "Popups einblenden, wenn neue Nachrichten vorhanden sind",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Vom Browser blockiert.)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Inline-Anhänge in der Liste anzeigen"
|
||||
"LIST_INLINE_ATTACHMENTS": "Inline-Anhänge in der Liste anzeigen",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Empfänger automatisch zu Ihrem Adressbuch hinzuzufügen",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Ηχητική επισήμανση",
|
||||
"CHROME_NOTIFICATION_DESC": "Να εμφανίζονται τα νέα μηνύματα σε αναδυόμενες επισημάνσεις",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Αποκλείστηκε από το φυλλομετρητή)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Αυτόματη προσθήκη επαφών στον κατάλογο διευθύνσεων",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Show new messages notification popups",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Show new messages notification popups",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"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)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Agregar automáticamente destinatarios a la libreta de direcciones",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Teavitused heliga",
|
||||
"CHROME_NOTIFICATION_DESC": "Näita uute kirjade teavitust hüpikaknaga",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Veebilehitseja poolt blokeeritud)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Lisa saajad automaatselt aadressiraamatusse",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "آگاهسازی با صدا",
|
||||
"CHROME_NOTIFICATION_DESC": "پنجره اعلان دریافت پیام جدید را نمایش بده",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(مسدود شده توسط مرورگر)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "اطلاعات تماس گیرندگان را بصورت خودکار در آدرسبوک ذخیره کن",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Äänimerkit",
|
||||
"CHROME_NOTIFICATION_DESC": "Näytä uusien viestien ponnahdusikkuna",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Estetty selaimessa)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Lisää yhetystieto automaattisesti osoitekirjaan",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"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)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Ajouter automatiquement les destinataires à votre carnet d'adresses",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"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)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Címzettek automatikus hozzáadása a címtárhoz",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Notifikasi suara",
|
||||
"CHROME_NOTIFICATION_DESC": "Tampilkan jendela sembul notifikasi pesan",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(diblokir oleh browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Tambah penerima ke daftar alamat secara otomatis",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Tilkynningarhljóð",
|
||||
"CHROME_NOTIFICATION_DESC": "Sýna tilkynningarglugga fyrir ný skilaboð",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Lokað af vafra)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Bæta viðtakendum sjálfkrafa í nafnaskrá",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Notifica sonora",
|
||||
"CHROME_NOTIFICATION_DESC": "Mostra le notifiche in caso di nuovi messaggi",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloccate dal browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Aggiungi automaticamente le persone che ti inviano mail alla rubrica",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "サウンド通知",
|
||||
"CHROME_NOTIFICATION_DESC": "新しいメッセージを受信したらポップアップで知らせる",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(ブラウザでブロックされています)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "返信したアドレスをアドレス帳へ自動的に追加する",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "소리 알림",
|
||||
"CHROME_NOTIFICATION_DESC": "새 메시지 알림 팝업 사용",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(브라우저에 의해 차단됨)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "수신인을 주소록에 자동으로 추가",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Garsinis pranešimas",
|
||||
"CHROME_NOTIFICATION_DESC": "Rodyti iššokančius pranešimus apie naujas žinutes",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokuoja naršyklė)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatiškai pridėti gavėjus į adresų knygą",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"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)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Lydvarsel",
|
||||
"CHROME_NOTIFICATION_DESC": "Vis sprettopp-varsel om nye meldinger",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(blokkert av nettleser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Legg til mottakere i adresseboka automatisk",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Notificatie geluid",
|
||||
"CHROME_NOTIFICATION_DESC": "Toon nieuwe berichten popup",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Geblokkeerd door de browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Toon inline bijlagen in lijst"
|
||||
"LIST_INLINE_ATTACHMENTS": "Toon inline bijlagen in lijst",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatisch ontvangers toevoegen aan uw adresboek",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Powiadomienia dźwiękowe",
|
||||
"CHROME_NOTIFICATION_DESC": "Wyświetlaj powiadomienia o nowych wiadomościach",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokowane przez przeglądarkę)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatycznie dodawaj odbiorców do książki adresowej",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Notificação sonora",
|
||||
"CHROME_NOTIFICATION_DESC": "Mostrar notificação popup para novas mensagens",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adicionar automaticamente os destinatários na lista de endereços",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Notificações sonoras",
|
||||
"CHROME_NOTIFICATION_DESC": "Apresentar notificações para novas mensagens",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adicionar destinatários automaticamente à sua lista de endereços",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Notificações sonoras",
|
||||
"CHROME_NOTIFICATION_DESC": "Apresentar notificações para novas mensagens",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adicionar destinatários automaticamente à sua lista de endereços",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Afișați notificări desktop pentru mesaje noi",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(browser-ul blocat)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adaugă automat destinatarii la agenda de scrisori",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Звуковые уведомления",
|
||||
"CHROME_NOTIFICATION_DESC": "Показывать уведомления о новых сообщениях в всплывающих подсказках",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокировано браузером)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Автоматически добавлять получателей писем в адресную книгу",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "Zobrazovať upozornenia na nové správy",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prehliadačom)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automaticky pridávať príjemcov správ do Adresára",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Zvočno obvestilo",
|
||||
"CHROME_NOTIFICATION_DESC": "Prikaži obvestila ob novih sporočilih",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zavrnil brskalnik)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Samodejno dodaj prejemnike v imenik",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Ljudnotifikation",
|
||||
"CHROME_NOTIFICATION_DESC": "Visa nya meddelande-aviseringar som popup-fönster",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blockat av webbläsaren)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Lägg till mottagare automatiskt i din adressbok",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"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)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Otomatik olarak adres defterinize alıcıyı ekle",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Звукове сповіщення",
|
||||
"CHROME_NOTIFICATION_DESC": "Показувати сповіщення про нові повідомлення у підказках",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(Заблоковано браузером)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Автоматично додавати отримувачів у адресну книгу",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"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)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Tự động thêm người nhận thư vào sổ địa chỉ của bạn",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "提示音",
|
||||
"CHROME_NOTIFICATION_DESC": "显示新邮件弹窗",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(被浏览器阻止)",
|
||||
"LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件"
|
||||
"LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "自动添加到您的地址簿",
|
||||
|
|
|
@ -412,7 +412,8 @@
|
|||
"SOUND_NOTIFICATION": "Sound notification",
|
||||
"CHROME_NOTIFICATION_DESC": "顯示新郵件彈窗",
|
||||
"CHROME_NOTIFICATION_DESC_DENIED": "(被瀏覽器阻止)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list"
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "自動添加到你的位址簿",
|
||||
|
|
|
@ -227,12 +227,10 @@
|
|||
|
||||
<div data-bind="hidden: messageLoadingThrottle">
|
||||
<div class="bodySubHeader">
|
||||
<div class="showImages" data-bind="visible: message().hasImages(), click: showImages"
|
||||
data-icon="🖼" data-i18n="MESSAGE/BUTTON_SHOW_IMAGES"></div>
|
||||
<div class="readReceipt" data-bind="visible: !isDraftOrSentFolder() && message().readReceipt() && !message().isReadReceipt(), click: readReceipt"
|
||||
data-icon="✉" data-i18n="MESSAGE/BUTTON_NOTIFY_READ_RECEIPT"></div>
|
||||
<div class="attachmentsPlace" data-bind="visible: message().hasAttachments(), css: {'selection-mode' : showAttachmentControls}">
|
||||
<!-- ko ifnot: attachmentListSimple -->
|
||||
<!-- ko ifnot: simpleAttachmentsList -->
|
||||
<ul class="attachmentList" data-bind="foreach: message().listAttachments()">
|
||||
<li class="attachmentItem" draggable="true"
|
||||
data-bind="event: { 'dragstart': eventDragStart }, attr: { 'title': fileName }, css: {'checked': checked}">
|
||||
|
@ -260,7 +258,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
<!-- /ko -->
|
||||
<!-- ko if: attachmentListSimple -->
|
||||
<!-- ko if: simpleAttachmentsList -->
|
||||
<ul class="attachmentListSimple" data-bind="foreach: message().listAttachments()">
|
||||
<li class="attachmentItem" data-bind="attr: { 'title': fileName }, css: {'checked': checked}">
|
||||
<span class="attachmentName" data-bind="text: fileName"></span>
|
||||
|
@ -284,6 +282,9 @@
|
|||
data-i18n="MESSAGE/LINK_DOWNLOAD_AS_ZIP"></span>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="showImages" data-bind="visible: message().hasImages(), click: showImages"
|
||||
data-icon="🖼" data-i18n="MESSAGE/BUTTON_SHOW_IMAGES"></div>
|
||||
</div>
|
||||
|
||||
<div class="openpgp-control encrypted" data-bind="visible: message().pgpEncrypted(), css: {'success': message().pgpDecrypted()}">
|
||||
|
|
|
@ -165,6 +165,13 @@
|
|||
value: listInlineAttachments
|
||||
}
|
||||
}"></div>
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
label: 'SETTINGS_GENERAL/LIST_SIMPLE_ATTACHMENTS',
|
||||
value: simpleAttachmentsList
|
||||
}
|
||||
}"></div>
|
||||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
|
|
Loading…
Add table
Reference in a new issue