diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 7257606a8..91996b4d0 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -9,7 +9,7 @@ Please include a summary of the change and which issue is fixed (if any) and any
-->
Closes #(issue or discussion)
@@ -22,7 +22,7 @@ NOTE: Please check only one box!
-->
- [ ] Bug fix: non-breaking change which fixes an issue.
-- [ ] New feature: non-breaking change which adds functionality. _Please read the important note above._
+- [ ] New feature / Enhancement: non-breaking change which adds functionality. _Please read the important note above._
- [ ] Breaking change: fix or feature that would cause existing functionality to not work as expected.
- [ ] Documentation only.
- [ ] Other. Please explain:
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 146acd0ab..ec8407611 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -184,7 +184,7 @@ jobs:
cache-dependency-path: 'src-ui/package-lock.json'
- name: Cache frontend dependencies
id: cache-frontend-deps
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.npm
@@ -221,7 +221,7 @@ jobs:
cache-dependency-path: 'src-ui/package-lock.json'
- name: Cache frontend dependencies
id: cache-frontend-deps
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.npm
@@ -645,7 +645,7 @@ jobs:
script: |
const { repo, owner } = context.repo;
const result = await github.rest.pulls.create({
- title: '[Documentation] Add ${{ needs.publish-release.outputs.version }} changelog',
+ title: 'Documentation: Add ${{ needs.publish-release.outputs.version }} changelog',
owner,
repo,
head: '${{ needs.publish-release.outputs.version }}-changelog',
diff --git a/README.md b/README.md
index 271a6eb15..612cf954f 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,6 @@
[](https://docs.paperless-ngx.com)
[](https://codecov.io/gh/paperless-ngx/paperless-ngx)
[](https://matrix.to/#/%23paperlessngx%3Amatrix.org)
-[](https://demo.paperless-ngx.com)
@@ -21,8 +20,6 @@ Paperless-ngx is a document management system that transforms your physical docu
Paperless-ngx is the official successor to the original [Paperless](https://github.com/the-paperless-project/paperless) & [Paperless-ng](https://github.com/jonaswinkler/paperless-ng) projects and is designed to distribute the responsibility of advancing and supporting the project among a team of people. [Consider joining us!](#community-support)
-A demo is available at [demo.paperless-ngx.com](https://demo.paperless-ngx.com) using login `demo` / `demo`. _Note: demo content is reset frequently and confidential information should not be uploaded._
-
- [Features](#features)
- [Getting started](#getting-started)
- [Contributing](#contributing)
diff --git a/docs/administration.md b/docs/administration.md
index cf8a24294..827450127 100644
--- a/docs/administration.md
+++ b/docs/administration.md
@@ -67,15 +67,15 @@ you installed paperless-ngx in the first place. The releases are
available at the [release
page](https://github.com/paperless-ngx/paperless-ngx/releases).
-First of all, ensure that paperless is stopped.
+First of all, make sure no active processes (like consumption) are running, then [make a backup](#backup).
+
+After that, ensure that paperless is stopped:
```shell-session
$ cd /path/to/paperless
$ docker compose down
```
-After that, [make a backup](#backup).
-
1. If you pull the image from the docker hub, all you need to do is:
```shell-session
diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md
index 1d76b10d6..04626fe41 100644
--- a/docs/advanced_usage.md
+++ b/docs/advanced_usage.md
@@ -517,6 +517,18 @@ existing tables) with:
an older system may fix issues that can arise while setting up Paperless-ngx but
`utf8mb3` can cause issues with consumption (where `utf8mb4` does not).
+### Missing timezones
+
+MySQL as well as MariaDB do not have any timezone information by default (though some
+docker images such as the official MariaDB image take care of this for you) which will
+cause unexpected behavior with date-based queries.
+
+To fix this, execute one of the following commands:
+
+MySQL: `mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql -p`
+
+MariaDB: `mariadb-tzinfo-to-sql /usr/share/zoneinfo | mariadb -u root mysql -p`
+
## Barcodes {#barcodes}
Paperless is able to utilize barcodes for automatically performing some tasks.
diff --git a/docs/api.md b/docs/api.md
index e103ae14a..97ccf4c3a 100644
--- a/docs/api.md
+++ b/docs/api.md
@@ -139,7 +139,7 @@ document. Paperless only reports PDF metadata at this point.
## Authorization
-The REST api provides four different forms of authentication.
+The REST api provides three different forms of authentication.
1. Basic authentication
@@ -177,12 +177,6 @@ The REST api provides four different forms of authentication.
Tokens can also be managed in the Django admin.
-4. Remote User authentication
-
- If already setup (see
- [configuration](configuration.md#PAPERLESS_ENABLE_HTTP_REMOTE_USER)),
- you can authenticate against the API using Remote User auth.
-
## Searching for documents
Full text searching is available on the `/api/documents/` endpoint. Two
diff --git a/docs/changelog.md b/docs/changelog.md
index ba96eadaf..0607d8b56 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -1,5 +1,57 @@
# Changelog
+## paperless-ngx 2.4.2
+
+### Bug Fixes
+
+- Fix: improve one of the date matching regexes [@shamoon](https://github.com/shamoon) ([#5540](https://github.com/paperless-ngx/paperless-ngx/pull/5540))
+- Fix: tweak doc detail component behavior while awaiting metadata [@shamoon](https://github.com/shamoon) ([#5546](https://github.com/paperless-ngx/paperless-ngx/pull/5546))
+
+### All App Changes
+
+
+2 changes
+
+- Fix: improve one of the date matching regexes [@shamoon](https://github.com/shamoon) ([#5540](https://github.com/paperless-ngx/paperless-ngx/pull/5540))
+- Fix: tweak doc detail component behavior while awaiting metadata [@shamoon](https://github.com/shamoon) ([#5546](https://github.com/paperless-ngx/paperless-ngx/pull/5546))
+
+
+## paperless-ngx 2.4.1
+
+### Breaking Changes
+
+- Change: merge workflow permissions assignments instead of overwrite [@shamoon](https://github.com/shamoon) ([#5496](https://github.com/paperless-ngx/paperless-ngx/pull/5496))
+
+### Bug Fixes
+
+- Fix: Minor frontend things in 2.4.0 [@shamoon](https://github.com/shamoon) ([#5514](https://github.com/paperless-ngx/paperless-ngx/pull/5514))
+- Fix: install script fails on alpine linux [@shamoon](https://github.com/shamoon) ([#5520](https://github.com/paperless-ngx/paperless-ngx/pull/5520))
+- Fix: enforce permissions for app config [@shamoon](https://github.com/shamoon) ([#5516](https://github.com/paperless-ngx/paperless-ngx/pull/5516))
+- Fix: render images not converted to pdf, refactor doc detail rendering [@shamoon](https://github.com/shamoon) ([#5475](https://github.com/paperless-ngx/paperless-ngx/pull/5475))
+- Fix: Dont parse numbers with exponent as integer [@shamoon](https://github.com/shamoon) ([#5457](https://github.com/paperless-ngx/paperless-ngx/pull/5457))
+
+### Maintenance
+
+- Chore: Build fix- branches [@shamoon](https://github.com/shamoon) ([#5501](https://github.com/paperless-ngx/paperless-ngx/pull/5501))
+
+### Dependencies
+
+- Chore(deps-dev): Bump the development group with 1 update [@dependabot](https://github.com/dependabot) ([#5503](https://github.com/paperless-ngx/paperless-ngx/pull/5503))
+
+### All App Changes
+
+
+7 changes
+
+- Revert "Enhancement: support remote user auth directly against API (DRF)" @shamoon ([#5534](https://github.com/paperless-ngx/paperless-ngx/pull/5534))
+- Fix: Minor frontend things in 2.4.0 [@shamoon](https://github.com/shamoon) ([#5514](https://github.com/paperless-ngx/paperless-ngx/pull/5514))
+- Fix: enforce permissions for app config [@shamoon](https://github.com/shamoon) ([#5516](https://github.com/paperless-ngx/paperless-ngx/pull/5516))
+- Change: merge workflow permissions assignments instead of overwrite [@shamoon](https://github.com/shamoon) ([#5496](https://github.com/paperless-ngx/paperless-ngx/pull/5496))
+- Chore(deps-dev): Bump the development group with 1 update [@dependabot](https://github.com/dependabot) ([#5503](https://github.com/paperless-ngx/paperless-ngx/pull/5503))
+- Fix: render images not converted to pdf, refactor doc detail rendering [@shamoon](https://github.com/shamoon) ([#5475](https://github.com/paperless-ngx/paperless-ngx/pull/5475))
+- Fix: Dont parse numbers with exponent as integer [@shamoon](https://github.com/shamoon) ([#5457](https://github.com/paperless-ngx/paperless-ngx/pull/5457))
+
+
## paperless-ngx 2.4.0
### Features
diff --git a/docs/index.md b/docs/index.md
index cd1bd9029..58a943566 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -6,7 +6,6 @@
physical documents into a searchable online archive so you can keep, well, _less paper_.
[Get started](setup.md){ .md-button .md-button--primary .index-callout }
-[Demo](https://demo.paperless-ngx.com){ .md-button .md-button--secondary target=\_blank }
-
+
@if (typeFieldDisabled) {
Data type cannot be changed after a field is created
diff --git a/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
index 9299d4e13..be1e4b550 100644
--- a/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
+++ b/src-ui/src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html
@@ -7,7 +7,7 @@
}
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts
index cccf2677b..af0e0e78e 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.spec.ts
+++ b/src-ui/src/app/components/document-detail/document-detail.component.spec.ts
@@ -681,6 +681,7 @@ describe('DocumentDetailComponent', () => {
it('should support Enter key in password field', () => {
initNormally()
+ component.metadata = { has_archive_version: true }
component.onError({ name: 'PasswordException' }) // normally dispatched by pdf viewer
fixture.detectChanges()
expect(component.password).toBeUndefined()
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 18e6b1211..0ce9fa007 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
@@ -82,6 +82,7 @@ enum ContentRenderType {
Image = 'image',
Text = 'text',
Other = 'other',
+ Unknown = 'unknown',
}
enum ZoomSetting {
@@ -211,6 +212,7 @@ export class DocumentDetailComponent
}
get contentRenderType(): ContentRenderType {
+ if (!this.metadata) return ContentRenderType.Unknown
const contentType = this.metadata?.has_archive_version
? 'application/pdf'
: this.metadata?.original_mime_type
diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
index 54427ad31..08f680b07 100644
--- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
+++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.html
@@ -18,7 +18,7 @@
}
@if (_textFilter) {
-
-
+
@if (error?.filter_rules) {
diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts
index 15aa6a700..6135915d9 100644
--- a/src-ui/src/environments/environment.prod.ts
+++ b/src-ui/src/environments/environment.prod.ts
@@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '4',
appTitle: 'Paperless-ngx',
- version: '2.4.0-dev',
+ version: '2.4.3-dev',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index 1745c7da8..05504d097 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -497,7 +497,7 @@
src/app/components/admin/config/config.component.html34
- Enable
+ تمكينDiscard
@@ -589,7 +589,7 @@
src/app/components/admin/config/config.component.ts107
- Invalid JSON
+ JSON غير صالحConfiguration updated
@@ -657,7 +657,7 @@
src/app/components/admin/tasks/tasks.component.html16
- Auto refresh
+ تحديث تلقائيLoading...
@@ -3289,7 +3289,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html25
- Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
+ لا تستهلك المستندات التي تتطابق تماما مع اسم الملف هذا إذا تم تحديده. البطاقات البرية مثل *.pdf أو *الفاتورة* مسموح بها. الحالة غير حساسة.Action
@@ -3749,7 +3749,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html30
- Add Trigger
+ إضافة مشغلApply Actions:
@@ -3757,7 +3757,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html66
- Apply Actions:
+ تطبيق الإجراءات:Add Action
@@ -3765,7 +3765,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html68
- Add Action
+ إضافة اجراءAction type
@@ -3773,7 +3773,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html86
- Action type
+ نوع الإجراءAssign title
@@ -3789,7 +3789,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html90
- Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>.
+ يمكن أن تتضمن بعض العناصر النائبة، انظر <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>المستندات</a>.Assign tags
@@ -3813,7 +3813,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html95
- Assign custom fields
+ تعيين حقول مخصصةAssign owner
@@ -3845,7 +3845,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html166
- Trigger type
+ نوع المشغلTrigger for documents that match all filters specified below.
@@ -3853,7 +3853,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html167
- Trigger for documents that match all filters specified below.
+ المشغل للمستندات التي تطابق جميع الفلاتر المحددة أدناه.Filter filename
@@ -4005,7 +4005,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts69
- Assignment
+ المهامCreate new workflow
@@ -4013,7 +4013,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts137
- Create new workflow
+ إنشاء سير عمل جديدEdit workflow
@@ -4021,7 +4021,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts141
- Edit workflow
+ تعديل سير العملAll
@@ -4138,7 +4138,7 @@
src/app/components/common/input/url/url.component.html7
- Remove
+ إزالةInvalid date.
@@ -4182,7 +4182,7 @@
src/app/components/common/input/document-link/document-link.component.ts44
- No documents found
+ لم يتم العثور على مستنداتUpload
@@ -4190,7 +4190,7 @@
src/app/components/common/input/file/file.component.html15
- Upload
+ رفعShow password
@@ -4198,7 +4198,7 @@
src/app/components/common/input/password/password.component.html6
- Show password
+ عرض كلمة المرورEdit Permissions
@@ -4267,7 +4267,7 @@
src/app/components/common/input/select/select.component.ts92
- No items found
+ لم يتم العثور على أي عنصرNote: value has not yet been set and will not apply until explicitly changed
@@ -4275,7 +4275,7 @@
src/app/components/common/input/switch/switch.component.html39
- Note: value has not yet been set and will not apply until explicitly changed
+ ملاحظة: لم يتم بعد تعيين القيمة ولن تنطبق حتى يتم تغييرها بشكل صريحAdd tag
@@ -4299,7 +4299,7 @@
src/app/components/common/input/url/url.component.html14
- Open link
+ فتح الرابطWhat's this?
@@ -4307,7 +4307,7 @@
src/app/components/common/page-header/page-header.component.html9
- What's this?
+ ما هذا؟Read more
@@ -4315,7 +4315,7 @@
src/app/components/common/page-header/page-header.component.html15
- Read more
+ اقرأ المزيدSet permissions
@@ -4363,7 +4363,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html46
- Shared by me
+ تم المشاركة من قبليUnowned
@@ -4411,7 +4411,7 @@
src/app/components/common/preview-popup/preview-popup.component.html4
- Error loading preview
+ خطأ في تحميل المعاينةEdit Profile
@@ -4419,7 +4419,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html3
- Edit Profile
+ تعديل الملف الشخصيConfirm Email
@@ -4427,7 +4427,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html13
- Confirm Email
+ تأكيد البريد الإلكترونيConfirm Password
@@ -4435,7 +4435,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html23
- Confirm Password
+ تأكيد كلمة المرورAPI Auth Token
@@ -4443,7 +4443,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html31
- API Auth Token
+ API Auth TokenCopy
@@ -4467,7 +4467,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html44
- Regenerate auth token
+ تجديد رمز المصادقةCopied!
@@ -4487,7 +4487,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html50
- Warning: changing the token cannot be undone
+ تحذير: لا يمكن التراجع عن تغيير رمز المصادقةEmails must match
@@ -4495,7 +4495,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts94
- Emails must match
+ البريد الإلكتروني يجب أن يتطابقPasswords must match
@@ -4503,7 +4503,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts122
- Passwords must match
+ يجب أن تتطابق كلمة المرورProfile updated successfully
@@ -4511,7 +4511,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts142
- Profile updated successfully
+ تم تعديل الملف الشخصي بنجاحError saving profile
@@ -4519,7 +4519,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts154
- Error saving profile
+ حدث خطأ أثناء حفظ الملف الشخصيError generating auth token
@@ -4527,7 +4527,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts171
- Error generating auth token
+ خطأ في إنشاء رمز المصادقةSelect
diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf
index 868669f65..ddaf1e75e 100644
--- a/src-ui/src/locale/messages.ca_ES.xlf
+++ b/src-ui/src/locale/messages.ca_ES.xlf
@@ -463,7 +463,7 @@
src/app/components/admin/config/config.component.html4
- Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.
+ Opcions de configuració global d'aplicació que aplica a <strong>cada</strong> usuari d'aquesta instal·lació de Paperless-ngx. Les opcions també es poden establir mitjançant variables d'entorn o el fitxer de configuració, però el valor aquí sempre tindrà prioritat.
@@ -645,7 +645,7 @@
src/app/components/admin/logs/logs.component.html4
- Review the log files for the application and for email checking.
+ Revisa els fitxers de registre de l'aplicació i per a la comprovació del correu electrònic.Auto refresh
@@ -761,7 +761,7 @@
src/app/components/admin/settings/settings.component.html4
- Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>.
+ Opcions per personalitzar l'aparença, les notificacions, les visualitzacions desades i molt més. La configuració s'aplica només a <strong>l'usuari actual</strong>.Start tour
@@ -3893,7 +3893,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html173
- Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+ Aplica als documents que coincideixen amb aquest camí. Es permeten els comodins especificats com a *. Cas normalitzat.</a>Filter mail rule
@@ -4275,7 +4275,7 @@
src/app/components/common/input/switch/switch.component.html39
- Note: value has not yet been set and will not apply until explicitly changed
+ Nota: el valor encara no s'ha establert i no s'aplicarà fins que no es modifiqui explícitamentAdd tag
@@ -4723,7 +4723,7 @@
src/app/components/dashboard/dashboard.component.ts40
- Welcome to
+ Benvingut a Dashboard updated
@@ -5314,7 +5314,7 @@
src/app/components/document-detail/document-detail.component.html272,275
- Notes
+ Notes Save & next
@@ -5354,7 +5354,7 @@
src/app/components/document-detail/document-detail.component.ts321
- Document changes detected
+ Canvis detectats al documentThe version of this document in your browser session appears older than the existing version.
@@ -5362,7 +5362,7 @@
src/app/components/document-detail/document-detail.component.ts322
- The version of this document in your browser session appears older than the existing version.
+ La versió d'aquest document a la sessió del vostre navegador sembla més antiga que la versió existent.Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
@@ -5370,7 +5370,7 @@
src/app/components/document-detail/document-detail.component.ts323
- Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
+ Desar el document aquí pot sobreescriure altres canvis fets. Per restaurar la versió existent, descarta els canvis o tanca el document.Ok
@@ -6488,7 +6488,7 @@
src/app/components/manage/custom-fields/custom-fields.component.html4
- Customize the data fields that can be attached to documents.
+ Personalitza els camps de dades que es poden adjuntar als documents.Add Field
@@ -7000,7 +7000,7 @@
src/app/components/manage/workflows/workflows.component.html4
- Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
+ Empra fluxos de treball per personalitzar el comportament de Paperless-ngx quan els esdeveniments "activin" un flux de treball.Add Workflow
diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf
index 91c6d7640..a2237ba11 100644
--- a/src-ui/src/locale/messages.el_GR.xlf
+++ b/src-ui/src/locale/messages.el_GR.xlf
@@ -279,7 +279,7 @@
src/app/app.component.ts90
- Document was added to Paperless-ngx.
+ Το έγγραφο προστέθηκε στο Paperless-ngx.Open document
@@ -307,7 +307,7 @@
src/app/app.component.ts120
- Document is being processed by Paperless-ngx.
+ Το έγγραφο επεξεργάζεται από το Paperless-ngx.Prev
@@ -497,7 +497,7 @@
src/app/components/admin/config/config.component.html34
- Enable
+ ΕνεργοποίησηDiscard
@@ -589,7 +589,7 @@
src/app/components/admin/config/config.component.ts107
- Invalid JSON
+ Μη έγκυρο JSONConfiguration updated
@@ -657,7 +657,7 @@
src/app/components/admin/tasks/tasks.component.html16
- Auto refresh
+ Αυτόματη ανανέωσηLoading...
@@ -2469,7 +2469,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html74
- Document Types
+ Τύποι ΕγγράφωνStorage Paths
@@ -2485,7 +2485,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html82
- Storage Paths
+ Διαδρομές ΑποθήκευσηςCustom Fields
@@ -2521,7 +2521,7 @@
src/app/components/manage/workflows/workflows.component.html2
- Workflows
+ Ροές εργασίαςMail
@@ -3981,7 +3981,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts54
- Consumption Started
+ Η Κατανάλωση ΞεκίνησεDocument Added
@@ -4307,7 +4307,7 @@
src/app/components/common/page-header/page-header.component.html9
- What's this?
+ Τι είναι αυτό;Read more
@@ -4419,7 +4419,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html3
- Edit Profile
+ Επεξεργασία ΠροφίλConfirm Email
@@ -4427,7 +4427,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html13
- Confirm Email
+ Επιβεβαίωση EmailConfirm Password
@@ -4435,7 +4435,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html23
- Confirm Password
+ Επιβεβαίωση ΚωδικούAPI Auth Token
@@ -4443,7 +4443,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html31
- API Auth Token
+ API Auth TokenCopy
@@ -4843,7 +4843,7 @@
src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html57
- No documents
+ Δεν υπάρχουν έγγραφαStatistics
@@ -5054,7 +5054,7 @@
src/app/components/document-detail/document-detail.component.html9
- -
+ -+
@@ -5062,7 +5062,7 @@
src/app/components/document-detail/document-detail.component.html17
- +
+ +Download original
@@ -5378,7 +5378,7 @@
src/app/components/document-detail/document-detail.component.ts325
- Ok
+ ΟκError retrieving metadata
@@ -7096,7 +7096,7 @@
src/app/data/custom-field.ts17
- Boolean
+ ΔυαδικόDate
@@ -7104,7 +7104,7 @@
src/app/data/custom-field.ts21
- Date
+ ΗμερομηνίαInteger
@@ -7112,7 +7112,7 @@
src/app/data/custom-field.ts25
- Integer
+ ΑκέραιοςNumber
@@ -7120,7 +7120,7 @@
src/app/data/custom-field.ts29
- Number
+ ΑριθμόςMonetary
@@ -7128,7 +7128,7 @@
src/app/data/custom-field.ts33
- Monetary
+ ΝομισματικόText
@@ -7136,7 +7136,7 @@
src/app/data/custom-field.ts37
- Text
+ ΚείμενοUrl
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 216176898..b5ac8eea2 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -449,21 +449,21 @@
Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx !
-
+ Application Configurationsrc/app/components/admin/config/config.component.html2
- Configuration de l'application
+ Configuration de l'application
-
+ Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.src/app/components/admin/config/config.component.html4
- Les options de configuration de l'application globaux s'appliquent à <strong>tous</strong> les utilisateurs de cette installation de Paperless-ngx. Les options peuvent aussi être définies en utilisant les variables d'environnement ou le fichier de configuration mais la valeur ici sera toujours prioritaire.
+ Les options de configuration de l'application globaux s'appliquent à <strong>tous</strong> les utilisateurs de cette installation de Paperless-ngx. Les options peuvent aussi être définies en utilisant les variables d'environnement ou le fichier de configuration mais la valeur ici sera toujours prioritaire.
@@ -483,13 +483,13 @@
-
+ Read the documentation about this settingsrc/app/components/admin/config/config.component.html25
- Lire la documentation à propos de ce paramètre
+ Lire la documentation à propos de ce paramètreEnable
@@ -591,13 +591,13 @@
JSON non valide
-
+ Configuration updatedsrc/app/components/admin/config/config.component.ts151
- Configuration mise a jour
+ Configuration mise à jourAn error occurred updating configuration
@@ -607,21 +607,21 @@
Une erreur s'est produite lors de la mise à jour de la configuration
-
+ File successfully updatedsrc/app/components/admin/config/config.component.ts178
- Fichier téléversé avec succès
+ Fichier téléversé avec succès
-
+ An error occurred uploading filesrc/app/components/admin/config/config.component.ts183
- Une erreur s'est produite lors du téléversement du fichier
+ Une erreur s'est produite lors du téléversement du fichierLogs
@@ -639,13 +639,13 @@
Journaux
-
+ Review the log files for the application and for email checking.src/app/components/admin/logs/logs.component.html4
- Consultez les fichiers journaux pour l'application et pour la vérification des courriels.
+ Consultez les journaux de l'application ainsi que ceux des courriels.Auto refresh
@@ -729,7 +729,7 @@
src/app/components/manage/management-list/management-list.component.html48
- Chargement ...
+ Chargement...Settings
@@ -755,13 +755,13 @@
Paramètres
-
+ Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>.src/app/components/admin/settings/settings.component.html4
- Options pour personnaliser l'apparence, les notifrications, les vues sauvegardées et bien plus. Les paramètres s'appliquent à l'<strong>utilisateur actuel uniquement</strong>.
+ Options pour personnaliser l'apparence, les notifications, les vues sauvegardées et bien plus. Les paramètres s'appliquent à l'<strong>utilisateur actuel uniquement</strong>.Start tour
@@ -1825,39 +1825,39 @@
src/app/components/admin/tasks/tasks.component.html111
- ( sélectionné(s))
+ ( sélectionné(s))
-
+ Failedsrc/app/components/admin/tasks/tasks.component.html123,125
- échoué(s)
+ Échoué(s)
-
+ Completesrc/app/components/admin/tasks/tasks.component.html131,133
- terminé(s)
+ Terminé(s)
-
+ Startedsrc/app/components/admin/tasks/tasks.component.html139,141
- commencé(s)
+ Commencé(s)
-
+ Queuedsrc/app/components/admin/tasks/tasks.component.html147,149
- Queued en attente
+ En attenteDismiss selected
@@ -1897,7 +1897,7 @@
src/app/components/admin/tasks/tasks.component.ts133
- liste d'attente
+ en attentestarted
@@ -1939,13 +1939,13 @@
Utilisateurs & Groupes
-
+ Create, delete and edit users and groups.src/app/components/admin/users-groups/users-groups.component.html4
- Créez, supprimez et modifiez les utilisateurs et les groupes.
+ Créez, supprimez et modifiez les utilisateurs et les groupes.Users
@@ -2275,13 +2275,13 @@
Erreur lors de la supression du groupe.
-
+ by Paperless-ngxsrc/app/components/app-frame/app-frame.component.html20
- par Paperless-ngx
+ par Paperless-ngxSearch documents
@@ -2543,7 +2543,7 @@
Administration
-
+ Configurationsrc/app/components/app-frame/app-frame.component.html
@@ -2553,7 +2553,7 @@
src/app/components/app-frame/app-frame.component.html242
- Configuration
+ ConfigurationGitHub
@@ -4184,13 +4184,13 @@
Aucun document trouvé
-
+ Uploadsrc/app/components/common/input/file/file.component.html15
- Téléverser
+ TéléverserShow password
@@ -4269,13 +4269,13 @@
Aucun élément trouvé
-
+ Note: value has not yet been set and will not apply until explicitly changedsrc/app/components/common/input/switch/switch.component.html39
- Note : la valeur n'a pas encore été définie et ne sera pas appliquée jusqu'à ce que ce soit changé explicitement
+ Note : la valeur n'a pas encore été définie et ne sera pas appliquée jusqu'à ce que ce soit changé explicitementAdd tag
@@ -4301,21 +4301,21 @@
Ouvrir le lien
-
+ What's this?src/app/components/common/page-header/page-header.component.html9
- Qu'est-ce ?
+ Qu'est-ce ?
-
+ Read moresrc/app/components/common/page-header/page-header.component.html15
- En savoir plus
+ En savoir plusSet permissions
@@ -4709,21 +4709,21 @@
Copier l'erreur brute
-
+ Hello , welcome to src/app/components/dashboard/dashboard.component.ts38
- Bonjour , bienvenue sur
+ Bonjour , bienvenue sur
-
+ Welcome to src/app/components/dashboard/dashboard.component.ts40
- Bienvenue sur
+ Bienvenue sur Dashboard updated
@@ -5308,13 +5308,13 @@
Prévisualisation
-
+ Notes src/app/components/document-detail/document-detail.component.html272,275
- Notes
+ Notes Save & next
@@ -5362,7 +5362,7 @@
src/app/components/document-detail/document-detail.component.ts322
- La version de ce docuemnt dans dans la session de votre navigateur semble plus ancien que la version existante.
+ La version de ce document dans la session de votre navigateur semble plus ancien que la version existante.Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
@@ -5370,15 +5370,15 @@
src/app/components/document-detail/document-detail.component.ts323
- Sauvegarder le document ici peut écraser les autres modifications qui ont été faites. Pour restaurer la version existante, annulez vos modificatons ou fermez le document.
+ Sauvegarder le document ici peut écraser les autres modifications qui ont été faites. Pour restaurer la version existante, annulez vos modifications ou fermez le document.
-
+ Oksrc/app/components/document-detail/document-detail.component.ts325
- OK
+ OKError retrieving metadata
@@ -6448,7 +6448,7 @@
src/app/components/file-drop/file-drop.component.ts88
- Démarrage du téléversement...
+ Démarrage du téléversement…correspondent
@@ -6482,13 +6482,13 @@
Voulez-vous vraiment supprimer le correspondant "" ?
-
+ Customize the data fields that can be attached to documents.src/app/components/manage/custom-fields/custom-fields.component.html4
- Personnalisez les champs de données qui peuvent être joints aux documents.
+ Personnalisez les champs de données qui peuvent être joints aux documents.Add Field
@@ -6994,13 +6994,13 @@
Voulez-vous vraiment supprimer l'étiquette "" ?
-
+ Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.src/app/components/manage/workflows/workflows.component.html4
- Utilisez les workflows pour personnaliser le comportement de Paperless-ngx lorsque des événements « déclenchent » un workflow.
+ Utilisez les workflows pour personnaliser le comportement de Paperless-ngx lorsque des événements « déclenchent » un workflow.Add Workflow
@@ -7250,13 +7250,13 @@
Aucun : désactiver le rapprochement
-
+ General Settingssrc/app/data/paperless-config.ts50
- Paramètres généraux
+ Paramètres générauxOCR Settings
@@ -7370,21 +7370,21 @@
Arguments OCR
-
+ Application Logosrc/app/data/paperless-config.ts171
- Logo de l'application
+ Logo de l'application
-
+ Application Titlesrc/app/data/paperless-config.ts178
- Titre de l'application
+ Nom de l'applicationWarning: You have unsaved changes to your document(s).
@@ -7973,7 +7973,7 @@
src/app/services/upload-documents.service.ts57
- Téléversement terminé, en attente...
+ Téléversement terminé, en attente…HTTP error:
diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf
index 3fab2892d..010be2bd8 100644
--- a/src-ui/src/locale/messages.ja_JP.xlf
+++ b/src-ui/src/locale/messages.ja_JP.xlf
@@ -1781,7 +1781,7 @@
src/app/components/admin/tasks/tasks.component.html41
- Info
+ 情報click for full output
@@ -1789,7 +1789,7 @@
src/app/components/admin/tasks/tasks.component.html72
- click for full output
+ クリックしてすべて表示Dismiss
@@ -2813,7 +2813,7 @@
src/app/components/common/date-dropdown/date-dropdown.component.html21
- now
+ 現在After
@@ -3185,7 +3185,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html13
- Maximum age (days)
+ 最大有効期間 (日)Attachment type
@@ -4146,7 +4146,7 @@
src/app/components/common/input/date/date.component.html25
- 無効な日付です
+ 不正な日付ですSuggestions:
@@ -4259,7 +4259,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.ts77
- Private
+ 非公開No items found
@@ -7360,7 +7360,7 @@
src/app/data/paperless-config.ts156
- 色変換
+ 色変換ストラテジーOCR Arguments
@@ -7669,7 +7669,7 @@
33Score is a value returned by the full text search engine and specifies how well a result matches the given query
- Search score
+ 検索スコアEnglish (US)
@@ -7933,7 +7933,7 @@
src/app/services/settings.service.ts471
- Successfully completed one-time migratration of settings to the database!
+ データベースへのワンタイム設定移行が正常に完了しました!Unable to migrate settings to the database, please try saving manually.
@@ -7941,7 +7941,7 @@
src/app/services/settings.service.ts472
- Unable to migrate settings to the database, please try saving manually.
+ データベースに設定を移行できません。手動で保存してみてください。You can restart the tour from the settings page.
diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf
index 1a375cd64..ffa254df1 100644
--- a/src-ui/src/locale/messages.nl_NL.xlf
+++ b/src-ui/src/locale/messages.nl_NL.xlf
@@ -3621,7 +3621,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts32
- Etiket bewerken
+ Label bewerkenEmail
diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf
index 26c41006f..19829e5c4 100644
--- a/src-ui/src/locale/messages.tr_TR.xlf
+++ b/src-ui/src/locale/messages.tr_TR.xlf
@@ -589,7 +589,7 @@
src/app/components/admin/config/config.component.ts107
- Invalid JSON
+ Geçersiz JSONConfiguration updated
@@ -621,7 +621,7 @@
src/app/components/admin/config/config.component.ts183
- An error occurred uploading file
+ Dosya yüklenirken bir hata oluştuLogs
@@ -657,7 +657,7 @@
src/app/components/admin/tasks/tasks.component.html16
- Auto refresh
+ Otomatik yenilemeLoading...
@@ -1913,7 +1913,7 @@
src/app/components/admin/tasks/tasks.component.ts137
- completed
+ tamamlandıfailed
@@ -1965,7 +1965,7 @@
src/app/components/admin/users-groups/users-groups.component.html14
- Add User
+ Kullanıcı EkleUsername
@@ -2081,7 +2081,7 @@
src/app/components/admin/users-groups/users-groups.component.html52
- Add Group
+ Grup EkleNo groups defined
@@ -2133,7 +2133,7 @@
src/app/components/admin/users-groups/users-groups.component.ts115
- This operation will permanently delete this user account.
+ Bu eylem kullanıcıyı kalıcı olarak silecek.This operation cannot be undone.
@@ -2305,7 +2305,7 @@
src/app/components/app-frame/app-frame.component.html55
- My Profile
+ ProfilimLogout
@@ -3645,7 +3645,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html28
- First name
+ İsimLast name
@@ -3657,7 +3657,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html29
- Last name
+ SoyisimActive
@@ -3765,7 +3765,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html68
- Add Action
+ Eylem EkleAction type
@@ -4138,7 +4138,7 @@
src/app/components/common/input/url/url.component.html7
- Remove
+ KaldırInvalid date.
@@ -4190,7 +4190,7 @@
src/app/components/common/input/file/file.component.html15
- Upload
+ YükleShow password
@@ -4307,7 +4307,7 @@
src/app/components/common/page-header/page-header.component.html9
- What's this?
+ Bu nedir?Read more
@@ -4315,7 +4315,7 @@
src/app/components/common/page-header/page-header.component.html15
- Read more
+ Daha fazla okuSet permissions
@@ -4323,7 +4323,7 @@
src/app/components/common/permissions-dialog/permissions-dialog.component.ts28
- Set permissions
+ İzinleri ayarlaEdit permissions for
@@ -4347,7 +4347,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html26
- My documents
+ BelgelerimShared with me
@@ -4355,7 +4355,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html36
- Shared with me
+ Benimle paylaşılanShared by me
@@ -4363,7 +4363,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html46
- Shared by me
+ Benim paylaştıklarımUnowned
@@ -4371,7 +4371,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html56
- Unowned
+ SahipsizHide unowned
@@ -4459,7 +4459,7 @@
src/app/components/common/share-links-dropdown/share-links-dropdown.component.html29
- Copy
+ KopyalaRegenerate auth token
@@ -4479,7 +4479,7 @@
src/app/components/common/share-links-dropdown/share-links-dropdown.component.html40
- Copied!
+ Kopyalandı!Warning: changing the token cannot be undone
@@ -4495,7 +4495,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts94
- Emails must match
+ Emailler eşleşmeliPasswords must match
@@ -4503,7 +4503,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts122
- Passwords must match
+ Şifreler eşleşmeliProfile updated successfully
@@ -4511,7 +4511,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts142
- Profile updated successfully
+ Profil başarıyla güncellendiError saving profile
diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf
index 35ec669cf..1c4e23822 100644
--- a/src-ui/src/locale/messages.uk_UA.xlf
+++ b/src-ui/src/locale/messages.uk_UA.xlf
@@ -279,7 +279,7 @@
src/app/app.component.ts90
- Document was added to Paperless-ngx.
+ Документ було додано до Paperless-ngx.Open document
@@ -307,7 +307,7 @@
src/app/app.component.ts120
- Document is being processed by Paperless-ngx.
+ Документ обробляється Paperless-ngx.Prev
@@ -395,7 +395,7 @@
src/app/components/manage/mail/mail.component.html4
- Manage e-mail accounts and rules for automatically importing documents.
+ Управління обліковими записами електронної пошти та правилами для автоматичного імпорту документів.Workflows give you more control over the document pipeline.
@@ -403,7 +403,7 @@
src/app/app.component.ts180
- Workflows give you more control over the document pipeline.
+ Робочі процеси дають вам більший контроль над конвеєром.File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.
@@ -423,7 +423,7 @@
src/app/app.component.ts196
- Check out the settings for various tweaks to the web app and toggle settings for saved views.
+ Перевірте цю сторінку для різних налаштувань вебдодатку. Тут також можна налаштувати збережені представлення та перевірку електронної пошти.Thank you! 🙏
@@ -463,7 +463,7 @@
src/app/components/admin/config/config.component.html4
- Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence.
+ Параметри глобальної конфігурації програми, які застосовуються до <strong>кожного</strong> користувач цієї інсталяції Paperless-ngx. Параметри також можна встановити за допомогою змінних середовища або файлу конфігурації, але значення тут завжди матиме перевагу.
@@ -481,7 +481,7 @@
src/app/components/common/permissions-select/permissions-select.component.html22
-
+ Read the documentation about this setting
@@ -621,7 +621,7 @@
src/app/components/admin/config/config.component.ts183
- An error occurred uploading file
+ Сталася помилка при завантаженні файлуLogs
@@ -645,7 +645,7 @@
src/app/components/admin/logs/logs.component.html4
- Review the log files for the application and for email checking.
+ Переглянути файли журналу для програми та перевірки пошти.Auto refresh
@@ -761,7 +761,7 @@
src/app/components/admin/settings/settings.component.html4
- Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>.
+ Параметри налаштування зовнішнього вигляду, сповіщення, попереднього перегляду та іншого. Параметри застосовуються тільки для <strong>поточного користувача</strong>.Start tour
@@ -817,7 +817,7 @@
src/app/components/admin/settings/settings.component.html46
- Локаль дати
+ Відображення датиDate format
@@ -961,7 +961,7 @@
src/app/components/admin/settings/settings.component.html150,153
- Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually.
+ Перевірка оновлень працює шляхом перевірки загальнодоступного GitHub репозиторіюGitHub API для останнього випуску, щоб визначити, чи доступна нова версія. Фактичне оновлення програми все одно потрібно виконувати вручну. No tracking data is collected by the app in any way.
@@ -1105,7 +1105,7 @@
src/app/components/admin/settings/settings.component.html189,191
- Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI
+ Налаштування застосовуються до цього облікового запису для об'єктів (Теги, Правила пошти, тощо), створених у вебінтерфейсі Default Owner
@@ -1133,7 +1133,7 @@
src/app/components/admin/settings/settings.component.html205
- Default View Permissions
+ Дозволи перегляду за умовчаннямUsers:
@@ -1197,7 +1197,7 @@
src/app/components/admin/settings/settings.component.html232
- Default Edit Permissions
+ Дозволи на редагування за замовчуваннямEdit permissions also grant viewing permissions
@@ -1825,7 +1825,7 @@
src/app/components/admin/tasks/tasks.component.html111
- ( selected)
+ ( selected)Failed
@@ -1833,7 +1833,7 @@
src/app/components/admin/tasks/tasks.component.html123,125
- Failed
+ Не вдалось Complete
@@ -1841,7 +1841,7 @@
src/app/components/admin/tasks/tasks.component.html131,133
- Complete
+ ЗавершеноStarted
@@ -1849,7 +1849,7 @@
src/app/components/admin/tasks/tasks.component.html139,141
- Started
+ РозпочатоQueued
@@ -1857,7 +1857,7 @@
src/app/components/admin/tasks/tasks.component.html147,149
- Queued
+ У черзіDismiss selected
@@ -1889,7 +1889,7 @@
src/app/components/admin/tasks/tasks.component.ts65
- Dismiss all tasks?
+ Скасовувати усі завдань?queued
@@ -1945,7 +1945,7 @@
src/app/components/admin/users-groups/users-groups.component.html4
- Create, delete and edit users and groups.
+ Створення, видалення і редагування користувачів і груп.Users
@@ -2793,7 +2793,7 @@
src/app/components/manage/custom-fields/custom-fields.component.ts56
- Saved field "".
+ Збережене поле "".Error saving field.
@@ -2957,7 +2957,7 @@
src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html11
- Data type cannot be changed after a field is created
+ Тип даних не можна змінити після створення поляCreate new custom field
@@ -3265,7 +3265,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html24
- Filter attachment filename includes
+ Фільтр враховує вкладену назву файлуOnly consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -3281,7 +3281,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html25
- Filter attachment filename excluding
+ Фільтр не враховує вкладену назву файлуDo not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -3289,7 +3289,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html25
- Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
+ Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру.Action
@@ -3321,7 +3321,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html32
- Assignments specified here will supersede any consumption templates.
+ Визначені призначення будуть перешкоджати будь-яким шаблонам користувача.Assign title from
@@ -3477,7 +3477,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts84
- Do not assign title from this rule
+ Не призначати заголовок від цього правилаDo not assign a correspondent
@@ -3733,7 +3733,7 @@
src/app/components/manage/workflows/workflows.component.html20
- Triggers
+ ТригериTrigger Workflow On:
@@ -3741,7 +3741,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html28
- Trigger Workflow On:
+ Запуск робочого процесу на:Add Trigger
@@ -3845,7 +3845,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html166
- Trigger type
+ Тип тригераTrigger for documents that match all filters specified below.
@@ -3853,7 +3853,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html167
- Trigger for documents that match all filters specified below.
+ Тригер для документів, які збігаються усі фільтри, зазначені нижче.Filter filename
@@ -3861,7 +3861,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html170
- Filter filename
+ Фільтрувати назви файлівApply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
@@ -3869,7 +3869,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html170
- Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.
+ Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру.Filter sources
@@ -3877,7 +3877,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html172
- Filter sources
+ Джерела фільтраціїFilter path
@@ -3885,7 +3885,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html173
- Filter path
+ Шлях фільтраApply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
@@ -3893,7 +3893,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html173
- Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>
+ Застосовувати до документів, які відповідають цьому шляху. Допускаються символи підставляння, позначені як *. Нормалізовано за регістром.</a>Filter mail rule
@@ -3901,7 +3901,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html174
- Filter mail rule
+ Правило фільтрування поштиApply to documents consumed via this mail rule.
@@ -3909,7 +3909,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html174
- Apply to documents consumed via this mail rule.
+ Застосувати до документів, що обслуговуються за допомогою цього правила пошти.Content matching algorithm
@@ -3917,7 +3917,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html177
- Content matching algorithm
+ Алгоритм розпізнавання вмістуContent matching pattern
@@ -3925,7 +3925,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html179
- Content matching pattern
+ Шаблон відповідності вмістуHas tags
@@ -3933,7 +3933,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html188
- Has tags
+ Має тегHas correspondent
@@ -3941,7 +3941,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html189
- Has correspondent
+ Має кореспондентаHas document type
@@ -3949,7 +3949,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html190
- Has document type
+ Має тип документаConsume Folder
@@ -3957,7 +3957,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts39
- Consume Folder
+ Використати текуAPI Upload
@@ -3965,7 +3965,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts43
- API Upload
+ API вивантаженняMail Fetch
@@ -3973,7 +3973,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts47
- Mail Fetch
+ Отримання поштиConsumption Started
@@ -3981,7 +3981,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts54
- Consumption Started
+ Споживання розпочатоDocument Added
@@ -3989,7 +3989,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts58
- Document Added
+ Документ доданоDocument Updated
@@ -3997,7 +3997,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts62
- Document Updated
+ Документ оновленоAssignment
@@ -4275,7 +4275,7 @@
src/app/components/common/input/switch/switch.component.html39
- Note: value has not yet been set and will not apply until explicitly changed
+ Примітка: значення ще не встановлено та не застосовуватиметься, доки не буде змінено явноAdd tag
@@ -4363,7 +4363,7 @@
src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html46
- Shared by me
+ Поділився яUnowned
@@ -4519,7 +4519,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts154
- Error saving profile
+ Помилка збереження профілюError generating auth token
@@ -4527,7 +4527,7 @@
src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts171
- Error generating auth token
+ Помилка генерації токена авторизаціїSelect
@@ -4587,7 +4587,7 @@
src/app/components/common/share-links-dropdown/share-links-dropdown.component.html47
- Share archive version
+ Поділитися архівною версієюExpires
@@ -4595,7 +4595,7 @@
src/app/components/common/share-links-dropdown/share-links-dropdown.component.html51
- Expires
+ Термін діїCreate
@@ -4715,7 +4715,7 @@
src/app/components/dashboard/dashboard.component.ts38
- Hello , welcome to
+ Привіт , вітаємо у Welcome to
@@ -4723,7 +4723,7 @@
src/app/components/dashboard/dashboard.component.ts40
- Welcome to
+ Вітаємо у Dashboard updated
@@ -4915,7 +4915,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html4
- Drop documents anywhere or
+ Перетягніть документи сюди абоBrowse files
@@ -5054,7 +5054,7 @@
src/app/components/document-detail/document-detail.component.html9
- -
+ -+
@@ -5062,7 +5062,7 @@
src/app/components/document-detail/document-detail.component.html17
- +
+ +Download original
@@ -5314,7 +5314,7 @@
src/app/components/document-detail/document-detail.component.html272,275
- Notes
+ Примітки Save & next
@@ -5354,7 +5354,7 @@
src/app/components/document-detail/document-detail.component.ts321
- Document changes detected
+ Зміни документу виявленоThe version of this document in your browser session appears older than the existing version.
@@ -5362,7 +5362,7 @@
src/app/components/document-detail/document-detail.component.ts322
- The version of this document in your browser session appears older than the existing version.
+ Версія цього документа виявилась старішою за чинну версію.Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
@@ -5370,7 +5370,7 @@
src/app/components/document-detail/document-detail.component.ts323
- Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document.
+ Збереження документа може перезаписати інші внесені зміни. Щоб відновити наявну версію, скасуйте зміни або закрийте документ.Ok
@@ -6488,7 +6488,7 @@
src/app/components/manage/custom-fields/custom-fields.component.html4
- Customize the data fields that can be attached to documents.
+ Налаштування полів даних, які можуть бути додані до документів.Add Field
@@ -7000,7 +7000,7 @@
src/app/components/manage/workflows/workflows.component.html4
- Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow.
+ Використовуйте робочі процеси, щоб налаштувати поведінку Paperless-ngx при спрацюванні тригеру робочого процес.Add Workflow
@@ -7008,7 +7008,7 @@
src/app/components/manage/workflows/workflows.component.html9
- Add Workflow
+ Додати робочий процесDisabled
@@ -7016,7 +7016,7 @@
src/app/components/manage/workflows/workflows.component.html30
- Disabled
+ ВимкненоNo workflows defined.
@@ -7024,7 +7024,7 @@
src/app/components/manage/workflows/workflows.component.html46
- No workflows defined.
+ Не визначено робочих процесів.Saved workflow "".
@@ -7032,7 +7032,7 @@
src/app/components/manage/workflows/workflows.component.ts79
- Saved workflow "".
+ Робочий процес "" збережено.Error saving workflow.
@@ -7040,7 +7040,7 @@
src/app/components/manage/workflows/workflows.component.ts87
- Error saving workflow.
+ Помилка при збереженні робочого процесу.Confirm delete workflow
@@ -7048,7 +7048,7 @@
src/app/components/manage/workflows/workflows.component.ts95
- Confirm delete workflow
+ Підтвердження видалення робочого процесуThis operation will permanently delete this workflow.
@@ -7056,7 +7056,7 @@
src/app/components/manage/workflows/workflows.component.ts96
- This operation will permanently delete this workflow.
+ Ця операція остаточно видалить цей робочий процес.Deleted workflow
@@ -7064,7 +7064,7 @@
src/app/components/manage/workflows/workflows.component.ts105
- Deleted workflow
+ Робочий процес видаленоError deleting workflow.
@@ -7072,7 +7072,7 @@
src/app/components/manage/workflows/workflows.component.ts110
- Error deleting workflow.
+ Помилка при видаленні робочого процесу.Not Found
@@ -7096,7 +7096,7 @@
src/app/data/custom-field.ts17
- Boolean
+ Логічне значенняDate
@@ -7104,7 +7104,7 @@
src/app/data/custom-field.ts21
- Date
+ ДатаInteger
@@ -7112,7 +7112,7 @@
src/app/data/custom-field.ts25
- Integer
+ Ціле числоNumber
@@ -7120,7 +7120,7 @@
src/app/data/custom-field.ts29
- Number
+ НомерMonetary
@@ -7128,7 +7128,7 @@
src/app/data/custom-field.ts33
- Monetary
+ МонетарнийText
@@ -7136,7 +7136,7 @@
src/app/data/custom-field.ts37
- Text
+ ТекстUrl
@@ -7144,7 +7144,7 @@
src/app/data/custom-field.ts41
- Url
+ Url-адресаDocument Link
@@ -7152,7 +7152,7 @@
src/app/data/custom-field.ts45
- Document Link
+ Посилання на документAuto: Learn matching automatically
@@ -7256,7 +7256,7 @@
src/app/data/paperless-config.ts50
- General Settings
+ Загальні налаштуванняOCR Settings
@@ -7264,7 +7264,7 @@
src/app/data/paperless-config.ts51
- OCR Settings
+ OCR налаштуванняOutput Type
@@ -7272,7 +7272,7 @@
src/app/data/paperless-config.ts75
- Output Type
+ Тип виводуLanguage
@@ -7280,7 +7280,7 @@
src/app/data/paperless-config.ts83
- Language
+ МоваPages
@@ -7288,7 +7288,7 @@
src/app/data/paperless-config.ts90
- Pages
+ СторінкиMode
@@ -7296,7 +7296,7 @@
src/app/data/paperless-config.ts97
- Mode
+ РежимSkip Archive File
@@ -7304,7 +7304,7 @@
src/app/data/paperless-config.ts105
- Skip Archive File
+ Пропустити АрхівImage DPI
@@ -7312,7 +7312,7 @@
src/app/data/paperless-config.ts113
- Image DPI
+ Роздільність зображенняClean
@@ -7320,7 +7320,7 @@
src/app/data/paperless-config.ts120
- Clean
+ ОчиститиDeskew
@@ -7328,7 +7328,7 @@
src/app/data/paperless-config.ts128
- Deskew
+ Вирівняти перекісRotate Pages
@@ -7336,7 +7336,7 @@
src/app/data/paperless-config.ts135
- Rotate Pages
+ Повернути сторінкиRotate Pages Threshold
@@ -7344,7 +7344,7 @@
src/app/data/paperless-config.ts142
- Rotate Pages Threshold
+ Поріг повороту сторінокMax Image Pixels
@@ -7352,7 +7352,7 @@
src/app/data/paperless-config.ts149
- Max Image Pixels
+ Максимальна кількість пікселівColor Conversion Strategy
@@ -7360,7 +7360,7 @@
src/app/data/paperless-config.ts156
- Color Conversion Strategy
+ Стратегія перетворення кольорівOCR Arguments
@@ -7368,7 +7368,7 @@
src/app/data/paperless-config.ts164
- OCR Arguments
+ Аргументи OCRApplication Logo
@@ -7376,7 +7376,7 @@
src/app/data/paperless-config.ts171
- Application Logo
+ Логотип програмиApplication Title
@@ -7384,7 +7384,7 @@
src/app/data/paperless-config.ts178
- Application Title
+ Назва програмиWarning: You have unsaved changes to your document(s).
@@ -7709,7 +7709,7 @@
src/app/services/settings.service.ts64
- Bulgarian
+ БолгарськаCatalan
@@ -7789,7 +7789,7 @@
src/app/services/settings.service.ts124
- Hungarian
+ УгорськаItalian
diff --git a/src-ui/src/theme.scss b/src-ui/src/theme.scss
index 588b7e972..ce1eacab9 100644
--- a/src-ui/src/theme.scss
+++ b/src-ui/src/theme.scss
@@ -79,6 +79,7 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,