From a6144e9692b12197af7f9625000da9b29732a56d Mon Sep 17 00:00:00 2001 From: Toxix Date: Sun, 4 Jul 2021 00:15:29 +0200 Subject: [PATCH 01/10] Refector: Do the npm compile as a Build step This removes the requirement of npm on the host system and removes an additional manual step during the building of the docker image. Updated the documentation accordingly and fixed a typo. --- Dockerfile | 11 ++++++++++- compile-frontend.sh | 7 ------- docs/setup.rst | 6 ++---- 3 files changed, 12 insertions(+), 12 deletions(-) delete mode 100755 compile-frontend.sh diff --git a/Dockerfile b/Dockerfile index 6c0caa049..6bd64f508 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,12 @@ +FROM node AS compile-frontend + +COPY . /src + +WORKDIR /src/src-ui +RUN npm install +RUN ./node_modules/.bin/ng build --prod + + FROM ubuntu:20.04 AS jbig2enc WORKDIR /usr/src/jbig2enc @@ -88,7 +97,7 @@ RUN cd docker \ COPY gunicorn.conf.py ../ # copy app -COPY src/ ./ +COPY --from=compile-frontend /src/src/ ./ # add users, setup scripts RUN addgroup --gid 1000 paperless \ diff --git a/compile-frontend.sh b/compile-frontend.sh deleted file mode 100755 index 98b88d033..000000000 --- a/compile-frontend.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -set -e - -cd src-ui -npm install -./node_modules/.bin/ng build --prod diff --git a/docs/setup.rst b/docs/setup.rst index f8b93f570..ee2cbe77b 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -260,9 +260,7 @@ Build the Docker image yourself webserver: build: . -4. Run the ``compile-frontend.sh`` script. This requires ``node`` and ``npm >= v15``. - -5. Follow steps 3 to 8 of :ref:`setup-docker_hub`. When asked to run +4. Follow steps 3 to 8 of :ref:`setup-docker_hub`. When asked to run ``docker-compose pull`` to pull the image, do .. code:: shell-session @@ -684,7 +682,7 @@ configuring some options in paperless can help improve performance immensely: your documents before feeding them into paperless. Some scanners are able to do this! You might want to even specify ``skip_noarchive`` to skip archive file generation for already ocr'ed documents entirely. -* If you want to perform OCR on the the device, consider using ``PAPERLESS_OCR_CLEAN=none``. +* If you want to perform OCR on the device, consider using ``PAPERLESS_OCR_CLEAN=none``. This will speed up OCR times and use less memory at the expense of slightly worse OCR results. * Set ``PAPERLESS_OPTIMIZE_THUMBNAILS`` to 'false' if you want faster consumption From 84f96d7a984be7b6dd2a8438cff184cdc506f291 Mon Sep 17 00:00:00 2001 From: Toxix Date: Mon, 5 Jul 2021 02:32:31 +0200 Subject: [PATCH 02/10] Feat adjust github pipeline for docker frontend artifacts This should allow to use docker building the frontend artifacts and reusing them in the bare metal release. --- .github/workflows/ci.yml | 47 ++++++++++------------------------------ 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13dc2c74c..2d452f3bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,35 +144,8 @@ jobs: cd src/ coveralls --service=github - frontend: - runs-on: ubuntu-20.04 - steps: - - - name: Checkout - uses: actions/checkout@v2 - - - uses: actions/setup-node@v2 - with: - node-version: '16' - - - name: Configure version on dev branches - if: startsWith(github.ref, 'refs/heads/feature-') || github.ref == 'refs/heads/dev' - run: | - git_hash=$(git rev-parse --short "$GITHUB_SHA") - git_branch=${GITHUB_REF#refs/heads/} - sed -i -E "s/version: \"(.*)\"/version: \"${git_branch} ${git_hash}\"/g" src-ui/src/environments/environment.prod.ts - - - name: Build frontend - run: ./compile-frontend.sh - - - name: Upload artifact - uses: actions/upload-artifact@v2 - with: - name: frontend-compiled - path: src/documents/static/frontend/ - build-release: - needs: [frontend, documentation, tests, whitespace, codestyle] + needs: [build-docker-image, documentation, tests, whitespace, codestyle] runs-on: ubuntu-20.04 steps: - @@ -283,7 +256,7 @@ jobs: 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-')) runs-on: ubuntu-latest - needs: [frontend, tests, whitespace, codestyle] + needs: [tests, whitespace, codestyle] steps: - name: Prepare @@ -304,12 +277,6 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - - name: Download frontend artifact - uses: actions/download-artifact@v2 - with: - name: frontend-compiled - path: src/documents/static/frontend/ - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 @@ -346,3 +313,13 @@ jobs: name: Inspect image run: | docker buildx imagetools inspect ${{ steps.prepare.outputs.inspect_tag }} + - + name: Export frontend artifact from docker + run: | + docker cp ${{ steps.prepare.outputs.tags }}:/src/src/documents/static/frontend/ src/documents/static/frontend/ + - + name: Upload frontend artifact + uses: actions/upload-artifact@v2 + with: + name: frontend-compiled + path: src/documents/static/frontend/ From 9f895fe65f0ceade1a9708ede8e1a805eb140b6e Mon Sep 17 00:00:00 2001 From: Toxix Date: Mon, 5 Jul 2021 02:43:15 +0200 Subject: [PATCH 03/10] Doc Update docs for frontend-compile As frontend compile step is done now inside docker container, we do not need to do it before. This is updating the documentation so it reflects the code changes made. --- docs/administration.rst | 1 - docs/extending.rst | 15 +++------------ 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/docs/administration.rst b/docs/administration.rst index 734a51756..3becf750e 100644 --- a/docs/administration.rst +++ b/docs/administration.rst @@ -92,7 +92,6 @@ B. If you built the image yourself, do the following: .. code:: shell-session $ git pull - $ ./compile-frontend.sh $ docker-compose build $ docker-compose up diff --git a/docs/extending.rst b/docs/extending.rst index f51ecc3a7..e085fd706 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -59,12 +59,11 @@ To do the setup you need to perform the steps from the following chapters in a c pipenv install --dev * Make sure you're using python 3.9.x or lower. Otherwise you might get issues with building dependencies. You can use `pyenv `_ to install a specific python version. - -7. Generate the static UI so you can perform a login to get session that is required for frontend development (this needs to be done one time only). From root folder: +7. Generate the static UI so you can perform a login to get session that is required for frontend development (this needs to be done one time only). From src-ui directory: .. code:: shell-session - compile-frontend.sh + ./node_modules/.bin/ng build --prod 8. Apply migrations and create a superuser for your dev instance: @@ -273,15 +272,7 @@ directory. Building the Docker image ========================= -Building the docker image from source requires the following two steps: - -1. Build the front end. - - .. code:: shell-session - - ./compile-frontend.sh - -2. Build the docker image. +Building the docker image from source: .. code:: shell-session From 31d96ea85b997aac26e310a74f5c26278a62f54d Mon Sep 17 00:00:00 2001 From: Toxix Date: Mon, 5 Jul 2021 03:10:37 +0200 Subject: [PATCH 04/10] Fix node version From automatic codereview. We should use a specific node version. We are using the same version that was used before in the github pipeline. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6bd64f508..d8cca0e3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node AS compile-frontend +FROM node:15 AS compile-frontend COPY . /src From 83e40f3e8768cbf4ed9d2ba5be23b4c327fdcde3 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Fri, 25 Feb 2022 13:51:00 -0800 Subject: [PATCH 05/10] Updates node version to 16 for the builder image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d8cca0e3d..b938bef82 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:15 AS compile-frontend +FROM node:16 AS compile-frontend COPY . /src From 6852127c33673f98042e24a346cb003574378a0e Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Fri, 25 Feb 2022 13:59:29 -0800 Subject: [PATCH 06/10] Adds missing step to run npm install --- docs/extending.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/extending.rst b/docs/extending.rst index e085fd706..6d2216b38 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -59,10 +59,12 @@ To do the setup you need to perform the steps from the following chapters in a c pipenv install --dev * Make sure you're using python 3.9.x or lower. Otherwise you might get issues with building dependencies. You can use `pyenv `_ to install a specific python version. + 7. Generate the static UI so you can perform a login to get session that is required for frontend development (this needs to be done one time only). From src-ui directory: .. code:: shell-session + npm install . ./node_modules/.bin/ng build --prod 8. Apply migrations and create a superuser for your dev instance: From 43779982326f1093cf19f6356e3943e873d6cde8 Mon Sep 17 00:00:00 2001 From: Johann Bauer Date: Fri, 25 Feb 2022 14:07:52 +0100 Subject: [PATCH 07/10] Fix Armv7 Docker build --- .github/workflows/ci.yml | 12 ++---------- Dockerfile | 23 +++++++++++++++++++---- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13dc2c74c..fd2f420e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -316,14 +316,6 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v1 - - - name: Cache Docker layers - uses: actions/cache@v2 - with: - path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-buildx- - name: Login to Github Container Registry uses: docker/login-action@v1 @@ -340,8 +332,8 @@ jobs: platforms: linux/amd64,linux/arm/v7,linux/arm64 push: true tags: ${{ steps.prepare.outputs.tags }} - cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache + cache-from: type=gha + cache-to: type=gha,mode=max - name: Inspect image run: | diff --git a/Dockerfile b/Dockerfile index 6c0caa049..801abe474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN git clone https://github.com/agl/jbig2enc . RUN ./autogen.sh RUN ./configure && make + FROM python:3.9-slim-bullseye # Binary dependencies @@ -39,7 +40,6 @@ RUN apt-get update \ media-types \ # OCRmyPDF dependencies liblept5 \ - qpdf \ tesseract-ocr \ tesseract-ocr-eng \ tesseract-ocr-deu \ @@ -62,11 +62,26 @@ RUN apt-get update \ && apt-get -y --no-install-recommends install \ build-essential \ libpq-dev \ - libqpdf-dev \ - && python3 -m pip install --upgrade pip setuptools wheel \ + git \ + zlib1g-dev \ + libjpeg62-turbo-dev \ + && if [ "$(uname -m)" = "armv7l" ]; \ + then echo "Building qpdf" \ + && mkdir -p /usr/src/qpdf \ + && cd /usr/src/qpdf \ + && git clone https://github.com/qpdf/qpdf.git . \ + && git checkout --quiet release-qpdf-10.6.2 \ + && ./configure \ + && make \ + && make install \ + && cd /usr/src/paperless/src/ \ + && rm -rf /usr/src/qpdf; \ + else \ + echo "Skipping qpdf build because pikepdf binary wheels are available."; \ + fi \ && python3 -m pip install --default-timeout=1000 --upgrade --no-cache-dir supervisor \ && python3 -m pip install --default-timeout=1000 --no-cache-dir -r ../requirements.txt \ - && apt-get -y purge build-essential libqpdf-dev \ + && apt-get -y purge build-essential git zlib1g-dev libjpeg62-turbo-dev \ && apt-get -y autoremove --purge \ && rm -rf /var/lib/apt/lists/* From cbe4e698c5cfcc2f9b1b517f8178f29360d01f40 Mon Sep 17 00:00:00 2001 From: Quinn Casey Date: Sun, 27 Feb 2022 17:02:00 -0800 Subject: [PATCH 08/10] Fix typo in `extending.rst` ``` unknown shorthand flag: 'r' in -restart See 'docker run --help'. ``` I think this should be `--restart` --- docs/extending.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending.rst b/docs/extending.rst index f51ecc3a7..31617bbea 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -51,7 +51,7 @@ To do the setup you need to perform the steps from the following chapters in a c .. code:: shell-session - docker run -d -p 6379:6379 -restart unless-stopped redis:latest + docker run -d -p 6379:6379 --restart unless-stopped redis:latest 6. Install the python dependencies by performing in the src/ directory. .. code:: shell-session From 49e6e54e0b449da4a33808cc2c127decd14237ba Mon Sep 17 00:00:00 2001 From: Quinn Casey Date: Sun, 27 Feb 2022 17:55:33 -0800 Subject: [PATCH 09/10] Restructure `README.md` (#147) * Restructure readme * Fix line break * Add Matrix badge * Some grammar, removed comparison to Paperless * Remove comparison to original paperless * Updated documents screenshot (also dark / light) * Reorganize a little, add demo * fix link * Demo note, fix TOC, add -ngx * Make the logo smaller For once its not 'make the logo bigger' * Reorganizing, move more translation stuff into contributing.md * fix 'community support' links * https for demo * Update autogenerated TOC * Change GHCR.io to Github Packages * Add curl install script * Remove demo heading * Remove trailing whitespace Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> Co-authored-by: Felix Eckhofer --- CONTRIBUTING.md | 15 ++++++- README.md | 112 +++++++++++++++++++++--------------------------- 2 files changed, 62 insertions(+), 65 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7378c8740..0ff210f98 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -56,9 +56,20 @@ Our community review process for `non-trivial` PRs is the following: This process might be slow as community members have different schedules and time to dedicate to the Paperless project. However it ensures community code reviews are as brilliantly thorough as they once were with @jonaswinkler. -# Adding a new language +# Translating Paperless-ngx + +Some notes about translation: + +- There are two resources: + - `src-ui/messages.xlf` contains the translation strings for the front end. This is the most important. + - `django.po` contains strings for the administration section of paperless, which is nice to have translated. +- Most of the front-end strings are used on buttons, menu items, etc., so ideally the translated string should not be much longer than the English original. +- Translation units may contain placeholders. These usually mean that there's a name of a tag or document or something in the string. You can click on the placeholders to copy them. +- Translation units may contain plural expressions such as `{PLURAL_VAR, plural, =1 {one result} =0 {no results} other { results}}`. Copy these verbatim and translate only the content in the inner `{}` brackets. Example: `{PLURAL_VAR, plural, =1 {Ein Ergebnis} =0 {Keine Ergebnisse} other { Ergebnisse}}` +- Changes to translations on Crowdin will get pushed into the repository automatically. + +## Adding new languages to the codebase -This section describes how new languages can be added to the code. If a language has already been added, and you would like to contribute new translations or change existing translations, please read the "Translation" section in the README.md file for further details on that. If you would like the project to be translated to another language, first head over to https://crwd.in/paperless-ngx to check if that language has already been enabled for translation. diff --git a/README.md b/README.md index d6b4ecc43..243249967 100644 --- a/README.md +++ b/README.md @@ -2,50 +2,40 @@ [![Crowdin](https://badges.crowdin.net/paperless-ngx/localized.svg)](https://crowdin.com/project/paperless-ngx) [![Documentation Status](https://readthedocs.org/projects/paperless-ngx/badge/?version=latest)](https://paperless-ngx.readthedocs.io/en/latest/?badge=latest) [![Coverage Status](https://coveralls.io/repos/github/paperless-ngx/paperless-ngx/badge.svg?branch=master)](https://coveralls.io/github/paperless-ngx/paperless-ngx?branch=master) +[![Chat on Matrix](https://matrix.to/img/matrix-badge.svg)](https://matrix.to/#/#paperless:adnidor.de) +

