Changes for #796

This commit is contained in:
the-djmaze 2022-12-27 10:48:56 +01:00
parent 228fefc121
commit ad45bcf2cf
46 changed files with 97 additions and 81 deletions

View file

@ -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']);

View file

@ -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'));

View file

@ -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;

View file

@ -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;
},

View file

@ -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']);

View file

@ -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');

View file

@ -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": "قم باضافة المستلمين تلقائيا الى دفتر العناوين",

View file

@ -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": "Автоматично добавяне на получателите към адресната ви книга",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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": "Αυτόματη προσθήκη επαφών στον κατάλογο διευθύνσεων",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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": "اطلاعات تماس گیرندگان را بصورت خودکار در آدرس‌بوک ذخیره کن",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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á",

View file

@ -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",

View file

@ -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": "返信したアドレスをアドレス帳へ自動的に追加する",

View file

@ -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": "수신인을 주소록에 자동으로 추가",

View file

@ -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ą",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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": "Автоматически добавлять получателей писем в адресную книгу",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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",

View file

@ -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": "Автоматично додавати отримувачів у адресну книгу",

View file

@ -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",

View file

@ -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": "自动添加到您的地址簿",

View file

@ -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": "自動添加到你的位址簿",

View file

@ -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">

View file

@ -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: {