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', ['layout', 'messageReadDelay', 'messagesPerPage',
'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt', 'editorDefaultType', 'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt',
'viewHTML', 'showImages', 'removeColors', 'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList', 'viewHTML', 'showImages', 'removeColors', 'hideDeleted', 'listInlineAttachments', 'simpleAttachmentsList',
'useCheckboxesInList', 'listPerDay', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck' 'useCheckboxesInList', 'listGrouped', 'useThreads', 'replySameFolder', 'msgDefaultAction', 'allowSpellcheck'
].forEach(name => this[name] = SettingsUserStore[name]); ].forEach(name => this[name] = SettingsUserStore[name]);
this.allowLanguagesOnSettings = !!SettingsGet('AllowLanguagesOnSettings'); this.allowLanguagesOnSettings = !!SettingsGet('AllowLanguagesOnSettings');
@ -99,7 +99,7 @@ export class UserSettingsGeneral extends AbstractViewSettings {
this.addSetting('Layout'); this.addSetting('Layout');
this.addSettings(['ViewHTML', 'ShowImages', 'HideDeleted', 'ListInlineAttachments', 'simpleAttachmentsList', this.addSettings(['ViewHTML', 'ShowImages', 'HideDeleted', 'ListInlineAttachments', 'simpleAttachmentsList',
'UseCheckboxesInList', 'listPerDay', 'ReplySameFolder', 'UseCheckboxesInList', 'listGrouped', 'ReplySameFolder',
'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck', 'requestReadReceipt', 'requestDsn', 'pgpSign', 'pgpEncrypt', 'allowSpellcheck',
'DesktopNotifications', 'SoundNotification']); 'DesktopNotifications', 'SoundNotification']);

View file

@ -21,7 +21,7 @@ export const SettingsUserStore = new class {
listInlineAttachments: 0, listInlineAttachments: 0,
simpleAttachmentsList: 0, simpleAttachmentsList: 0,
useCheckboxesInList: 1, useCheckboxesInList: 1,
listPerDay: 0, listGrouped: 0,
allowDraftAutosave: 1, allowDraftAutosave: 1,
useThreads: 0, useThreads: 0,
replySameFolder: 0, replySameFolder: 0,
@ -85,7 +85,7 @@ export const SettingsUserStore = new class {
self.listInlineAttachments(SettingsGet('ListInlineAttachments')); self.listInlineAttachments(SettingsGet('ListInlineAttachments'));
self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList')); self.simpleAttachmentsList(SettingsGet('simpleAttachmentsList'));
self.useCheckboxesInList(SettingsGet('UseCheckboxesInList')); self.useCheckboxesInList(SettingsGet('UseCheckboxesInList'));
self.listPerDay(SettingsGet('listPerDay')); self.listGrouped(SettingsGet('listGrouped'));
self.allowDraftAutosave(SettingsGet('AllowDraftAutosave')); self.allowDraftAutosave(SettingsGet('AllowDraftAutosave'));
self.useThreads(SettingsGet('UseThreads')); self.useThreads(SettingsGet('UseThreads'));
self.replySameFolder(SettingsGet('ReplySameFolder')); self.replySameFolder(SettingsGet('ReplySameFolder'));

View file

@ -29,7 +29,7 @@ html.rl-no-preview-pane {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.day { .groupLabel {
background:rgba(128,128,128,0.2); background:rgba(128,128,128,0.2);
font-size: 12px; font-size: 12px;
line-height: 2; line-height: 2;

View file

@ -146,40 +146,56 @@ export class MailMessageList extends AbstractViewRight {
mobileCheckedStateHide: () => ThemeStore.isMobile() ? !MessagelistUserStore.hasChecked() : 1, mobileCheckedStateHide: () => ThemeStore.isMobile() ? !MessagelistUserStore.hasChecked() : 1,
listPerDay: () => { listGrouped: () => {
let uid = MessagelistUserStore.threadUid(), let uid = MessagelistUserStore.threadUid(),
sort = FolderUserStore.sortMode() || 'DATE'; sort = FolderUserStore.sortMode() || 'DATE';
return SettingsUserStore.listPerDay() && 'DATE' == sort && !uid; return SettingsUserStore.listGrouped() && (sort.includes('DATE') || sort.includes('FROM')) && !uid;
}, },
listByDay: () => { groupedList: () => {
let list = [], current, today = Ymd(new Date()), let list = [], current, sort = FolderUserStore.sortMode() || 'DATE';
rtf = Intl.RelativeTimeFormat if (sort.includes('DATE')) {
? new Intl.RelativeTimeFormat(doc.documentElement.lang, { numeric: "auto" }) : 0; let today = Ymd(new Date()),
MessagelistUserStore.forEach(msg => { rtf = Intl.RelativeTimeFormat
let date = (new Date(msg.dateTimeStampInUTC() * 1000)), ? new Intl.RelativeTimeFormat(doc.documentElement.lang, { numeric: "auto" }) : 0;
ymd = Ymd(date); MessagelistUserStore.forEach(msg => {
if (!current || ymd != current.ymd) { let date = (new Date(msg.dateTimeStampInUTC() * 1000)),
if (rtf && today == ymd) { ymd = Ymd(date);
date = rtf.format(0, 'day'); if (!current || ymd != current.id) {
} else if (rtf && today - 1 == ymd) { if (rtf && today == ymd) {
date = rtf.format(-1, 'day'); date = rtf.format(0, 'day');
// } else if (today - 7 < ymd) { } else if (rtf && today - 1 == ymd) {
// date = date.format({weekday: 'long'}); date = rtf.format(-1, 'day');
// date = date.format({dateStyle: 'full'},0,LanguageStore.hourCycle()); // } else if (today - 7 < ymd) {
} else { // date = date.format({weekday: 'long'});
// date = date.format({dateStyle: 'medium'},0,LanguageStore.hourCycle()); // date = date.format({dateStyle: 'full'},0,LanguageStore.hourCycle());
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 = { current.messages.push(msg);
ymd: ymd, });
day: date, } else if (sort.includes('FROM')) {
messages: [] MessagelistUserStore.forEach(msg => {
}; let email = msg.from[0].email;
list.push(current); if (!current || email != current.id) {
} current = {
current.messages.push(msg); id: email,
}); label: msg.from[0].toLine(),
messages: []
};
list.push(current);
}
current.messages.push(msg);
});
}
return list; return list;
}, },

View file

@ -693,7 +693,7 @@ class Actions
'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false), 'RemoveColors' => (bool) $oConfig->Get('defaults', 'remove_colors', false),
'ListInlineAttachments' => false, 'ListInlineAttachments' => false,
'simpleAttachmentsList' => false, 'simpleAttachmentsList' => false,
'listPerDay' => false, 'listGrouped' => false,
'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25), 'MessagesPerPage' => (int) $oConfig->Get('webmail', 'messages_per_page', 25),
'MessageReadDelay' => (int) $oConfig->Get('webmail', 'message_read_delay', 5), 'MessageReadDelay' => (int) $oConfig->Get('webmail', 'message_read_delay', 5),
'MsgDefaultAction' => 1, 'MsgDefaultAction' => 1,
@ -799,7 +799,7 @@ class Actions
$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['simpleAttachmentsList'] = (bool)$oSettings->GetConf('simpleAttachmentsList', $aResult['simpleAttachmentsList']); $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['ContactsAutosave'] = (bool)$oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']);
$aResult['MessagesPerPage'] = (int)$oSettings->GetConf('MessagesPerPage', $aResult['MessagesPerPage']); $aResult['MessagesPerPage'] = (int)$oSettings->GetConf('MessagesPerPage', $aResult['MessagesPerPage']);
$aResult['MessageReadDelay'] = (int)$oSettings->GetConf('MessageReadDelay', $aResult['MessageReadDelay']); $aResult['MessageReadDelay'] = (int)$oSettings->GetConf('MessageReadDelay', $aResult['MessageReadDelay']);

View file

@ -181,7 +181,7 @@ trait User
$this->setSettingsFromParams($oSettings, 'RemoveColors', 'bool'); $this->setSettingsFromParams($oSettings, 'RemoveColors', 'bool');
$this->setSettingsFromParams($oSettings, 'ListInlineAttachments', 'bool'); $this->setSettingsFromParams($oSettings, 'ListInlineAttachments', 'bool');
$this->setSettingsFromParams($oSettings, 'simpleAttachmentsList', 'bool'); $this->setSettingsFromParams($oSettings, 'simpleAttachmentsList', 'bool');
$this->setSettingsFromParams($oSettings, 'listPerDay', 'bool'); $this->setSettingsFromParams($oSettings, 'listGrouped', 'bool');
$this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool'); $this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool');
$this->setSettingsFromParams($oSettings, 'DesktopNotifications', 'bool'); $this->setSettingsFromParams($oSettings, 'DesktopNotifications', 'bool');
$this->setSettingsFromParams($oSettings, 'SoundNotification', 'bool'); $this->setSettingsFromParams($oSettings, 'SoundNotification', 'bool');

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(تم إعتراضها من قبل المتصفح)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "قم باضافة المستلمين تلقائيا الى دفتر العناوين", "LABEL_CONTACTS_AUTOSAVE": "قم باضافة المستلمين تلقائيا الى دفتر العناوين",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокирано от браузъра)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Автоматично добавяне на получателите към адресната ви книга", "LABEL_CONTACTS_AUTOSAVE": "Автоматично добавяне на получателите към адресната ви книга",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prohlížečem)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automaticky přidávat adresy příjemců do Adresáře", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Tilføj automatisk modtager til adressebog", "LABEL_CONTACTS_AUTOSAVE": "Tilføj automatisk modtager til adressebog",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Vom Browser blockiert.)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Empfänger automatisch zu Ihrem Adressbuch hinzuzufügen", "LABEL_CONTACTS_AUTOSAVE": "Empfänger automatisch zu Ihrem Adressbuch hinzuzufügen",

View file

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

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book", "LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Blocked by the browser)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book", "LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado por el explorador)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Agregar automáticamente destinatarios a la libreta de direcciones", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Lisa saajad automaatselt aadressiraamatusse", "LABEL_CONTACTS_AUTOSAVE": "Lisa saajad automaatselt aadressiraamatusse",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Nabigatzaileak blokeatuta)", "CHROME_NOTIFICATION_DESC_DENIED": "(Nabigatzaileak blokeatuta)",
"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_PER_DAY": "List messages per day" "LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
}, },
"SETTINGS_CONTACTS": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatikoki gehitu hartzaileak helbide-liburura", "LABEL_CONTACTS_AUTOSAVE": "Automatikoki gehitu hartzaileak helbide-liburura",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(مسدود شده توسط مرورگر)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "اطلاعات تماس گیرندگان را بصورت خودکار در آدرس‌بوک ذخیره کن", "LABEL_CONTACTS_AUTOSAVE": "اطلاعات تماس گیرندگان را بصورت خودکار در آدرس‌بوک ذخیره کن",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Estetty selaimessa)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Lisää yhetystieto automaattisesti osoitekirjaan", "LABEL_CONTACTS_AUTOSAVE": "Lisää yhetystieto automaattisesti osoitekirjaan",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqué par le navigateur)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Ajouter automatiquement les destinataires à votre carnet d'adresses", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Címzettek automatikus hozzáadása a címtárhoz", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Tambah penerima ke daftar alamat secara otomatis", "LABEL_CONTACTS_AUTOSAVE": "Tambah penerima ke daftar alamat secara otomatis",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Lokað af vafra)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Bæta viðtakendum sjálfkrafa í nafnaskrá", "LABEL_CONTACTS_AUTOSAVE": "Bæta viðtakendum sjálfkrafa í nafnaskrá",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloccate dal browser)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Aggiungi automaticamente le persone che ti inviano mail alla rubrica", "LABEL_CONTACTS_AUTOSAVE": "Aggiungi automaticamente le persone che ti inviano mail alla rubrica",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(ブラウザでブロックされています)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "返信したアドレスをアドレス帳へ自動的に追加する", "LABEL_CONTACTS_AUTOSAVE": "返信したアドレスをアドレス帳へ自動的に追加する",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(브라우저에 의해 차단됨)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "수신인을 주소록에 자동으로 추가", "LABEL_CONTACTS_AUTOSAVE": "수신인을 주소록에 자동으로 추가",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Blokuoja naršyklė)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatiškai pridėti gavėjus į adresų knygą", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book", "LABEL_CONTACTS_AUTOSAVE": "Automatically add recipients to your address book",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(blokkert av nettleser)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Legg til mottakere i adresseboka automatisk", "LABEL_CONTACTS_AUTOSAVE": "Legg til mottakere i adresseboka automatisk",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Geblokkeerd door de browser)", "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": "Simpele bijlagen 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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatisch ontvangers toevoegen aan uw adresboek", "LABEL_CONTACTS_AUTOSAVE": "Automatisch ontvangers toevoegen aan uw adresboek",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokowane przez przeglądarkę)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automatycznie dodawaj odbiorców do książki adresowej", "LABEL_CONTACTS_AUTOSAVE": "Automatycznie dodawaj odbiorców do książki adresowej",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Bloqueado pelo navegador)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Adicionar automaticamente os destinatários na lista de endereços", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Adicionar destinatários automaticamente à sua lista de endereços", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Adicionar destinatários automaticamente à sua lista de endereços", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Adaugă automat destinatarii la agenda de scrisori", "LABEL_CONTACTS_AUTOSAVE": "Adaugă automat destinatarii la agenda de scrisori",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Блокировано браузером)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Автоматически добавлять получателей писем в адресную книгу", "LABEL_CONTACTS_AUTOSAVE": "Автоматически добавлять получателей писем в адресную книгу",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Zablokované prehliadačom)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Automaticky pridávať príjemcov správ do Adresára", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Samodejno dodaj prejemnike v imenik", "LABEL_CONTACTS_AUTOSAVE": "Samodejno dodaj prejemnike v imenik",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Blockat av webbläsaren)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Lägg till mottagare automatiskt i din adressbok", "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)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Otomatik olarak adres defterinize alıcıyı ekle", "LABEL_CONTACTS_AUTOSAVE": "Otomatik olarak adres defterinize alıcıyı ekle",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(Заблоковано браузером)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Автоматично додавати отримувачів у адресну книгу", "LABEL_CONTACTS_AUTOSAVE": "Автоматично додавати отримувачів у адресну книгу",

View file

@ -414,7 +414,7 @@
"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)",
"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_PER_DAY": "List messages per day" "LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
}, },
"SETTINGS_CONTACTS": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "Tự động thêm người nhận thư vào sổ địa chỉ của bạn", "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": "(被浏览器阻止)", "CHROME_NOTIFICATION_DESC_DENIED": "(被浏览器阻止)",
"LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件", "LIST_INLINE_ATTACHMENTS": "在列表中显示内联附件",
"LIST_SIMPLE_ATTACHMENTS": "简洁附件列表", "LIST_SIMPLE_ATTACHMENTS": "简洁附件列表",
"LIST_MESSAGES_PER_DAY": "按日显示消息列表" "LIST_MESSAGES_GROUPED": "List messages grouped (when sorting by date or from)"
}, },
"SETTINGS_CONTACTS": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "自动添加到您的地址簿", "LABEL_CONTACTS_AUTOSAVE": "自动添加到您的地址簿",