+ + +

+ + # Paperless-ngx -[Paperless (click me)](https://github.com/the-paperless-project/paperless) is an application by Daniel Quinn and contributors that indexes your scanned documents and allows you to easily search for documents and store metadata alongside your documents. +Paperless-ngx is a document management system that transforms your physical documents into a searchable online archive so you can keep, well, *less paper*. -Paperless-ng is a fork of the original project, adding a new interface and many other changes under the hood. These key points should help you decide whether Paperless-ng is something you would prefer over Paperless: +Paperless-ngx forked from [paperless-ng](https://github.com/jonaswinkler/paperless-ng) to continue the great work and distribute responsibility of supporting and advancing the project among a team of people. [Consider joining us!](#community-support) Discussion of this transition can be found in issues +[#1599](https://github.com/jonaswinkler/paperless-ng/issues/1599) and [#1632](https://github.com/jonaswinkler/paperless-ng/issues/1632). -* Interface: The new front end is the main interface for Paperless-ng, the old interface still exists but most customizations (such as thumbnails for the document list) have been removed.0 -* Encryption: Paperless-ng does not support GnuPG anymore, since storing your data on encrypted file systems (that you optionally mount on demand) achieves about the same result. -* Resource usage: Paperless-ng does use a bit more resources than Paperless. Running the web server requires about 300MB of RAM or more, depending on the configuration. While adding documents, it requires about 300MB additional RAM, depending on the document. It still runs on Raspberry Pi (many users do that), but it has been generally geared to better use the resources of more powerful systems. -* API changes: If you rely on the REST API of paperless, some of its functionality has been changed. +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.* -For a detailed list of changes done in paperless-ng, have a look at the [change log](https://paperless-ng.readthedocs.io/en/latest/changelog.html) in the documentation, especially the section about the [0.9.0 release](https://paperless-ng.readthedocs.io/en/latest/changelog.html#paperless-ng-0-9-0). -Paperless-ngx forked from paperless-ng to continue the great work already done and distribute responsibility among a team of people. - -Discussion around that can be found in the issues in the paperless-ng repository: -[1599](https://github.com/jonaswinkler/paperless-ng/issues/1599) -[1632](https://github.com/jonaswinkler/paperless-ng/issues/1632) -## Get in Touch - -People interested in continuing the work on paperless-ng(x) and form the organisation connected here on github and created a -[Matrix Room](https://matrix.to/#/#paperless:adnidor.de) for realtime communication. - -# How it Works - -Paperless does not control your scanner, it only helps you deal with what your scanner produces. - -1. Buy a document scanner that can write to a place on your network. If you need some inspiration, have a look at the [scanner recommendations](https://paperless-ngx.readthedocs.io/en/latest/scanners.html) page. Set it up to "scan to FTP" or something similar. It should be able to push scanned images to a server without you having to do anything. Of course if your scanner doesn't know how to automatically upload the file somewhere, you can always do that manually. Paperless doesn't care how the documents get into its local consumption directory. - - - Alternatively, you can use any of the mobile scanning apps out there. We have an app that allows you to share documents with paperless, if you're on Android. See the section on affiliated projects below. - -2. Wait for paperless to process your files. OCR is expensive, and depending on the power of your machine, this might take a bit of time. -3. Use the web frontend to sift through the database and find what you want. -4. Download the PDF you need/want via the web interface and do whatever you like with it. You can even print it and send it as if it's the original. In most cases, no one will care or notice. - -Here's what you get: - -![Dashboard](https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/master/docs/_static/screenshots/dashboard.png) - -If you want to see paperless-ngx in action, [more screenshots are available in the documentation](https://paperless-ngx.readthedocs.io/en/latest/screenshots.html). +- [Features](#features) +- [Getting started](#getting-started) +- [Contributing](#contributing) + - [Community Support](#community-support) + - [Translation](#translation) + - [Feature Requests](#feature-requests) + - [Bugs](#bugs) +- [Affiliated Projects](#affiliated-projects) +- [Important Note](#important-note) # Features +![Dashboard](https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/main/docs/_static/screenshots/documents-wchrome.png#gh-light-mode-only) +![Dashboard](https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/main/docs/_static/screenshots/documents-wchrome-dark.png#gh-dark-mode-only) + +* Organize and index your scanned documents with tags, correspondents, types, and more. * Performs OCR on your documents, adds selectable text to image only documents and adds tags, correspondents and document types to your documents. * Supports PDF documents, images, plain text files, and Office documents (Word, Excel, Powerpoint, and LibreOffice equivalents). * Office document support is optional and provided by Apache Tika (see [configuration](https://paperless-ngx.readthedocs.io/en/latest/configuration.html#tika-settings)) @@ -63,55 +53,51 @@ If you want to see paperless-ngx in action, [more screenshots are available in t * Configure multiple accounts and filters for each account. * When adding documents from mail, paperless can move these mail to a new folder, mark them as read, flag them as important or delete them. * Machine learning powered document matching. - * Paperless learns from your documents and will be able to automatically assign tags, correspondents and types to documents once you've stored a few documents in paperless. + * Paperless-ngx learns from your documents and will be able to automatically assign tags, correspondents and types to documents once you've stored a few documents in paperless. * Optimized for multi core systems: Paperless-ng consumes multiple documents in parallel. * The integrated sanity checker makes sure that your document archive is in good health. +* [More screenshots are available in the documentation](https://paperless-ngx.readthedocs.io/en/latest/screenshots.html). # Getting started -The recommended way to deploy paperless is docker-compose. The files in the /docker/compose directory are configured to pull the image from Docker Hub. +The easiest way to deploy paperless is docker-compose. The files in the [`/docker/compose` directory](https://github.com/paperless-ngx/paperless-ngx/tree/main/docker/compose) are configured to pull the image from Github Packages. -Read the [documentation](https://paperless-ngx.readthedocs.io/en/latest/setup.html#installation) on how to get started. +If you'd like to jump right in, you can configure a docker-compose environment with our install script: -Alternatively, you can install the dependencies and setup apache and a database server yourself. The documenation has a step by step guide on how to do it. +```bash +bash -c "$(curl -L https://raw.githubusercontent.com/paperless-ngx/paperless-ngx/master/install-paperless-ng.sh)" +``` -# Migrating from Paperless to 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. -Read the section about [migration](https://paperless-ngx.readthedocs.io/en/latest/setup.html#migration-to-paperless-ng) in the documentation. Its also entirely possible to go back to Paperless by reverting the database migrations. - -# Documentation + +### Documentation The documentation for Paperless-ngx is available on [ReadTheDocs](https://paperless-ngx.readthedocs.io/). -# Translation +# Contributing -Paperless-ngx is available in many languages that are coordinated on Crowdin. If you want to help out by translating paperless-ngx into your language, please head over to https://crwd.in/paperless-ngx, and thank you! More details about adding new languages to the code can be found in [CONTRIBUTING.md](https://github.com/paperless-ngx/paperless-ngx/blob/master/CONTRIBUTING.md#adding-a-new-language). Some notes about translation: +If you feel like contributing to the project, please do! Bug fixes, enhancements, visual fixes etc. are always welcome. If you want to implement something big: Please start a discussion about that! The [documentation](https://paperless-ngx.readthedocs.io/en/latest/extending.html) has some basic information on how to get started. -- There are two resources: - - "src-ui/messages.xlf" contains the translation strings for the front end. This is the most important. - - "django.po" contains strings for the administration section of paperless, which is nice to have translated. -- Most of the front-end strings are used on buttons, menu items, etc., so ideally the translated string should not be much longer than the English original. -- Translation units may contain placeholders. These usually mean that there's a name of a tag or document or something in the string. You can click on the placeholders to copy them. -- Translation units may contain plural expressions such as `{PLURAL_VAR, plural, =1 {one result} =0 {no results} other { results}}`. Copy these verbatim and translate only the content in the inner `{}` brackets. Example: `{PLURAL_VAR, plural, =1 {Ein Ergebnis} =0 {Keine Ergebnisse} other { Ergebnisse}}` -- Changes to translations on Crowdin will get pushed into the repository automatically. +## Community Support -# Feature Requests +People interested in continuing the work on paperless-ngx are encouraged to reach out here on github and in the [Matrix Room](https://matrix.to/#/#paperless:adnidor.de). If you would like to contribute to the project on an ongoing basis there are multiple [teams](https://github.com/orgs/paperless-ngx/people) (frontend, ci/cd, etc) that could use your help so please reach out! -Feature requests can be submitted via [GitHub Discussions](https://github.com/paperless-ngx/paperless-ngx/discussions/categories/feature-requests), you can search for existing ideas, add your own and vote for the ones you care about! Note that some older feature requests can also be found under [issues](https://github.com/paperless-ngx/paperless-ngx/issues). +## Translation -# Questions? Something not working? +Paperless-ngx is available in many languages that are coordinated on Crowdin. If you want to help out by translating paperless-ngx into your language, please head over to https://crwd.in/paperless-ngx, and thank you! More details can be found in [CONTRIBUTING.md](https://github.com/paperless-ngx/paperless-ngx/blob/main/CONTRIBUTING.md#translating-paperless-ngx). + +## Feature Requests + +Feature requests can be submitted via [GitHub Discussions](https://github.com/paperless-ngx/paperless-ngx/discussions/categories/feature-requests), you can search for existing ideas, add your own and vote for the ones you care about. + +## Bugs For bugs please [open an issue](https://github.com/paperless-ngx/paperless-ngx/issues) or [start a discussion](https://github.com/paperless-ngx/paperless-ngx/discussions) if you have questions. -## Feel like helping out? - -There's still lots of things to be done, just have a look at open issues & discussions. If you feel like contributing to the project, please do! Bug fixes and improvements to the front end (I just can't seem to get some of these CSS things right) are always welcome. The documentation has some basic information on how to get started. - -If you want to implement something big: Please start a discussion about that! Maybe I've already had something similar in mind and we can make it happen together. However, keep in mind that the general roadmap is to make the existing features stable and get them tested. - # Affiliated Projects -Paperless has been around a while now, and people are starting to build stuff on top of it. If you're one of those people, we can add your project to this list: +Paperless has been around a while now, and people are starting to build stuff on top of it. If you're one of those people, we can add your project to this list: * [Paperless App](https://github.com/bauerj/paperless_app): An Android/iOS app for Paperless-ngx. Also works with the original Paperless and Paperless-ng. * [Paperless Share](https://github.com/qcasey/paperless_share). Share any files from your Android application with paperless. Very simple, but works with all of the mobile scanning apps out there that allow you to share scanned documents. @@ -123,9 +109,9 @@ These projects also exist, but their status and compatibility with paperless-ngx This project also exists, but needs updates to be compatible with paperless-ngx. -* [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop): A desktop UI for your Paperless installation. Runs on Mac, Linux, and Windows. +* [Paperless Desktop](https://github.com/thomasbrueggemann/paperless-desktop): A desktop UI for your Paperless installation. Runs on Mac, Linux, and Windows. Known issues on Mac: (Could not load reminders and documents) # Important Note -Document scanners are typically used to scan sensitive documents. Things like your social insurance number, tax records, invoices, etc. Everything is stored in the clear without encryption. This means that Paperless should never be run on an untrusted host. Instead, I recommend that if you do want to use it, run it locally on a server in your own home. +Document scanners are typically used to scan sensitive documents. Things like your social insurance number, tax records, invoices, etc. Everything is stored in the clear without encryption. This means that Paperless should never be run on an untrusted host. Instead, I recommend that if you do want to use it, run it locally on a server in your own home. From f8d1fc749c2c1b6ad35ac6072c9a3aeb8e14cef6 Mon Sep 17 00:00:00 2001 From: Paperless Translation Bot <99855517+paperless-l10n@users.noreply.github.com> Date: Mon, 28 Feb 2022 01:41:16 -0800 Subject: [PATCH 10/10] New translations messages.xlf (Chinese Traditional) [ci skip] --- src-ui/src/locale/messages.zh_TW.xlf | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index c6b105216..a4a3c21b0 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -8,7 +8,7 @@ src/app/app.component.ts 51 - Document added + 文档已添加 Document was added to paperless. @@ -28,7 +28,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 - Open document + 打開文檔 Could not add : @@ -44,7 +44,7 @@ src/app/app.component.ts 65 - New document detected + 檢測到新文檔 Document is being processed by paperless. @@ -69,7 +69,7 @@ src/app/components/app-frame/app-frame.component.html 18 - Search documents + 搜索文檔 Logged in as @@ -93,7 +93,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + 設定 Logout @@ -101,7 +101,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + 登出 Dashboard @@ -113,7 +113,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + 儀表盤 Documents @@ -137,7 +137,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + 文件 Saved views @@ -149,7 +149,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + 保存視圖 Open documents @@ -157,7 +157,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + 打開文檔 Close all @@ -165,7 +165,7 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + 關閉全部 Manage @@ -173,7 +173,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + 管理 Correspondents @@ -393,7 +393,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 37 - Last year + 上年度 Create new item