mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
Cleanup and deduplicate languages
This commit is contained in:
parent
67db19ec80
commit
a28b5c2b6c
52 changed files with 1124 additions and 2030 deletions
|
|
@ -1002,20 +1002,20 @@ class ComposePopupView extends AbstractViewNext {
|
|||
'<br /><br />' +
|
||||
i18n('COMPOSE/FORWARD_MESSAGE_TOP_TITLE') +
|
||||
'<br />' +
|
||||
i18n('COMPOSE/FORWARD_MESSAGE_TOP_FROM') +
|
||||
i18n('GLOBAL/FROM') +
|
||||
': ' +
|
||||
sFrom +
|
||||
'<br />' +
|
||||
i18n('COMPOSE/FORWARD_MESSAGE_TOP_TO') +
|
||||
i18n('GLOBAL/TO') +
|
||||
': ' +
|
||||
sTo +
|
||||
(sCc.length ? '<br />' + i18n('COMPOSE/FORWARD_MESSAGE_TOP_CC') + ': ' + sCc : '') +
|
||||
(sCc.length ? '<br />' + i18n('GLOBAL/CC') + ': ' + sCc : '') +
|
||||
'<br />' +
|
||||
i18n('COMPOSE/FORWARD_MESSAGE_TOP_SENT') +
|
||||
': ' +
|
||||
encodeHtml(sDate) +
|
||||
'<br />' +
|
||||
i18n('COMPOSE/FORWARD_MESSAGE_TOP_SUBJECT') +
|
||||
i18n('GLOBAL/SUBJECT') +
|
||||
': ' +
|
||||
encodeHtml(sSubject) +
|
||||
'<br /><br />' +
|
||||
|
|
|
|||
|
|
@ -64,9 +64,9 @@ class FilterPopupView extends AbstractViewNext {
|
|||
this.actionTypeOptions([]);
|
||||
|
||||
this.fieldOptions([
|
||||
{ 'id': FilterConditionField.From, 'name': i18n('POPUPS_FILTER/SELECT_FIELD_FROM') },
|
||||
{ 'id': FilterConditionField.From, 'name': i18n('GLOBAL/FROM') },
|
||||
{ 'id': FilterConditionField.Recipient, 'name': i18n('POPUPS_FILTER/SELECT_FIELD_RECIPIENTS') },
|
||||
{ 'id': FilterConditionField.Subject, 'name': i18n('POPUPS_FILTER/SELECT_FIELD_SUBJECT') },
|
||||
{ 'id': FilterConditionField.Subject, 'name': i18n('GLOBAL/SUBJECT') },
|
||||
{ 'id': FilterConditionField.Size, 'name': i18n('POPUPS_FILTER/SELECT_FIELD_SIZE') },
|
||||
{ 'id': FilterConditionField.Header, 'name': i18n('POPUPS_FILTER/SELECT_FIELD_HEADER') }
|
||||
]);
|
||||
|
|
@ -79,7 +79,7 @@ class FilterPopupView extends AbstractViewNext {
|
|||
]);
|
||||
|
||||
// this.actionTypeOptions.push({'id': FiltersAction.None,
|
||||
// 'name': i18n('POPUPS_FILTER/SELECT_ACTION_NONE')});
|
||||
// 'name': i18n('GLOBAL/NONE')});
|
||||
const modules = SieveStore.capa();
|
||||
if (modules) {
|
||||
if (modules.includes('imap4flags')) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue