From 734fd7c0fc7ca604adef1f09a26ca7f0cf0e9fba Mon Sep 17 00:00:00 2001 From: Fabian Koller Date: Tue, 23 Feb 2021 08:35:10 +0100 Subject: [PATCH 01/20] Update exposed configuration variables Include the newly added OCR clean and deskew parameters --- ansible/defaults/main.yml | 11 ++++++++--- ansible/tasks/main.yml | 18 ++++++++++++++++-- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/ansible/defaults/main.yml b/ansible/defaults/main.yml index f1cbb8f88..0a5824608 100644 --- a/ansible/defaults/main.yml +++ b/ansible/defaults/main.yml @@ -18,8 +18,9 @@ paperlessng_directory: /opt/paperless-ng paperlessng_consumption_dir: "{{ paperlessng_directory }}/consumption" paperlessng_data_dir: "{{ paperlessng_directory }}/data" paperlessng_media_root: "{{ paperlessng_directory }}/media" -paperlessng_static_dir: "{{ paperlessng_directory }}/static" +paperlessng_staticdir: "{{ paperlessng_directory }}/static" paperlessng_filename_format: +paperlessng_logging_dir: "{{ paperlessng_data_dir }}/log" paperlessng_virtualenv: "{{ paperlessng_directory }}/.venv" # Hosting & Security @@ -36,12 +37,15 @@ paperlessng_enable_http_remote_user: False paperlessng_ocr_languages: - eng paperlessng_ocr_mode: skip +paperlessng_ocr_clean: clean +paperlessng_ocr_deskew: True +paperlessng_ocr_rotate_pages: True +paperlessng_ocr_rotate_pages_threshold: 12 paperlessng_ocr_output_type: pdfa paperlessng_ocr_pages: 0 paperlessng_ocr_image_dpi: # see https://ocrmypdf.readthedocs.io/en/latest/api.html#ocrmypdf.ocr paperlessng_ocr_user_args: - #- "deskew": True # https://github.com/jonaswinkler/paperless-ng/issues/231 - "optimize": 1 paperlessng_use_jbig2enc: True paperlessng_big2enc_lossy: False @@ -57,10 +61,11 @@ paperlessng_consumer_polling: 0 paperlessng_consumer_delete_duplicates: False paperlessng_consumer_recursive: False paperlessng_consumer_subdirs_as_tags: False +paperlessng_convert_memory_limit: 0 +paperlessng_convert_tmpdir: paperlessng_optimize_thumbnails: True paperlessng_post_consume_script: paperlessng_filename_date_order: -paperlessng_filename_parse_transforms: paperlessng_thumbnail_font_name: /usr/share/fonts/liberation/LiberationSerif-Regular.ttf paperlessng_ignore_dates: "" diff --git a/ansible/tasks/main.yml b/ansible/tasks/main.yml index bfaf8df17..ad16e2b0c 100644 --- a/ansible/tasks/main.yml +++ b/ansible/tasks/main.yml @@ -256,7 +256,7 @@ - "{{ paperlessng_consumption_dir }}" - "{{ paperlessng_data_dir }}" - "{{ paperlessng_media_root }}" - - "{{ paperlessng_static_dir }}" + - "{{ paperlessng_staticdir }}" - name: rename initial config command: @@ -280,9 +280,11 @@ - regexp: PAPERLESS_MEDIA_ROOT line: "PAPERLESS_MEDIA_ROOT={{ paperlessng_media_root }}" - regexp: PAPERLESS_STATICDIR - line: "PAPERLESS_STATICDIR={{ paperlessng_static_dir }}" + line: "PAPERLESS_STATICDIR={{ paperlessng_staticdir }}" - regexp: PAPERLESS_FILENAME_FORMAT line: "PAPERLESS_FILENAME_FORMAT={{ paperlessng_filename_format }}" + - regexp: PAPERLESS_LOGGING_DIR + line: "PAPERLESS_LOGGING_DIR={{ paperlessng_logging_dir }}" # Hosting & Security - regexp: PAPERLESS_SECRET_KEY line: "PAPERLESS_SECRET_KEY={{ paperlessng_secret_key }}" @@ -305,6 +307,14 @@ line: "PAPERLESS_OCR_LANGUAGE={{ paperlessng_ocr_languages | join('+') }}" - regexp: PAPERLESS_OCR_MODE line: "PAPERLESS_OCR_MODE={{ paperlessng_ocr_mode }}" + - regexp: PAPERLESS_OCR_CLEAN + line: "PAPERLESS_OCR_CLEAN={{ paperlessng_ocr_clean }}" + - regexp: PAPERLESS_OCR_DESKEW + line: "PAPERLESS_OCR_DESKEW={{ paperlessng_ocr_deskew }}" + - regexp: PAPERLESS_OCR_ROTATE_PAGES + line: "PAPERLESS_OCR_ROTATE_PAGES={{ paperlessng_ocr_rotate_pages }}" + - regexp: PAPERLESS_OCR_ROTATE_PAGES_THRESHOLD + line: "PAPERLESS_OCR_ROTATE_PAGES_THRESHOLD={{ paperlessng_ocr_rotate_pages_threshold }}" - regexp: PAPERLESS_OCR_OUTPUT_TYPE line: "PAPERLESS_OCR_OUTPUT_TYPE={{ paperlessng_ocr_output_type }}" - regexp: PAPERLESS_OCR_PAGES @@ -331,6 +341,10 @@ line: "PAPERLESS_CONSUMER_RECURSIVE={{ paperlessng_consumer_recursive }}" - regexp: PAPERLESS_CONSUMER_SUBDIRS_AS_TAGS line: "PAPERLESS_CONSUMER_SUBDIRS_AS_TAGS={{ paperlessng_consumer_subdirs_as_tags }}" + - regexp: PAPERLESS_CONVERT_MEMORY_LIMIT + line: "PAPERLESS_CONVERT_MEMORY_LIMIT={{ paperlessng_convert_memory_limit }}" + - regexp: PAPERLESS_CONVERT_TMPDIR + line: "PAPERLESS_CONVERT_TMPDIR={{ paperlessng_convert_tmpdir }}" - regexp: PAPERLESS_OPTIMIZE_THUMBNAILS line: "PAPERLESS_OPTIMIZE_THUMBNAILS={{ paperlessng_optimize_thumbnails }}" - regexp: PAPERLESS_POST_CONSUME_SCRIPT From 6273eb006159204b6a3211c6af581a5443d3484d Mon Sep 17 00:00:00 2001 From: Fabian Koller Date: Tue, 23 Feb 2021 08:38:01 +0100 Subject: [PATCH 02/20] Handle OCR languages with hyphens See https://github.com/jonaswinkler/paperless-ng/issues/584#issuecomment-782830878 --- ansible/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/tasks/main.yml b/ansible/tasks/main.yml index ad16e2b0c..92eb92032 100644 --- a/ansible/tasks/main.yml +++ b/ansible/tasks/main.yml @@ -43,7 +43,7 @@ - name: install ocr languages apt: - pkg: "{{ paperlessng_ocr_languages | map('regex_replace', '^(.*)$', 'tesseract-ocr-\\1') | list }}" + pkg: "{{ paperlessng_ocr_languages | map('regex_replace', '^(.*)$', 'tesseract-ocr-\\1') | map('replace', '_', '-') | list }}" - name: set up notesalexp repository key (for jbig2enc) apt_key: @@ -304,7 +304,7 @@ line: "PAPERLESS_ENABLE_HTTP_REMOTE_USER={{ paperlessng_enable_http_remote_user }}" # OCR settings - regexp: PAPERLESS_OCR_LANGUAGE - line: "PAPERLESS_OCR_LANGUAGE={{ paperlessng_ocr_languages | join('+') }}" + line: "PAPERLESS_OCR_LANGUAGE={{ paperlessng_ocr_languages | join('+') | replace('-','_') }}" - regexp: PAPERLESS_OCR_MODE line: "PAPERLESS_OCR_MODE={{ paperlessng_ocr_mode }}" - regexp: PAPERLESS_OCR_CLEAN From a720ed6a77790f773b77ce77135c366800bbc8a8 Mon Sep 17 00:00:00 2001 From: Fabian Koller Date: Thu, 25 Feb 2021 06:22:59 +0100 Subject: [PATCH 03/20] Do not require molecule teardown for success CI failures should not be caused by intermittently failing docker communication furing test teardown. --- .github/workflows/ansible.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ansible.yml b/.github/workflows/ansible.yml index 05419d5e8..c49ce2abc 100644 --- a/.github/workflows/ansible.yml +++ b/.github/workflows/ansible.yml @@ -47,7 +47,6 @@ jobs: molecule converge molecule idempotence molecule verify - molecule destroy working-directory: "${{ github.repository }}" # # https://galaxy.ansible.com/docs/contributing/importing.html # release: From ba853be00d657db1a9fd50f9ba9cc2fc93424f65 Mon Sep 17 00:00:00 2001 From: Fabian Koller Date: Thu, 25 Feb 2021 06:24:09 +0100 Subject: [PATCH 04/20] Use local HEAD hash as installation target GitHub actions' GITHUB_SHA provides unexpected hashes for manually re-run pipelines. Instead rely on the commit as seen from the current git history. --- ansible/molecule/default/converge.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ansible/molecule/default/converge.yml b/ansible/molecule/default/converge.yml index 1ae260bac..c70c54d39 100644 --- a/ansible/molecule/default/converge.yml +++ b/ansible/molecule/default/converge.yml @@ -2,9 +2,15 @@ - name: update previous release to newest release hosts: all tasks: + - name: install git dependency + apt: + pkg: git + - name: obtain latest git hash in current tree + command: git rev-parse HEAD + register: git_hash - name: set current github commit as version when available set_fact: - paperlessng_version: "{{ lookup('env', 'GITHUB_SHA') | default('master', True) }}" + paperlessng_version: "{{ git_hash.stdout }}" - name: update to newest paperless-ng release include_role: name: ansible From 772f5cb1a8e346c10cc6a55ad9860cc6b60c3c7e Mon Sep 17 00:00:00 2001 From: Bolko Schreiber Date: Thu, 25 Feb 2021 13:57:45 +0100 Subject: [PATCH 05/20] Added option to invert thumbnails in dark mode --- .../document-card-large.component.html | 2 +- .../document-card-large.component.scss | 2 +- .../document-card-large.component.ts | 7 ++++++- .../document-card-small.component.html | 2 +- .../document-card-small.component.scss | 2 +- .../document-card-small.component.ts | 7 ++++++- .../manage/settings/settings.component.html | 1 + .../components/manage/settings/settings.component.ts | 2 ++ src-ui/src/app/services/settings.service.ts | 2 ++ src-ui/src/theme_dark.scss | 12 +++++++++++- 10 files changed, 32 insertions(+), 7 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index a47f13653..a531dea97 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -1,7 +1,7 @@
- +
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss index c49de93b5..10454dc73 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss @@ -4,7 +4,7 @@ overflow-wrap: anywhere; } -.doc-img { +.doc-img, .doc-img-inverted { object-fit: cover; object-position: top left; height: 100%; diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts index f8bb9f518..ae68f5b60 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.ts @@ -2,6 +2,7 @@ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { DomSanitizer } from '@angular/platform-browser'; import { PaperlessDocument } from 'src/app/data/paperless-document'; import { DocumentService } from 'src/app/services/rest/document.service'; +import { SettingsService, SETTINGS_KEYS } from 'src/app/services/settings.service'; @Component({ selector: 'app-document-card-large', @@ -10,7 +11,7 @@ import { DocumentService } from 'src/app/services/rest/document.service'; }) export class DocumentCardLargeComponent implements OnInit { - constructor(private documentService: DocumentService, private sanitizer: DomSanitizer) { } + constructor(private documentService: DocumentService, private sanitizer: DomSanitizer, private settingsService: SettingsService) { } @Input() selected = false @@ -53,6 +54,10 @@ export class DocumentCardLargeComponent implements OnInit { ngOnInit(): void { } + getIsThumbInverted() { + return this.settingsService.get(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED) + } + getDetailsAsString() { if (typeof this.details === 'string') { return this.details.substring(0, 500) diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 28dc84236..f90239e63 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -1,7 +1,7 @@
- +
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index cbe8fa6f6..680198efc 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -1,6 +1,6 @@ @import "/src/theme"; -.doc-img { +.doc-img, .doc-img-inverted { object-fit: cover; object-position: top left; height: 200px; diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts index 5db0e30c0..95c01dcec 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts @@ -2,6 +2,7 @@ import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; import { map } from 'rxjs/operators'; import { PaperlessDocument } from 'src/app/data/paperless-document'; import { DocumentService } from 'src/app/services/rest/document.service'; +import { SettingsService, SETTINGS_KEYS } from 'src/app/services/settings.service'; @Component({ selector: 'app-document-card-small', @@ -10,7 +11,7 @@ import { DocumentService } from 'src/app/services/rest/document.service'; }) export class DocumentCardSmallComponent implements OnInit { - constructor(private documentService: DocumentService) { } + constructor(private documentService: DocumentService, private settingsService: SettingsService) { } @Input() selected = false @@ -32,6 +33,10 @@ export class DocumentCardSmallComponent implements OnInit { ngOnInit(): void { } + getIsThumbInverted() { + return this.settingsService.get(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED) + } + getThumbUrl() { return this.documentService.getThumbUrl(this.document.id) } diff --git a/src-ui/src/app/components/manage/settings/settings.component.html b/src-ui/src/app/components/manage/settings/settings.component.html index 3674bbcb9..5467f6ea2 100644 --- a/src-ui/src/app/components/manage/settings/settings.component.html +++ b/src-ui/src/app/components/manage/settings/settings.component.html @@ -96,6 +96,7 @@
+
diff --git a/src-ui/src/app/components/manage/settings/settings.component.ts b/src-ui/src/app/components/manage/settings/settings.component.ts index 15cfb8a19..fbcef7b70 100644 --- a/src-ui/src/app/components/manage/settings/settings.component.ts +++ b/src-ui/src/app/components/manage/settings/settings.component.ts @@ -21,6 +21,7 @@ export class SettingsComponent implements OnInit { 'documentListItemPerPage': new FormControl(this.settings.get(SETTINGS_KEYS.DOCUMENT_LIST_SIZE)), 'darkModeUseSystem': new FormControl(this.settings.get(SETTINGS_KEYS.DARK_MODE_USE_SYSTEM)), 'darkModeEnabled': new FormControl(this.settings.get(SETTINGS_KEYS.DARK_MODE_ENABLED)), + 'darkModeInvertThumbs': new FormControl(this.settings.get(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED)), 'useNativePdfViewer': new FormControl(this.settings.get(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER)), 'savedViews': this.savedViewGroup, 'displayLanguage': new FormControl(this.settings.getLanguage()), @@ -74,6 +75,7 @@ export class SettingsComponent implements OnInit { this.settings.set(SETTINGS_KEYS.DOCUMENT_LIST_SIZE, this.settingsForm.value.documentListItemPerPage) this.settings.set(SETTINGS_KEYS.DARK_MODE_USE_SYSTEM, this.settingsForm.value.darkModeUseSystem) this.settings.set(SETTINGS_KEYS.DARK_MODE_ENABLED, (this.settingsForm.value.darkModeEnabled == true).toString()) + this.settings.set(SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED, (this.settingsForm.value.darkModeInvertThumbs == true).toString()) this.settings.set(SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, this.settingsForm.value.useNativePdfViewer) this.settings.set(SETTINGS_KEYS.DATE_LOCALE, this.settingsForm.value.dateLocale) this.settings.set(SETTINGS_KEYS.DATE_FORMAT, this.settingsForm.value.dateFormat) diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index d511fa65f..96db88430 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -21,6 +21,7 @@ export const SETTINGS_KEYS = { DOCUMENT_LIST_SIZE: 'general-settings:documentListSize', DARK_MODE_USE_SYSTEM: 'general-settings:dark-mode:use-system', DARK_MODE_ENABLED: 'general-settings:dark-mode:enabled', + DARK_MODE_THUMB_INVERTED: 'general-settings:dark-mode:thumb-inverted', USE_NATIVE_PDF_VIEWER: 'general-settings:document-details:native-pdf-viewer', DATE_LOCALE: 'general-settings:date-display:date-locale', DATE_FORMAT: 'general-settings:date-display:date-format', @@ -36,6 +37,7 @@ const SETTINGS: PaperlessSettings[] = [ {key: SETTINGS_KEYS.DOCUMENT_LIST_SIZE, type: "number", default: 50}, {key: SETTINGS_KEYS.DARK_MODE_USE_SYSTEM, type: "boolean", default: true}, {key: SETTINGS_KEYS.DARK_MODE_ENABLED, type: "boolean", default: false}, + {key: SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED, type: "boolean", default: false}, {key: SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, type: "boolean", default: false}, {key: SETTINGS_KEYS.DATE_LOCALE, type: "string", default: ""}, {key: SETTINGS_KEYS.DATE_FORMAT, type: "string", default: "mediumDate"}, diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 4e850f017..89a7bea34 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -138,6 +138,16 @@ $border-color-dark-mode: #47494f; } .doc-img { + mix-blend-mode: normal; + border-radius: 0; + border-color: $bg-dark-mode; + + &.border-right { + border-right: none !important; + } + } + + .doc-img-inverted { mix-blend-mode: normal; filter: invert(95%) hue-rotate(180deg); border-radius: 0; @@ -148,7 +158,7 @@ $border-color-dark-mode: #47494f; } } - .card-selected .doc-img { + .card-selected .doc-img .doc-img-inverted { mix-blend-mode: luminosity; } From a331e4b49c4e7bedb8db56e555e26a23db31069e Mon Sep 17 00:00:00 2001 From: Bolko Schreiber Date: Thu, 25 Feb 2021 14:52:55 +0100 Subject: [PATCH 06/20] Set default value of DARK_MODE_THUMB_INVERTED to true --- src-ui/src/app/services/settings.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index 96db88430..a89c791c6 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -37,7 +37,7 @@ const SETTINGS: PaperlessSettings[] = [ {key: SETTINGS_KEYS.DOCUMENT_LIST_SIZE, type: "number", default: 50}, {key: SETTINGS_KEYS.DARK_MODE_USE_SYSTEM, type: "boolean", default: true}, {key: SETTINGS_KEYS.DARK_MODE_ENABLED, type: "boolean", default: false}, - {key: SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED, type: "boolean", default: false}, + {key: SETTINGS_KEYS.DARK_MODE_THUMB_INVERTED, type: "boolean", default: true}, {key: SETTINGS_KEYS.USE_NATIVE_PDF_VIEWER, type: "boolean", default: false}, {key: SETTINGS_KEYS.DATE_LOCALE, type: "string", default: ""}, {key: SETTINGS_KEYS.DATE_FORMAT, type: "string", default: "mediumDate"}, From 9434851c54333a645c5473a561e971415869df59 Mon Sep 17 00:00:00 2001 From: Christopher Nethercott Date: Thu, 25 Feb 2021 14:16:22 +0000 Subject: [PATCH 07/20] Fixed typo of scripts --- docs/extending.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending.rst b/docs/extending.rst index 860106258..287fb834f 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -25,7 +25,7 @@ This section describes the steps you need to take to start development on paperl * Python 3.6. * All dependencies listed in the :ref:`Bare metal route ` - * redis. You can either install redis or use the included scritps/start-services.sh + * redis. You can either install redis or use the included scripts/start-services.sh to use docker to fire up a redis instance (and some other services such as tika, gotenberg and a postgresql server). From 6a1f5fb4cd19e640dc92cfbfb9d1a37551e2df67 Mon Sep 17 00:00:00 2001 From: Bolko Schreiber Date: Thu, 25 Feb 2021 15:35:15 +0100 Subject: [PATCH 08/20] cleanup css --- .../document-card-large.component.html | 2 +- .../document-card-large.component.scss | 2 +- .../document-card-small.component.html | 2 +- .../document-card-small.component.scss | 2 +- src-ui/src/theme_dark.scss | 11 ++--------- 5 files changed, 6 insertions(+), 13 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index a531dea97..e1ad87bcc 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -1,7 +1,7 @@
- +
diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss index 10454dc73..c49de93b5 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.scss @@ -4,7 +4,7 @@ overflow-wrap: anywhere; } -.doc-img, .doc-img-inverted { +.doc-img { object-fit: cover; object-position: top left; height: 100%; diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index f90239e63..862b0ad22 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -1,7 +1,7 @@
- +
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss index 680198efc..cbe8fa6f6 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.scss @@ -1,6 +1,6 @@ @import "/src/theme"; -.doc-img, .doc-img-inverted { +.doc-img { object-fit: cover; object-position: top left; height: 200px; diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 89a7bea34..1b26680fe 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -147,18 +147,11 @@ $border-color-dark-mode: #47494f; } } - .doc-img-inverted { - mix-blend-mode: normal; + .doc-img.inverted { filter: invert(95%) hue-rotate(180deg); - border-radius: 0; - border-color: $bg-dark-mode; - - &.border-right { - border-right: none !important; - } } - .card-selected .doc-img .doc-img-inverted { + .card-selected .doc-img { mix-blend-mode: luminosity; } From fd2cbc13ff24e4dc74d81a1b924ae1c2ed0302e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=B6nig?= Date: Fri, 26 Feb 2021 09:49:36 +0100 Subject: [PATCH 09/20] Added First-Time Step-by-Step procedure and CopyPaste lists of depeendencies to the docs --- docs/extending.rst | 74 ++++++++++++++++++++++++++++++++++++++-------- docs/setup.rst | 12 ++++++++ 2 files changed, 74 insertions(+), 12 deletions(-) diff --git a/docs/extending.rst b/docs/extending.rst index 287fb834f..6828d262d 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -3,6 +3,9 @@ Paperless development ##################### +General information +=================== + This section describes the steps you need to take to start development on paperless-ng. 1. Check out the source from github. The repository is organized in the following way: @@ -21,13 +24,60 @@ This section describes the steps you need to take to start development on paperl * ``scripts/`` - Various scripts that help with different parts of development. * ``docker/`` - Files required to build the docker image. -2. Install some dependencies. +Initial setup and first start +============================= - * Python 3.6. - * All dependencies listed in the :ref:`Bare metal route ` - * redis. You can either install redis or use the included scripts/start-services.sh - to use docker to fire up a redis instance (and some other services such as tika, - gotenberg and a postgresql server). +After you forked and cloned the code from github you need to perform a first-time setup. +To do the setup you need to perform the steps from the following chapters in a certain order: + +1. Install prerequisites + pipenv as mentioned in :ref:`Bare metal route ` +2. Copy ``paperless.conf.example`` to ``paperless.conf`` and enable debug mode. +3. Install the Angular CLI interface: + + .. code:: shell-session + + $ npm install -g @angular/cli + +4. Create ``consume`` and ``media`` folders in the cloned root folder. + + .. code:: shell-session + + mkdir -p consume media +5. You can now either ... : + * install redis or + * use the included scripts/start-services.sh to use docker to fire up a redis instance (and some other services such as tika, gotenberg and a postgresql server) or + * spin up a bare redis container + + .. code:: shell-session + + 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 + + pipenv install --dev +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). + + .. code:: shell-session + + pipenv shell + cd /src-ui && ng build --prod +8. Apply migrations and create a superuser for your dev instance: + + .. code:: shell-session + + python3 manage.py migrate + python3 manage.py createsuperuser + +9. Now spin up the dev backend. Depending on which part of paperless you're developing for, you need to have some or all of them running. + + .. code:: shell-session + + python3 manage.py runserver & python3 manage.py document_consumer & python3 manage.py qcluster + +10. Login with the superuser credentials provided in step 8 at ``http://localhost:8000`` to create a session that enables you to use the backend. + +Backend development environment is now ready, to start Frontend development go to ``/src-ui`` and run ``ng serve``. From there you can use ``http://localhost:4200`` for a preview. Back end development ==================== @@ -35,21 +85,21 @@ Back end development The backend is a django application. I use PyCharm for development, but you can use whatever you want. -Install the python dependencies by performing ``pipenv install --dev`` in the src/ directory. This will also create a virtual environment, which you can enter with ``pipenv shell`` or execute one-shot commands in with ``pipenv run``. -Copy ``paperless.conf.example`` to ``paperless.conf`` and enable debug mode. - Configure the IDE to use the src/ folder as the base source folder. Configure the following launch configurations in your IDE: * python3 manage.py runserver * python3 manage.py qcluster -* python3 manage.py consumer +* python3 manage.py document_consumer -Depending on which part of paperless you're developing for, you need to have some or all of -them running. +To start them all: + +.. code:: shell-session + + python3 manage.py runserver & python3 manage.py document_consumer & python3 manage.py qcluster Testing and code style: diff --git a/docs/setup.rst b/docs/setup.rst index 69cb2bc97..98e055a07 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -284,6 +284,12 @@ writing. Windows is not and will never be supported. * ``libmagic-dev`` for mime type detection * ``mime-support`` for mime type detection + Use this list for your preferred package management: + + .. code:: + + python3 python3-pip python3-dev imagemagick fonts-liberation optipng gnupg libpq-dev libmagic-dev mime-support + These dependencies are required for OCRmyPDF, which is used for text recognition. * ``unpaper`` @@ -297,6 +303,12 @@ writing. Windows is not and will never be supported. * ``tesseract-ocr`` >= 4.0.0 for OCR * ``tesseract-ocr`` language packs (``tesseract-ocr-eng``, ``tesseract-ocr-deu``, etc) + Use this list for your preferred package management: + + .. code:: + + unpaper ghostscript icc-profiles-free qpdf liblept5 libxml2 pngquant zlib1g tesseract-ocr + On Raspberry Pi, these libraries are required as well: * ``libatlas-base-dev`` From f716300152349bc8f6ce644876644c19d7dd1dcc Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Fri, 26 Feb 2021 11:02:24 +0000 Subject: [PATCH 10/20] Translate /src-ui/messages.xlf in it translation completed for the source file '/src-ui/messages.xlf' on the 'it' language. --- src-ui/src/locale/messages.it.xlf | 2353 +++++++++++++++++++++++++++++ 1 file changed, 2353 insertions(+) create mode 100644 src-ui/src/locale/messages.it.xlf diff --git a/src-ui/src/locale/messages.it.xlf b/src-ui/src/locale/messages.it.xlf new file mode 100644 index 000000000..a602079b0 --- /dev/null +++ b/src-ui/src/locale/messages.it.xlf @@ -0,0 +1,2353 @@ + + + + + Document added + Documento aggiunto + + src/app/app.component.ts + 51 + + + + Document was added to paperless. + Il documento è stato aggiunto a paperless. + + src/app/app.component.ts + 51 + + + + Open document + Apri documento + + src/app/app.component.ts + 51 + + + + Could not add : + Impossibile aggiungere : + + src/app/app.component.ts + 59 + + + + New document detected + Nuovo documento trovato + + src/app/app.component.ts + 65 + + + + Document is being processed by paperless. + Paperless sta elaborando il documento . + + src/app/app.component.ts + 65 + + + + Documents + Documenti + + src/app/components/document-list/document-list.component.ts + 49 + + + + View "" saved successfully. + La vista &quot;&quot; è stata salvata. + + src/app/components/document-list/document-list.component.ts + 115 + + + + View "" created successfully. + La vista &quot;&quot; è stata creata. + + src/app/components/document-list/document-list.component.ts + 136 + + + + Select + Selezione + + src/app/components/document-list/document-list.component.html + 7 + + + + Select none + Seleziona nessuno + + src/app/components/document-list/document-list.component.html + 10 + + + + Select page + Seleziona pagina + + src/app/components/document-list/document-list.component.html + 11 + + + + Select all + Seleziona tutti + + src/app/components/document-list/document-list.component.html + 12 + + + + Sort + Ordina + + src/app/components/document-list/document-list.component.html + 39 + + + + Views + Viste + + src/app/components/document-list/document-list.component.html + 64 + + + + Save as... + Salva come... + + src/app/components/document-list/document-list.component.html + 72 + + + + Save "" + Salva &quot;&quot; + + src/app/components/document-list/document-list.component.html + 71 + + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, =1 {Selezionato di un documento} other {Selezionati di documenti}} + + src/app/components/document-list/document-list.component.html + 85 + + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, =1 {Un documento} other { documenti}} + + src/app/components/document-list/document-list.component.html + 86 + + + + (filtered) + (filtrato) + + src/app/components/document-list/document-list.component.html + 86 + + + + ASN + ASN + + src/app/components/document-list/document-list.component.html + 105 + + + + Correspondent + Corrispondente + + src/app/components/document-list/document-list.component.html + 111 + + + + Title + Titolo + + src/app/components/document-list/document-list.component.html + 117 + + + + Document type + Tipo di documento + + src/app/components/document-list/document-list.component.html + 123 + + + + Created + Creato + + src/app/components/document-list/document-list.component.html + 129 + + + + Added + Aggiunto + + src/app/components/document-list/document-list.component.html + 135 + + + + Confirm delete + Conferma eliminazione + + src/app/components/document-detail/document-detail.component.ts + 203 + + + + Do you really want to delete document ""? + Vuoi eliminare il documento &quot;&quot;? + + src/app/components/document-detail/document-detail.component.ts + 204 + + + + The files for this document will be deleted permanently. This operation cannot be undone. + I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. + + src/app/components/document-detail/document-detail.component.ts + 205 + + + + Delete document + Elimina documento + + src/app/components/document-detail/document-detail.component.ts + 207 + + + + Error deleting document: + Errore nell'eliminazione del documento: + + src/app/components/document-detail/document-detail.component.ts + 214 + + + + Delete + Elimina + + src/app/components/document-detail/document-detail.component.html + 15 + + + + Download + Scarica + + src/app/components/document-detail/document-detail.component.html + 23 + + + + More like this + Altro come questo + + src/app/components/document-detail/document-detail.component.html + 38 + + + + Close + Chiudi + + src/app/components/document-detail/document-detail.component.html + 44 + + + + Details + Dettagli + + src/app/components/document-detail/document-detail.component.html + 56 + + + + Content + Contenuto + + src/app/components/document-detail/document-detail.component.html + 72 + + + + Metadata + Metadati + + src/app/components/document-detail/document-detail.component.html + 81 + + + + Discard + Scarta + + src/app/components/document-detail/document-detail.component.html + 130 + + + + Save + Salva + + src/app/components/document-detail/document-detail.component.html + 132 + + + + Page + Pagina + + src/app/components/document-detail/document-detail.component.html + 4 + + + + of + di + + src/app/components/document-detail/document-detail.component.html + 8 + + + + Download original + Scarica originale + + src/app/components/document-detail/document-detail.component.html + 29 + + + + Archive serial number + Numero seriale di archivio + + src/app/components/document-detail/document-detail.component.html + 60 + + + + Date created + Data creazione + + src/app/components/document-detail/document-detail.component.html + 61 + + + + Date modified + Data modifica + + src/app/components/document-detail/document-detail.component.html + 87 + + + + Date added + Data aggiunta + + src/app/components/document-detail/document-detail.component.html + 91 + + + + Media filename + Nome del file multimediale + + src/app/components/document-detail/document-detail.component.html + 95 + + + + Original MD5 checksum + Somma MD5 originale + + src/app/components/document-detail/document-detail.component.html + 99 + + + + Original file size + Dimensione del file originale + + src/app/components/document-detail/document-detail.component.html + 103 + + + + Original mime type + Tipo mime originale + + src/app/components/document-detail/document-detail.component.html + 107 + + + + Archive MD5 checksum + Checksum MD5 dell'archivio + + src/app/components/document-detail/document-detail.component.html + 111 + + + + Archive file size + Dimensione dell'archivio + + src/app/components/document-detail/document-detail.component.html + 115 + + + + Original document metadata + Metadati del documento originale + + src/app/components/document-detail/document-detail.component.html + 121 + + + + Archived document metadata + Metadati del documento archiviato + + src/app/components/document-detail/document-detail.component.html + 122 + + + + Save & next + Salva e vai al prossimo + + src/app/components/document-detail/document-detail.component.html + 131 + + + + Hello , welcome to Paperless-ng! + Ciao , benvenuto su Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 33 + + + + Welcome to Paperless-ng! + Benvenuto su Paperless-ng! + + src/app/components/dashboard/dashboard.component.ts + 35 + + + + Dashboard + Dashboard + + src/app/components/dashboard/dashboard.component.html + 1 + + + + Do you really want to delete the tag ""? + Vuoi eliminare il tag &quot;&quot;? + + src/app/components/manage/tag-list/tag-list.component.ts + 30 + + + + Tags + Etichette + + src/app/components/manage/tag-list/tag-list.component.html + 1 + + + + Create + Crea + + src/app/components/manage/tag-list/tag-list.component.html + 2 + + + + Filter by: + Filtra per: + + src/app/components/manage/tag-list/tag-list.component.html + 8 + + + + Name + Nome + + src/app/components/manage/tag-list/tag-list.component.html + 9 + + + + Color + Colore + + src/app/components/manage/tag-list/tag-list.component.html + 20 + + + + Matching + Corrispondenza + + src/app/components/manage/tag-list/tag-list.component.html + 21 + + + + Document count + Numero di documenti + + src/app/components/manage/tag-list/tag-list.component.html + 22 + + + + Actions + Azioni + + src/app/components/manage/tag-list/tag-list.component.html + 23 + + + + Documents + Documenti + + src/app/components/manage/tag-list/tag-list.component.html + 38 + + + + Edit + Modifica + + src/app/components/manage/tag-list/tag-list.component.html + 43 + + + + Do you really want to delete the document type ""? + Vuoi eliminare il tipo di documento &quot;&quot;? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 26 + + + + Document types + Tipi di documento + + src/app/components/manage/document-type-list/document-type-list.component.html + 1 + + + + Logs + Log + + src/app/components/manage/logs/logs.component.html + 1 + + + + Saved view "" deleted. + La vista &quot;&quot; è stata eliminata. + + src/app/components/manage/settings/settings.component.ts + 67 + + + + Settings saved successfully. + Le impostazioni sono state salvate. + + src/app/components/manage/settings/settings.component.ts + 87 + + + + Use system language + Usa lingua di sistema + + src/app/components/manage/settings/settings.component.ts + 92 + + + + Use date format of display language + Usa il formato data della lingua di visualizzazione + + src/app/components/manage/settings/settings.component.ts + 98 + + + + Error while storing settings on server: + Errore durante il salvataggio delle impostazioni sul server: + + src/app/components/manage/settings/settings.component.ts + 115 + + + + Settings + Impostazioni + + src/app/components/manage/settings/settings.component.html + 1 + + + + General settings + Impostazioni generali + + src/app/components/manage/settings/settings.component.html + 10 + + + + Notifications + Notifiche + + src/app/components/manage/settings/settings.component.html + 115 + + + + Saved views + Viste salvate + + src/app/components/manage/settings/settings.component.html + 133 + + + + Appearance + Aspetto + + src/app/components/manage/settings/settings.component.html + 13 + + + + Display language + Lingua + + src/app/components/manage/settings/settings.component.html + 17 + + + + You need to reload the page after applying a new language. + Riavviare la pagina dopo avere impostato la nuova lingua. + + src/app/components/manage/settings/settings.component.html + 25 + + + + Date display + Visualizzazione data + + src/app/components/manage/settings/settings.component.html + 32 + + + + Date format + Formato data + + src/app/components/manage/settings/settings.component.html + 45 + + + + Short: + Breve: + + src/app/components/manage/settings/settings.component.html + 51 + + + + Medium: + Media: + + src/app/components/manage/settings/settings.component.html + 55 + + + + Long: + Lunga: + + src/app/components/manage/settings/settings.component.html + 59 + + + + Items per page + Oggetti per pagina + + src/app/components/manage/settings/settings.component.html + 67 + + + + Document editor + Editor dei documenti + + src/app/components/manage/settings/settings.component.html + 83 + + + + Use PDF viewer provided by the browser + Usa il visualizzatore PDF fornito dal browser + + 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. + Di solito è più rapido nel visualizzare documenti PDF grandi, ma potrebbe non funzionare su tutti i browser. + + src/app/components/manage/settings/settings.component.html + 87 + + + + Dark mode + Modalità notte + + src/app/components/manage/settings/settings.component.html + 94 + + + + Use system settings + Usa impostazioni di sistema + + src/app/components/manage/settings/settings.component.html + 97 + + + + Enable dark mode + Abilita modalità notte + + src/app/components/manage/settings/settings.component.html + 98 + + + + Bulk editing + Modifica in blocco + + src/app/components/manage/settings/settings.component.html + 102 + + + + Show confirmation dialogs + Mostra dialoghi di conferma + + src/app/components/manage/settings/settings.component.html + 106 + + + + Deleting documents will always ask for confirmation. + L'eliminazione dei documenti chiederà sempre la conferma. + + src/app/components/manage/settings/settings.component.html + 106 + + + + Apply on close + Applica in chiusura + + src/app/components/manage/settings/settings.component.html + 107 + + + + Document processing + Elaborazione del documento + + src/app/components/manage/settings/settings.component.html + 118 + + + + Show notifications when new documents are detected + Notifica quando vengono trovati nuovi documenti + + src/app/components/manage/settings/settings.component.html + 122 + + + + Show notifications when document processing completes successfully + Notifica quando l'elaborazione del documento viene completata con successo. + + src/app/components/manage/settings/settings.component.html + 123 + + + + Show notifications when document processing fails + Notifica quando l'elaborazione del documento fallisce + + src/app/components/manage/settings/settings.component.html + 124 + + + + Suppress notifications on dashboard + Non mostrare notifiche nella dashboard + + src/app/components/manage/settings/settings.component.html + 125 + + + + This will suppress all messages about document processing status on the dashboard. + Verranno interrotte tutte le notifiche nella dashboard riguardo lo stato dell'elaborazione dei documenti. + + src/app/components/manage/settings/settings.component.html + 125 + + + + Appears on + Appare in + + src/app/components/manage/settings/settings.component.html + 145 + + + + Show on dashboard + Mostra nella dashboard + + src/app/components/manage/settings/settings.component.html + 148 + + + + Show in sidebar + Mostra nella barra laterale + + src/app/components/manage/settings/settings.component.html + 152 + + + + No saved views defined. + Nessuna vista salvata. + + src/app/components/manage/settings/settings.component.html + 162 + + + + 404 Not Found + 404 Non trovato + + src/app/components/not-found/not-found.component.html + 7 + + + + Do you really want to delete the correspondent ""? + Vuoi eliminare il corrispondente &quot;&quot;? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 26 + + + + Correspondents + Corrispondenti + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 1 + + + + Last correspondence + Ultrima corrispondenza + + src/app/components/manage/correspondent-list/correspondent-list.component.html + 22 + + + + Confirmation + Conferma + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 17 + + + + Confirm + Conferma + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 29 + + + + Cancel + Annulla + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + + + Create new correspondent + Crea nuovo corrispondente + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 21 + + + + Edit correspondent + Modifica corrispondente + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + + + Matching algorithm + Algoritmo di corrispondenza + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + + + Matching pattern + Criterio di corrispondenza + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + + + Case insensitive + Senza distinzione tra maiuscole e minuscole + + src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + + + Create new tag + Crea nuovo tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 21 + + + + Edit tag + Modifica tag + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts + 25 + + + + Inbox tag + Tag di arrivo + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 21 + + + + Inbox tags are automatically assigned to all consumed documents. + I tag di arrivo vengono assegnati automaticamente a tutti i documenti elaborati. + + src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html + 21 + + + + Create new document type + Crea nuovo tipo di documento + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 21 + + + + Edit document type + Modifica tipo di documento + + src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + + + Search results + Risultati della ricerca + + src/app/components/search/search.component.html + 1 + + + + Invalid search query: + Query di ricerca non valida: + + src/app/components/search/search.component.html + 4 + + + + Showing documents similar to + Documenti simili a + + src/app/components/search/search.component.html + 7 + + + + Search query: + Query di ricerca: + + src/app/components/search/search.component.html + 11 + + + + Did you mean ""? + Forse intendevi &quot;&quot;? + + src/app/components/search/search.component.html + 13 + + + + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + {VAR_PLURAL, plural, =0 {Nessun risultato} =1 {Un risultato} other { risultati}} + + src/app/components/search/search.component.html + 18 + + + + Paperless-ng + Paperless-ng + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + + + Search documents + Cerca documenti + + src/app/components/app-frame/app-frame.component.html + 15 + + + + Logout + Esci + + src/app/components/app-frame/app-frame.component.html + 45 + + + + Manage + Gestisci + + src/app/components/app-frame/app-frame.component.html + 107 + + + + Admin + Amministratore + + src/app/components/app-frame/app-frame.component.html + 149 + + + + Info + Informazioni + + src/app/components/app-frame/app-frame.component.html + 155 + + + + Documentation + Documentazione + + src/app/components/app-frame/app-frame.component.html + 162 + + + + GitHub + GitHub + + src/app/components/app-frame/app-frame.component.html + 170 + + + + Suggest an idea + Suggerisci un'idea + + src/app/components/app-frame/app-frame.component.html + 176 + + + + Logged in as + Accesso effettuato come + + src/app/components/app-frame/app-frame.component.html + 34 + + + + Open documents + Apri documenti + + src/app/components/app-frame/app-frame.component.html + 87 + + + + Close all + Chiudi tutti + + src/app/components/app-frame/app-frame.component.html + 101 + + + + Correspondent: + Corrispondente: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 29 + + + + Without correspondent + Senza corrispondente + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 31 + + + + Type: + Tipo: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 36 + + + + Without document type + Senza tipo di documento + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 38 + + + + Tag: + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 42 + + + + Without any tag + Senza alcun tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 46 + + + + Title: + Titolo: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 50 + + + + Filter tags + Filtra tag + + src/app/components/document-list/filter-editor/filter-editor.component.html + 12 + + + + Filter correspondents + Filtra corrispondenti + + src/app/components/document-list/filter-editor/filter-editor.component.html + 20 + + + + Filter document types + Filtra tipi di documento + + src/app/components/document-list/filter-editor/filter-editor.component.html + 27 + + + + Reset filters + Ripristina filtri + + src/app/components/document-list/filter-editor/filter-editor.component.html + 50 + + + + Not assigned + Non assegnato + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 166 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + + + Apply + Applica + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + + + Last 7 days + Ultimi 7 giorni + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 24 + + + + Last month + Ultimo mese + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 25 + + + + Last 3 months + Ultimi 3 mesi + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 26 + + + + Last year + Ultimo anno + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 27 + + + + After + Dopo + + src/app/components/common/date-dropdown/date-dropdown.component.html + 13 + + + + Before + Prima + + src/app/components/common/date-dropdown/date-dropdown.component.html + 29 + + + + Clear + Pulisci + + src/app/components/common/date-dropdown/date-dropdown.component.html + 18 + + + + View + Mostra + + src/app/components/document-list/document-card-large/document-card-large.component.html + 50 + + + + Created: + Creato il: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 67 + + + + Filter by correspondent + Filtra per corrispondente + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + + Filter by tag + Filtra per tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + + + Score: + Punteggio: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 62 + + + + View in browser + Apri nel browser + + src/app/components/document-list/document-card-small/document-card-small.component.html + 40 + + + + Error executing bulk operation: + Errore durante l'operazione di modifica in blocco: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 74 + + + + "" + &quot;&quot; + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 113 + + + + "" and "" + &quot;&quot; e &quot;&quot; + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 115 + + This is for messages like 'modify "tag1" and "tag2"' + + + , + , + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 117 + + this is used to separate enumerations and should probably be a comma and a whitespace in most languages + + + and "" + e &quot;&quot; + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 118 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + + + Confirm tags assignment + Conferma assegnazione tag + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 127 + + + + This operation will add the tag "" to selected document(s). + Questa operazione aggiungerà il tag &quot;&quot; a documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 130 + + + + This operation will add the tags to selected document(s). + Questa operazione aggiungerà i tag a documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 132 + + + + This operation will remove the tag "" from selected document(s). + Questa operazione rimuoverà il tag &quot;&quot; da documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 135 + + + + This operation will remove the tags from selected document(s). + Questa operazione rimuoverà i tag da documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 137 + + + + This operation will add the tags and remove the tags on selected document(s). + Questa operazione aggiungerà i tag e rimuoverà i tag a documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 139 + + + + Confirm correspondent assignment + Conferma assegnazione corrispondente + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 159 + + + + This operation will assign the correspondent "" to selected document(s). + Questa operazione assegnerà il corrispondente &quot;&quot; a documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 161 + + + + This operation will remove the correspondent from selected document(s). + Questa operazione rimuoverà il corrispondente da documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 163 + + + + Confirm document type assignment + Conferma assegnazione tipo di documento + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 182 + + + + This operation will assign the document type "" to selected document(s). + Questa operazione assegnerà il tipo di documento &quot;&quot; a documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 184 + + + + This operation will remove the document type from selected document(s). + Questa operazione eliminerà il tipo di documento da documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 186 + + + + Delete confirm + Conferma eliminazione + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 201 + + + + This operation will permanently delete selected document(s). + Questa operazione eliminerà definitivamente documento/i selezionato/i. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 202 + + + + This operation cannot be undone. + Questa operazione non può essere annullata. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 203 + + + + Delete document(s) + Elimina documento/i + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 205 + + + + Select: + Seleziona: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + + + All + Tutto + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + + + Edit: + Modifica: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + + + Download originals + Scarica originali + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 68 + + + + Suggestions: + Suggerimenti: + + src/app/components/common/input/select/select.component.html + 26 + + + + Save current view + Salva vista corrente + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + + + Show all + Mostra tutto + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + + + Statistics + Statistiche + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + + + Total documents: + Documenti totali: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + + + Documents in inbox: + Documenti taggati in arrivo: + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 3 + + + + Processing: + Elaborazione in corso: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 32 + + + + Failed: + Falliti: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 35 + + + + Added: + Aggiunti: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 38 + + + + Connecting... + Connessione in corso... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 118 + + + + Uploading... + Caricamento in corso... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 123 + + + + Upload complete, waiting... + Caricamento completato, in attesa... + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 126 + + + + HTTP error: + Errore HTTP: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 136 + + + + Upload new documents + Carica nuovi documenti + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + + + Drop documents here or + Trascina qui i documenti oppure + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + + + Browse files + Sfoglia i file + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + + + Dismiss completed + Messaggi ignorati + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, =1 {Un altro documento} other {altri documenti}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + + + Open document + Apri documento + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 45 + + + + First steps + Primi passi + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 1 + + + + Paperless is running! :) + Paperless è in esecuzione! :) + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + + + 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. + Puoi iniziare a caricare documenti trascinandoli nel riquadro per il caricamento posizionato sulla destra, oppure spostarli nella cartella di elaborazione e appariranno nella lista dei documenti. Dopo aver aggiunto i metadati ai tuoi documenti, usa i meccanismi di filtraggio per creare viste personalizzate (come 'Aggiunti di recente' o 'Da taggare') e appariranno sulla dashboard invece di questo messaggio. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 6,7 + + + + Paperless offers some more features that try to make your life easier: + Paperless offre alcune funzionalità che cercano di rendere migliore la tua vita: + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + + + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + Quando avrai caricato qualche documento e aggiunto dei metadati, Paperless potrà assegnare automaticamente quei metadati ai nuovi documenti. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 10 + + + + You can configure paperless to read your mails and add documents from attached files. + Puoi configurare Paperless per leggere le tue mail e aggiungere i documenti che trova negli allegati. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 11 + + + + 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. + Controlla la documentazione per capire come usare queste funzioni. La sezione per l'utilizzo base ha anche qualche suggerimento su come usare Paperless in generale. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 13 + + + + Metadata + Metadati + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 18 + + + + Select + Seleziona + + src/app/components/common/select-dialog/select-dialog.component.ts + 18 + + + + Please select an object + Seleziona un elemento + + src/app/components/common/select-dialog/select-dialog.component.ts + 21 + + + + Invalid date. + Data non valida. + + src/app/components/common/input/date/date.component.html + 13 + + + + Yes + + + src/app/pipes/yes-no.pipe.ts + 9 + + + + No + No + + src/app/pipes/yes-no.pipe.ts + 9 + + + + (no title) + (nessun titolo) + + src/app/pipes/document-title.pipe.ts + 12 + + + + English (US) + Inglese (US) + + src/app/services/settings.service.ts + 88 + + + + English (GB) + Inglese (GB) + + src/app/services/settings.service.ts + 89 + + + + German + Tedesco + + src/app/services/settings.service.ts + 90 + + + + Dutch + Olandese + + src/app/services/settings.service.ts + 91 + + + + French + Francese + + src/app/services/settings.service.ts + 92 + + + + Portuguese (Brazil) + Portoghese (Brasile) + + src/app/services/settings.service.ts + 93 + + + + ISO 8601 + ISO 8601 + + src/app/services/settings.service.ts + 98 + + + + Document already exists. + Il documento esiste già. + + src/app/services/consumer-status.service.ts + 15 + + + + File not found. + File non trovato. + + src/app/services/consumer-status.service.ts + 16 + + + + Pre-consume script does not exist. + Lo script di pre-consume (pre elaborazione) non esiste. + + src/app/services/consumer-status.service.ts + 17 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + + + Error while executing pre-consume script. + Errore durante l'esecuzione dello script di pre-consume (pre elaborazione). + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + + + Post-consume script does not exist. + Lo script di post-consume (post elaborazione) non esiste. + + src/app/services/consumer-status.service.ts + 19 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + + + Error while executing post-consume script. + Errore durante l'esecuzione dello script di post-consume (post elaborazione). + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + + + Received new file. + Nuovo file ricevuto. + + src/app/services/consumer-status.service.ts + 21 + + + + File type not supported. + Tipo di file non supportato. + + src/app/services/consumer-status.service.ts + 22 + + + + Processing document... + Elaborazione documento in corso... + + src/app/services/consumer-status.service.ts + 23 + + + + Generating thumbnail... + Generazione anteprima in corso... + + src/app/services/consumer-status.service.ts + 24 + + + + Retrieving date from document... + Recupero della data del documento in corso... + + src/app/services/consumer-status.service.ts + 25 + + + + Saving document... + Salvataggio documento in corso... + + src/app/services/consumer-status.service.ts + 26 + + + + Finished. + Completato. + + src/app/services/consumer-status.service.ts + 27 + + + + Error + Errore + + src/app/services/toast.service.ts + 35 + + + + Information + Informazione + + src/app/services/toast.service.ts + 39 + + + + ASN + ASN + + src/app/services/rest/document.service.ts + 17 + + + + Correspondent + Corrispondente + + src/app/services/rest/document.service.ts + 18 + + + + Title + Titolo + + src/app/services/rest/document.service.ts + 19 + + + + Document type + Tipo di documento + + src/app/services/rest/document.service.ts + 20 + + + + Created + Creato + + src/app/services/rest/document.service.ts + 21 + + + + Added + Aggiunto + + src/app/services/rest/document.service.ts + 22 + + + + Modified + Modificato + + src/app/services/rest/document.service.ts + 23 + + + + Light blue + Blu chiaro + + src/app/data/paperless-tag.ts + 6 + + + + Blue + Blu + + src/app/data/paperless-tag.ts + 7 + + + + Light green + Verde chiaro + + src/app/data/paperless-tag.ts + 8 + + + + Green + Verde + + src/app/data/paperless-tag.ts + 9 + + + + Light red + Rosso chiaro + + src/app/data/paperless-tag.ts + 10 + + + + Red + Rosso + + src/app/data/paperless-tag.ts + 11 + + + + Light orange + Arancione chiaro + + src/app/data/paperless-tag.ts + 12 + + + + Orange + Arancione + + src/app/data/paperless-tag.ts + 13 + + + + Light violet + Viola chiaro + + src/app/data/paperless-tag.ts + 14 + + + + Violet + Viola + + src/app/data/paperless-tag.ts + 15 + + + + Brown + Marrone + + src/app/data/paperless-tag.ts + 16 + + + + Black + Nero + + src/app/data/paperless-tag.ts + 17 + + + + Light grey + Grigio chiaro + + src/app/data/paperless-tag.ts + 18 + + + + Create new item + Crea nuovo elemento + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 50 + + + + Edit item + Modifica elemento + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 54 + + + + Could not save element: + Non è possibile salvare l'elemento: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 58 + + + + Automatic + Automatico + + src/app/components/manage/generic-list/generic-list.component.ts + 39 + + + + Do you really want to delete this element? + Vuoi eliminare questo elemento? + + src/app/components/manage/generic-list/generic-list.component.ts + 97 + + + + Associated documents will not be deleted. + I documenti associati non verranno eliminati. + + src/app/components/manage/generic-list/generic-list.component.ts + 104 + + + + Delete + Elimina + + src/app/components/manage/generic-list/generic-list.component.ts + 106 + + + + Error while deleting element: + Errore durante l'eliminazione dell'elemento: + + src/app/components/manage/generic-list/generic-list.component.ts + 114 + + + + Any word + Qualsiasi parola + + src/app/data/matching-model.ts + 12 + + + + Any: Document contains any of these words (space separated) + Qualsiasi: il documento contiene una qualunque di queste parole (separate dallo spazio) + + src/app/data/matching-model.ts + 12 + + + + All words + Tutte le parole + + src/app/data/matching-model.ts + 13 + + + + All: Document contains all of these words (space separated) + Tutto: il documento contiene tutte queste parole (separate dallo spazio) + + src/app/data/matching-model.ts + 13 + + + + Exact match + Corrispondenza esatta + + src/app/data/matching-model.ts + 14 + + + + Exact: Document contains this string + Puntuale: il documento contiene questa stringa + + src/app/data/matching-model.ts + 14 + + + + Regular expression + Espressione regolare + + src/app/data/matching-model.ts + 15 + + + + Regular expression: Document matches this regular expression + Espressione regolare: il documento corrisponde a questa espressione regolare + + src/app/data/matching-model.ts + 15 + + + + Fuzzy word + Parola fuzzy + + src/app/data/matching-model.ts + 16 + + + + Fuzzy: Document contains a word similar to this word + Fuzzy: il documento contiene una parola simile a questa + + src/app/data/matching-model.ts + 16 + + + + Auto: Learn matching automatically + Automatico: apprende automaticamente la corrispondenza + + src/app/data/matching-model.ts + 17 + + + + + \ No newline at end of file From 4d425cf7b819c8848d4683fbbdf7511993ac27e9 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Fri, 26 Feb 2021 11:24:55 +0000 Subject: [PATCH 11/20] Apply translations in it translation completed for the source file '/src/locale/en_US/LC_MESSAGES/django.po' on the 'it' language. --- src/locale/it/LC_MESSAGES/django.po | 673 ++++++++++++++++++++++++++++ 1 file changed, 673 insertions(+) create mode 100644 src/locale/it/LC_MESSAGES/django.po diff --git a/src/locale/it/LC_MESSAGES/django.po b/src/locale/it/LC_MESSAGES/django.po new file mode 100644 index 000000000..f3456bed9 --- /dev/null +++ b/src/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,673 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# Ioma Taani, 2021 +# Jonas Winkler, 2021 +# Oliver Thomas Cervera , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-02-24 16:49+0100\n" +"PO-Revision-Date: 2021-02-16 18:37+0000\n" +"Last-Translator: Oliver Thomas Cervera , 2021\n" +"Language-Team: Italian (https://www.transifex.com/paperless/teams/115905/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: documents/apps.py:10 +msgid "Documents" +msgstr "Documenti" + +#: documents/models.py:32 +msgid "Any word" +msgstr "Qualsiasi parola" + +#: documents/models.py:33 +msgid "All words" +msgstr "Tutte le parole" + +#: documents/models.py:34 +msgid "Exact match" +msgstr "Corrispondenza esatta" + +#: documents/models.py:35 +msgid "Regular expression" +msgstr "Espressione regolare" + +#: documents/models.py:36 +msgid "Fuzzy word" +msgstr "Parole fuzzy" + +#: documents/models.py:37 +msgid "Automatic" +msgstr "Automatico" + +#: documents/models.py:41 documents/models.py:364 paperless_mail/models.py:25 +#: paperless_mail/models.py:109 +msgid "name" +msgstr "nome" + +#: documents/models.py:45 +msgid "match" +msgstr "corrispondenza" + +#: documents/models.py:49 +msgid "matching algorithm" +msgstr "algoritmo di corrispondenza" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "non distingue maiuscole e minuscole" + +#: documents/models.py:74 documents/models.py:134 +msgid "correspondent" +msgstr "corrispondente" + +#: documents/models.py:75 +msgid "correspondents" +msgstr "corrispondenti" + +#: documents/models.py:97 +msgid "color" +msgstr "colore" + +#: documents/models.py:101 +msgid "is inbox tag" +msgstr "è tag di arrivo" + +#: documents/models.py:103 +msgid "" +"Marks this tag as an inbox tag: All newly consumed documents will be tagged " +"with inbox tags." +msgstr "" +"Contrassegna questo tag come tag in arrivo: tutti i documenti elaborati " +"verranno taggati con questo tag." + +#: documents/models.py:108 +msgid "tag" +msgstr "tag" + +#: documents/models.py:109 documents/models.py:165 +msgid "tags" +msgstr "tag" + +#: documents/models.py:115 documents/models.py:147 +msgid "document type" +msgstr "tipo di documento" + +#: documents/models.py:116 +msgid "document types" +msgstr "tipi di documento" + +#: documents/models.py:124 +msgid "Unencrypted" +msgstr "Non criptato" + +#: documents/models.py:125 +msgid "Encrypted with GNU Privacy Guard" +msgstr "Criptato con GNU Privacy Guard" + +#: documents/models.py:138 +msgid "title" +msgstr "titolo" + +#: documents/models.py:151 +msgid "content" +msgstr "contenuto" + +#: documents/models.py:153 +msgid "" +"The raw, text-only data of the document. This field is primarily used for " +"searching." +msgstr "" +"I dati grezzi o solo testo del documento. Questo campo è usato " +"principalmente per la ricerca." + +#: documents/models.py:158 +msgid "mime type" +msgstr "tipo mime" + +#: documents/models.py:169 +msgid "checksum" +msgstr "checksum" + +#: documents/models.py:173 +msgid "The checksum of the original document." +msgstr "Il checksum del documento originale." + +#: documents/models.py:177 +msgid "archive checksum" +msgstr "checksum dell'archivio" + +#: documents/models.py:182 +msgid "The checksum of the archived document." +msgstr "Il checksum del documento archiviato." + +#: documents/models.py:186 documents/models.py:342 +msgid "created" +msgstr "creato il" + +#: documents/models.py:190 +msgid "modified" +msgstr "modificato il" + +#: documents/models.py:194 +msgid "storage type" +msgstr "tipo di storage" + +#: documents/models.py:202 +msgid "added" +msgstr "aggiunto il" + +#: documents/models.py:206 +msgid "filename" +msgstr "nome del file" + +#: documents/models.py:212 +msgid "Current filename in storage" +msgstr "Nome del file corrente nello storage" + +#: documents/models.py:216 +msgid "archive filename" +msgstr "Nome file in archivio" + +#: documents/models.py:222 +msgid "Current archive filename in storage" +msgstr "Il nome del file nell'archiviazione" + +#: documents/models.py:226 +msgid "archive serial number" +msgstr "numero seriale dell'archivio" + +#: documents/models.py:231 +msgid "The position of this document in your physical document archive." +msgstr "Posizione di questo documento all'interno dell'archivio fisico." + +#: documents/models.py:237 +msgid "document" +msgstr "documento" + +#: documents/models.py:238 +msgid "documents" +msgstr "documenti" + +#: documents/models.py:325 +msgid "debug" +msgstr "debug" + +#: documents/models.py:326 +msgid "information" +msgstr "informazione" + +#: documents/models.py:327 +msgid "warning" +msgstr "avvertimento" + +#: documents/models.py:328 +msgid "error" +msgstr "errore" + +#: documents/models.py:329 +msgid "critical" +msgstr "critico" + +#: documents/models.py:333 +msgid "group" +msgstr "gruppo" + +#: documents/models.py:336 +msgid "message" +msgstr "messaggio" + +#: documents/models.py:339 +msgid "level" +msgstr "livello" + +#: documents/models.py:346 +msgid "log" +msgstr "log" + +#: documents/models.py:347 +msgid "logs" +msgstr "log" + +#: documents/models.py:358 documents/models.py:408 +msgid "saved view" +msgstr "vista salvata" + +#: documents/models.py:359 +msgid "saved views" +msgstr "viste salvate" + +#: documents/models.py:362 +msgid "user" +msgstr "utente" + +#: documents/models.py:368 +msgid "show on dashboard" +msgstr "mostra sul cruscotto" + +#: documents/models.py:371 +msgid "show in sidebar" +msgstr "mostra nella barra laterale" + +#: documents/models.py:375 +msgid "sort field" +msgstr "campo di ordinamento" + +#: documents/models.py:378 +msgid "sort reverse" +msgstr "ordine invertito" + +#: documents/models.py:384 +msgid "title contains" +msgstr "il titolo contiene" + +#: documents/models.py:385 +msgid "content contains" +msgstr "il contenuto contiene" + +#: documents/models.py:386 +msgid "ASN is" +msgstr "ASN è" + +#: documents/models.py:387 +msgid "correspondent is" +msgstr "la corrispondenza è" + +#: documents/models.py:388 +msgid "document type is" +msgstr "il tipo di documento è" + +#: documents/models.py:389 +msgid "is in inbox" +msgstr "è in arrivo" + +#: documents/models.py:390 +msgid "has tag" +msgstr "ha etichetta" + +#: documents/models.py:391 +msgid "has any tag" +msgstr "ha qualsiasi etichetta" + +#: documents/models.py:392 +msgid "created before" +msgstr "creato prima del" + +#: documents/models.py:393 +msgid "created after" +msgstr "creato dopo il" + +#: documents/models.py:394 +msgid "created year is" +msgstr "l'anno di creazione è" + +#: documents/models.py:395 +msgid "created month is" +msgstr "il mese di creazione è" + +#: documents/models.py:396 +msgid "created day is" +msgstr "il giorno di creazione è" + +#: documents/models.py:397 +msgid "added before" +msgstr "aggiunto prima del" + +#: documents/models.py:398 +msgid "added after" +msgstr "aggiunto dopo il" + +#: documents/models.py:399 +msgid "modified before" +msgstr "modificato prima del" + +#: documents/models.py:400 +msgid "modified after" +msgstr "modificato dopo" + +#: documents/models.py:401 +msgid "does not have tag" +msgstr "non ha tag" + +#: documents/models.py:412 +msgid "rule type" +msgstr "tipo di regola" + +#: documents/models.py:416 +msgid "value" +msgstr "valore" + +#: documents/models.py:422 +msgid "filter rule" +msgstr "regola filtro" + +#: documents/models.py:423 +msgid "filter rules" +msgstr "regole filtro" + +#: documents/serialisers.py:52 +#, python-format +msgid "Invalid regular expresssion: %(error)s" +msgstr "Espressione regolare non valida: %(error)s" + +#: documents/serialisers.py:378 +#, python-format +msgid "File type %(type)s not supported" +msgstr "Il tipo di file %(type)s non è supportato" + +#: documents/templates/index.html:20 +msgid "Paperless-ng is loading..." +msgstr "Paperless-ng si sta caricando..." + +#: documents/templates/registration/logged_out.html:13 +msgid "Paperless-ng signed out" +msgstr "Paperless-ng è uscito" + +#: documents/templates/registration/logged_out.html:41 +msgid "You have been successfully logged out. Bye!" +msgstr "Vi siete disconnessi. Ciao!" + +#: documents/templates/registration/logged_out.html:42 +msgid "Sign in again" +msgstr "Rientra nuovamente" + +#: documents/templates/registration/login.html:13 +msgid "Paperless-ng sign in" +msgstr "Accedi a Paperless-ng" + +#: documents/templates/registration/login.html:42 +msgid "Please sign in." +msgstr "Accedi" + +#: documents/templates/registration/login.html:45 +msgid "Your username and password didn't match. Please try again." +msgstr "Il nome utente e la password non sono corretti. Riprovare." + +#: documents/templates/registration/login.html:48 +msgid "Username" +msgstr "Nome utente" + +#: documents/templates/registration/login.html:49 +msgid "Password" +msgstr "Password" + +#: documents/templates/registration/login.html:54 +msgid "Sign in" +msgstr "Accedi" + +#: paperless/settings.py:291 +msgid "English (US)" +msgstr "Inglese (US)" + +#: paperless/settings.py:292 +msgid "English (GB)" +msgstr "Inglese (GB)" + +#: paperless/settings.py:293 +msgid "German" +msgstr "Tedesco" + +#: paperless/settings.py:294 +msgid "Dutch" +msgstr "Olandese" + +#: paperless/settings.py:295 +msgid "French" +msgstr "Francese" + +#: paperless/settings.py:296 +msgid "Portuguese (Brazil)" +msgstr "Portoghese (Brasile)" + +#: paperless/urls.py:118 +msgid "Paperless-ng administration" +msgstr "Amministrazione di Paperless-ng" + +#: paperless_mail/admin.py:25 +msgid "Filter" +msgstr "Filtro" + +#: paperless_mail/admin.py:27 +msgid "" +"Paperless will only process mails that match ALL of the filters given below." +msgstr "" +"Paperless-ng processerà solo la posta che rientra in TUTTI i filtri " +"impostati." + +#: paperless_mail/admin.py:37 +msgid "Actions" +msgstr "Azioni" + +#: paperless_mail/admin.py:39 +msgid "" +"The action applied to the mail. This action is only performed when documents" +" were consumed from the mail. Mails without attachments will remain entirely" +" untouched." +msgstr "" +"L'azione che viene applicata alla email. Questa azione viene eseguita solo " +"quando dei documenti vengono elaborati dalla email. Le email senza allegati " +"vengono ignorate." + +#: paperless_mail/admin.py:46 +msgid "Metadata" +msgstr "Metadati" + +#: paperless_mail/admin.py:48 +msgid "" +"Assign metadata to documents consumed from this rule automatically. If you " +"do not assign tags, types or correspondents here, paperless will still " +"process all matching rules that you have defined." +msgstr "" +"Assegna automaticamente i metadati ai documenti elaborati da questa regola. " +"Se non assegni qui dei tag, tipi di documenti o corrispondenti, Paperless " +"userà comunque le regole corrispondenti che hai configurato." + +#: paperless_mail/apps.py:9 +msgid "Paperless mail" +msgstr "Email Paperless" + +#: paperless_mail/models.py:11 +msgid "mail account" +msgstr "account email" + +#: paperless_mail/models.py:12 +msgid "mail accounts" +msgstr "account email" + +#: paperless_mail/models.py:19 +msgid "No encryption" +msgstr "Nessuna crittografia" + +#: paperless_mail/models.py:20 +msgid "Use SSL" +msgstr "Usa SSL" + +#: paperless_mail/models.py:21 +msgid "Use STARTTLS" +msgstr "Usa STARTTLS" + +#: paperless_mail/models.py:29 +msgid "IMAP server" +msgstr "Server IMAP" + +#: paperless_mail/models.py:33 +msgid "IMAP port" +msgstr "Porta IMAP" + +#: paperless_mail/models.py:36 +msgid "" +"This is usually 143 for unencrypted and STARTTLS connections, and 993 for " +"SSL connections." +msgstr "" +"Di solito si usa 143 per STARTTLS o nessuna crittografia e 993 per SSL." + +#: paperless_mail/models.py:40 +msgid "IMAP security" +msgstr "Sicurezza IMAP" + +#: paperless_mail/models.py:46 +msgid "username" +msgstr "nome utente" + +#: paperless_mail/models.py:50 +msgid "password" +msgstr "password" + +#: paperless_mail/models.py:60 +msgid "mail rule" +msgstr "regola email" + +#: paperless_mail/models.py:61 +msgid "mail rules" +msgstr "regole email" + +#: paperless_mail/models.py:67 +msgid "Only process attachments." +msgstr "Elabora solo gli allegati." + +#: paperless_mail/models.py:68 +msgid "Process all files, including 'inline' attachments." +msgstr "Elabora tutti i file, inclusi gli allegati nel corpo." + +#: paperless_mail/models.py:78 +msgid "Mark as read, don't process read mails" +msgstr "Segna come letto, non elaborare le email lette" + +#: paperless_mail/models.py:79 +msgid "Flag the mail, don't process flagged mails" +msgstr "Contrassegna la email, non elaborare le email elaborate." + +#: paperless_mail/models.py:80 +msgid "Move to specified folder" +msgstr "Sposta in una cartella" + +#: paperless_mail/models.py:81 +msgid "Delete" +msgstr "Elimina" + +#: paperless_mail/models.py:88 +msgid "Use subject as title" +msgstr "Usa oggetto come titolo" + +#: paperless_mail/models.py:89 +msgid "Use attachment filename as title" +msgstr "Usa il nome dell'allegato come titolo" + +#: paperless_mail/models.py:99 +msgid "Do not assign a correspondent" +msgstr "Non assegnare un corrispondente" + +#: paperless_mail/models.py:101 +msgid "Use mail address" +msgstr "Usa indirizzo email" + +#: paperless_mail/models.py:103 +msgid "Use name (or mail address if not available)" +msgstr "Usa nome (o indirizzo email se non disponibile)" + +#: paperless_mail/models.py:105 +msgid "Use correspondent selected below" +msgstr "Usa il corrispondente selezionato qui sotto" + +#: paperless_mail/models.py:113 +msgid "order" +msgstr "priorità" + +#: paperless_mail/models.py:120 +msgid "account" +msgstr "account" + +#: paperless_mail/models.py:124 +msgid "folder" +msgstr "cartella" + +#: paperless_mail/models.py:128 +msgid "filter from" +msgstr "filtra da" + +#: paperless_mail/models.py:131 +msgid "filter subject" +msgstr "filtra oggetto" + +#: paperless_mail/models.py:134 +msgid "filter body" +msgstr "filtra corpo" + +#: paperless_mail/models.py:138 +msgid "filter attachment filename" +msgstr "filtra nome allegato" + +#: paperless_mail/models.py:140 +msgid "" +"Only consume documents which entirely match this filename if specified. " +"Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" +"Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard " +"come *.pdf o *fattura*. Non fa differenza fra maiuscole e minuscole." + +#: paperless_mail/models.py:146 +msgid "maximum age" +msgstr "età massima" + +#: paperless_mail/models.py:148 +msgid "Specified in days." +msgstr "Definito in giorni." + +#: paperless_mail/models.py:151 +msgid "attachment type" +msgstr "tipo di allegato" + +#: paperless_mail/models.py:154 +msgid "" +"Inline attachments include embedded images, so it's best to combine this " +"option with a filename filter." +msgstr "" +"Gli allegati in linea includono le immagini nel corpo, quindi è meglio " +"combinare questa opzione con il filtro nome." + +#: paperless_mail/models.py:159 +msgid "action" +msgstr "azione" + +#: paperless_mail/models.py:165 +msgid "action parameter" +msgstr "parametro azione" + +#: paperless_mail/models.py:167 +msgid "" +"Additional parameter for the action selected above, i.e., the target folder " +"of the move to folder action." +msgstr "" +"Parametro aggiuntivo per l'azione selezionata, ad esempio la cartella di " +"destinazione per l'azione che sposta in una cartella." + +#: paperless_mail/models.py:173 +msgid "assign title from" +msgstr "assegna tittolo da" + +#: paperless_mail/models.py:183 +msgid "assign this tag" +msgstr "assegna questo tag" + +#: paperless_mail/models.py:191 +msgid "assign this document type" +msgstr "assegna questo tipo di documento" + +#: paperless_mail/models.py:195 +msgid "assign correspondent from" +msgstr "assegna corrispondente da" + +#: paperless_mail/models.py:205 +msgid "assign this correspondent" +msgstr "assegna questo corrispondente" From 420feb3a523cc272187940b8aa292d27d531a507 Mon Sep 17 00:00:00 2001 From: Bolko Schreiber Date: Fri, 26 Feb 2021 12:26:23 +0100 Subject: [PATCH 12/20] lowered thumb brightness in non-inverted mode --- src-ui/src/theme_dark.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 1b26680fe..aa3822661 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -141,7 +141,7 @@ $border-color-dark-mode: #47494f; mix-blend-mode: normal; border-radius: 0; border-color: $bg-dark-mode; - + filter: invert(10%); &.border-right { border-right: none !important; } From 5cb95b6e55f52fb2a76f8579c3f4c85d2983c841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=B6nig?= Date: Fri, 26 Feb 2021 12:50:12 +0100 Subject: [PATCH 13/20] Minor changes --- docs/extending.rst | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/docs/extending.rst b/docs/extending.rst index 6828d262d..0b6a7bddf 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -3,9 +3,6 @@ Paperless development ##################### -General information -=================== - This section describes the steps you need to take to start development on paperless-ng. 1. Check out the source from github. The repository is organized in the following way: @@ -56,12 +53,11 @@ To do the setup you need to perform the steps from the following chapters in a c .. code:: shell-session pipenv install --dev -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). +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: .. code:: shell-session - pipenv shell - cd /src-ui && ng build --prod + compile-frontend.sh 8. Apply migrations and create a superuser for your dev instance: .. code:: shell-session @@ -85,9 +81,6 @@ Back end development The backend is a django application. I use PyCharm for development, but you can use whatever you want. -This will also create a virtual environment, which you can enter with ``pipenv shell`` or -execute one-shot commands in with ``pipenv run``. - Configure the IDE to use the src/ folder as the base source folder. Configure the following launch configurations in your IDE: From 573726d0b25514f08f563c0da515991fed71886d Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Fri, 26 Feb 2021 12:55:39 +0100 Subject: [PATCH 14/20] add Italian locale --- src-ui/angular.json | 3 ++- src-ui/src/app/app.module.ts | 2 ++ src-ui/src/app/services/settings.service.ts | 3 ++- src/paperless/settings.py | 3 ++- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src-ui/angular.json b/src-ui/angular.json index 2877408d2..5a54b3494 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -20,7 +20,8 @@ "nl-NL": "src/locale/messages.nl_NL.xlf", "fr": "src/locale/messages.fr.xlf", "en-GB": "src/locale/messages.en_GB.xlf", - "pt-BR": "src/locale/messages.pt_BR.xlf" + "pt-BR": "src/locale/messages.pt_BR.xlf", + "it": "src/locale/messages.it.xlf" } }, "architect": { diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 42e8877b3..01c17b284 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -70,12 +70,14 @@ import localeFr from '@angular/common/locales/fr'; import localeNl from '@angular/common/locales/nl'; import localeDe from '@angular/common/locales/de'; import localePt from '@angular/common/locales/pt'; +import localeIt from '@angular/common/locales/it'; import localeEnGb from '@angular/common/locales/en-GB'; registerLocaleData(localeFr) registerLocaleData(localeNl) registerLocaleData(localeDe) registerLocaleData(localePt, "pt-BR") +registerLocaleData(localeIt) registerLocaleData(localeEnGb) @NgModule({ diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index fca9262ab..f7c89b197 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -90,7 +90,8 @@ export class SettingsService { {code: "de", name: $localize`German`, englishName: "German", dateInputFormat: "dd.mm.yyyy"}, {code: "nl", name: $localize`Dutch`, englishName: "Dutch", dateInputFormat: "dd-mm-yyyy"}, {code: "fr", name: $localize`French`, englishName: "French", dateInputFormat: "dd/mm/yyyy"}, - {code: "pt-br", name: $localize`Portuguese (Brazil)`, englishName: "Portuguese (Brazil)", dateInputFormat: "dd/mm/yyyy"} + {code: "pt-br", name: $localize`Portuguese (Brazil)`, englishName: "Portuguese (Brazil)", dateInputFormat: "dd/mm/yyyy"}, + {code: "it", name: $localize`Italian`, englishName: "Italian", dateInputFormat: "dd/mm/yyyy"} ] } diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 1e864cb34..d16246c13 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -299,7 +299,8 @@ LANGUAGES = [ ("de", _("German")), ("nl-nl", _("Dutch")), ("fr", _("French")), - ("pt-br", _("Portuguese (Brazil)")) + ("pt-br", _("Portuguese (Brazil)")), + ("it", _("Italian")) ] LOCALE_PATHS = [ From adfe5c123c3786eac7c371d93b23b6af9ff792f6 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Fri, 26 Feb 2021 12:57:36 +0100 Subject: [PATCH 15/20] update messages --- src-ui/messages.xlf | 122 +++--------------- src/locale/en_US/LC_MESSAGES/django.po | 168 +++++++++++++------------ 2 files changed, 107 insertions(+), 183 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index d04d5a6f8..6ca0a56ec 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -419,7 +419,7 @@ Do you really want to delete the tag ""? src/app/components/manage/tag-list/tag-list.component.ts - 30 + 26 @@ -867,28 +867,28 @@ Create new tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts - 21 + 22 Edit tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts - 25 + 26 Inbox tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html - 21 + 13 Inbox tags are automatically assigned to all consumed documents. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html - 21 + 13 @@ -1128,28 +1128,28 @@ Last 7 days src/app/components/common/date-dropdown/date-dropdown.component.ts - 24 + 34 Last month src/app/components/common/date-dropdown/date-dropdown.component.ts - 25 + 35 Last 3 months src/app/components/common/date-dropdown/date-dropdown.component.ts - 26 + 36 Last year src/app/components/common/date-dropdown/date-dropdown.component.ts - 27 + 37 @@ -1163,7 +1163,7 @@ Before src/app/components/common/date-dropdown/date-dropdown.component.html - 29 + 38 @@ -1602,7 +1602,7 @@ Invalid date. src/app/components/common/input/date/date.component.html - 13 + 14 @@ -1668,11 +1668,18 @@ 93 + + Italian + + src/app/services/settings.service.ts + 94 + + ISO 8601 src/app/services/settings.service.ts - 98 + 99 @@ -1833,97 +1840,6 @@ 23 - - Light blue - - src/app/data/paperless-tag.ts - 6 - - - - Blue - - src/app/data/paperless-tag.ts - 7 - - - - Light green - - src/app/data/paperless-tag.ts - 8 - - - - Green - - src/app/data/paperless-tag.ts - 9 - - - - Light red - - src/app/data/paperless-tag.ts - 10 - - - - Red - - src/app/data/paperless-tag.ts - 11 - - - - Light orange - - src/app/data/paperless-tag.ts - 12 - - - - Orange - - src/app/data/paperless-tag.ts - 13 - - - - Light violet - - src/app/data/paperless-tag.ts - 14 - - - - Violet - - src/app/data/paperless-tag.ts - 15 - - - - Brown - - src/app/data/paperless-tag.ts - 16 - - - - Black - - src/app/data/paperless-tag.ts - 17 - - - - Light grey - - src/app/data/paperless-tag.ts - 18 - - Create new item diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index c4e8ee97b..4a3dde410 100644 --- a/src/locale/en_US/LC_MESSAGES/django.po +++ b/src/locale/en_US/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-24 16:49+0100\n" +"POT-Creation-Date: 2021-02-26 12:56+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,7 +45,7 @@ msgstr "" msgid "Automatic" msgstr "" -#: documents/models.py:41 documents/models.py:364 paperless_mail/models.py:25 +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" msgstr "" @@ -62,7 +62,7 @@ msgstr "" msgid "is insensitive" msgstr "" -#: documents/models.py:74 documents/models.py:134 +#: documents/models.py:74 documents/models.py:120 msgid "correspondent" msgstr "" @@ -70,293 +70,297 @@ msgstr "" msgid "correspondents" msgstr "" -#: documents/models.py:97 +#: documents/models.py:81 msgid "color" msgstr "" -#: documents/models.py:101 +#: documents/models.py:87 msgid "is inbox tag" msgstr "" -#: documents/models.py:103 +#: documents/models.py:89 msgid "" "Marks this tag as an inbox tag: All newly consumed documents will be tagged " "with inbox tags." msgstr "" -#: documents/models.py:108 +#: documents/models.py:94 msgid "tag" msgstr "" -#: documents/models.py:109 documents/models.py:165 +#: documents/models.py:95 documents/models.py:151 msgid "tags" msgstr "" -#: documents/models.py:115 documents/models.py:147 +#: documents/models.py:101 documents/models.py:133 msgid "document type" msgstr "" -#: documents/models.py:116 +#: documents/models.py:102 msgid "document types" msgstr "" -#: documents/models.py:124 +#: documents/models.py:110 msgid "Unencrypted" msgstr "" -#: documents/models.py:125 +#: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" msgstr "" -#: documents/models.py:138 +#: documents/models.py:124 msgid "title" msgstr "" -#: documents/models.py:151 +#: documents/models.py:137 msgid "content" msgstr "" -#: documents/models.py:153 +#: documents/models.py:139 msgid "" "The raw, text-only data of the document. This field is primarily used for " "searching." msgstr "" -#: documents/models.py:158 +#: documents/models.py:144 msgid "mime type" msgstr "" -#: documents/models.py:169 +#: documents/models.py:155 msgid "checksum" msgstr "" -#: documents/models.py:173 +#: documents/models.py:159 msgid "The checksum of the original document." msgstr "" -#: documents/models.py:177 +#: documents/models.py:163 msgid "archive checksum" msgstr "" -#: documents/models.py:182 +#: documents/models.py:168 msgid "The checksum of the archived document." msgstr "" -#: documents/models.py:186 documents/models.py:342 +#: documents/models.py:172 documents/models.py:328 msgid "created" msgstr "" -#: documents/models.py:190 +#: documents/models.py:176 msgid "modified" msgstr "" -#: documents/models.py:194 +#: documents/models.py:180 msgid "storage type" msgstr "" -#: documents/models.py:202 +#: documents/models.py:188 msgid "added" msgstr "" -#: documents/models.py:206 +#: documents/models.py:192 msgid "filename" msgstr "" -#: documents/models.py:212 +#: documents/models.py:198 msgid "Current filename in storage" msgstr "" -#: documents/models.py:216 +#: documents/models.py:202 msgid "archive filename" msgstr "" -#: documents/models.py:222 +#: documents/models.py:208 msgid "Current archive filename in storage" msgstr "" -#: documents/models.py:226 +#: documents/models.py:212 msgid "archive serial number" msgstr "" -#: documents/models.py:231 +#: documents/models.py:217 msgid "The position of this document in your physical document archive." msgstr "" -#: documents/models.py:237 +#: documents/models.py:223 msgid "document" msgstr "" -#: documents/models.py:238 +#: documents/models.py:224 msgid "documents" msgstr "" -#: documents/models.py:325 +#: documents/models.py:311 msgid "debug" msgstr "" -#: documents/models.py:326 +#: documents/models.py:312 msgid "information" msgstr "" -#: documents/models.py:327 +#: documents/models.py:313 msgid "warning" msgstr "" -#: documents/models.py:328 +#: documents/models.py:314 msgid "error" msgstr "" -#: documents/models.py:329 +#: documents/models.py:315 msgid "critical" msgstr "" -#: documents/models.py:333 +#: documents/models.py:319 msgid "group" msgstr "" -#: documents/models.py:336 +#: documents/models.py:322 msgid "message" msgstr "" -#: documents/models.py:339 +#: documents/models.py:325 msgid "level" msgstr "" -#: documents/models.py:346 +#: documents/models.py:332 msgid "log" msgstr "" -#: documents/models.py:347 +#: documents/models.py:333 msgid "logs" msgstr "" -#: documents/models.py:358 documents/models.py:408 +#: documents/models.py:344 documents/models.py:394 msgid "saved view" msgstr "" -#: documents/models.py:359 +#: documents/models.py:345 msgid "saved views" msgstr "" -#: documents/models.py:362 +#: documents/models.py:348 msgid "user" msgstr "" -#: documents/models.py:368 +#: documents/models.py:354 msgid "show on dashboard" msgstr "" -#: documents/models.py:371 +#: documents/models.py:357 msgid "show in sidebar" msgstr "" -#: documents/models.py:375 +#: documents/models.py:361 msgid "sort field" msgstr "" -#: documents/models.py:378 +#: documents/models.py:364 msgid "sort reverse" msgstr "" -#: documents/models.py:384 +#: documents/models.py:370 msgid "title contains" msgstr "" -#: documents/models.py:385 +#: documents/models.py:371 msgid "content contains" msgstr "" -#: documents/models.py:386 +#: documents/models.py:372 msgid "ASN is" msgstr "" -#: documents/models.py:387 +#: documents/models.py:373 msgid "correspondent is" msgstr "" -#: documents/models.py:388 +#: documents/models.py:374 msgid "document type is" msgstr "" -#: documents/models.py:389 +#: documents/models.py:375 msgid "is in inbox" msgstr "" -#: documents/models.py:390 +#: documents/models.py:376 msgid "has tag" msgstr "" -#: documents/models.py:391 +#: documents/models.py:377 msgid "has any tag" msgstr "" -#: documents/models.py:392 +#: documents/models.py:378 msgid "created before" msgstr "" -#: documents/models.py:393 +#: documents/models.py:379 msgid "created after" msgstr "" -#: documents/models.py:394 +#: documents/models.py:380 msgid "created year is" msgstr "" -#: documents/models.py:395 +#: documents/models.py:381 msgid "created month is" msgstr "" -#: documents/models.py:396 +#: documents/models.py:382 msgid "created day is" msgstr "" -#: documents/models.py:397 +#: documents/models.py:383 msgid "added before" msgstr "" -#: documents/models.py:398 +#: documents/models.py:384 msgid "added after" msgstr "" -#: documents/models.py:399 +#: documents/models.py:385 msgid "modified before" msgstr "" -#: documents/models.py:400 +#: documents/models.py:386 msgid "modified after" msgstr "" -#: documents/models.py:401 +#: documents/models.py:387 msgid "does not have tag" msgstr "" -#: documents/models.py:412 +#: documents/models.py:398 msgid "rule type" msgstr "" -#: documents/models.py:416 +#: documents/models.py:402 msgid "value" msgstr "" -#: documents/models.py:422 +#: documents/models.py:408 msgid "filter rule" msgstr "" -#: documents/models.py:423 +#: documents/models.py:409 msgid "filter rules" msgstr "" -#: documents/serialisers.py:52 +#: documents/serialisers.py:53 #, python-format msgid "Invalid regular expresssion: %(error)s" msgstr "" -#: documents/serialisers.py:378 +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/templates/index.html:20 +#: documents/templates/index.html:21 msgid "Paperless-ng is loading..." msgstr "" @@ -396,30 +400,34 @@ msgstr "" msgid "Sign in" msgstr "" -#: paperless/settings.py:291 +#: paperless/settings.py:297 msgid "English (US)" msgstr "" -#: paperless/settings.py:292 +#: paperless/settings.py:298 msgid "English (GB)" msgstr "" -#: paperless/settings.py:293 +#: paperless/settings.py:299 msgid "German" msgstr "" -#: paperless/settings.py:294 +#: paperless/settings.py:300 msgid "Dutch" msgstr "" -#: paperless/settings.py:295 +#: paperless/settings.py:301 msgid "French" msgstr "" -#: paperless/settings.py:296 +#: paperless/settings.py:302 msgid "Portuguese (Brazil)" msgstr "" +#: paperless/settings.py:303 +msgid "Italian" +msgstr "" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "" From 6196bc7b2e0cbf8168d28e965c407222f4cc5c17 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Fri, 26 Feb 2021 11:59:16 +0000 Subject: [PATCH 16/20] Translate /src-ui/messages.xlf in de translation completed for the source file '/src-ui/messages.xlf' on the 'de' language. --- src-ui/src/locale/messages.de.xlf | 136 +++++------------------------- 1 file changed, 20 insertions(+), 116 deletions(-) diff --git a/src-ui/src/locale/messages.de.xlf b/src-ui/src/locale/messages.de.xlf index a9762c286..3f141d9c8 100644 --- a/src-ui/src/locale/messages.de.xlf +++ b/src-ui/src/locale/messages.de.xlf @@ -478,7 +478,7 @@ Möchten Sie das Tag "" wirklich löschen? src/app/components/manage/tag-list/tag-list.component.ts - 30 + 26 @@ -990,7 +990,7 @@ Neues Tag erstellen src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts - 21 + 22 @@ -998,7 +998,7 @@ Tag bearbeiten src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts - 25 + 26 @@ -1006,7 +1006,7 @@ Posteingangs-Tag src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html - 21 + 13 @@ -1014,7 +1014,7 @@ Ein Tag mit dieser Option wird automatisch allen neuen Dokumenten zugewiesen. src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html - 21 + 13 @@ -1288,7 +1288,7 @@ Letzte 7 Tage src/app/components/common/date-dropdown/date-dropdown.component.ts - 24 + 34 @@ -1296,7 +1296,7 @@ Letzten Monat src/app/components/common/date-dropdown/date-dropdown.component.ts - 25 + 35 @@ -1304,7 +1304,7 @@ Letzte 3 Monate src/app/components/common/date-dropdown/date-dropdown.component.ts - 26 + 36 @@ -1312,7 +1312,7 @@ Letztes Jahr src/app/components/common/date-dropdown/date-dropdown.component.ts - 27 + 37 @@ -1328,7 +1328,7 @@ Vor src/app/components/common/date-dropdown/date-dropdown.component.html - 29 + 38 @@ -1829,7 +1829,7 @@ Ungültiges Datum. src/app/components/common/input/date/date.component.html - 13 + 14 @@ -1904,12 +1904,20 @@ 93 + + Italian + Italienisch + + src/app/services/settings.service.ts + 94 + + ISO 8601 ISO 8601 src/app/services/settings.service.ts - 98 + 99 @@ -2092,110 +2100,6 @@ 23 - - Light blue - Blau, hell - - src/app/data/paperless-tag.ts - 6 - - - - Blue - Blau - - src/app/data/paperless-tag.ts - 7 - - - - Light green - Grün, hell - - src/app/data/paperless-tag.ts - 8 - - - - Green - Grün - - src/app/data/paperless-tag.ts - 9 - - - - Light red - Rot, hell - - src/app/data/paperless-tag.ts - 10 - - - - Red - Rot - - src/app/data/paperless-tag.ts - 11 - - - - Light orange - Orange, hell - - src/app/data/paperless-tag.ts - 12 - - - - Orange - Orange - - src/app/data/paperless-tag.ts - 13 - - - - Light violet - Violet, hell - - src/app/data/paperless-tag.ts - 14 - - - - Violet - Violet - - src/app/data/paperless-tag.ts - 15 - - - - Brown - Braun - - src/app/data/paperless-tag.ts - 16 - - - - Black - Schwarz - - src/app/data/paperless-tag.ts - 17 - - - - Light grey - Grau, hell - - src/app/data/paperless-tag.ts - 18 - - Create new item Neues Element erstellen From d91267ee916cb4fa43f931d288f2ac59c3d4e543 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Fri, 26 Feb 2021 11:59:26 +0000 Subject: [PATCH 17/20] Apply translations in de translation completed for the source file '/src/locale/en_US/LC_MESSAGES/django.po' on the 'de' language. --- src/locale/de/LC_MESSAGES/django.po | 168 +++++++++++++++------------- 1 file changed, 88 insertions(+), 80 deletions(-) diff --git a/src/locale/de/LC_MESSAGES/django.po b/src/locale/de/LC_MESSAGES/django.po index 0343c5a94..7d03e91ec 100644 --- a/src/locale/de/LC_MESSAGES/django.po +++ b/src/locale/de/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-24 16:49+0100\n" +"POT-Creation-Date: 2021-02-26 12:56+0100\n" "PO-Revision-Date: 2021-02-16 18:37+0000\n" "Last-Translator: Jonas Winkler, 2021\n" "Language-Team: German (https://www.transifex.com/paperless/teams/115905/de/)\n" @@ -49,7 +49,7 @@ msgstr "Ungenaues Wort" msgid "Automatic" msgstr "Automatisch" -#: documents/models.py:41 documents/models.py:364 paperless_mail/models.py:25 +#: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" msgstr "Name" @@ -66,7 +66,7 @@ msgstr "Zuweisungsalgorithmus" msgid "is insensitive" msgstr "Groß-/Kleinschreibung irrelevant" -#: documents/models.py:74 documents/models.py:134 +#: documents/models.py:74 documents/models.py:120 msgid "correspondent" msgstr "Korrespondent" @@ -74,15 +74,15 @@ msgstr "Korrespondent" msgid "correspondents" msgstr "Korrespondenten" -#: documents/models.py:97 +#: documents/models.py:81 msgid "color" msgstr "Farbe" -#: documents/models.py:101 +#: documents/models.py:87 msgid "is inbox tag" msgstr "Posteingangs-Tag" -#: documents/models.py:103 +#: documents/models.py:89 msgid "" "Marks this tag as an inbox tag: All newly consumed documents will be tagged " "with inbox tags." @@ -90,39 +90,39 @@ msgstr "" "Markiert das Tag als Posteingangs-Tag. Neue Dokumente werden immer mit " "diesem Tag versehen." -#: documents/models.py:108 +#: documents/models.py:94 msgid "tag" msgstr "Tag" -#: documents/models.py:109 documents/models.py:165 +#: documents/models.py:95 documents/models.py:151 msgid "tags" msgstr "Tags" -#: documents/models.py:115 documents/models.py:147 +#: documents/models.py:101 documents/models.py:133 msgid "document type" msgstr "Dokumenttyp" -#: documents/models.py:116 +#: documents/models.py:102 msgid "document types" msgstr "Dokumenttypen" -#: documents/models.py:124 +#: documents/models.py:110 msgid "Unencrypted" msgstr "Nicht verschlüsselt" -#: documents/models.py:125 +#: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" msgstr "Verschlüsselt mit GNU Privacy Guard" -#: documents/models.py:138 +#: documents/models.py:124 msgid "title" msgstr "Titel" -#: documents/models.py:151 +#: documents/models.py:137 msgid "content" msgstr "Inhalt" -#: documents/models.py:153 +#: documents/models.py:139 msgid "" "The raw, text-only data of the document. This field is primarily used for " "searching." @@ -130,241 +130,245 @@ msgstr "" "Der Inhalt des Dokuments in Textform. Dieses Feld wird primär für die Suche " "verwendet." -#: documents/models.py:158 +#: documents/models.py:144 msgid "mime type" msgstr "MIME-Typ" -#: documents/models.py:169 +#: documents/models.py:155 msgid "checksum" msgstr "Prüfsumme" -#: documents/models.py:173 +#: documents/models.py:159 msgid "The checksum of the original document." msgstr "Die Prüfsumme des originalen Dokuments." -#: documents/models.py:177 +#: documents/models.py:163 msgid "archive checksum" msgstr "Archiv-Prüfsumme" -#: documents/models.py:182 +#: documents/models.py:168 msgid "The checksum of the archived document." msgstr "Die Prüfsumme des archivierten Dokuments." -#: documents/models.py:186 documents/models.py:342 +#: documents/models.py:172 documents/models.py:328 msgid "created" msgstr "Ausgestellt" -#: documents/models.py:190 +#: documents/models.py:176 msgid "modified" msgstr "Geändert" -#: documents/models.py:194 +#: documents/models.py:180 msgid "storage type" msgstr "Speichertyp" -#: documents/models.py:202 +#: documents/models.py:188 msgid "added" msgstr "Hinzugefügt" -#: documents/models.py:206 +#: documents/models.py:192 msgid "filename" msgstr "Dateiname" -#: documents/models.py:212 +#: documents/models.py:198 msgid "Current filename in storage" msgstr "Aktueller Dateiname im Datenspeicher" -#: documents/models.py:216 +#: documents/models.py:202 msgid "archive filename" msgstr "Archiv-Dateiname" -#: documents/models.py:222 +#: documents/models.py:208 msgid "Current archive filename in storage" msgstr "Aktueller Dateiname im Archiv" -#: documents/models.py:226 +#: documents/models.py:212 msgid "archive serial number" msgstr "Archiv-Seriennummer" -#: documents/models.py:231 +#: documents/models.py:217 msgid "The position of this document in your physical document archive." msgstr "Die Position dieses Dokuments in Ihrem physischen Dokumentenarchiv." -#: documents/models.py:237 +#: documents/models.py:223 msgid "document" msgstr "Dokument" -#: documents/models.py:238 +#: documents/models.py:224 msgid "documents" msgstr "Dokumente" -#: documents/models.py:325 +#: documents/models.py:311 msgid "debug" msgstr "Debug" -#: documents/models.py:326 +#: documents/models.py:312 msgid "information" msgstr "Information" -#: documents/models.py:327 +#: documents/models.py:313 msgid "warning" msgstr "Warnung" -#: documents/models.py:328 +#: documents/models.py:314 msgid "error" msgstr "Fehler" -#: documents/models.py:329 +#: documents/models.py:315 msgid "critical" msgstr "Kritisch" -#: documents/models.py:333 +#: documents/models.py:319 msgid "group" msgstr "Gruppe" -#: documents/models.py:336 +#: documents/models.py:322 msgid "message" msgstr "Nachricht" -#: documents/models.py:339 +#: documents/models.py:325 msgid "level" msgstr "Level" -#: documents/models.py:346 +#: documents/models.py:332 msgid "log" msgstr "Protokoll" -#: documents/models.py:347 +#: documents/models.py:333 msgid "logs" msgstr "Protokoll" -#: documents/models.py:358 documents/models.py:408 +#: documents/models.py:344 documents/models.py:394 msgid "saved view" msgstr "Gespeicherte Ansicht" -#: documents/models.py:359 +#: documents/models.py:345 msgid "saved views" msgstr "Gespeicherte Ansichten" -#: documents/models.py:362 +#: documents/models.py:348 msgid "user" msgstr "Benutzer" -#: documents/models.py:368 +#: documents/models.py:354 msgid "show on dashboard" msgstr "Auf Startseite zeigen" -#: documents/models.py:371 +#: documents/models.py:357 msgid "show in sidebar" msgstr "In Seitenleiste zeigen" -#: documents/models.py:375 +#: documents/models.py:361 msgid "sort field" msgstr "Sortierfeld" -#: documents/models.py:378 +#: documents/models.py:364 msgid "sort reverse" msgstr "Umgekehrte Sortierung" -#: documents/models.py:384 +#: documents/models.py:370 msgid "title contains" msgstr "Titel enthält" -#: documents/models.py:385 +#: documents/models.py:371 msgid "content contains" msgstr "Inhalt enthält" -#: documents/models.py:386 +#: documents/models.py:372 msgid "ASN is" msgstr "ASN ist" -#: documents/models.py:387 +#: documents/models.py:373 msgid "correspondent is" msgstr "Korrespondent ist" -#: documents/models.py:388 +#: documents/models.py:374 msgid "document type is" msgstr "Dokumenttyp ist" -#: documents/models.py:389 +#: documents/models.py:375 msgid "is in inbox" msgstr "Ist im Posteingang" -#: documents/models.py:390 +#: documents/models.py:376 msgid "has tag" msgstr "Hat Tag" -#: documents/models.py:391 +#: documents/models.py:377 msgid "has any tag" msgstr "Hat irgendein Tag" -#: documents/models.py:392 +#: documents/models.py:378 msgid "created before" msgstr "Ausgestellt vor" -#: documents/models.py:393 +#: documents/models.py:379 msgid "created after" msgstr "Ausgestellt nach" -#: documents/models.py:394 +#: documents/models.py:380 msgid "created year is" msgstr "Ausgestellt im Jahr" -#: documents/models.py:395 +#: documents/models.py:381 msgid "created month is" msgstr "Ausgestellt im Monat" -#: documents/models.py:396 +#: documents/models.py:382 msgid "created day is" msgstr "Ausgestellt am Tag" -#: documents/models.py:397 +#: documents/models.py:383 msgid "added before" msgstr "Hinzugefügt vor" -#: documents/models.py:398 +#: documents/models.py:384 msgid "added after" msgstr "Hinzugefügt nach" -#: documents/models.py:399 +#: documents/models.py:385 msgid "modified before" msgstr "Geändert vor" -#: documents/models.py:400 +#: documents/models.py:386 msgid "modified after" msgstr "Geändert nach" -#: documents/models.py:401 +#: documents/models.py:387 msgid "does not have tag" msgstr "Hat nicht folgendes Tag" -#: documents/models.py:412 +#: documents/models.py:398 msgid "rule type" msgstr "Regeltyp" -#: documents/models.py:416 +#: documents/models.py:402 msgid "value" msgstr "Wert" -#: documents/models.py:422 +#: documents/models.py:408 msgid "filter rule" msgstr "Filterregel" -#: documents/models.py:423 +#: documents/models.py:409 msgid "filter rules" msgstr "Filterregeln" -#: documents/serialisers.py:52 +#: documents/serialisers.py:53 #, python-format msgid "Invalid regular expresssion: %(error)s" msgstr "Ungültiger regulärer Ausdruck: %(error)s" -#: documents/serialisers.py:378 +#: documents/serialisers.py:177 +msgid "Invalid color." +msgstr "Ungültige Farbe." + +#: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" msgstr "Dateityp %(type)s nicht unterstützt" -#: documents/templates/index.html:20 +#: documents/templates/index.html:21 msgid "Paperless-ng is loading..." msgstr "Paperless-ng wird geladen..." @@ -406,30 +410,34 @@ msgstr "Passwort" msgid "Sign in" msgstr "Anmelden" -#: paperless/settings.py:291 +#: paperless/settings.py:297 msgid "English (US)" msgstr "Englisch (US)" -#: paperless/settings.py:292 +#: paperless/settings.py:298 msgid "English (GB)" msgstr "Englisch (UK)" -#: paperless/settings.py:293 +#: paperless/settings.py:299 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:294 +#: paperless/settings.py:300 msgid "Dutch" msgstr "Niederländisch" -#: paperless/settings.py:295 +#: paperless/settings.py:301 msgid "French" msgstr "Französisch" -#: paperless/settings.py:296 +#: paperless/settings.py:302 msgid "Portuguese (Brazil)" msgstr "Portugiesisch (Brasilien)" +#: paperless/settings.py:303 +msgid "Italian" +msgstr "Italienisch" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Paperless-ng Administration" From 1c0069e95ebba9d168451630394407215355dd60 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Fri, 26 Feb 2021 13:09:02 +0100 Subject: [PATCH 18/20] fix pycodestyle --- src/paperless/middleware.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/paperless/middleware.py b/src/paperless/middleware.py index 0fe526556..2e9d2793c 100644 --- a/src/paperless/middleware.py +++ b/src/paperless/middleware.py @@ -13,6 +13,8 @@ class ApiVersionMiddleware: if request.user.is_authenticated: versions = settings.REST_FRAMEWORK['ALLOWED_VERSIONS'] response['X-Api-Version'] = versions[len(versions)-1] - response['X-Version'] = ".".join([str(_) for _ in version.__version__]) + response['X-Version'] = ".".join( + [str(_) for _ in version.__version__] + ) return response From 289589654b32703572aaf49734ef47434d92b4c8 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Fri, 26 Feb 2021 13:21:33 +0100 Subject: [PATCH 19/20] tests for API versioning --- src/documents/tests/test_api.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index 9a4788135..770562ba8 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -1356,3 +1356,16 @@ class TestApiAuth(APITestCase): self.assertEqual(self.client.get("/api/documents/bulk_edit/").status_code, 401) self.assertEqual(self.client.get("/api/documents/bulk_download/").status_code, 401) self.assertEqual(self.client.get("/api/documents/selection_data/").status_code, 401) + + def test_api_version_no_auth(self): + + response = self.client.get("/api/") + self.assertNotIn("X-Api-Version", response) + self.assertNotIn("X-Version", response) + + def test_api_version_with_auth(self): + user = User.objects.create_superuser(username="test") + self.client.force_login(user) + response = self.client.get("/api/") + self.assertIn("X-Api-Version", response) + self.assertIn("X-Version", response) From cb4f822a193591cfe0029f3c8c05d4effafa4d78 Mon Sep 17 00:00:00 2001 From: jonaswinkler <17569239+jonaswinkler@users.noreply.github.com> Date: Fri, 26 Feb 2021 15:29:33 +0100 Subject: [PATCH 20/20] documentation changes --- docs/extending.rst | 139 +++++++++++++++++++++++++++++++++++++-------- 1 file changed, 116 insertions(+), 23 deletions(-) diff --git a/docs/extending.rst b/docs/extending.rst index 0b6a7bddf..54a0d061e 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -5,21 +5,23 @@ Paperless development This section describes the steps you need to take to start development on paperless-ng. -1. Check out the source from github. The repository is organized in the following way: +Check out the source from github. The repository is organized in the following way: - * ``master`` always represents the latest release and will only see changes - when a new release is made. - * ``dev`` contains the code that will be in the next release. - * ``feature-X`` contain bigger changes that will be in some release, but not - necessarily the next one. - - Apart from that, the folder structure is as follows: +* ``master`` always represents the latest release and will only see changes + when a new release is made. +* ``dev`` contains the code that will be in the next release. +* ``feature-X`` contain bigger changes that will be in some release, but not + necessarily the next one. - * ``docs/`` - Documentation. - * ``src-ui/`` - Code of the front end. - * ``src/`` - Code of the back end. - * ``scripts/`` - Various scripts that help with different parts of development. - * ``docker/`` - Files required to build the docker image. +When making functional changes to paperless, *always* make your changes on the ``dev`` branch. + +Apart from that, the folder structure is as follows: + +* ``docs/`` - Documentation. +* ``src-ui/`` - Code of the front end. +* ``src/`` - Code of the back end. +* ``scripts/`` - Various scripts that help with different parts of development. +* ``docker/`` - Files required to build the docker image. Initial setup and first start ============================= @@ -27,20 +29,22 @@ Initial setup and first start After you forked and cloned the code from github you need to perform a first-time setup. To do the setup you need to perform the steps from the following chapters in a certain order: -1. Install prerequisites + pipenv as mentioned in :ref:`Bare metal route ` -2. Copy ``paperless.conf.example`` to ``paperless.conf`` and enable debug mode. -3. Install the Angular CLI interface: +1. Install prerequisites + pipenv as mentioned in :ref:`Bare metal route ` +2. Copy ``paperless.conf.example`` to ``paperless.conf`` and enable debug mode. +3. Install the Angular CLI interface: .. code:: shell-session $ npm install -g @angular/cli -4. Create ``consume`` and ``media`` folders in the cloned root folder. +4. Create ``consume`` and ``media`` folders in the cloned root folder. .. code:: shell-session mkdir -p consume media -5. You can now either ... : + +5. You can now either ... + * install redis or * use the included scripts/start-services.sh to use docker to fire up a redis instance (and some other services such as tika, gotenberg and a postgresql server) or * spin up a bare redis container @@ -48,24 +52,27 @@ 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 -6. Install the python dependencies by performing in the src/ directory. + +6. Install the python dependencies by performing in the src/ directory. .. code:: shell-session pipenv install --dev -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 root folder: .. code:: shell-session compile-frontend.sh -8. Apply migrations and create a superuser for your dev instance: + +8. Apply migrations and create a superuser for your dev instance: .. code:: shell-session python3 manage.py migrate python3 manage.py createsuperuser -9. Now spin up the dev backend. Depending on which part of paperless you're developing for, you need to have some or all of them running. +9. Now spin up the dev backend. Depending on which part of paperless you're developing for, you need to have some or all of them running. .. code:: shell-session @@ -105,7 +112,7 @@ Testing and code style: The line length rule E501 is generally useful for getting multiple source files next to each other on the screen. However, in some cases, its just not possible - to make some lines fit, especially complicated IF cases. Append `` # NOQA: E501`` + to make some lines fit, especially complicated IF cases. Append ``# NOQA: E501`` to disable this check for certain lines. Front end development @@ -152,6 +159,92 @@ This will build the front end and put it in a location from which the Django ser it as static content. This way, you can verify that authentication is working. +Localization +============ + +Paperless is available in many different languages. Since paperless consists both of a django +application and an Angular front end, both these parts have to be translated separately. + +Front end localization +---------------------- + +* The Angular front end does localization according to the `Angular documentation `_. +* The source language of the project is "en_US". +* The source strings end up in the file "src-ui/messages.xlf". +* The translated strings need to be placed in the "src-ui/src/locale/" folder. +* In order to extract added or changed strings from the source files, call ``ng xi18n --ivy``. + +Adding new languages requires adding the translated files in the "src-ui/src/locale/" fodler and adjusting a couple files. + +1. Adjust "src-ui/angular.json": + + .. code:: json + + "i18n": { + "sourceLocale": "en-US", + "locales": { + "de": "src/locale/messages.de.xlf", + "nl-NL": "src/locale/messages.nl_NL.xlf", + "fr": "src/locale/messages.fr.xlf", + "en-GB": "src/locale/messages.en_GB.xlf", + "pt-BR": "src/locale/messages.pt_BR.xlf", + "language-code": "language-file" + } + } + +2. Add the language to the available options in "src-ui/src/app/services/settings.service.ts": + + .. code:: typescript + + getLanguageOptions(): LanguageOption[] { + return [ + {code: "en-us", name: $localize`English (US)`, englishName: "English (US)", dateInputFormat: "mm/dd/yyyy"}, + {code: "en-gb", name: $localize`English (GB)`, englishName: "English (GB)", dateInputFormat: "dd/mm/yyyy"}, + {code: "de", name: $localize`German`, englishName: "German", dateInputFormat: "dd.mm.yyyy"}, + {code: "nl", name: $localize`Dutch`, englishName: "Dutch", dateInputFormat: "dd-mm-yyyy"}, + {code: "fr", name: $localize`French`, englishName: "French", dateInputFormat: "dd/mm/yyyy"}, + {code: "pt-br", name: $localize`Portuguese (Brazil)`, englishName: "Portuguese (Brazil)", dateInputFormat: "dd/mm/yyyy"} + // Add your new language here + ] + } + + ``dateInputFormat`` is a special string that defines the behavior of the date input fields and absolutely needs to contain "dd", "mm" and "yyyy". + +3. Import and register the Angular data for this locale in "src-ui/src/app/app.module.ts": + + .. code:: typescript + + import localeDe from '@angular/common/locales/de'; + registerLocaleData(localeDe) + +Back end localization +--------------------- + +A majority of the strings that appear in the back end appear only when the admin is used. However, +some of these are still shown on the front end (such as error messages). + +* The django application does localization according to the `django documentation `_. +* The source language of the project is "en_US". +* Localization files end up in the folder "src/locale/". +* In order to extract strings from the application, call ``python3 manage.py makemessages -l en_US``. This is important after making changes to translatable strings. +* The message files need to be compiled for them to show up in the application. Call ``python3 manage.py compilemessages`` to do this. The generated files don't get + committed into git, since these are derived artifacts. The build pipeline takes care of executing this command. + +Adding new languages requires adding the translated files in the "src/locale/" folder and adjusting the file "src/paperless/settings.py" to include the new language: + +.. code:: python + + LANGUAGES = [ + ("en-us", _("English (US)")), + ("en-gb", _("English (GB)")), + ("de", _("German")), + ("nl-nl", _("Dutch")), + ("fr", _("French")), + ("pt-br", _("Portuguese (Brazil)")), + # Add language here. + ] + + Building the documentation ==========================