View file

@ -414,7 +414,7 @@
"CHROME_NOTIFICATION_DESC_DENIED": "(被瀏覽器阻止)", "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", "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": { "SETTINGS_CONTACTS": {
"LABEL_CONTACTS_AUTOSAVE": "自動添加到你的位址簿", "LABEL_CONTACTS_AUTOSAVE": "自動添加到你的位址簿",

View file

@ -129,9 +129,9 @@
<span data-i18n="GLOBAL/LOADING"></span> <span data-i18n="GLOBAL/LOADING"></span>
</div> </div>
<!-- ko if: listPerDay --> <!-- ko if: listGrouped -->
<div class="messageListPlace" data-bind="dragmessages: 1, foreach: listByDay" draggable="true"> <div class="messageListPlace" data-bind="dragmessages: 1, foreach: groupedList" draggable="true">
<div class="day" data-bind="text: day"></div> <div class="groupLabel" data-bind="text: label"></div>
<!-- ko foreach: messages --> <!-- ko foreach: messages -->
<div class="messageListItem" data-bind="css: lineAsCss()"> <div class="messageListItem" data-bind="css: lineAsCss()">
<div class="messageCheckbox"> <div class="messageCheckbox">
@ -151,7 +151,7 @@
<!-- /ko --> <!-- /ko -->
</div> </div>
<!-- /ko --> <!-- /ko -->
<!-- ko ifnot: listPerDay --> <!-- ko ifnot: listGrouped -->
<div class="messageListPlace" data-bind="dragmessages: 1, foreach: messageList" draggable="true"> <div class="messageListPlace" data-bind="dragmessages: 1, foreach: messageList" draggable="true">
<div class="messageListItem" data-bind="css: lineAsCss()"> <div class="messageListItem" data-bind="css: lineAsCss()">
<div class="messageCheckbox"> <div class="messageCheckbox">

View file

@ -63,8 +63,8 @@
<div data-bind="component: { <div data-bind="component: {
name: 'Checkbox', name: 'Checkbox',
params: { params: {
label: 'SETTINGS_GENERAL/LIST_MESSAGES_PER_DAY', label: 'SETTINGS_GENERAL/LIST_MESSAGES_GROUPED',
value: listPerDay value: listGrouped
} }
}"></div> }"></div>
<div data-bind="visible: threadsAllowed, component: { <div data-bind="visible: threadsAllowed, component: {