mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Changes for #796
This commit is contained in:
parent
228fefc121
commit
ad45bcf2cf
46 changed files with 97 additions and 81 deletions
|
|
@ -44,7 +44,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
|
|||
['layout', 'messageReadDelay', 'messagesPerPage',
|
||||
'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt',
|
||||
'viewHTML', 'showImages', 'removeColors', 'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList',
|
||||
'useCheckboxesInList', 'listPerDay', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
|
||||
'useCheckboxesInList', 'listGrouped', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
|
||||
].forEach(name => this[name] = SettingsUserStore[name]);
|
||||
|
||||
this.allowLanguagesOnSettings = !!SettingsGet('AllowLanguagesOnSettings');
|
||||
|
|
@ -99,7 +99,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
|
|||
this.addSetting('Layout');
|
||||
|
||||
this.addSettings(['ViewHTML', 'ShowImages', 'HideDeleted', 'ListInlineAttachments', 'simpleAttachmentsList',
|
||||
'UseCheckboxesInList', 'listPerDay', 'ReplySameFolder',
|
||||
'UseCheckboxesInList', 'listGrouped', 'ReplySameFolder',
|
||||
'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck',
|
||||
'DesktopNotifications', 'SoundNotification']);
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ export const SettingsUserStore = new class {
|
|||
listInlineAttachments: 0,
|
||||
simpleAttachmentsList: 0,
|
||||
useCheckboxesInList: 1,
|
||||
listPerDay: 0,
|
||||
listGrouped: 0,
|
||||
allowDraftAutosave: 1,
|
||||
useThreads: 0,
|
||||
replySameFolder: 0,
|
||||
|
|
@ -85,7 +85,7 @@ export const SettingsUserStore = new class {
|
|||
self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
|
||||
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
|
||||
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
|
||||
self.listPerDay(SettingsGet('listPerDay'));
|
||||
self.listGrouped(SettingsGet('listGrouped'));
|
||||
self.allowDraftAutosave(SettingsGet('AllowDraftAutosave'));
|
||||
self.useThreads(SettingsGet('UseThreads'));
|
||||
self.replySameFolder(SettingsGet('ReplySameFolder'));
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ html.rl-no-preview-pane {
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
.day {
|
||||
.groupLabel {
|
||||
background:rgba(128,128,128,0.2);
|
||||
font-size: 12px;
|
||||
line-height: 2;
|
||||
|
|
|
|||
|
|
@ -146,40 +146,56 @@ export class MailMessageList extends AbstractViewRight {
|
|||
|
||||
mobileCheckedStateHide: () => ThemeStore.isMobile() ? !MessagelistUserStore.hasChecked() : 1,
|
||||
|
||||
listPerDay: () => {
|
||||
listGrouped: () => {
|
||||
let uid = MessagelistUserStore.threadUid(),
|
||||
sort = FolderUserStore.sortMode() || 'DATE';
|
||||
return SettingsUserStore.listPerDay() && 'DATE' == sort && !uid;
|
||||
return SettingsUserStore.listGrouped() && (sort.includes('DATE') || sort.includes('FROM')) && !uid;
|
||||
},
|
||||
|
||||
listByDay: () => {
|
||||
let list = [], current, today = Ymd(new Date()),
|
||||
rtf = Intl.RelativeTimeFormat
|
||||
? new Intl.RelativeTimeFormat(doc.documentElement.lang, { numeric: "auto" }) : 0;
|
||||
MessagelistUserStore.forEach(msg => {
|
||||
let date = (new Date(msg.dateTimeStampInUTC() * 1000)),
|
||||
ymd = Ymd(date);
|
||||
if (!current || ymd != current.ymd) {
|
||||
if (rtf && today == ymd) {
|
||||
date = rtf.format(0, 'day');
|
||||
} else if (rtf && today - 1 == ymd) {
|
||||
date = rtf.format(-1, 'day');
|
||||
// } else if (today - 7 < ymd) {
|
||||
// date = date.format({weekday: 'long'});
|
||||
// date = date.format({dateStyle: 'full'},0,LanguageStore.hourCycle());
|
||||
} else {
|
||||
// date = date.format({dateStyle: 'medium'},0,LanguageStore.hourCycle());
|
||||
date = date.format({dateStyle: 'full'},0,LanguageStore.hourCycle());
|
||||
groupedList: () => {
|
||||
let list = [], current, sort = FolderUserStore.sortMode() || 'DATE';
|
||||
if (sort.includes('DATE')) {
|
||||
let today = Ymd(new Date()),
|
||||
rtf = Intl.RelativeTimeFormat
|
||||
? new Intl.RelativeTimeFormat(doc.documentElement.lang, { numeric: "auto" }) : 0;
|
||||
MessagelistUserStore.forEach(msg => {
|
||||
let date = (new Date(msg.dateTimeStampInUTC() * 1000)),
|
||||
ymd = Ymd(date);
|
||||
if (!current || ymd != current.id) {
|
||||
if (rtf && today == ymd) {
|
||||
date = rtf.format(0, 'day');
|
||||
} else if (rtf && today - 1 == ymd) {
|
||||
date = rtf.format(-1, 'day');
|
||||
// } else if (today - 7 < ymd) {
|
||||
// date = date.format({weekday: 'long'});
|
||||
// date = date.format({dateStyle: 'full'},0,LanguageStore.hourCycle());
|
||||
} else {
|
||||
// date = date.format({dateStyle: 'medium'},0,LanguageStore.hourCycle());
|
||||
date = date.format({dateStyle: 'full'},0,LanguageStore.hourCycle());
|
||||
}
|
||||
current = {
|
||||
id: ymd,
|
||||
label: date,
|
||||
messages: []
|
||||
};
|
||||
list.push(current);
|
||||
}
|
||||
current = {
|
||||
ymd: ymd,
|
||||
day: date,
|
||||
messages: []
|
||||
};
|
||||
list.push(current);
|
||||
}
|
||||
current.messages.push(msg);
|
||||
});
|
||||
current.messages.push(msg);
|
||||
});
|
||||
} else if (sort.includes('FROM')) {
|
||||
MessagelistUserStore.forEach(msg => {
|
||||
let email = msg.from[0].email;
|
||||
if (!current || email != current.id) {
|
||||
current = {
|
||||
id: email,
|
||||
label: msg.from[0].toLine(),
|
||||
messages: []
|
||||
};
|
||||
list.push(current);
|
||||
}
|
||||
current.messages.push(msg);
|
||||
});
|
||||
}
|
||||
return list;
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -693,7 +693,7 @@ class Actions
|
|||
'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false),
|
||||
'ListInlineAttachments' => false,
|
||||
'simpleAttachmentsList' => false,
|
||||
'listPerDay' => false,
|
||||
'listGrouped' => false,
|
||||
'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25),
|
||||
'MessageReadDelay' => (int) $oConfig->Get('webmail', 'message_read_delay', 5),
|
||||
'MsgDefaultAction' => 1,
|
||||
|
|
@ -799,7 +799,7 @@ class Actions
|
|||
$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['listPerDay'] = (bool)$oSettings->GetConf('listPerDay', $aResult['listPerDay']);
|
||||
$aResult['listGrouped'] = (bool)$oSettings->GetConf('listGrouped', $aResult['listGrouped']);
|
||||
$aResult['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']);
|
||||
$aResult['MessagesPerPage'] = (int)$oSettings->GetConf('MessagesPerPage', $aResult['MessagesPerPage']);
|
||||
$aResult['MessageReadDelay'] = (int)$oSettings->GetConf('MessageReadDelay', $aResult['MessageReadDelay']);
|
||||
|
|
|
|||
|
|
@ -181,7 +181,7 @@ trait User
|
|||
$this->setSettingsFromParams($oSettings, 'RemoveColors', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'ListInlineAttachments', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'simpleAttachmentsList', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'listPerDay', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'listGrouped', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'DesktopNotifications', 'bool');
|
||||
$this->setSettingsFromParams($oSettings, 'SoundNotification', 'bool');
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(تم إعتراضها من قبل المتصفح)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "قم باضافة المستلمين تلقائيا الى دفتر العناوين",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокирано от браузъра)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Автоматично добавяне на получателите към адресната ви книга",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prohlížečem)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automaticky přidávat adresy příjemců do Adresáře",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokeret af browseren)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Tilføj automatisk modtager til adressebog",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Vom Browser blockiert.)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Inline-Anhänge in der Liste anzeigen",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Empfänger automatisch zu Ihrem Adressbuch hinzuzufügen",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Αποκλείστηκε από το φυλλομετρητή)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Αυτόματη προσθήκη επαφών στον κατάλογο διευθύνσεων",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado por el explorador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Agregar automáticamente destinatarios a la libreta de direcciones",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Veebilehitseja poolt blokeeritud)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Lisa saajad automaatselt aadressiraamatusse",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Nabigatzaileak blokeatuta)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Erakutsi sareko eranskinak zerrendan",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Eranskinen zerrenda arrunta",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatikoki gehitu hartzaileak helbide-liburura",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(مسدود شده توسط مرورگر)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "اطلاعات تماس گیرندگان را بصورت خودکار در آدرسبوک ذخیره کن",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Estetty selaimessa)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Lisää yhetystieto automaattisesti osoitekirjaan",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqué par le navigateur)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Ajouter automatiquement les destinataires à votre carnet d'adresses",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(a böngésző blokkolta)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Címzettek automatikus hozzáadása a címtárhoz",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(diblokir oleh browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Tambah penerima ke daftar alamat secara otomatis",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Lokað af vafra)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Bæta viðtakendum sjálfkrafa í nafnaskrá",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloccate dal browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Aggiungi automaticamente le persone che ti inviano mail alla rubrica",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(ブラウザでブロックされています)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "返信したアドレスをアドレス帳へ自動的に追加する",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(브라우저에 의해 차단됨)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "수신인을 주소록에 자동으로 추가",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokuoja naršyklė)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatiškai pridėti gavėjus į adresų knygą",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Parlūkprogramma bloķēja)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(blokkert av nettleser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Legg til mottakere i adresseboka automatisk",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Geblokkeerd door de browser)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Toon inline bijlagen in lijst",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simpele bijlagen lijst",
|
||||
"LIST_MESSAGES_PER_DAY": "Toon berichten per dag"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatisch ontvangers toevoegen aan uw adresboek",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokowane przez przeglądarkę)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automatycznie dodawaj odbiorców do książki adresowej",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adicionar automaticamente os destinatários na lista de endereços",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adicionar destinatários automaticamente à sua lista de endereços",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adicionar destinatários automaticamente à sua lista de endereços",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(browser-ul blocat)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Adaugă automat destinatarii la agenda de scrisori",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокировано браузером)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Автоматически добавлять получателей писем в адресную книгу",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prehliadačom)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Automaticky pridávať príjemcov správ do Adresára",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Zavrnil brskalnik)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Samodejno dodaj prejemnike v imenik",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Blockat av webbläsaren)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Lägg till mottagare automatiskt i din adressbok",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Tarayıcınız tarafından engellendi)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Otomatik olarak adres defterinize alıcıyı ekle",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Заблоковано браузером)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Автоматично додавати отримувачів у адресну книгу",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(Đang bị chặn bởi trình duyệt web)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "Tự động thêm người nhận thư vào sổ địa chỉ của bạn",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(被浏览器阻止)",
|
||||
"LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "简洁附件列表",
|
||||
"LIST_MESSAGES_PER_DAY": "按日显示消息列表"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "自动添加到您的地址簿",
|
||||
|
|
|
|||
|
|
@ -414,7 +414,7 @@
|
|||
"CHROME_NOTIFICATION_DESC_DENIED": "(被瀏覽器阻止)",
|
||||
"LIST_INLINE_ATTACHMENTS": "Show inline attachments in list",
|
||||
"LIST_SIMPLE_ATTACHMENTS": "Simple attachments list",
|
||||
"LIST_MESSAGES_PER_DAY": "List messages per day"
|
||||
"LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
|
||||
},
|
||||
"SETTINGS_CONTACTS": {
|
||||
"LABEL_CONTACTS_AUTOSAVE": "自動添加到你的位址簿",
|
||||
|
|
|
|||
|
|
@ -129,9 +129,9 @@
|
|||
<span data-i18n="GLOBAL/LOADING"></span>
|
||||
</div>
|
||||
|
||||
<!-- ko if: listPerDay -->
|
||||
<div class="messageListPlace" data-bind="dragmessages: 1, foreach: listByDay" draggable="true">
|
||||
<div class="day" data-bind="text: day"></div>
|
||||
<!-- ko if: listGrouped -->
|
||||
<div class="messageListPlace" data-bind="dragmessages: 1, foreach: groupedList" draggable="true">
|
||||
<div class="groupLabel" data-bind="text: label"></div>
|
||||
<!-- ko foreach: messages -->
|
||||
<div class="messageListItem" data-bind="css: lineAsCss()">
|
||||
<div class="messageCheckbox">
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
<!-- /ko -->
|
||||
</div>
|
||||
<!-- /ko -->
|
||||
<!-- ko ifnot: listPerDay -->
|
||||
<!-- ko ifnot: listGrouped -->
|
||||
<div class="messageListPlace" data-bind="dragmessages: 1, foreach: messageList" draggable="true">
|
||||
<div class="messageListItem" data-bind="css: lineAsCss()">
|
||||
<div class="messageCheckbox">
|
||||
|
|
|
|||
|
|
@ -63,8 +63,8 @@
|
|||
<div data-bind="component: {
|
||||
name: 'Checkbox',
|
||||
params: {
|
||||
label: 'SETTINGS_GENERAL/LIST_MESSAGES_PER_DAY',
|
||||
value: listPerDay
|
||||
label: 'SETTINGS_GENERAL/LIST_MESSAGES_GROUPED',
|
||||
value: listGrouped
|
||||
}
|
||||
}"></div>
|
||||
<div data-bind="visible: threadsAllowed, component: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue