diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf
index 9f288e772..d833ae3ee 100644
--- a/src-ui/messages.xlf
+++ b/src-ui/messages.xlf
@@ -1194,6 +1194,13 @@
14
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ Paperless will only process mails that match all of the filters specified below.
@@ -1303,18 +1310,25 @@
24
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Deletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1377,84 +1391,84 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129
diff --git a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
index a8a476c28..4af044407 100644
--- a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+++ b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
@@ -11,7 +11,7 @@
-
+
Paperless will only process mails that match all of the filters specified below.
diff --git a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
index 126c4968f..a2486e141 100644
--- a/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+++ b/src-ui/src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
@@ -23,9 +23,13 @@ const ATTACHMENT_TYPE_OPTIONS = [
id: MailFilterAttachmentType.Attachments,
name: $localize`Only process attachments.`,
},
+ {
+ id: MailFilterAttachmentType.Email_Only,
+ name: $localize`Process with embedded attachments as .eml`,
+ },
{
id: MailFilterAttachmentType.Everything,
- name: $localize`Process all files, including 'inline' attachments.`,
+ name: $localize`Process as .eml and attachments as separate documents`,
},
]
diff --git a/src-ui/src/app/components/common/input/tags/tags.component.ts b/src-ui/src/app/components/common/input/tags/tags.component.ts
index b6cd1413d..0a4ed6fb2 100644
--- a/src-ui/src/app/components/common/input/tags/tags.component.ts
+++ b/src-ui/src/app/components/common/input/tags/tags.component.ts
@@ -91,7 +91,7 @@ export class TagsComponent implements OnInit, ControlValueAccessor {
if (name) modal.componentInstance.object = { name: name }
else if (this._lastSearchTerm)
modal.componentInstance.object = { name: this._lastSearchTerm }
- modal.componentInstance.success.subscribe((newTag) => {
+ modal.componentInstance.succeeded.subscribe((newTag) => {
this.tagService.listAll().subscribe((tags) => {
this.tags = tags.results
this.value = [...this.value, newTag.id]
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts
index 557a0929f..08d0b0e82 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.ts
@@ -284,7 +284,7 @@ export class DocumentDetailComponent
})
modal.componentInstance.dialogMode = 'create'
if (newName) modal.componentInstance.object = { name: newName }
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(
switchMap((newDocumentType) => {
return this.documentTypeService
@@ -305,7 +305,7 @@ export class DocumentDetailComponent
})
modal.componentInstance.dialogMode = 'create'
if (newName) modal.componentInstance.object = { name: newName }
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(
switchMap((newCorrespondent) => {
return this.correspondentService
@@ -328,7 +328,7 @@ export class DocumentDetailComponent
})
modal.componentInstance.dialogMode = 'create'
if (newName) modal.componentInstance.object = { name: newName }
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(
switchMap((newStoragePath) => {
return this.storagePathService
diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts
index d0864d6f5..f55538daf 100644
--- a/src-ui/src/app/components/manage/management-list/management-list.component.ts
+++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts
@@ -120,7 +120,7 @@ export abstract class ManagementListComponent
backdrop: 'static',
})
activeModal.componentInstance.dialogMode = 'create'
- activeModal.componentInstance.success.subscribe({
+ activeModal.componentInstance.succeeded.subscribe({
next: () => {
this.reloadData()
this.toastService.showInfo(
@@ -143,7 +143,7 @@ export abstract class ManagementListComponent
})
activeModal.componentInstance.object = object
activeModal.componentInstance.dialogMode = 'edit'
- activeModal.componentInstance.success.subscribe({
+ activeModal.componentInstance.succeeded.subscribe({
next: () => {
this.reloadData()
this.toastService.showInfo(
diff --git a/src-ui/src/app/components/manage/settings/settings.component.ts b/src-ui/src/app/components/manage/settings/settings.component.ts
index c1be849bd..21b066fbb 100644
--- a/src-ui/src/app/components/manage/settings/settings.component.ts
+++ b/src-ui/src/app/components/manage/settings/settings.component.ts
@@ -546,7 +546,7 @@ export class SettingsComponent
})
modal.componentInstance.dialogMode = account ? 'edit' : 'create'
modal.componentInstance.object = account
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe({
next: (newMailAccount) => {
@@ -604,7 +604,7 @@ export class SettingsComponent
})
modal.componentInstance.dialogMode = rule ? 'edit' : 'create'
modal.componentInstance.object = rule
- modal.componentInstance.success
+ modal.componentInstance.succeeded
.pipe(takeUntil(this.unsubscribeNotifier))
.subscribe({
next: (newMailRule) => {
diff --git a/src-ui/src/app/data/paperless-mail-rule.ts b/src-ui/src/app/data/paperless-mail-rule.ts
index 9ff133dab..1c9f1be7b 100644
--- a/src-ui/src/app/data/paperless-mail-rule.ts
+++ b/src-ui/src/app/data/paperless-mail-rule.ts
@@ -2,7 +2,8 @@ import { ObjectWithId } from './object-with-id'
export enum MailFilterAttachmentType {
Attachments = 1,
- Everything = 2,
+ Email_Only = 2,
+ Everything = 3,
}
export enum MailAction {
diff --git a/src-ui/src/locale/messages.ar_SA.xlf b/src-ui/src/locale/messages.ar_SA.xlf
index 38d2a8c49..298670d4c 100644
--- a/src-ui/src/locale/messages.ar_SA.xlf
+++ b/src-ui/src/locale/messages.ar_SA.xlf
@@ -1320,6 +1320,14 @@
نوع المرفق
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
معالجة المرفقات فقط.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- معالجة جميع الملفات، بما في ذلك المرفقات المضمنة.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43نقل إلى مجلد محدد
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47وضع علامة كمقروءة، لا تعالج الرسائل المقروءة
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51علم الرسالة، لا تعالج الرسائل المعلمة
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55علم الرسالة بعلامة محددة، لا تعالج الرسائل المُعلمة
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62استخدم الموضوع كعنوان
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66استخدم اسم الملف المرفق كعنوان
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73لا تعيّن مراسل
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77استخدم عنوان البريد
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81استخدم الاسم (أو عنوان البريد إذا لم يكن متاحا)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85استخدم المراسل المحدد أدناه
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125إنشاء قاعدة بريد جديدة
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129تعديل قاعدة البريد
diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf
index 706341bc7..dc09c1785 100644
--- a/src-ui/src/locale/messages.be_BY.xlf
+++ b/src-ui/src/locale/messages.be_BY.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf
index 05277ee23..183f2bd08 100644
--- a/src-ui/src/locale/messages.cs_CZ.xlf
+++ b/src-ui/src/locale/messages.cs_CZ.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index 6dbf74feb..cdddbb638 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index f923dafbc..3e54eba80 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -1320,6 +1320,14 @@
Dateianhangstyp
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Nur Anhänge verarbeiten.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Alle Dateien verarbeiten, auch 'inline'-Anhänge.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43In den angegebenen Ordner verschieben
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Als gelesen markieren, verarbeite gelesene E-Mails nicht
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Als wichtig markieren, verarbeite wichtig markierte E-Mails nicht
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Markiere die Mail mit dem angegebenen Tag, verarbeite markierte E-Mails nicht
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Betreff als Titel verwenden
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Dateinamen des Anhangs als Titel verwenden
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Keinen Korrespondenten zuweisen
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77E-Mail-Adresse verwenden
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Namen (oder E-Mail-Adresse falls nicht verfügbar) verwenden
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Nachfolgend ausgewählten Korrespondent verwenden
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Neue E-Mail-Regel erstellen
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129E-Mail-Regel bearbeiten
diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf
index 431cf37cf..cf08e14c6 100644
--- a/src-ui/src/locale/messages.es_ES.xlf
+++ b/src-ui/src/locale/messages.es_ES.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf
index efba50208..3c2cded70 100644
--- a/src-ui/src/locale/messages.fi_FI.xlf
+++ b/src-ui/src/locale/messages.fi_FI.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 38f1594b6..b9d5e541a 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -1320,6 +1320,14 @@
Type de pièce jointe
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Ne traiter que les pièces jointes.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Traiter tous les fichiers, y compris les pièces jointes "en ligne".
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Déplacer vers le dossier spécifié
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Marquer comme lu, ne pas traiter les courriels lus
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Marquer le courriel, ne pas traiter les courriels marqués
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Affecter l’étiquette spécifée au courriel, ne pas traiter les courriels étiquetés
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Utiliser le sujet en tant que titre
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Utiliser le nom de la pièce jointe en tant que titre
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Ne pas affecter de correspondant
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Utiliser l'adresse électronique
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Utiliser le nom (ou l'adresse électronique s'il n'est pas disponible)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Utiliser le correspondant sélectionné ci-dessous
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Créer une nouvelle règle de courriel
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Éditer une règle de courriel
diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf
index 53801c404..16923bce0 100644
--- a/src-ui/src/locale/messages.he_IL.xlf
+++ b/src-ui/src/locale/messages.he_IL.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf
index 93ea8c88c..09f5f1a1d 100644
--- a/src-ui/src/locale/messages.hr_HR.xlf
+++ b/src-ui/src/locale/messages.hr_HR.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf
index 7b60a6efd..95b5e6860 100644
--- a/src-ui/src/locale/messages.it_IT.xlf
+++ b/src-ui/src/locale/messages.it_IT.xlf
@@ -1320,6 +1320,14 @@
Tipo di allegato
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Elabora solo gli allegati.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Elabora tutti i file, inclusi gli allegati nel corpo.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Sposta nella cartella selezionata
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Segna come letto, non elaborare le email lette
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Contrassegna la email, non elaborare le email contrassegnate
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Etichetta la posta con il tag specificato, non processare le email etichettate
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Usa oggetto come titolo
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Usa il nome dell'allegato come titolo
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Non assegnare un corrispondente
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Usa indirizzo email
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Usa nome (o indirizzo email se non disponibile)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Usa il corrispondente selezionato qui sotto
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Crea nuova regola email
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Modifica regola email
diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf
index 97fd77905..8c5e0018d 100644
--- a/src-ui/src/locale/messages.lb_LU.xlf
+++ b/src-ui/src/locale/messages.lb_LU.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 338a606de..40489ed8d 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -1320,6 +1320,14 @@
Type bijlage
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 3207db44b..5910dcedd 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index a56bf4b4e..d33852c87 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf
index 655018886..88970bc2d 100644
--- a/src-ui/src/locale/messages.pt_BR.xlf
+++ b/src-ui/src/locale/messages.pt_BR.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf
index 8cdc42444..c7a36960f 100644
--- a/src-ui/src/locale/messages.pt_PT.xlf
+++ b/src-ui/src/locale/messages.pt_PT.xlf
@@ -1130,7 +1130,7 @@
src/app/components/manage/settings/settings.component.html317
- Salvar
+ GuardarCreate new correspondent
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
@@ -4085,7 +4101,7 @@
src/app/components/manage/settings/settings.component.ts476
- Settings saved
+ Configurações guardadasSettings were saved successfully.
@@ -4093,7 +4109,7 @@
src/app/components/manage/settings/settings.component.ts477
- Settings were saved successfully.
+ As configurações foram guardadas com sucesso.Settings were saved successfully. Reload is required to apply some changes.
@@ -4511,7 +4527,7 @@
src/app/guards/dirty-doc.guard.ts17
- Warning: You have unsaved changes to your document(s).
+ Aviso: Existem alterações não guardadas neste(s) documento(s).Unsaved Changes
@@ -4583,7 +4599,7 @@
src/app/guards/dirty-saved-view.guard.ts34
- Save and close
+ Guardar e fechar(no title)
@@ -4723,7 +4739,7 @@
src/app/services/open-documents.service.ts105
- You have unsaved changes to the document
+ Existem alterações não guardadas neste documentoAre you sure you want to close this document?
diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf
index 4e0442daf..4e16eede4 100644
--- a/src-ui/src/locale/messages.ro_RO.xlf
+++ b/src-ui/src/locale/messages.ro_RO.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf
index efc8776ce..edeb3e18c 100644
--- a/src-ui/src/locale/messages.ru_RU.xlf
+++ b/src-ui/src/locale/messages.ru_RU.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf
index ccfdf5b04..078aca311 100644
--- a/src-ui/src/locale/messages.sl_SI.xlf
+++ b/src-ui/src/locale/messages.sl_SI.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf
index ffde6d188..63c4dbe91 100644
--- a/src-ui/src/locale/messages.sr_CS.xlf
+++ b/src-ui/src/locale/messages.sr_CS.xlf
@@ -1320,6 +1320,14 @@
Tip priloga
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Obradi samo priloge.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Obradite sve datoteke, uključujući "umetnute" priloge.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Premesti u određen folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Označi kao pročitano, ne obrađuj pročitanu e-poštu
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Označi poštu zastavicom, ne obrađuj e-poštu sa zastavicom
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Označite poštu specifičnom oznakom., ne obrađuj e-poštu s specifičnom oznakom
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Koristi predmet kao naziv
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Koristi naziv datoteke priloga kao naziv
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Ne dodeljuj korespodenta
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Koristi mejl adresu
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Koristi naziv (ili mejl adresu ako nije dostupno)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Koristi koreespodenta ispod
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Kreiraj novo mejl pravilo
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Izmeni mejl pravilo
@@ -2699,7 +2715,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html96
- Include:
+ Uključi: Archived files
diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf
index 09bbde58b..7154af9f6 100644
--- a/src-ui/src/locale/messages.sv_SE.xlf
+++ b/src-ui/src/locale/messages.sv_SE.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 286bece92..612fb6497 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf
index 49721c854..ccedcc952 100644
--- a/src-ui/src/locale/messages.zh_CN.xlf
+++ b/src-ui/src/locale/messages.zh_CN.xlf
@@ -1320,6 +1320,14 @@
Attachment type
+
+ See docs for .eml processing requirements
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
+ 14
+
+ See docs for .eml processing requirements
+ Paperless will only process mails that match all of the filters specified below.
@@ -1444,19 +1452,27 @@
Only process attachments.
-
- Process all files, including 'inline' attachments.
+
+ Process with embedded attachments as .emlsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts28
- Process all files, including 'inline' attachments.
+ Process with embedded attachments as .eml
+
+
+ Process as .eml and attachments as separate documents
+
+ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
+ 32
+
+ Process as .eml and attachments as separate documentsDeletesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 35
+ 39src/app/components/document-detail/document-detail.component.html
@@ -1520,7 +1536,7 @@
Move to specified foldersrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 39
+ 43Move to specified folder
@@ -1528,7 +1544,7 @@
Mark as read, don't process read mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 43
+ 47Mark as read, don't process read mails
@@ -1536,7 +1552,7 @@
Flag the mail, don't process flagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 47
+ 51Flag the mail, don't process flagged mails
@@ -1544,7 +1560,7 @@
Tag the mail with specified tag, don't process tagged mailssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 51
+ 55Tag the mail with specified tag, don't process tagged mails
@@ -1552,7 +1568,7 @@
Use subject as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 58
+ 62Use subject as title
@@ -1560,7 +1576,7 @@
Use attachment filename as titlesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 62
+ 66Use attachment filename as title
@@ -1568,7 +1584,7 @@
Do not assign a correspondentsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 69
+ 73Do not assign a correspondent
@@ -1576,7 +1592,7 @@
Use mail addresssrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 73
+ 77Use mail address
@@ -1584,7 +1600,7 @@
Use name (or mail address if not available)src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 77
+ 81Use name (or mail address if not available)
@@ -1592,7 +1608,7 @@
Use correspondent selected belowsrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 81
+ 85Use correspondent selected below
@@ -1600,7 +1616,7 @@
Create new mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 121
+ 125Create new mail rule
@@ -1608,7 +1624,7 @@
Edit mail rulesrc/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
- 125
+ 129Edit mail rule
diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po
index 4f3b0e9e3..03a3486e5 100644
--- a/src/locale/pt_PT/LC_MESSAGES/django.po
+++ b/src/locale/pt_PT/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-11-09 21:50+0000\n"
-"PO-Revision-Date: 2022-11-09 23:11\n"
+"PO-Revision-Date: 2022-12-30 15:36\n"
"Last-Translator: \n"
"Language-Team: Portuguese\n"
"Language: pt_PT\n"
@@ -100,7 +100,7 @@ msgstr "tipos de documento"
#: documents/models.py:93
msgid "path"
-msgstr ""
+msgstr "caminho"
#: documents/models.py:99 documents/models.py:127
msgid "storage path"
@@ -396,7 +396,7 @@ msgstr "regras de filtragem"
#: documents/models.py:536
msgid "Task ID"
-msgstr ""
+msgstr "ID da tarefa"
#: documents/models.py:537
msgid "Celery ID for the Task that was run"
@@ -412,7 +412,7 @@ msgstr ""
#: documents/models.py:549 documents/models.py:556
msgid "Task Name"
-msgstr ""
+msgstr "Nome da Tarefa"
#: documents/models.py:550
msgid "Name of the file which the Task was run for"
@@ -626,7 +626,7 @@ msgstr ""
#: paperless/settings.py:395
msgid "Serbian"
-msgstr ""
+msgstr "Sérvio"
#: paperless/settings.py:396
msgid "Swedish"
@@ -634,11 +634,11 @@ msgstr "Sueco"
#: paperless/settings.py:397
msgid "Turkish"
-msgstr ""
+msgstr "Turco"
#: paperless/settings.py:398
msgid "Chinese Simplified"
-msgstr ""
+msgstr "Chinês Simplificado"
#: paperless/urls.py:161
msgid "Paperless-ngx administration"