diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3c2ffb6b9..9a42b786e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -2,7 +2,8 @@ name: ci
on:
push:
- tags: ngx-*
+ tags:
+ - ngx-*
branches-ignore:
- 'translations**'
pull_request:
@@ -177,37 +178,37 @@ jobs:
name: Move files
run: |
mkdir dist
- mkdir dist/paperless-ng
- mkdir dist/paperless-ng/scripts
- cp .dockerignore .env Dockerfile Pipfile Pipfile.lock LICENSE README.md requirements.txt dist/paperless-ng/
- cp paperless.conf.example dist/paperless-ng/paperless.conf
- cp gunicorn.conf.py dist/paperless-ng/gunicorn.conf.py
- cp docker/ dist/paperless-ng/docker -r
- cp scripts/*.service scripts/*.sh dist/paperless-ng/scripts/
- cp src/ dist/paperless-ng/src -r
- cp docs/_build/html/ dist/paperless-ng/docs -r
+ mkdir dist/paperless-ngx
+ mkdir dist/paperless-ngx/scripts
+ cp .dockerignore .env Dockerfile Pipfile Pipfile.lock LICENSE README.md requirements.txt dist/paperless-ngx/
+ cp paperless.conf.example dist/paperless-ngx/paperless.conf
+ cp gunicorn.conf.py dist/paperless-ngx/gunicorn.conf.py
+ cp docker/ dist/paperless-ngx/docker -r
+ cp scripts/*.service scripts/*.sh dist/paperless-ngx/scripts/
+ cp src/ dist/paperless-ngx/src -r
+ cp docs/_build/html/ dist/paperless-ngx/docs -r
-
name: Compile messages
run: |
- cd dist/paperless-ng/src
+ cd dist/paperless-ngx/src
python3 manage.py compilemessages
-
name: Collect static files
run: |
- cd dist/paperless-ng/src
+ cd dist/paperless-ngx/src
python3 manage.py collectstatic --no-input
-
name: Make release package
run: |
cd dist
find . -name __pycache__ | xargs rm -r
- tar -cJf paperless-ng.tar.xz paperless-ng/
+ tar -cJf paperless-ngx.tar.xz paperless-ngx/
-
name: Upload release artifact
uses: actions/upload-artifact@v2
with:
name: release
- path: dist/paperless-ng.tar.xz
+ path: dist/paperless-ngx.tar.xz
publish-release:
runs-on: ubuntu-latest
@@ -224,7 +225,7 @@ jobs:
name: Get version
id: get_version
run: |
- echo ::set-output name=version::${GITHUB_REF#refs/tags/ng-}
+ echo ::set-output name=version::${GITHUB_REF#refs/tags/ngx-}
-
name: Create release
id: create_release
@@ -232,12 +233,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
- tag_name: ng-${{ steps.get_version.outputs.version }}
- release_name: Paperless-ng ${{ steps.get_version.outputs.version }}
+ tag_name: ngx-${{ steps.get_version.outputs.version }}
+ release_name: Paperless-ngx ${{ steps.get_version.outputs.version }}
draft: false
prerelease: false
body: |
- For a complete list of changes, see the changelog at https://paperless-ng.readthedocs.io/en/latest/changelog.html.
+ For a complete list of changes, see the changelog at https://paperless-ngx.readthedocs.io/en/latest/changelog.html.
-
name: Upload release archive
id: upload-release-asset
@@ -246,13 +247,13 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
- asset_path: ./paperless-ng.tar.xz
- asset_name: paperless-ng-${{ steps.get_version.outputs.version }}.tar.xz
+ asset_path: ./paperless-ngx.tar.xz
+ asset_name: paperless-ngx-${{ steps.get_version.outputs.version }}.tar.xz
asset_content_type: application/x-xz
# build and push image to docker hub.
build-docker-image:
- if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/ng-'))
+ if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/ngx-'))
runs-on: ubuntu-latest
needs: [tests, codeformatting, codestyle]
steps:
@@ -261,8 +262,8 @@ jobs:
id: prepare
run: |
IMAGE_NAME=ghcr.io/${{ github.repository }}
- if [[ $GITHUB_REF == refs/tags/ng-* ]]; then
- TAGS=${IMAGE_NAME}:${GITHUB_REF#refs/tags/ng-},${IMAGE_NAME}:latest
+ if [[ $GITHUB_REF == refs/tags/ngx-* ]]; then
+ TAGS=${IMAGE_NAME}:${GITHUB_REF#refs/tags/ngx-},${IMAGE_NAME}:latest
INSPECT_TAG=${IMAGE_NAME}:latest
elif [[ $GITHUB_REF == refs/heads/* ]]; then
TAGS=${IMAGE_NAME}:${GITHUB_REF#refs/heads/}
diff --git a/README.md b/README.md
index 8e20aeb73..e7b27d855 100644
--- a/README.md
+++ b/README.md
@@ -70,6 +70,8 @@ bash -c "$(curl -L https://raw.githubusercontent.com/paperless-ngx/paperless-ngx
Alternatively, you can install the dependencies and setup apache and a database server yourself. The [documentation](https://paperless-ngx.readthedocs.io/en/latest/setup.html#installation) has a step by step guide on how to do it.
+Migrating from Paperless-ng is easy, just drop in the new docker image! See the [documentation on migrating](https://paperless-ngx.readthedocs.io/en/latest/setup.html#migrating-from-paperless-ng) for more details.
+
### Documentation
diff --git a/docs/setup.rst b/docs/setup.rst
index 5ab54fa96..bd8421fe4 100644
--- a/docs/setup.rst
+++ b/docs/setup.rst
@@ -468,8 +468,39 @@ writing. Windows is not and will never be supported.
to compile this by yourself, because this software has been patented until around 2017 and
binary packages are not available for most distributions.
-Migration to paperless-ngx
-#########################
+Migrating to Paperless-ngx
+##########################
+
+Migration is possible both from Paperless-ng or directly from the 'original' Paperless.
+
+Migrating from Paperless-ng
+===========================
+
+Paperless-ngx is meant to be a drop-in replacement for Paperless-ng and thus upgrading should be
+trivial for most users, especially when using docker. However, as with any major change, it is
+recommended to take a full backup first. Once you are ready, simply change the docker image to
+point to the new source. E.g. if using Docker Compose, edit ``docker-compose.yml`` and change:
+
+.. code::
+
+ image: jonaswinkler/paperless-ng:latest
+
+to
+
+.. code::
+
+ image: ghcr.io/paperless-ngx/paperless-ngx:latest
+
+and then run ``docker-compose up -d`` which will pull the new image recreate the container.
+That's it!
+
+Users who installed with the bare-metal route should also update their Git clone to point to
+``https://github.com/paperless-ngx/paperless-ngx``, e.g. using the command
+``git remote set-url origin https://github.com/paperless-ngx/paperless-ngx`` and then pull the
+lastest version.
+
+Migrating from Paperless
+========================
At its core, paperless-ngx is still paperless and fully compatible. However, some
things have changed under the hood, so you need to adapt your setup depending on
@@ -634,7 +665,7 @@ management commands as below.
7. Start paperless.
-Moving back to paperless
+Moving back to Paperless
========================
Lets say you migrated to Paperless-ngx and used it for a while, but decided that
diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf
index e7a136a7d..80bfc8e7b 100644
--- a/src-ui/src/locale/messages.da_DK.xlf
+++ b/src-ui/src/locale/messages.da_DK.xlf
@@ -61,7 +61,7 @@
11app title
- Paperless-ngx
+ Paperless-ngxSearch documents
@@ -69,7 +69,7 @@
src/app/components/app-frame/app-frame.component.html18
- Search documents
+ Søg i dokumenterLogged in as
@@ -77,7 +77,7 @@
src/app/components/app-frame/app-frame.component.html34
- Logged in as
+ Logget ind som Settings
@@ -93,7 +93,7 @@
src/app/components/manage/settings/settings.component.html1
- Settings
+ IndstillingerLogout
@@ -101,7 +101,7 @@
src/app/components/app-frame/app-frame.component.html45
- Logout
+ Log udDashboard
@@ -113,7 +113,7 @@
src/app/components/dashboard/dashboard.component.html1
- Dashboard
+ BetjeningspanelDocuments
@@ -149,7 +149,7 @@
src/app/components/manage/settings/settings.component.html134
- Saved views
+ Gemte visningerOpen documents
@@ -157,7 +157,7 @@
src/app/components/app-frame/app-frame.component.html87
- Open documents
+ Åbn dokumenterClose all
@@ -165,7 +165,7 @@
src/app/components/app-frame/app-frame.component.html106
- Close all
+ Luk alleManage
@@ -173,7 +173,7 @@
src/app/components/app-frame/app-frame.component.html112
- Manage
+ AdministrérCorrespondents
@@ -185,7 +185,7 @@
src/app/components/manage/correspondent-list/correspondent-list.component.html1
- Correspondents
+ KorrespondenterTags
@@ -209,7 +209,7 @@
src/app/components/manage/tag-list/tag-list.component.html1
- Tags
+ EtiketterDocument types
@@ -221,7 +221,7 @@
src/app/components/manage/document-type-list/document-type-list.component.html1
- Document types
+ DokumenttyperLogs
@@ -233,7 +233,7 @@
src/app/components/manage/logs/logs.component.html1
- Logs
+ LogningerAdmin
@@ -241,7 +241,7 @@
src/app/components/app-frame/app-frame.component.html154
- Admin
+ AdminInfo
@@ -249,7 +249,7 @@
src/app/components/app-frame/app-frame.component.html160
- Info
+ InfoDocumentation
@@ -257,7 +257,7 @@
src/app/components/app-frame/app-frame.component.html167
- Documentation
+ DokumentationGitHub
@@ -265,7 +265,7 @@
src/app/components/app-frame/app-frame.component.html175
- GitHub
+ GitHubSuggest an idea
@@ -273,7 +273,7 @@
src/app/components/app-frame/app-frame.component.html181
- Suggest an idea
+ Foreslå en idéCancel
@@ -305,7 +305,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html18
- Cancel
+ AnnullérConfirmation
@@ -341,7 +341,7 @@
src/app/components/common/date-dropdown/date-dropdown.component.html13
- After
+ EfterClear
@@ -353,7 +353,7 @@
src/app/components/common/date-dropdown/date-dropdown.component.html41
- Clear
+ RydBefore
@@ -361,7 +361,7 @@
src/app/components/common/date-dropdown/date-dropdown.component.html36
- Before
+ FørLast 7 days
@@ -425,7 +425,7 @@
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html39
- Apply
+ AnvendClick again to exclude items.
@@ -433,7 +433,7 @@
src/app/components/common/filterable-dropdown/filterable-dropdown.component.html45
- Click again to exclude items.
+ Klik igen for at ekskludere elementer.Not assigned
@@ -450,7 +450,7 @@
src/app/components/common/input/date/date.component.html12
- Invalid date.
+ Ugyldig dato.Add item
@@ -459,7 +459,7 @@
11Used for both types and correspondents
- Add item
+ Tilføj elementSuggestions:
@@ -471,7 +471,7 @@
src/app/components/common/input/tags/tags.component.html42
- Suggestions:
+ Forslag:Add tag
@@ -479,7 +479,7 @@
src/app/components/common/input/tags/tags.component.html11
- Add tag
+ Tilføj etiketSelect
@@ -511,7 +511,7 @@
src/app/components/dashboard/dashboard.component.ts33
- Hello , welcome to Paperless-ngx!
+ Hej , velkommen til Paperless-ngx!Welcome to Paperless-ngx!
@@ -519,7 +519,7 @@
src/app/components/dashboard/dashboard.component.ts35
- Welcome to Paperless-ngx!
+ Velkommen til Paperless-ngx!Show all
@@ -531,7 +531,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html27
- Show all
+ Vis alleCreated
@@ -583,7 +583,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html1
- Statistics
+ StatistikkerDocuments in inbox:
@@ -591,7 +591,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html3
- Documents in inbox:
+ Dokumenter i indbakke: Total documents:
@@ -599,7 +599,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html4
- Total documents:
+ Samtlige dokumenter: Upload new documents
@@ -607,7 +607,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html1
- Upload new documents
+ Upload nye dokumenterDismiss completed
@@ -616,7 +616,7 @@
4This button dismisses all status messages about processed documents on the dashboard (failed and successful)
- Dismiss completed
+ Afskedig afsluttedeDrop documents here or
@@ -624,7 +624,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html13
- Drop documents here or
+ Slip dokumenter her ellerBrowse files
@@ -632,7 +632,7 @@
src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html13
- Browse files
+ Gennemse filer{VAR_PLURAL, plural, =1 {One more document} other { more documents}}
@@ -641,7 +641,7 @@
25This is shown as a summary line when there are more than 5 document in the processing pipeline.
- {VAR_PLURAL, plural, =1 {One more document} other { more documents}}
+ {VAR_PLURAL, plural, one {} =1 {Et dokument} other { dokumenter}}Processing:
@@ -718,7 +718,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html1
- First steps
+ Første trinPaperless is running! :)
@@ -726,7 +726,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html5
- Paperless is running! :)
+ Paperless kører! :)You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message.
@@ -734,7 +734,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html6,7
- You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message.
+ Du kan begynde at uploade dokumenter ved at slippe dem i filoverførselsfeltet til højre eller ved at slippe dem i den konfigurerede forbrugsmappe, og de vil begynde at dukke op i dokumentlisten. Når du har tilføjet nogle metadata til dine dokumenter, skal du bruge paperless' filtreringsmekanismer til at oprette brugerdefinerede visninger (såsom 'Nyligt tilføjet', 'Etiket TODO') og de vil blive vist på betjeningspanelet i stedet for denne besked.Paperless offers some more features that try to make your life easier:
@@ -742,7 +742,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html8
- Paperless offers some more features that try to make your life easier:
+ Paperless tilbyder nogle flere funktioner, der forsøger at gøre dit liv lettere:Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically.
@@ -750,7 +750,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html10
- Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically.
+ Når du har fået et par dokumenter i paperless og tilføjet metadata til dem, kan paperless tildele metadata til nye dokumenter automatisk.You can configure paperless to read your mails and add documents from attached files.
@@ -758,7 +758,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html11
- You can configure paperless to read your mails and add documents from attached files.
+ Du kan konfigurere paperless til at læse dine mails og tilføje dokumenter fra vedhæftede filer.Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general.
@@ -766,7 +766,7 @@
src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html13
- Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general.
+ Konsulter dokumentationen om, hvordan du bruger disse funktioner. Afsnittet om 'basic usage' har også nogle oplysninger om, hvordan du generelt bruger paperless.Searching document with asn
@@ -774,7 +774,7 @@
src/app/components/document-asn/document-asn.component.html1
- Searching document with asn
+ Søger efter dokument med asn Page
@@ -786,7 +786,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html15
- Page
+ Sideof
@@ -794,7 +794,7 @@
src/app/components/document-detail/document-detail.component.html5
- of
+ af Delete
@@ -846,7 +846,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html82
- Download
+ DownloadDownload original
@@ -854,7 +854,7 @@
src/app/components/document-detail/document-detail.component.html25
- Download original
+ Download originalMore like this
@@ -866,7 +866,7 @@
src/app/components/document-list/document-card-large/document-card-large.component.html38
- More like this
+ Mere som detteClose
@@ -874,7 +874,7 @@
src/app/components/document-detail/document-detail.component.html40
- Close
+ LukDetails
@@ -882,7 +882,7 @@
src/app/components/document-detail/document-detail.component.html52
- Details
+ DetaljerArchive serial number
@@ -890,7 +890,7 @@
src/app/components/document-detail/document-detail.component.html56
- Archive serial number
+ Arkiv serienummerDate created
@@ -898,7 +898,7 @@
src/app/components/document-detail/document-detail.component.html57
- Date created
+ OprettelsesdatoCorrespondent
@@ -954,7 +954,7 @@
src/app/components/document-detail/document-detail.component.html68
- Content
+ IndholdMetadata
@@ -974,7 +974,7 @@
src/app/components/document-detail/document-detail.component.html83
- Date modified
+ ÆndringsdatoDate added
@@ -982,7 +982,7 @@
src/app/components/document-detail/document-detail.component.html87
- Date added
+ TilføjelsesdatoMedia filename
@@ -990,7 +990,7 @@
src/app/components/document-detail/document-detail.component.html91
- Media filename
+ Filnavn for medieOriginal MD5 checksum
@@ -998,7 +998,7 @@
src/app/components/document-detail/document-detail.component.html95
- Original MD5 checksum
+ Original MD5 kontrolsumOriginal file size
@@ -1006,7 +1006,7 @@
src/app/components/document-detail/document-detail.component.html99
- Original file size
+ Original filstørrelseOriginal mime type
@@ -1014,7 +1014,7 @@
src/app/components/document-detail/document-detail.component.html103
- Original mime type
+ Original mimetypeArchive MD5 checksum
@@ -1022,7 +1022,7 @@
src/app/components/document-detail/document-detail.component.html107
- Archive MD5 checksum
+ Arkiv MD5 kontrolsumArchive file size
@@ -1030,7 +1030,7 @@
src/app/components/document-detail/document-detail.component.html111
- Archive file size
+ Arkiv filstørrelseOriginal document metadata
@@ -1038,7 +1038,7 @@
src/app/components/document-detail/document-detail.component.html117
- Original document metadata
+ Original dokumentmetadataArchived document metadata
@@ -1046,7 +1046,7 @@
src/app/components/document-detail/document-detail.component.html118
- Archived document metadata
+ Arkiveret dokumentmetadataDiscard
@@ -1054,7 +1054,7 @@
src/app/components/document-detail/document-detail.component.html143
- Discard
+ ForkastSave & next
@@ -1062,7 +1062,7 @@
src/app/components/document-detail/document-detail.component.html144
- Save & next
+ Gem & næsteSave
@@ -1090,7 +1090,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html19
- Save
+ GemConfirm delete
@@ -1142,7 +1142,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html10
- Select:
+ Vælg:All
@@ -1150,7 +1150,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html20
- All
+ AlleEdit:
@@ -1158,7 +1158,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html27
- Edit:
+ Redigér:Filter tags
@@ -1170,7 +1170,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html19
- Filter tags
+ Filtrer etiketterFilter correspondents
@@ -1182,7 +1182,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html27
- Filter correspondents
+ Filtrer korrespondenterFilter document types
@@ -1194,7 +1194,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html34
- Filter document types
+ Filtrer dokumenttyperDownload originals
@@ -1202,7 +1202,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.html68
- Download originals
+ Download originalerError executing bulk operation:
@@ -1380,7 +1380,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html26
- Filter by correspondent
+ Filtrer efter korrespondentFilter by tag
@@ -1392,7 +1392,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html15
- Filter by tag
+ Filtrer efter tagEdit
@@ -1416,7 +1416,7 @@
src/app/components/manage/tag-list/tag-list.component.html43
- Edit
+ RedigérView
@@ -1424,7 +1424,7 @@
src/app/components/document-list/document-card-large/document-card-large.component.html51
- View
+ VisScore:
@@ -1432,7 +1432,7 @@
src/app/components/document-list/document-card-large/document-card-large.component.html87
- Score:
+ Score:Created:
@@ -1440,7 +1440,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html43
- Created:
+ Oprettet: Added:
@@ -1448,7 +1448,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html44
- Added:
+ Tilføjet: Modified:
@@ -1456,7 +1456,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html45
- Modified:
+ Ændret: Select none
@@ -1464,7 +1464,7 @@
src/app/components/document-list/document-list.component.html10
- Select none
+ Vælg ingenSelect page
@@ -1472,7 +1472,7 @@
src/app/components/document-list/document-list.component.html11
- Select page
+ Vælg sideSelect all
@@ -1480,7 +1480,7 @@
src/app/components/document-list/document-list.component.html12
- Select all
+ Vælg alleSort
@@ -1488,7 +1488,7 @@
src/app/components/document-list/document-list.component.html39
- Sort
+ SortérViews
@@ -1496,7 +1496,7 @@
src/app/components/document-list/document-list.component.html64
- Views
+ VisningerSave ""
@@ -1504,7 +1504,7 @@
src/app/components/document-list/document-list.component.html71
- Save ""
+ Gem ""Save as...
@@ -1512,7 +1512,7 @@
src/app/components/document-list/document-list.component.html72
- Save as...
+ Gem som...Loading...
@@ -1520,7 +1520,7 @@
src/app/components/document-list/document-list.component.html87
- Loading...
+ Indlæser...{VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
@@ -1528,7 +1528,7 @@
src/app/components/document-list/document-list.component.html89
- {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}}
+ {VAR_PLURAL, plural, =1 {Valgte af et dokument} other {Valgte af dokumenter}}{VAR_PLURAL, plural, =1 {One document} other { documents}}
@@ -1536,7 +1536,7 @@
src/app/components/document-list/document-list.component.html91
- {VAR_PLURAL, plural, =1 {One document} other { documents}}
+ {VAR_PLURAL, plural, =1 {Et dokument} other { dokumenter}}(filtered)
@@ -1544,7 +1544,7 @@
src/app/components/document-list/document-list.component.html91
- (filtered)
+ (filtreret)ASN
@@ -1600,7 +1600,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html57
- Reset filters
+ Nulstil filtreCorrespondent:
@@ -1696,7 +1696,7 @@
src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html3
- Save current view
+ Gem nuværende visningName
@@ -1744,7 +1744,7 @@
src/app/components/manage/tag-list/tag-list.component.html19
- Name
+ NavnShow in sidebar
@@ -1756,7 +1756,7 @@
src/app/components/manage/settings/settings.component.html153
- Show in sidebar
+ Vis i sidebjælkeShow on dashboard
@@ -1768,7 +1768,7 @@
src/app/components/manage/settings/settings.component.html149
- Show on dashboard
+ Vis på betjeningspanelMatching algorithm
@@ -1784,7 +1784,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html13
- Matching algorithm
+ Matching algoritmeMatching pattern
@@ -1800,7 +1800,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html14
- Matching pattern
+ Match mønsterCase insensitive
@@ -1816,7 +1816,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html15
- Case insensitive
+ Skelner ikke mellem store og små bogstaverCreate new correspondent
@@ -1848,7 +1848,7 @@
src/app/components/manage/tag-list/tag-list.component.html2
- Create
+ OpretFilter by:
@@ -1864,7 +1864,7 @@
src/app/components/manage/tag-list/tag-list.component.html8
- Filter by:
+ Filtrér efter:Matching
@@ -1880,7 +1880,7 @@
src/app/components/manage/tag-list/tag-list.component.html21
- Matching
+ MatchendeDocument count
@@ -1896,7 +1896,7 @@
src/app/components/manage/tag-list/tag-list.component.html22
- Document count
+ Antal dokumenterLast correspondence
@@ -1904,7 +1904,7 @@
src/app/components/manage/correspondent-list/correspondent-list.component.html22
- Last correspondence
+ Sidste korrespondanceActions
@@ -1924,7 +1924,7 @@
src/app/components/manage/tag-list/tag-list.component.html23
- Actions
+ HandlingerDo you really want to delete the correspondent ""?
@@ -2000,7 +2000,7 @@
src/app/components/manage/settings/settings.component.html10
- General settings
+ Generelle indstillingerAppearance
@@ -2008,7 +2008,7 @@
src/app/components/manage/settings/settings.component.html13
- Appearance
+ UdseendeDisplay language
@@ -2016,7 +2016,7 @@
src/app/components/manage/settings/settings.component.html17
- Display language
+ Visning sprogYou need to reload the page after applying a new language.
@@ -2024,7 +2024,7 @@
src/app/components/manage/settings/settings.component.html25
- You need to reload the page after applying a new language.
+ Du skal genindlæse siden efter at have valgt et nyt sprog.Date display
@@ -2032,7 +2032,7 @@
src/app/components/manage/settings/settings.component.html32
- Date display
+ Dato visningDate format
@@ -2040,7 +2040,7 @@
src/app/components/manage/settings/settings.component.html45
- Date format
+ DatoformatShort:
@@ -2048,7 +2048,7 @@
src/app/components/manage/settings/settings.component.html51
- Short:
+ Kort: Medium:
@@ -2056,7 +2056,7 @@
src/app/components/manage/settings/settings.component.html55
- Medium:
+ Mellem: Long:
@@ -2064,7 +2064,7 @@
src/app/components/manage/settings/settings.component.html59
- Long:
+ Lang: Items per page
@@ -2072,7 +2072,7 @@
src/app/components/manage/settings/settings.component.html67
- Items per page
+ Elementer pr. sideDocument editor
@@ -2080,7 +2080,7 @@
src/app/components/manage/settings/settings.component.html83
- Document editor
+ Dokument editorUse PDF viewer provided by the browser
@@ -2088,7 +2088,7 @@
src/app/components/manage/settings/settings.component.html87
- Use PDF viewer provided by the browser
+ Benyt PDF-fremviser leveret af browserenThis is usually faster for displaying large PDF documents, but it might not work on some browsers.
@@ -2096,7 +2096,7 @@
src/app/components/manage/settings/settings.component.html87
- This is usually faster for displaying large PDF documents, but it might not work on some browsers.
+ Dette er normalt hurtigere til visning af store PDF-dokumenter, men det virker måske ikke på nogle browsere.Dark mode
@@ -2104,7 +2104,7 @@
src/app/components/manage/settings/settings.component.html94
- Dark mode
+ Mørk tilstandUse system settings
@@ -2112,7 +2112,7 @@
src/app/components/manage/settings/settings.component.html97
- Use system settings
+ Brug systemindstillingerEnable dark mode
@@ -2120,7 +2120,7 @@
src/app/components/manage/settings/settings.component.html98
- Enable dark mode
+ Aktivér mørk tilstandInvert thumbnails in dark mode
@@ -2128,7 +2128,7 @@
src/app/components/manage/settings/settings.component.html99
- Invert thumbnails in dark mode
+ Invertér miniaturebilleder i mørk tilstandBulk editing
@@ -2136,7 +2136,7 @@
src/app/components/manage/settings/settings.component.html103
- Bulk editing
+ Masse redigeringShow confirmation dialogs
@@ -2144,7 +2144,7 @@
src/app/components/manage/settings/settings.component.html107
- Show confirmation dialogs
+ Vis bekræftelsesdialogerDeleting documents will always ask for confirmation.
@@ -2152,7 +2152,7 @@
src/app/components/manage/settings/settings.component.html107
- Deleting documents will always ask for confirmation.
+ Sletning af dokumenter vil altid anmode om bekræftelse.Apply on close
@@ -2160,7 +2160,7 @@
src/app/components/manage/settings/settings.component.html108
- Apply on close
+ Anvend ved lukningNotifications
@@ -2168,7 +2168,7 @@
src/app/components/manage/settings/settings.component.html116
- Notifications
+ NotifikationerDocument processing
@@ -2176,7 +2176,7 @@
src/app/components/manage/settings/settings.component.html119
- Document processing
+ DokumentbehandlingShow notifications when new documents are detected
@@ -2184,7 +2184,7 @@
src/app/components/manage/settings/settings.component.html123
- Show notifications when new documents are detected
+ Vis notifikationer når nye dokumenter registreresShow notifications when document processing completes successfully
@@ -2192,7 +2192,7 @@
src/app/components/manage/settings/settings.component.html124
- Show notifications when document processing completes successfully
+ Vis notifikationer når dokumentbehandling er fuldførtShow notifications when document processing fails
@@ -2200,7 +2200,7 @@
src/app/components/manage/settings/settings.component.html125
- Show notifications when document processing fails
+ Vis notifikationer når dokumentbehandling fejlerSuppress notifications on dashboard
@@ -2208,7 +2208,7 @@
src/app/components/manage/settings/settings.component.html126
- Suppress notifications on dashboard
+ Undertryk notifikationer på betjeningspaneletThis will suppress all messages about document processing status on the dashboard.
@@ -2216,7 +2216,7 @@
src/app/components/manage/settings/settings.component.html126
- This will suppress all messages about document processing status on the dashboard.
+ Dette vil undertrykke alle meddelelser om dokumentbehandlingsstatus på betjeningspanelet.Appears on
@@ -2224,7 +2224,7 @@
src/app/components/manage/settings/settings.component.html146
- Appears on
+ Vises påNo saved views defined.
@@ -2232,7 +2232,7 @@
src/app/components/manage/settings/settings.component.html163
- No saved views defined.
+ Ingen gemte visninger angivet.Saved view "" deleted.
@@ -2284,7 +2284,7 @@
src/app/components/manage/tag-list/tag-list.component.html20
- Color
+ FarveInbox tag
@@ -2292,7 +2292,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html12
- Inbox tag
+ IndbakkeetiketInbox tags are automatically assigned to all consumed documents.
@@ -2300,7 +2300,7 @@
src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html12
- Inbox tags are automatically assigned to all consumed documents.
+ Indbakkeetiketter er automatisk tildelt til alle bearbejdede dokumenter.Create new tag
@@ -2332,7 +2332,7 @@
src/app/components/not-found/not-found.component.html7
- 404 Not Found
+ 404 Ikke fundetAny word
@@ -2436,7 +2436,7 @@
src/app/services/open-documents.service.ts96
- Unsaved Changes
+ Ugemte ÆndringerYou have unsaved changes.
@@ -2452,7 +2452,7 @@
src/app/services/open-documents.service.ts97
- You have unsaved changes.
+ Du har ugemte ændringer.Are you sure you want to leave?
@@ -2460,7 +2460,7 @@
src/app/guards/dirty-form.guard.ts18
- Are you sure you want to leave?
+ Er du sikker på du vil forlade denne side?Leave page
@@ -2468,7 +2468,7 @@
src/app/guards/dirty-form.guard.ts20
- Leave page
+ Forlad side(no title)
@@ -2608,7 +2608,7 @@
src/app/services/open-documents.service.ts77
- Are you sure you want to close this document?
+ Er du sikker på, at du vil lukke dette dokument?Close document
@@ -2616,7 +2616,7 @@
src/app/services/open-documents.service.ts79
- Close document
+ Luk dokumentAre you sure you want to close all documents?
@@ -2624,7 +2624,7 @@
src/app/services/open-documents.service.ts98
- Are you sure you want to close all documents?
+ Er du sikker på, at du vil lukke alle dokumenter?Close documents
@@ -2632,7 +2632,7 @@
src/app/services/open-documents.service.ts100
- Close documents
+ Luk dokumenterModified
@@ -2665,7 +2665,7 @@
src/app/services/settings.service.ts91
- Czech
+ TjekkiskDanish
@@ -2673,7 +2673,7 @@
src/app/services/settings.service.ts92
- Danish
+ DanskGerman
@@ -2721,7 +2721,7 @@
src/app/services/settings.service.ts98
- Luxembourgish
+ LuxemburgskDutch
diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf
index 201b18ab9..ee4e3abba 100644
--- a/src-ui/src/locale/messages.fr_FR.xlf
+++ b/src-ui/src/locale/messages.fr_FR.xlf
@@ -511,7 +511,7 @@
src/app/components/dashboard/dashboard.component.ts33
- Bonjour , bienvenue sur Paperless-ngx!
+ Bonjour , bienvenue dans Paperless-ngx!Welcome to Paperless-ngx!
@@ -519,7 +519,7 @@
src/app/components/dashboard/dashboard.component.ts35
- Bienvenue sur Paperless-ngx!
+ Bienvenue dans Paperless-ngx!Show all
diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po
index be3369c39..f7fdaa792 100644
--- a/src/locale/da_DK/LC_MESSAGES/django.po
+++ b/src/locale/da_DK/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-02 11:20-0800\n"
-"PO-Revision-Date: 2022-03-02 22:29\n"
+"PO-Revision-Date: 2022-03-03 16:53\n"
"Last-Translator: \n"
"Language-Team: Danish\n"
"Language: da_DK\n"
@@ -344,7 +344,7 @@ msgstr "mere som dette"
#: documents/models.py:353
msgid "has tags in"
-msgstr ""
+msgstr "har etiketter i"
#: documents/models.py:363
msgid "rule type"
@@ -378,11 +378,11 @@ msgstr "Filtype %(type)s understøttes ikke"
#: documents/templates/index.html:22
msgid "Paperless-ngx is loading..."
-msgstr ""
+msgstr "Paperless-ngx indlæses..."
#: documents/templates/registration/logged_out.html:14
msgid "Paperless-ngx signed out"
-msgstr ""
+msgstr "Paperless-ngx logget ud"
#: documents/templates/registration/logged_out.html:59
msgid "You have been successfully logged out. Bye!"
@@ -394,7 +394,7 @@ msgstr "Log ind igen"
#: documents/templates/registration/login.html:15
msgid "Paperless-ngx sign in"
-msgstr ""
+msgstr "Paperless-ngx log ind"
#: documents/templates/registration/login.html:61
msgid "Please sign in."
@@ -422,11 +422,11 @@ msgstr "Engelsk (USA)"
#: paperless/settings.py:300
msgid "Czech"
-msgstr ""
+msgstr "Tjekkisk"
#: paperless/settings.py:301
msgid "Danish"
-msgstr ""
+msgstr "Dansk"
#: paperless/settings.py:302
msgid "German"
@@ -450,7 +450,7 @@ msgstr "Italiensk"
#: paperless/settings.py:307
msgid "Luxembourgish"
-msgstr ""
+msgstr "Luxemburgsk"
#: paperless/settings.py:308
msgid "Dutch"
@@ -482,7 +482,7 @@ msgstr "Svensk"
#: paperless/urls.py:139
msgid "Paperless-ngx administration"
-msgstr ""
+msgstr "Paperless-ngx administration"
#: paperless_mail/admin.py:29
msgid "Authentication"
diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po
index c3a733649..4c30bf95e 100644
--- a/src/locale/fr_FR/LC_MESSAGES/django.po
+++ b/src/locale/fr_FR/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-03-02 11:20-0800\n"
-"PO-Revision-Date: 2022-03-02 22:29\n"
+"PO-Revision-Date: 2022-03-03 15:34\n"
"Last-Translator: \n"
"Language-Team: French\n"
"Language: fr_FR\n"
@@ -344,7 +344,7 @@ msgstr "documents relatifs"
#: documents/models.py:353
msgid "has tags in"
-msgstr ""
+msgstr "porte une étiquette parmi"
#: documents/models.py:363
msgid "rule type"
@@ -378,11 +378,11 @@ msgstr "Type de fichier %(type)s non pris en charge"
#: documents/templates/index.html:22
msgid "Paperless-ngx is loading..."
-msgstr ""
+msgstr "Paperless-ngx est en cours de chargement..."
#: documents/templates/registration/logged_out.html:14
msgid "Paperless-ngx signed out"
-msgstr ""
+msgstr "Déconnexion de Paperless-ngx"
#: documents/templates/registration/logged_out.html:59
msgid "You have been successfully logged out. Bye!"
@@ -394,7 +394,7 @@ msgstr "Se reconnecter"
#: documents/templates/registration/login.html:15
msgid "Paperless-ngx sign in"
-msgstr ""
+msgstr "Connexion à Paperless-ngx"
#: documents/templates/registration/login.html:61
msgid "Please sign in."
@@ -422,11 +422,11 @@ msgstr "Anglais (US)"
#: paperless/settings.py:300
msgid "Czech"
-msgstr ""
+msgstr "Tchèque"
#: paperless/settings.py:301
msgid "Danish"
-msgstr ""
+msgstr "Danois"
#: paperless/settings.py:302
msgid "German"
@@ -450,7 +450,7 @@ msgstr "Italien"
#: paperless/settings.py:307
msgid "Luxembourgish"
-msgstr ""
+msgstr "Luxembourgeois"
#: paperless/settings.py:308
msgid "Dutch"
@@ -482,7 +482,7 @@ msgstr "Suédois"
#: paperless/urls.py:139
msgid "Paperless-ngx administration"
-msgstr ""
+msgstr "Administration de Paperless-ngx"
#: paperless_mail/admin.py:29
msgid "Authentication"