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 @@ 11 app title - Paperless-ngx + Paperless-ngx Search documents @@ -69,7 +69,7 @@ src/app/components/app-frame/app-frame.component.html 18 - Search documents + Søg i dokumenter Logged in as @@ -77,7 +77,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Logged in as + Logget ind som Settings @@ -93,7 +93,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + Indstillinger Logout @@ -101,7 +101,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + Log ud Dashboard @@ -113,7 +113,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Betjeningspanel Documents @@ -149,7 +149,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + Gemte visninger Open documents @@ -157,7 +157,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + Åbn dokumenter Close all @@ -165,7 +165,7 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + Luk alle Manage @@ -173,7 +173,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + Administrér Correspondents @@ -185,7 +185,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 1 - Correspondents + Korrespondenter Tags @@ -209,7 +209,7 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Etiketter Document types @@ -221,7 +221,7 @@ src/app/components/manage/document-type-list/document-type-list.component.html 1 - Document types + Dokumenttyper Logs @@ -233,7 +233,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logninger Admin @@ -241,7 +241,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Admin Info @@ -249,7 +249,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Info Documentation @@ -257,7 +257,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Dokumentation GitHub @@ -265,7 +265,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -273,7 +273,7 @@ src/app/components/app-frame/app-frame.component.html 181 - Suggest an idea + Foreslå en idé Cancel @@ -305,7 +305,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 18 - Cancel + Annullér Confirmation @@ -341,7 +341,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - After + Efter Clear @@ -353,7 +353,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 41 - Clear + Ryd Before @@ -361,7 +361,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 36 - Before + Før Last 7 days @@ -425,7 +425,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 39 - Apply + Anvend Click again to exclude items. @@ -433,7 +433,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 45 - 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.html 12 - Invalid date. + Ugyldig dato. Add item @@ -459,7 +459,7 @@ 11 Used for both types and correspondents - Add item + Tilføj element Suggestions: @@ -471,7 +471,7 @@ src/app/components/common/input/tags/tags.component.html 42 - Suggestions: + Forslag: Add tag @@ -479,7 +479,7 @@ src/app/components/common/input/tags/tags.component.html 11 - Add tag + Tilføj etiket Select @@ -511,7 +511,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hello , welcome to Paperless-ngx! + Hej , velkommen til Paperless-ngx! Welcome to Paperless-ngx! @@ -519,7 +519,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - 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.html 27 - Show all + Vis alle Created @@ -583,7 +583,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Statistikker Documents in inbox: @@ -591,7 +591,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documents in inbox: + Dokumenter i indbakke: Total documents: @@ -599,7 +599,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total documents: + Samtlige dokumenter: Upload new documents @@ -607,7 +607,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Upload nye dokumenter Dismiss completed @@ -616,7 +616,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + Afskedig afsluttede Drop documents here or @@ -624,7 +624,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Drop documents here or + Slip dokumenter her eller Browse files @@ -632,7 +632,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Gennemse filer {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -641,7 +641,7 @@ 25 This 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.html 1 - First steps + Første trin Paperless is running! :) @@ -726,7 +726,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - 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.html 6,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.html 8 - 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.html 10 - 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.html 11 - 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.html 13 - 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.html 1 - 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.html 15 - Page + Side of @@ -794,7 +794,7 @@ src/app/components/document-detail/document-detail.component.html 5 - of + af Delete @@ -846,7 +846,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 82 - Download + Download Download original @@ -854,7 +854,7 @@ src/app/components/document-detail/document-detail.component.html 25 - Download original + Download original More like this @@ -866,7 +866,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 38 - More like this + Mere som dette Close @@ -874,7 +874,7 @@ src/app/components/document-detail/document-detail.component.html 40 - Close + Luk Details @@ -882,7 +882,7 @@ src/app/components/document-detail/document-detail.component.html 52 - Details + Detaljer Archive serial number @@ -890,7 +890,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Archive serial number + Arkiv serienummer Date created @@ -898,7 +898,7 @@ src/app/components/document-detail/document-detail.component.html 57 - Date created + Oprettelsesdato Correspondent @@ -954,7 +954,7 @@ src/app/components/document-detail/document-detail.component.html 68 - Content + Indhold Metadata @@ -974,7 +974,7 @@ src/app/components/document-detail/document-detail.component.html 83 - Date modified + Ændringsdato Date added @@ -982,7 +982,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Date added + Tilføjelsesdato Media filename @@ -990,7 +990,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Media filename + Filnavn for medie Original MD5 checksum @@ -998,7 +998,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Original MD5 checksum + Original MD5 kontrolsum Original file size @@ -1006,7 +1006,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Original file size + Original filstørrelse Original mime type @@ -1014,7 +1014,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Original mime type + Original mimetype Archive MD5 checksum @@ -1022,7 +1022,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Archive MD5 checksum + Arkiv MD5 kontrolsum Archive file size @@ -1030,7 +1030,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Archive file size + Arkiv filstørrelse Original document metadata @@ -1038,7 +1038,7 @@ src/app/components/document-detail/document-detail.component.html 117 - Original document metadata + Original dokumentmetadata Archived document metadata @@ -1046,7 +1046,7 @@ src/app/components/document-detail/document-detail.component.html 118 - Archived document metadata + Arkiveret dokumentmetadata Discard @@ -1054,7 +1054,7 @@ src/app/components/document-detail/document-detail.component.html 143 - Discard + Forkast Save & next @@ -1062,7 +1062,7 @@ src/app/components/document-detail/document-detail.component.html 144 - Save & next + Gem & næste Save @@ -1090,7 +1090,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 19 - Save + Gem Confirm delete @@ -1142,7 +1142,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Vælg: All @@ -1150,7 +1150,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + Alle Edit: @@ -1158,7 +1158,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Redigér: Filter tags @@ -1170,7 +1170,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 19 - Filter tags + Filtrer etiketter Filter correspondents @@ -1182,7 +1182,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 27 - Filter correspondents + Filtrer korrespondenter Filter document types @@ -1194,7 +1194,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 34 - Filter document types + Filtrer dokumenttyper Download originals @@ -1202,7 +1202,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 - Download originals + Download originaler Error executing bulk operation: @@ -1380,7 +1380,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 26 - Filter by correspondent + Filtrer efter korrespondent Filter by tag @@ -1392,7 +1392,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 15 - Filter by tag + Filtrer efter tag Edit @@ -1416,7 +1416,7 @@ src/app/components/manage/tag-list/tag-list.component.html 43 - Edit + Redigér View @@ -1424,7 +1424,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 51 - View + Vis Score: @@ -1432,7 +1432,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 87 - Score: + Score: Created: @@ -1440,7 +1440,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 43 - Created: + Oprettet: Added: @@ -1448,7 +1448,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 44 - Added: + Tilføjet: Modified: @@ -1456,7 +1456,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 45 - Modified: + Ændret: Select none @@ -1464,7 +1464,7 @@ src/app/components/document-list/document-list.component.html 10 - Select none + Vælg ingen Select page @@ -1472,7 +1472,7 @@ src/app/components/document-list/document-list.component.html 11 - Select page + Vælg side Select all @@ -1480,7 +1480,7 @@ src/app/components/document-list/document-list.component.html 12 - Select all + Vælg alle Sort @@ -1488,7 +1488,7 @@ src/app/components/document-list/document-list.component.html 39 - Sort + Sortér Views @@ -1496,7 +1496,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Visninger Save "" @@ -1504,7 +1504,7 @@ src/app/components/document-list/document-list.component.html 71 - Save "" + Gem "" Save as... @@ -1512,7 +1512,7 @@ src/app/components/document-list/document-list.component.html 72 - Save as... + Gem som... Loading... @@ -1520,7 +1520,7 @@ src/app/components/document-list/document-list.component.html 87 - 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.html 89 - {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.html 91 - {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.html 91 - (filtered) + (filtreret) ASN @@ -1600,7 +1600,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 57 - Reset filters + Nulstil filtre Correspondent: @@ -1696,7 +1696,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Gem nuværende visning Name @@ -1744,7 +1744,7 @@ src/app/components/manage/tag-list/tag-list.component.html 19 - Name + Navn Show in sidebar @@ -1756,7 +1756,7 @@ src/app/components/manage/settings/settings.component.html 153 - Show in sidebar + Vis i sidebjælke Show on dashboard @@ -1768,7 +1768,7 @@ src/app/components/manage/settings/settings.component.html 149 - Show on dashboard + Vis på betjeningspanel Matching algorithm @@ -1784,7 +1784,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Matching algorithm + Matching algoritme Matching pattern @@ -1800,7 +1800,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 14 - Matching pattern + Match mønster Case insensitive @@ -1816,7 +1816,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 15 - Case insensitive + Skelner ikke mellem store og små bogstaver Create new correspondent @@ -1848,7 +1848,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Create + Opret Filter by: @@ -1864,7 +1864,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filter by: + Filtrér efter: Matching @@ -1880,7 +1880,7 @@ src/app/components/manage/tag-list/tag-list.component.html 21 - Matching + Matchende Document count @@ -1896,7 +1896,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Document count + Antal dokumenter Last correspondence @@ -1904,7 +1904,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 22 - Last correspondence + Sidste korrespondance Actions @@ -1924,7 +1924,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Handlinger Do you really want to delete the correspondent ""? @@ -2000,7 +2000,7 @@ src/app/components/manage/settings/settings.component.html 10 - General settings + Generelle indstillinger Appearance @@ -2008,7 +2008,7 @@ src/app/components/manage/settings/settings.component.html 13 - Appearance + Udseende Display language @@ -2016,7 +2016,7 @@ src/app/components/manage/settings/settings.component.html 17 - Display language + Visning sprog You need to reload the page after applying a new language. @@ -2024,7 +2024,7 @@ src/app/components/manage/settings/settings.component.html 25 - 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.html 32 - Date display + Dato visning Date format @@ -2040,7 +2040,7 @@ src/app/components/manage/settings/settings.component.html 45 - Date format + Datoformat Short: @@ -2048,7 +2048,7 @@ src/app/components/manage/settings/settings.component.html 51 - Short: + Kort: Medium: @@ -2056,7 +2056,7 @@ src/app/components/manage/settings/settings.component.html 55 - Medium: + Mellem: Long: @@ -2064,7 +2064,7 @@ src/app/components/manage/settings/settings.component.html 59 - Long: + Lang: Items per page @@ -2072,7 +2072,7 @@ src/app/components/manage/settings/settings.component.html 67 - Items per page + Elementer pr. side Document editor @@ -2080,7 +2080,7 @@ src/app/components/manage/settings/settings.component.html 83 - Document editor + Dokument editor Use PDF viewer provided by the browser @@ -2088,7 +2088,7 @@ src/app/components/manage/settings/settings.component.html 87 - Use PDF viewer provided by the browser + Benyt PDF-fremviser leveret af browseren This 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.html 87 - 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.html 94 - Dark mode + Mørk tilstand Use system settings @@ -2112,7 +2112,7 @@ src/app/components/manage/settings/settings.component.html 97 - Use system settings + Brug systemindstillinger Enable dark mode @@ -2120,7 +2120,7 @@ src/app/components/manage/settings/settings.component.html 98 - Enable dark mode + Aktivér mørk tilstand Invert thumbnails in dark mode @@ -2128,7 +2128,7 @@ src/app/components/manage/settings/settings.component.html 99 - Invert thumbnails in dark mode + Invertér miniaturebilleder i mørk tilstand Bulk editing @@ -2136,7 +2136,7 @@ src/app/components/manage/settings/settings.component.html 103 - Bulk editing + Masse redigering Show confirmation dialogs @@ -2144,7 +2144,7 @@ src/app/components/manage/settings/settings.component.html 107 - Show confirmation dialogs + Vis bekræftelsesdialoger Deleting documents will always ask for confirmation. @@ -2152,7 +2152,7 @@ src/app/components/manage/settings/settings.component.html 107 - 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.html 108 - Apply on close + Anvend ved lukning Notifications @@ -2168,7 +2168,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notifications + Notifikationer Document processing @@ -2176,7 +2176,7 @@ src/app/components/manage/settings/settings.component.html 119 - Document processing + Dokumentbehandling Show notifications when new documents are detected @@ -2184,7 +2184,7 @@ src/app/components/manage/settings/settings.component.html 123 - Show notifications when new documents are detected + Vis notifikationer når nye dokumenter registreres Show notifications when document processing completes successfully @@ -2192,7 +2192,7 @@ src/app/components/manage/settings/settings.component.html 124 - Show notifications when document processing completes successfully + Vis notifikationer når dokumentbehandling er fuldført Show notifications when document processing fails @@ -2200,7 +2200,7 @@ src/app/components/manage/settings/settings.component.html 125 - Show notifications when document processing fails + Vis notifikationer når dokumentbehandling fejler Suppress notifications on dashboard @@ -2208,7 +2208,7 @@ src/app/components/manage/settings/settings.component.html 126 - Suppress notifications on dashboard + Undertryk notifikationer på betjeningspanelet This will suppress all messages about document processing status on the dashboard. @@ -2216,7 +2216,7 @@ src/app/components/manage/settings/settings.component.html 126 - 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.html 146 - Appears on + Vises på No saved views defined. @@ -2232,7 +2232,7 @@ src/app/components/manage/settings/settings.component.html 163 - No saved views defined. + Ingen gemte visninger angivet. Saved view "" deleted. @@ -2284,7 +2284,7 @@ src/app/components/manage/tag-list/tag-list.component.html 20 - Color + Farve Inbox tag @@ -2292,7 +2292,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 12 - Inbox tag + Indbakkeetiket Inbox 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.html 12 - 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.html 7 - 404 Not Found + 404 Ikke fundet Any word @@ -2436,7 +2436,7 @@ src/app/services/open-documents.service.ts 96 - Unsaved Changes + Ugemte Ændringer You have unsaved changes. @@ -2452,7 +2452,7 @@ src/app/services/open-documents.service.ts 97 - 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.ts 18 - 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.ts 20 - Leave page + Forlad side (no title) @@ -2608,7 +2608,7 @@ src/app/services/open-documents.service.ts 77 - 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.ts 79 - Close document + Luk dokument Are you sure you want to close all documents? @@ -2624,7 +2624,7 @@ src/app/services/open-documents.service.ts 98 - 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.ts 100 - Close documents + Luk dokumenter Modified @@ -2665,7 +2665,7 @@ src/app/services/settings.service.ts 91 - Czech + Tjekkisk Danish @@ -2673,7 +2673,7 @@ src/app/services/settings.service.ts 92 - Danish + Dansk German @@ -2721,7 +2721,7 @@ src/app/services/settings.service.ts 98 - Luxembourgish + Luxemburgsk Dutch 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.ts 33 - Bonjour , bienvenue sur Paperless-ngx! + Bonjour , bienvenue dans Paperless-ngx! Welcome to Paperless-ngx! @@ -519,7 +519,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - 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"