diff --git a/README.md b/README.md index e59535af4..45c71ab67 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ [![ci](https://github.com/jonaswinkler/paperless-ng/workflows/ci/badge.svg)](https://github.com/jonaswinkler/paperless-ng/actions) ![Ansible Role](https://github.com/jonaswinkler/paperless-ng/workflows/Ansible%20Role/badge.svg) +[![Crowdin](https://badges.crowdin.net/paperless-ng/localized.svg)](https://crowdin.com/project/paperless-ng) [![Documentation Status](https://readthedocs.org/projects/paperless-ng/badge/?version=latest)](https://paperless-ng.readthedocs.io/en/latest/?badge=latest) [![Gitter](https://badges.gitter.im/paperless-ng/community.svg)](https://gitter.im/paperless-ng/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Docker Hub Pulls](https://img.shields.io/docker/pulls/jonaswinkler/paperless-ng.svg)](https://hub.docker.com/r/jonaswinkler/paperless-ng) @@ -77,9 +78,9 @@ The documentation for Paperless-ng is available on [ReadTheDocs](https://paperle # Translation -Paperless is currently available in English, German, Dutch, French, and Portuguese. +Paperless is currently available in English, German, Dutch, French, Portuguese, Italian, and Romanian. -There's an active translation project at transifex! If you want to help out by translating paperless into your language, please head over to https://github.com/jonaswinkler/paperless-ng/issues/212 for details. +There's an active translation project at crowdin! If you want to help out by translating paperless into your language, please head over to https://github.com/jonaswinkler/paperless-ng/issues/212 for details. # Feature Requests diff --git a/docs/changelog.rst b/docs/changelog.rst index 11223265d..316cb2281 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,20 @@ Changelog ********* +paperless-ng 1.3.1 +################## + +* Added Russian locale. + +* ISO-8601 date format will now always show years with 4 digits. + +* Fixed an issue with the search results score indicator. + +* Added the ability to search for a document with a specific ASN. + +* The startup check for write permissions now works properly on NFS shares. + + paperless-ng 1.3.0 ################## diff --git a/install-paperless-ng.sh b/install-paperless-ng.sh index 8fb44e222..c550d253c 100755 --- a/install-paperless-ng.sh +++ b/install-paperless-ng.sh @@ -1,7 +1,5 @@ #!/bin/bash -set -e - ask() { while true ; do if [[ -z $3 ]] ; then @@ -64,6 +62,19 @@ if [[ -z $(which docker-compose) ]] ; then exit 1 fi +# Check if user has permissions to run Docker by trying to get the status of Docker (docker status). +# If this fails, the user probably does not have permissions for Docker. +docker stats --no-stream 2>/dev/null 1>&2 +if [ $? -ne 0 ] ; then + echo "" + echo "WARN: It look like the current user does not have Docker permissions." + echo "WARN: Use 'sudo usermod -aG docker $USER' to assign Docker permissions to the user." + echo "" + sleep 3 +fi + +set -e + echo "" echo "############################################" echo "### Paperless-ng docker installation ###" diff --git a/src-ui/angular.json b/src-ui/angular.json index 4691fec61..8b5804521 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -22,7 +22,8 @@ "en-GB": "src/locale/messages.en_GB.xlf", "pt-BR": "src/locale/messages.pt_BR.xlf", "it-IT": "src/locale/messages.it_IT.xlf", - "ro-RO": "src/locale/messages.ro_RO.xlf" + "ro-RO": "src/locale/messages.ro_RO.xlf", + "ru-RU": "src/locale/messages.ru_RU.xlf" } }, "architect": { @@ -104,7 +105,8 @@ "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "paperless-ui:build" + "browserTarget": "paperless-ui:build", + "ivy": true } }, "test": { diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 329399584..4b0456899 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -926,32 +926,32 @@ 4 - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 Search query: src/app/components/search/search.component.html - 11 + 9 Did you mean ""? src/app/components/search/search.component.html - 13 + 11 {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 @@ -1043,63 +1043,77 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 + + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 + + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 @@ -1703,11 +1717,18 @@ 97 + + Russian + + src/app/services/settings.service.ts + 98 + + ISO 8601 src/app/services/settings.service.ts - 102 + 103 @@ -1819,13 +1840,6 @@ 39 - - ASN - - src/app/services/rest/document.service.ts - 17 - - Correspondent diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index dc8b185ea..f12f08b6d 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -72,6 +72,7 @@ import localePt from '@angular/common/locales/pt'; import localeIt from '@angular/common/locales/it'; import localeEnGb from '@angular/common/locales/en-GB'; import localeRo from '@angular/common/locales/ro'; +import localeRu from '@angular/common/locales/ru'; registerLocaleData(localeFr) @@ -81,6 +82,7 @@ registerLocaleData(localePt, "pt-BR") registerLocaleData(localeIt) registerLocaleData(localeEnGb) registerLocaleData(localeRo) +registerLocaleData(localeRu) @NgModule({ declarations: [ diff --git a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss index b37606ff3..c13a7bd47 100644 --- a/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss +++ b/src-ui/src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.scss @@ -23,7 +23,7 @@ form { } } -::ng-deep .progress { +.progress { position: absolute; top: 0; right: 0; diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts index 3ac9df1ff..43387c08f 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts @@ -8,12 +8,13 @@ import { DocumentTypeService } from 'src/app/services/rest/document-type.service import { TagService } from 'src/app/services/rest/tag.service'; import { CorrespondentService } from 'src/app/services/rest/correspondent.service'; import { FilterRule } from 'src/app/data/filter-rule'; -import { FILTER_ADDED_AFTER, FILTER_ADDED_BEFORE, FILTER_CORRESPONDENT, FILTER_CREATED_AFTER, FILTER_CREATED_BEFORE, FILTER_DOCUMENT_TYPE, FILTER_HAS_ANY_TAG, FILTER_HAS_TAG, FILTER_TITLE, FILTER_TITLE_CONTENT } from 'src/app/data/filter-rule-type'; +import { FILTER_ADDED_AFTER, FILTER_ADDED_BEFORE, FILTER_ASN, FILTER_CORRESPONDENT, FILTER_CREATED_AFTER, FILTER_CREATED_BEFORE, FILTER_DOCUMENT_TYPE, FILTER_HAS_ANY_TAG, FILTER_HAS_TAG, FILTER_TITLE, FILTER_TITLE_CONTENT } from 'src/app/data/filter-rule-type'; import { FilterableDropdownSelectionModel } from '../../common/filterable-dropdown/filterable-dropdown.component'; import { ToggleableItemState } from '../../common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component'; const TEXT_FILTER_TARGET_TITLE = "title" const TEXT_FILTER_TARGET_TITLE_CONTENT = "title-content" +const TEXT_FILTER_TARGET_ASN = "asn" @Component({ selector: 'app-filter-editor', @@ -51,6 +52,9 @@ export class FilterEditorComponent implements OnInit, OnDestroy { case FILTER_TITLE: return $localize`Title: ${rule.value}` + + case FILTER_ASN: + return $localize`ASN: ${rule.value}` } } @@ -71,7 +75,8 @@ export class FilterEditorComponent implements OnInit, OnDestroy { textFilterTargets = [ {id: TEXT_FILTER_TARGET_TITLE, name: $localize`Title`}, - {id: TEXT_FILTER_TARGET_TITLE_CONTENT, name: $localize`Title & content`} + {id: TEXT_FILTER_TARGET_TITLE_CONTENT, name: $localize`Title & content`}, + {id: TEXT_FILTER_TARGET_ASN, name: $localize`ASN`} ] textFilterTarget = TEXT_FILTER_TARGET_TITLE_CONTENT @@ -111,6 +116,10 @@ export class FilterEditorComponent implements OnInit, OnDestroy { this._textFilter = rule.value this.textFilterTarget = TEXT_FILTER_TARGET_TITLE_CONTENT break + case FILTER_ASN: + this._textFilter = rule.value + this.textFilterTarget = TEXT_FILTER_TARGET_ASN + break case FILTER_CREATED_AFTER: this.dateCreatedAfter = rule.value break @@ -147,6 +156,9 @@ export class FilterEditorComponent implements OnInit, OnDestroy { if (this._textFilter && this.textFilterTarget == TEXT_FILTER_TARGET_TITLE) { filterRules.push({rule_type: FILTER_TITLE, value: this._textFilter}) } + if (this._textFilter && this.textFilterTarget == TEXT_FILTER_TARGET_ASN) { + filterRules.push({rule_type: FILTER_ASN, value: this._textFilter}) + } if (this.tagSelectionModel.isNoneSelected()) { filterRules.push({rule_type: FILTER_HAS_ANY_TAG, value: "false"}) } else { diff --git a/src-ui/src/app/components/search/search.component.html b/src-ui/src/app/components/search/search.component.html index ae0ec8e3e..f794a0feb 100644 --- a/src-ui/src/app/components/search/search.component.html +++ b/src-ui/src/app/components/search/search.component.html @@ -3,9 +3,7 @@
Invalid search query: {{errorMessage}}
-

- Showing documents similar to {{more_like_doc?.original_file_name}} -

+

Showing documents similar to {{more_like_doc?.original_file_name}}

Search query: {{query}} diff --git a/src-ui/src/app/pipes/custom-date.pipe.ts b/src-ui/src/app/pipes/custom-date.pipe.ts index 6587c157a..34aaaf1b7 100644 --- a/src-ui/src/app/pipes/custom-date.pipe.ts +++ b/src-ui/src/app/pipes/custom-date.pipe.ts @@ -4,8 +4,8 @@ import { SettingsService, SETTINGS_KEYS } from '../services/settings.service'; const FORMAT_TO_ISO_FORMAT = { "longDate": "y-MM-dd", - "mediumDate": "yy-MM-dd", - "shortDate": "yy-MM-dd" + "mediumDate": "y-MM-dd", + "shortDate": "y-MM-dd" } @Pipe({ diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index 01035c2bf..2285c1343 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -87,12 +87,13 @@ export class SettingsService { 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: "de-de", name: $localize`German`, englishName: "German", dateInputFormat: "dd.mm.yyyy"}, + {code: "nl-nl", name: $localize`Dutch`, englishName: "Dutch", dateInputFormat: "dd-mm-yyyy"}, + {code: "fr-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: "it", name: $localize`Italian`, englishName: "Italian", dateInputFormat: "dd/mm/yyyy"}, - {code: "ro", name: $localize`Romanian`, englishName: "Romanian", dateInputFormat: "dd.mm.yyyy"} + {code: "it-it", name: $localize`Italian`, englishName: "Italian", dateInputFormat: "dd/mm/yyyy"}, + {code: "ro-ro", name: $localize`Romanian`, englishName: "Romanian", dateInputFormat: "dd.mm.yyyy"}, + {code: "ru-ru", name: $localize`Russian`, englishName: "Russian", dateInputFormat: "dd.mm.yyyy"}, ] } diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 8bdad274b..7b56a1ec3 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Dokumenty View "" saved successfully. @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Delete + Odstranit Download @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Metadata Discard @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Akce Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Dokumenty Edit @@ -1058,19 +1058,19 @@ Invalid search query: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Showing documents similar to Search query: src/app/components/search/search.component.html - 11 + 9 Search query: @@ -1078,7 +1078,7 @@ Did you mean ""? src/app/components/search/search.component.html - 13 + 11 Did you mean ""? @@ -1086,7 +1086,7 @@ {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Title @@ -1199,15 +1199,23 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Title & content + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 Correspondent: @@ -1215,7 +1223,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Without correspondent @@ -1223,7 +1231,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 Type: @@ -1231,7 +1239,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Without document type @@ -1239,7 +1247,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 Tag: @@ -1247,7 +1255,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Without any tag @@ -1255,10 +1263,18 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 Title: + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: + Filter tags @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Metadata Select @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - German + Němčina Dutch @@ -1911,7 +1927,7 @@ src/app/services/settings.service.ts 93 - Dutch + Holandština French @@ -1919,7 +1935,7 @@ src/app/services/settings.service.ts 94 - French + Francouzština Portuguese (Brazil) @@ -1945,11 +1961,19 @@ Romanian + + Russian + + src/app/services/settings.service.ts + 98 + + Russian + ISO 8601 src/app/services/settings.service.ts - 102 + 103 ISO 8601 @@ -2077,14 +2101,6 @@ Information - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN - Correspondent @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + Automatický Do you really want to delete this element? @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Delete + Odstranit Error while deleting element: @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Any word + Jakékoliv slovo Any: Document contains any of these words (space separated) @@ -2211,7 +2227,7 @@ src/app/data/matching-model.ts 13 - All words + Všechna slova All: Document contains all of these words (space separated) @@ -2227,7 +2243,7 @@ src/app/data/matching-model.ts 14 - Exact match + Přesná shoda Exact: Document contains this string @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + Regulární výraz Regular expression: Document matches this regular expression @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Fuzzy word + Fuzzy slovo Fuzzy: Document contains a word similar to this word diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 10c96ebf3..67a7b3b9f 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Das Dokument wurde zu Paperless hinzugefügt. + Das Dokument wurde zu Paperless hinzugefügt. Open document @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Konnte nicht hinzufügen: + Konnte nicht hinzufügen: New document detected @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Dokument wird von Paperless verarbeitet. + Dokument wird von Paperless verarbeitet. Documents @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - Ansicht "" erfolgreich gespeichert. + Ansicht "" erfolgreich gespeichert. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - Ansicht "" erfolgreich erstellt. + Ansicht "" erfolgreich erstellt. Select @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - "" speichern + "" speichern {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + ASN Correspondent @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Möchten Sie das Dokument "" wirklich löschen? + Möchten Sie das Dokument "" wirklich löschen? The files for this document will be deleted permanently. This operation cannot be undone. @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Fehler beim Löschen des Dokuments: + Fehler beim Löschen des Dokuments: Delete @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Details Content @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - von + von Download original @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hallo , willkommen zu Paperless-ng! + Hallo , willkommen zu Paperless-ng! Welcome to Paperless-ng! @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Möchten Sie das Tag "" wirklich löschen? + Möchten Sie das Tag "" wirklich löschen? Tags @@ -488,39 +488,39 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Tags - + Create src/app/components/manage/tag-list/tag-list.component.html 2 - Erstellen + Erstellen - + Filter by: src/app/components/manage/tag-list/tag-list.component.html 8 - Filtern nach: + Filtern nach: - + Name src/app/components/manage/tag-list/tag-list.component.html 9 - Name + Name - + Color src/app/components/manage/tag-list/tag-list.component.html 20 - Farbe + Farbe Matching @@ -538,117 +538,117 @@ Anzahl Dokumente - + Actions src/app/components/manage/tag-list/tag-list.component.html 23 - Aktionen + Aktionen - + Documents src/app/components/manage/tag-list/tag-list.component.html 38 - Dokumente + Dokumente - + Edit src/app/components/manage/tag-list/tag-list.component.html 43 - Bearbeiten + Bearbeiten - + Do you really want to delete the document type ""? src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Möchten Sie den Dokumenttyp "" wirklich löschen? + Möchten Sie den Dokumenttyp "" wirklich löschen? - + Document types src/app/components/manage/document-type-list/document-type-list.component.html 1 - Dokumenttypen + Dokumenttypen - + Logs src/app/components/manage/logs/logs.component.html 1 - Protokoll + Protokoll - + Saved view "" deleted. src/app/components/manage/settings/settings.component.ts 68 - Gespeicherte Ansicht "" gelöscht. + Gespeicherte Ansicht "" gelöscht. - + Settings saved successfully. src/app/components/manage/settings/settings.component.ts 89 - Einstellungen erfolgreich gespeichert. + Einstellungen erfolgreich gespeichert. - + Use system language src/app/components/manage/settings/settings.component.ts 94 - Benutze Systemsprache + Benutze Systemsprache - + Use date format of display language src/app/components/manage/settings/settings.component.ts 100 - Benutze Datumsformat der Anzeigesprache + Benutze Datumsformat der Anzeigesprache - + Error while storing settings on server: src/app/components/manage/settings/settings.component.ts 117 - Fehler beim Speichern der Einstellungen auf dem Server: + Fehler beim Speichern der Einstellungen auf dem Server: - + Settings src/app/components/manage/settings/settings.component.html 1 - Einstellungen + Einstellungen - + General settings src/app/components/manage/settings/settings.component.html 10 - Allgemeine Einstellungen + Allgemeine Einstellungen - + Notifications src/app/components/manage/settings/settings.component.html 116 - Benachrichtigungen + Benachrichtigungen Saved views @@ -666,13 +666,13 @@ Erscheinungsbild - + Display language src/app/components/manage/settings/settings.component.html 17 - Anzeigesprache + Anzeigesprache You need to reload the page after applying a new language. @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Kurz: + Kurz: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Mittel: + Mittel: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Lang: + Lang: Items per page @@ -856,7 +856,7 @@ src/app/components/manage/settings/settings.component.html 126 - Unterdrücke Benachrichtigungen auf der Startseite. + Unterdrücke Benachrichtigungen auf der Startseite This will suppress all messages about document processing status on the dashboard. @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Möchten Sie den Korrespondenten "" wirklich löschen? + Möchten Sie den Korrespondenten "" wirklich löschen? Correspondents @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Ungültige Suchanfrage: + Ungültige Suchanfrage: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Zeige ähnliche Dokumente zu + Zeige ähnliche Dokumente zu Search query: src/app/components/search/search.component.html - 11 + 9 - Suchanfrage: + Suchanfrage: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Meinten Sie ""? + Meinten Sie ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {Keine Ergebnisse} =1 {Ein Ergebnis} other { Ergebnisse}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Info Documentation @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Angemeldet als + Angemeldet als Open documents @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Titel @@ -1199,23 +1199,31 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Titel & Inhalt + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Korrespondent: + Korrespondent: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Ohne Korrespondent @@ -1223,15 +1231,15 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Typ: + Typ: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Ohne Dokumenttyp @@ -1239,15 +1247,15 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Tag: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Ohne Tag @@ -1255,9 +1263,17 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Titel: + Titel: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Erstellt: + Erstellt: Filter by correspondent @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Fehler beim Ausführung der Massenverarbeitung: + Fehler beim Ausführung der Massenverarbeitung: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" und "" + "" und "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - und "" + und "" Confirm tags assignment @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - Diese Aktion wird ausgewählten Dokumenten das Tag "" hinzufügen. + Diese Aktion wird ausgewählten Dokumenten das Tag "" hinzufügen. This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - Diese Aktion wird ausgewählten Dokumenten die Tags hinzufügen. + Diese Aktion wird ausgewählten Dokumenten die Tags hinzufügen. This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - Diese Aktion wird das Tag "" von ausgewählten Dokumenten entfernen. + Diese Aktion wird das Tag "" von ausgewählten Dokumenten entfernen. This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - Diese Aktion wird die Tags von ausgewählten Dokumenten entfernen. + Diese Aktion wird die Tags von ausgewählten Dokumenten entfernen. This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - Diese Aktion wird die Tags den ausgewählten Dokumenten hinzufügen und die Tags entfernen. + Diese Aktion wird die Tags den ausgewählten Dokumenten hinzufügen und die Tags entfernen. Confirm correspondent assignment @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - Diese Aktion wird ausgewählten Dokumenten den Korrespondent "" zuweisen. + Diese Aktion wird ausgewählten Dokumenten den Korrespondent "" zuweisen. This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - Diese Aktion wird bei ausgewählten Dokumenten den Korrespondent entfernen. + Diese Aktion wird bei ausgewählten Dokumenten den Korrespondent entfernen. Confirm document type assignment @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - Diese Aktion wird ausgewählten Dokumenten den Dokumenttyp "" zuweisen. + Diese Aktion wird ausgewählten Dokumenten den Dokumenttyp "" zuweisen. This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - Diese Aktion wird bei ausgewählten Dokumenten den Dokumenttyp entfernen. + Diese Aktion wird bei ausgewählten Dokumenten den Dokumenttyp entfernen. Delete confirm @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - Diese Aktion wird ausgewählte Dokumente unwiderruflich löschen. + Diese Aktion wird ausgewählte Dokumente unwiderruflich löschen. This operation cannot be undone. @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Anzahl Dokumente gesamt: + Anzahl Dokumente gesamt: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Dokumente im Posteingang: + Dokumente im Posteingang: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Verarbeite: + Verarbeite: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Fehlgeschlagen: + Fehlgeschlagen: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Hinzugefügt: + Hinzugefügt: Connecting... @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - HTTP-Fehler: + HTTP-Fehler: Upload new documents @@ -1945,13 +1961,21 @@ Rumänisch + + Russian + + src/app/services/settings.service.ts + 98 + + Russisch + ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Information Correspondent @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Konnte Element nicht speichern: + Konnte Element nicht speichern: Automatic @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Fehler beim Löschen des Elements: + Fehler beim Löschen des Elements: Any word diff --git a/src-ui/src/locale/messages.en_GB.xlf b/src-ui/src/locale/messages.en_GB.xlf index bb1800aba..29413f2b3 100644 --- a/src-ui/src/locale/messages.en_GB.xlf +++ b/src-ui/src/locale/messages.en_GB.xlf @@ -8,7 +8,7 @@ src/app/app.component.ts 51 - Document added + Document added Document was added to paperless. @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Document was added to paperless. + Document was added to paperless. Open document @@ -24,7 +24,7 @@ src/app/app.component.ts 51 - Open document + Open document Could not add : @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Could not add : + Could not add : New document detected @@ -40,7 +40,7 @@ src/app/app.component.ts 65 - New document detected + New document detected Document is being processed by paperless. @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Document is being processed by paperless. + Document is being processed by paperless. Documents @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Documents View "" saved successfully. @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - View "" saved successfully. + View "" saved successfully. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - View "" created successfully. + View "" created successfully. Select @@ -80,7 +80,7 @@ src/app/components/document-list/document-list.component.html 7 - Select + Select Select none @@ -88,7 +88,7 @@ src/app/components/document-list/document-list.component.html 10 - Select none + Select none Select page @@ -96,7 +96,7 @@ src/app/components/document-list/document-list.component.html 11 - Select page + Select page Select all @@ -104,7 +104,7 @@ src/app/components/document-list/document-list.component.html 12 - Select all + Select all Sort @@ -112,7 +112,7 @@ src/app/components/document-list/document-list.component.html 39 - Sort + Sort Views @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Views Save as... @@ -128,7 +128,7 @@ src/app/components/document-list/document-list.component.html 72 - Save as... + Save as... Save "" @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Save "" + Save "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -144,7 +144,7 @@ src/app/components/document-list/document-list.component.html 85 - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -152,7 +152,7 @@ src/app/components/document-list/document-list.component.html 86 - {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, =1 {One document} other { documents}} (filtered) @@ -160,7 +160,7 @@ src/app/components/document-list/document-list.component.html 86 - (filtered) + (filtered) ASN @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + ASN Correspondent @@ -176,7 +176,7 @@ src/app/components/document-list/document-list.component.html 111 - Correspondent + Correspondent Title @@ -184,7 +184,7 @@ src/app/components/document-list/document-list.component.html 117 - Title + Title Document type @@ -192,7 +192,7 @@ src/app/components/document-list/document-list.component.html 123 - Document type + Document type Created @@ -200,7 +200,7 @@ src/app/components/document-list/document-list.component.html 129 - Created + Created Added @@ -208,7 +208,7 @@ src/app/components/document-list/document-list.component.html 135 - Added + Added Confirm delete @@ -216,7 +216,7 @@ src/app/components/document-detail/document-detail.component.ts 203 - Confirm delete + Confirm delete Do you really want to delete document ""? @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Do you really want to delete document ""? + Do you really want to delete document ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -232,7 +232,7 @@ src/app/components/document-detail/document-detail.component.ts 205 - The files for this document will be deleted permanently. This operation cannot be undone. + The files for this document will be deleted permanently. This operation cannot be undone. Delete document @@ -240,7 +240,7 @@ src/app/components/document-detail/document-detail.component.ts 207 - Delete document + Delete document Error deleting document: @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Error deleting document: + Error deleting document: Delete @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Delete + Delete Download @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Download + Download More like this @@ -272,7 +272,7 @@ src/app/components/document-detail/document-detail.component.html 38 - More like this + More like this Close @@ -280,7 +280,7 @@ src/app/components/document-detail/document-detail.component.html 44 - Close + Close Details @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Details Content @@ -296,7 +296,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Content + Content Metadata @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Metadata Discard @@ -312,7 +312,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Discard + Discard Save @@ -320,7 +320,7 @@ src/app/components/document-detail/document-detail.component.html 132 - Save + Save Page @@ -328,7 +328,7 @@ src/app/components/document-detail/document-detail.component.html 4 - Page + Page of @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - of + of Download original @@ -344,7 +344,7 @@ src/app/components/document-detail/document-detail.component.html 29 - Download original + Download original Archive serial number @@ -352,7 +352,7 @@ src/app/components/document-detail/document-detail.component.html 60 - Archive serial number + Archive serial number Date created @@ -360,7 +360,7 @@ src/app/components/document-detail/document-detail.component.html 61 - Date created + Date created Date modified @@ -368,7 +368,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Date modified + Date modified Date added @@ -376,7 +376,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Date added + Date added Media filename @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Media filename + Media filename Original MD5 checksum @@ -392,7 +392,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Original MD5 checksum + Original MD5 checksum Original file size @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Original file size + Original file size Original mime type @@ -408,7 +408,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Original mime type + Original mime type Archive MD5 checksum @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Archive MD5 checksum + Archive MD5 checksum Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Archive file size + Archive file size Original document metadata @@ -432,7 +432,7 @@ src/app/components/document-detail/document-detail.component.html 121 - Original document metadata + Original document metadata Archived document metadata @@ -440,7 +440,7 @@ src/app/components/document-detail/document-detail.component.html 122 - Archived document metadata + Archived document metadata Save & next @@ -448,7 +448,7 @@ src/app/components/document-detail/document-detail.component.html 131 - Save & next + Save & next Hello , welcome to Paperless-ng! @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hello , welcome to Paperless-ng! + Hello , welcome to Paperless-ng! Welcome to Paperless-ng! @@ -464,7 +464,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - Welcome to Paperless-ng! + Welcome to Paperless-ng! Dashboard @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Dashboard Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Do you really want to delete the tag ""? + Do you really want to delete the tag ""? Tags @@ -488,7 +488,7 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Tags Create @@ -496,7 +496,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Create + Create Filter by: @@ -504,7 +504,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filter by: + Filter by: Name @@ -512,7 +512,7 @@ src/app/components/manage/tag-list/tag-list.component.html 9 - Name + Name Color @@ -528,7 +528,7 @@ src/app/components/manage/tag-list/tag-list.component.html 21 - Matching + Matching Document count @@ -536,7 +536,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Document count + Document count Actions @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Actions Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Documents Edit @@ -560,7 +560,7 @@ src/app/components/manage/tag-list/tag-list.component.html 43 - Edit + Edit Do you really want to delete the document type ""? @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Do you really want to delete the document type ""? + Do you really want to delete the document type ""? Document types @@ -576,7 +576,7 @@ src/app/components/manage/document-type-list/document-type-list.component.html 1 - Document types + Document types Logs @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logs Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Saved view "" deleted. + Saved view "" deleted. Settings saved successfully. @@ -600,7 +600,7 @@ src/app/components/manage/settings/settings.component.ts 89 - Settings saved successfully. + Settings saved successfully. Use system language @@ -608,7 +608,7 @@ src/app/components/manage/settings/settings.component.ts 94 - Use system language + Use system language Use date format of display language @@ -616,7 +616,7 @@ src/app/components/manage/settings/settings.component.ts 100 - Use date format of display language + Use date format of display language Error while storing settings on server: @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Error while storing settings on server: + Error while storing settings on server: Settings @@ -632,7 +632,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + Settings General settings @@ -640,7 +640,7 @@ src/app/components/manage/settings/settings.component.html 10 - General settings + General settings Notifications @@ -648,7 +648,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notifications + Notifications Saved views @@ -656,7 +656,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + Saved views Appearance @@ -664,7 +664,7 @@ src/app/components/manage/settings/settings.component.html 13 - Appearance + Appearance Display language @@ -672,7 +672,7 @@ src/app/components/manage/settings/settings.component.html 17 - Display language + Display language You need to reload the page after applying a new language. @@ -680,7 +680,7 @@ src/app/components/manage/settings/settings.component.html 25 - You need to reload the page after applying a new language. + You need to reload the page after applying a new language. Date display @@ -688,7 +688,7 @@ src/app/components/manage/settings/settings.component.html 32 - Date display + Date display Date format @@ -696,7 +696,7 @@ src/app/components/manage/settings/settings.component.html 45 - Date format + Date format Short: @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Short: + Short: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Medium: + Medium: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Long: + Long: Items per page @@ -728,7 +728,7 @@ src/app/components/manage/settings/settings.component.html 67 - Items per page + Items per page Document editor @@ -736,7 +736,7 @@ src/app/components/manage/settings/settings.component.html 83 - Document editor + Document editor Use PDF viewer provided by the browser @@ -744,7 +744,7 @@ src/app/components/manage/settings/settings.component.html 87 - Use PDF viewer provided by the browser + Use PDF viewer provided by the browser This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -752,7 +752,7 @@ src/app/components/manage/settings/settings.component.html 87 - This is usually faster for displaying large PDF documents, but it might not work on some browsers. + This is usually faster for displaying large PDF documents, but it might not work on some browsers. Dark mode @@ -760,7 +760,7 @@ src/app/components/manage/settings/settings.component.html 94 - Dark mode + Dark mode Use system settings @@ -768,7 +768,7 @@ src/app/components/manage/settings/settings.component.html 97 - Use system settings + Use system settings Enable dark mode @@ -776,7 +776,7 @@ src/app/components/manage/settings/settings.component.html 98 - Enable dark mode + Enable dark mode Invert thumbnails in dark mode @@ -784,7 +784,7 @@ src/app/components/manage/settings/settings.component.html 99 - Invert thumbnails in dark mode + Invert thumbnails in dark mode Bulk editing @@ -792,7 +792,7 @@ src/app/components/manage/settings/settings.component.html 103 - Bulk editing + Bulk editing Show confirmation dialogs @@ -800,7 +800,7 @@ src/app/components/manage/settings/settings.component.html 107 - Show confirmation dialogs + Show confirmation dialogs Deleting documents will always ask for confirmation. @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - Deleting documents will always ask for confirmation. + Deleting documents will always ask for confirmation. Apply on close @@ -816,7 +816,7 @@ src/app/components/manage/settings/settings.component.html 108 - Apply on close + Apply on close Document processing @@ -824,7 +824,7 @@ src/app/components/manage/settings/settings.component.html 119 - Document processing + Document processing Show notifications when new documents are detected @@ -832,7 +832,7 @@ src/app/components/manage/settings/settings.component.html 123 - Show notifications when new documents are detected + Show notifications when new documents are detected Show notifications when document processing completes successfully @@ -840,7 +840,7 @@ src/app/components/manage/settings/settings.component.html 124 - Show notifications when document processing completes successfully + Show notifications when document processing completes successfully Show notifications when document processing fails @@ -848,7 +848,7 @@ src/app/components/manage/settings/settings.component.html 125 - Show notifications when document processing fails + Show notifications when document processing fails Suppress notifications on dashboard @@ -856,7 +856,7 @@ src/app/components/manage/settings/settings.component.html 126 - Suppress notifications on dashboard + Suppress notifications on dashboard This will suppress all messages about document processing status on the dashboard. @@ -864,7 +864,7 @@ src/app/components/manage/settings/settings.component.html 126 - This will suppress all messages about document processing status on the dashboard. + This will suppress all messages about document processing status on the dashboard. Appears on @@ -872,7 +872,7 @@ src/app/components/manage/settings/settings.component.html 146 - Appears on + Appears on Show on dashboard @@ -880,7 +880,7 @@ src/app/components/manage/settings/settings.component.html 149 - Show on dashboard + Show on dashboard Show in sidebar @@ -888,7 +888,7 @@ src/app/components/manage/settings/settings.component.html 153 - Show in sidebar + Show in sidebar No saved views defined. @@ -896,7 +896,7 @@ src/app/components/manage/settings/settings.component.html 163 - No saved views defined. + No saved views defined. 404 Not Found @@ -904,7 +904,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Not Found + 404 Not Found Do you really want to delete the correspondent ""? @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Do you really want to delete the correspondent ""? + Do you really want to delete the correspondent ""? Correspondents @@ -920,7 +920,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 1 - Correspondents + Correspondents Last correspondence @@ -928,7 +928,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 22 - Last correspondence + Last correspondence Confirmation @@ -936,7 +936,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 - Confirmation + Confirmation Confirm @@ -944,7 +944,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 - Confirm + Confirm Cancel @@ -952,7 +952,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Cancel + Cancel Create new correspondent @@ -960,7 +960,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 - Create new correspondent + Create new correspondent Edit correspondent @@ -968,7 +968,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 - Edit correspondent + Edit correspondent Matching algorithm @@ -976,7 +976,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 - Matching algorithm + Matching algorithm Matching pattern @@ -984,7 +984,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 - Matching pattern + Matching pattern Case insensitive @@ -992,7 +992,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 - Case insensitive + Case insensitive Create new tag @@ -1000,7 +1000,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 - Create new tag + Create new tag Edit tag @@ -1008,7 +1008,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Edit tag + Edit tag Inbox tag @@ -1016,7 +1016,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tag + Inbox tag Inbox tags are automatically assigned to all consumed documents. @@ -1024,7 +1024,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tags are automatically assigned to all consumed documents. + Inbox tags are automatically assigned to all consumed documents. Create new document type @@ -1032,7 +1032,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 - Create new document type + Create new document type Edit document type @@ -1040,7 +1040,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Edit document type + Edit document type Search results @@ -1048,7 +1048,7 @@ src/app/components/search/search.component.html 1 - Search results + Search results Invalid search query: @@ -1056,39 +1056,39 @@ src/app/components/search/search.component.html 4 - Invalid search query: + Invalid search query: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Showing documents similar to Search query: src/app/components/search/search.component.html - 11 + 9 - Search query: + Search query: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Did you mean ""? + Did you mean ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} Paperless-ng @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1105,7 +1105,7 @@ src/app/components/app-frame/app-frame.component.html 15 - Search documents + Search documents Logout @@ -1113,7 +1113,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + Logout Manage @@ -1121,7 +1121,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + Manage Admin @@ -1129,7 +1129,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Admin Info @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Info Documentation @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Documentation GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1161,7 +1161,7 @@ src/app/components/app-frame/app-frame.component.html 181 - Suggest an idea + Suggest an idea Logged in as @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Logged in as + Logged in as Open documents @@ -1177,7 +1177,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + Open documents Close all @@ -1185,79 +1185,95 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + Close all Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 - Title + Title Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 - Title & content + Title & content + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondent: + Correspondent: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 - Without correspondent + Without correspondent Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type: + Type: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 - Without document type + Without document type Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Tag: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 - Without any tag + Without any tag Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Title: + Title: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1265,7 +1281,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 20 - Filter tags + Filter tags Filter correspondents @@ -1273,7 +1289,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 28 - Filter correspondents + Filter correspondents Filter document types @@ -1281,7 +1297,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 35 - Filter document types + Filter document types Reset filters @@ -1289,7 +1305,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 58 - Reset filters + Reset filters Not assigned @@ -1298,7 +1314,7 @@ 166 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + Not assigned Apply @@ -1306,7 +1322,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Apply + Apply Last 7 days @@ -1314,7 +1330,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 34 - Last 7 days + Last 7 days Last month @@ -1322,7 +1338,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 35 - Last month + Last month Last 3 months @@ -1330,7 +1346,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 36 - Last 3 months + Last 3 months Last year @@ -1338,7 +1354,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 37 - Last year + Last year After @@ -1346,7 +1362,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - After + After Before @@ -1354,7 +1370,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 38 - Before + Before Clear @@ -1362,7 +1378,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 18 - Clear + Clear View @@ -1370,7 +1386,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 50 - View + View Created: @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Created: + Created: Filter by correspondent @@ -1386,7 +1402,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 20 - Filter by correspondent + Filter by correspondent Filter by tag @@ -1394,7 +1410,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 24 - Filter by tag + Filter by tag Score: @@ -1402,7 +1418,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 62 - Score: + Score: View in browser @@ -1410,7 +1426,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 40 - View in browser + View in browser Error executing bulk operation: @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Error executing bulk operation: + Error executing bulk operation: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" and "" + "" and "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - and "" + and "" Confirm tags assignment @@ -1461,7 +1477,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 - Confirm tags assignment + Confirm tags assignment This operation will add the tag "" to selected document(s). @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - This operation will add the tag "" to selected document(s). + This operation will add the tag "" to selected document(s). This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - This operation will add the tags to selected document(s). + This operation will add the tags to selected document(s). This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - This operation will remove the tag "" from selected document(s). + This operation will remove the tag "" from selected document(s). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - This operation will remove the tags from selected document(s). + This operation will remove the tags from selected document(s). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - This operation will add the tags and remove the tags on selected document(s). + This operation will add the tags and remove the tags on selected document(s). Confirm correspondent assignment @@ -1509,7 +1525,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 - Confirm correspondent assignment + Confirm correspondent assignment This operation will assign the correspondent "" to selected document(s). @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - This operation will assign the correspondent "" to selected document(s). + This operation will assign the correspondent "" to selected document(s). This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - This operation will remove the correspondent from selected document(s). + This operation will remove the correspondent from selected document(s). Confirm document type assignment @@ -1533,7 +1549,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 - Confirm document type assignment + Confirm document type assignment This operation will assign the document type "" to selected document(s). @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - This operation will assign the document type "" to selected document(s). + This operation will assign the document type "" to selected document(s). This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - This operation will remove the document type from selected document(s). + This operation will remove the document type from selected document(s). Delete confirm @@ -1557,7 +1573,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 - Delete confirm + Delete confirm This operation will permanently delete selected document(s). @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - This operation will permanently delete selected document(s). + This operation will permanently delete selected document(s). This operation cannot be undone. @@ -1573,7 +1589,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 - This operation cannot be undone. + This operation cannot be undone. Delete document(s) @@ -1581,7 +1597,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 - Delete document(s) + Delete document(s) Select: @@ -1589,7 +1605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Select: All @@ -1597,7 +1613,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + All Edit: @@ -1605,7 +1621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Edit: Download originals @@ -1613,7 +1629,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 - Download originals + Download originals Suggestions: @@ -1621,7 +1637,7 @@ src/app/components/common/input/select/select.component.html 26 - Suggestions: + Suggestions: Save current view @@ -1629,7 +1645,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Save current view Show all @@ -1637,7 +1653,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 - Show all + Show all Statistics @@ -1645,7 +1661,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Statistics Total documents: @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total documents: + Total documents: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documents in inbox: + Documents in inbox: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Processing: + Processing: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Failed: + Failed: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Added: + Added: Connecting... @@ -1693,7 +1709,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 - Connecting... + Connecting... Uploading... @@ -1701,7 +1717,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 - Uploading... + Uploading... Upload complete, waiting... @@ -1709,7 +1725,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 - Upload complete, waiting... + Upload complete, waiting... HTTP error: @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - HTTP error: + HTTP error: Upload new documents @@ -1725,7 +1741,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Upload new documents Drop documents here or @@ -1733,7 +1749,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Drop documents here or + Drop documents here or Browse files @@ -1741,7 +1757,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Browse files Dismiss completed @@ -1750,7 +1766,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + Dismiss completed {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -1759,7 +1775,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} Open document @@ -1767,7 +1783,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 - Open document + Open document First steps @@ -1775,7 +1791,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 - First steps + First steps Paperless is running! :) @@ -1783,7 +1799,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - Paperless is running! :) + Paperless is running! :) 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. @@ -1791,7 +1807,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + 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. Paperless offers some more features that try to make your life easier: @@ -1799,7 +1815,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Paperless offers some more features that try to make your life easier: + Paperless offers some more features that try to make your life easier: Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. @@ -1807,7 +1823,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. You can configure paperless to read your mails and add documents from attached files. @@ -1815,7 +1831,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 - You can configure paperless to read your mails and add documents from attached files. + You can configure paperless to read your mails and add documents from attached files. 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. @@ -1823,7 +1839,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 - Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + 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. Metadata @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Metadata Select @@ -1839,7 +1855,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 18 - Select + Select Please select an object @@ -1847,7 +1863,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 21 - Please select an object + Please select an object Invalid date. @@ -1855,7 +1871,7 @@ src/app/components/common/input/date/date.component.html 14 - Invalid date. + Invalid date. Yes @@ -1863,7 +1879,7 @@ src/app/pipes/yes-no.pipe.ts 9 - Yes + Yes No @@ -1871,7 +1887,7 @@ src/app/pipes/yes-no.pipe.ts 9 - No + No (no title) @@ -1879,7 +1895,7 @@ src/app/pipes/document-title.pipe.ts 12 - (no title) + (no title) English (US) @@ -1887,7 +1903,7 @@ src/app/services/settings.service.ts 90 - English (US) + English (US) English (GB) @@ -1895,7 +1911,7 @@ src/app/services/settings.service.ts 91 - English (GB) + English (GB) German @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - German + German Dutch @@ -1911,7 +1927,7 @@ src/app/services/settings.service.ts 93 - Dutch + Dutch French @@ -1919,7 +1935,7 @@ src/app/services/settings.service.ts 94 - French + French Portuguese (Brazil) @@ -1927,7 +1943,7 @@ src/app/services/settings.service.ts 95 - Portuguese (Brazil) + Portuguese (Brazil) Italian @@ -1935,7 +1951,7 @@ src/app/services/settings.service.ts 96 - Italian + Italian Romanian @@ -1943,15 +1959,23 @@ src/app/services/settings.service.ts 97 - Romanian + Romanian + + + Russian + + src/app/services/settings.service.ts + 98 + + Russian ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -1959,7 +1983,7 @@ src/app/services/consumer-status.service.ts 15 - Document already exists. + Document already exists. File not found. @@ -1967,7 +1991,7 @@ src/app/services/consumer-status.service.ts 16 - File not found. + File not found. Pre-consume script does not exist. @@ -1976,7 +2000,7 @@ 17 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Pre-consume script does not exist. + Pre-consume script does not exist. Error while executing pre-consume script. @@ -1985,7 +2009,7 @@ 18 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. + Error while executing pre-consume script. Post-consume script does not exist. @@ -1994,7 +2018,7 @@ 19 Post-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. + Post-consume script does not exist. Error while executing post-consume script. @@ -2003,7 +2027,7 @@ 20 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. + Error while executing post-consume script. Received new file. @@ -2011,7 +2035,7 @@ src/app/services/consumer-status.service.ts 21 - Received new file. + Received new file. File type not supported. @@ -2019,7 +2043,7 @@ src/app/services/consumer-status.service.ts 22 - File type not supported. + File type not supported. Processing document... @@ -2027,7 +2051,7 @@ src/app/services/consumer-status.service.ts 23 - Processing document... + Processing document... Generating thumbnail... @@ -2035,7 +2059,7 @@ src/app/services/consumer-status.service.ts 24 - Generating thumbnail... + Generating thumbnail... Retrieving date from document... @@ -2043,7 +2067,7 @@ src/app/services/consumer-status.service.ts 25 - Retrieving date from document... + Retrieving date from document... Saving document... @@ -2051,7 +2075,7 @@ src/app/services/consumer-status.service.ts 26 - Saving document... + Saving document... Finished. @@ -2059,7 +2083,7 @@ src/app/services/consumer-status.service.ts 27 - Finished. + Finished. Error @@ -2067,7 +2091,7 @@ src/app/services/toast.service.ts 35 - Error + Error Information @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Information Correspondent @@ -2091,7 +2107,7 @@ src/app/services/rest/document.service.ts 18 - Correspondent + Correspondent Document type @@ -2099,7 +2115,7 @@ src/app/services/rest/document.service.ts 20 - Document type + Document type Created @@ -2107,7 +2123,7 @@ src/app/services/rest/document.service.ts 21 - Created + Created Added @@ -2115,7 +2131,7 @@ src/app/services/rest/document.service.ts 22 - Added + Added Modified @@ -2123,7 +2139,7 @@ src/app/services/rest/document.service.ts 23 - Modified + Modified Create new item @@ -2131,7 +2147,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 50 - Create new item + Create new item Edit item @@ -2139,7 +2155,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 54 - Edit item + Edit item Could not save element: @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Could not save element: + Could not save element: Automatic @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + Automatic Do you really want to delete this element? @@ -2163,7 +2179,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 97 - Do you really want to delete this element? + Do you really want to delete this element? Associated documents will not be deleted. @@ -2171,7 +2187,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 104 - Associated documents will not be deleted. + Associated documents will not be deleted. Delete @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Delete + Delete Error while deleting element: @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Error while deleting element: + Error while deleting element: Any word @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Any word + Any word Any: Document contains any of these words (space separated) @@ -2203,7 +2219,7 @@ src/app/data/matching-model.ts 12 - Any: Document contains any of these words (space separated) + Any: Document contains any of these words (space separated) All words @@ -2211,7 +2227,7 @@ src/app/data/matching-model.ts 13 - All words + All words All: Document contains all of these words (space separated) @@ -2219,7 +2235,7 @@ src/app/data/matching-model.ts 13 - All: Document contains all of these words (space separated) + All: Document contains all of these words (space separated) Exact match @@ -2227,7 +2243,7 @@ src/app/data/matching-model.ts 14 - Exact match + Exact match Exact: Document contains this string @@ -2235,7 +2251,7 @@ src/app/data/matching-model.ts 14 - Exact: Document contains this string + Exact: Document contains this string Regular expression @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + Regular expression Regular expression: Document matches this regular expression @@ -2251,7 +2267,7 @@ src/app/data/matching-model.ts 15 - Regular expression: Document matches this regular expression + Regular expression: Document matches this regular expression Fuzzy word @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Fuzzy word + Fuzzy word Fuzzy: Document contains a word similar to this word @@ -2267,7 +2283,7 @@ src/app/data/matching-model.ts 16 - Fuzzy: Document contains a word similar to this word + Fuzzy: Document contains a word similar to this word Auto: Learn matching automatically @@ -2275,7 +2291,7 @@ src/app/data/matching-model.ts 17 - Auto: Learn matching automatically + Auto: Learn matching automatically diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index bea646011..9f32f214c 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -8,7 +8,7 @@ src/app/app.component.ts 51 - Document added + Documento agregado Document was added to paperless. @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Document was added to paperless. + Documento agregado a paperless. Open document @@ -24,7 +24,7 @@ src/app/app.component.ts 51 - Open document + Abrir documento Could not add : @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Could not add : + No se pudo agregar: New document detected @@ -40,7 +40,7 @@ src/app/app.component.ts 65 - New document detected + Nuevo documento detectado Document is being processed by paperless. @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Document is being processed by paperless. + El documento está siendo procesado por paperless. Documents @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Documentos View "" saved successfully. @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - View "" saved successfully. + Ver "" guardado satisfactoriamente. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - View "" created successfully. + Ver "" creado satisfactoriamente. Select @@ -80,7 +80,7 @@ src/app/components/document-list/document-list.component.html 7 - Select + Selecciona Select none @@ -88,7 +88,7 @@ src/app/components/document-list/document-list.component.html 10 - Select none + Seleccionar ninguno Select page @@ -96,7 +96,7 @@ src/app/components/document-list/document-list.component.html 11 - Select page + Seleccionar página Select all @@ -104,7 +104,7 @@ src/app/components/document-list/document-list.component.html 12 - Select all + Seleccionar todo Sort @@ -112,7 +112,7 @@ src/app/components/document-list/document-list.component.html 39 - Sort + Ordenar Views @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Vistas Save as... @@ -128,7 +128,7 @@ src/app/components/document-list/document-list.component.html 72 - Save as... + Guardar como... Save "" @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Save "" + Guardar "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -144,7 +144,7 @@ src/app/components/document-list/document-list.component.html 85 - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, =1 {Seleccionado de un documento} other {Seleccionados de documentos}} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -152,7 +152,7 @@ src/app/components/document-list/document-list.component.html 86 - {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, =1 {Un documento} other { documentos}} (filtered) @@ -160,7 +160,7 @@ src/app/components/document-list/document-list.component.html 86 - (filtered) + (filtrado) ASN @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + NSA Correspondent @@ -184,7 +184,7 @@ src/app/components/document-list/document-list.component.html 117 - Title + Título Document type @@ -192,7 +192,7 @@ src/app/components/document-list/document-list.component.html 123 - Document type + Tipo de documento Created @@ -200,7 +200,7 @@ src/app/components/document-list/document-list.component.html 129 - Created + Creado Added @@ -208,7 +208,7 @@ src/app/components/document-list/document-list.component.html 135 - Added + Aggregado Confirm delete @@ -216,7 +216,7 @@ src/app/components/document-detail/document-detail.component.ts 203 - Confirm delete + Confirmar borrado Do you really want to delete document ""? @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Do you really want to delete document ""? + ¿Estás seguro de querer borrar el documento ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -232,7 +232,7 @@ src/app/components/document-detail/document-detail.component.ts 205 - The files for this document will be deleted permanently. This operation cannot be undone. + Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer. Delete document @@ -240,7 +240,7 @@ src/app/components/document-detail/document-detail.component.ts 207 - Delete document + Borrar documento Error deleting document: @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Error deleting document: + Error borrando el documento: Delete @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Delete + Borrar Download @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Download + Descargar More like this @@ -272,7 +272,7 @@ src/app/components/document-detail/document-detail.component.html 38 - More like this + Similares Close @@ -280,7 +280,7 @@ src/app/components/document-detail/document-detail.component.html 44 - Close + Cerrar Details @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Detalles Content @@ -296,7 +296,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Content + Contenido Metadata @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Metadatos Discard @@ -312,7 +312,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Discard + Descartar Save @@ -320,7 +320,7 @@ src/app/components/document-detail/document-detail.component.html 132 - Save + Salvar Page @@ -328,7 +328,7 @@ src/app/components/document-detail/document-detail.component.html 4 - Page + Página of @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - of + de Download original @@ -344,7 +344,7 @@ src/app/components/document-detail/document-detail.component.html 29 - Download original + Documento original Archive serial number @@ -352,7 +352,7 @@ src/app/components/document-detail/document-detail.component.html 60 - Archive serial number + Número de serie del archivo Date created @@ -360,7 +360,7 @@ src/app/components/document-detail/document-detail.component.html 61 - Date created + Fecha de creación Date modified @@ -368,7 +368,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Date modified + Fecha de modificación Date added @@ -376,7 +376,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Date added + Fecha de subida Media filename @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Media filename + Nombre del fichero Original MD5 checksum @@ -392,7 +392,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Original MD5 checksum + Comprobación MD5 original Original file size @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Original file size + Tamaño del fichero original Original mime type @@ -408,7 +408,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Original mime type + Tipo MIME original Archive MD5 checksum @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Archive MD5 checksum + Comprobación MD5 del archivo Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Archive file size + Tamaño del archivo Original document metadata @@ -432,7 +432,7 @@ src/app/components/document-detail/document-detail.component.html 121 - Original document metadata + Metadatos originales Archived document metadata @@ -440,7 +440,7 @@ src/app/components/document-detail/document-detail.component.html 122 - Archived document metadata + Metadatos archivados Save & next @@ -448,7 +448,7 @@ src/app/components/document-detail/document-detail.component.html 131 - Save & next + Guardar y continuar Hello , welcome to Paperless-ng! @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hello , welcome to Paperless-ng! + Hola , bienvenido a Paperless-ng! Welcome to Paperless-ng! @@ -464,7 +464,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - Welcome to Paperless-ng! + Bienvenido a Paperless-ng! Dashboard @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Panel de control Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Do you really want to delete the tag ""? + ¿Estás seguro de querer borrar la etiqueta ""? Tags @@ -488,7 +488,7 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Etiquetas Create @@ -496,7 +496,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Create + Crear Filter by: @@ -504,7 +504,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filter by: + Filtrado por: Name @@ -512,7 +512,7 @@ src/app/components/manage/tag-list/tag-list.component.html 9 - Name + Nombre Color @@ -520,7 +520,7 @@ src/app/components/manage/tag-list/tag-list.component.html 20 - Color + Color Matching @@ -528,7 +528,7 @@ src/app/components/manage/tag-list/tag-list.component.html 21 - Matching + Condición Document count @@ -536,7 +536,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Document count + Cantidad de documentos Actions @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Acciones Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Documentos Edit @@ -560,7 +560,7 @@ src/app/components/manage/tag-list/tag-list.component.html 43 - Edit + Editar Do you really want to delete the document type ""? @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Do you really want to delete the document type ""? + ¿Estás seguro de querer borrar el tipo de documento ""? Document types @@ -576,7 +576,7 @@ src/app/components/manage/document-type-list/document-type-list.component.html 1 - Document types + Tipos de documento Logs @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logs Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Saved view "" deleted. + Vista guardada "" borrada. Settings saved successfully. @@ -600,7 +600,7 @@ src/app/components/manage/settings/settings.component.ts 89 - Settings saved successfully. + Ajustes guardados satisfactoriamente. Use system language @@ -608,7 +608,7 @@ src/app/components/manage/settings/settings.component.ts 94 - Use system language + Usar idioma del sistema Use date format of display language @@ -616,7 +616,7 @@ src/app/components/manage/settings/settings.component.ts 100 - Use date format of display language + Usar formato de fechas del idioma seleccionado Error while storing settings on server: @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Error while storing settings on server: + Error guardando los ajustes: Settings @@ -632,7 +632,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + Ajustes General settings @@ -640,7 +640,7 @@ src/app/components/manage/settings/settings.component.html 10 - General settings + Ajustes generales Notifications @@ -648,7 +648,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notifications + Notificaciones Saved views @@ -656,7 +656,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + Vistas guardadas Appearance @@ -664,7 +664,7 @@ src/app/components/manage/settings/settings.component.html 13 - Appearance + Apariencia Display language @@ -672,7 +672,7 @@ src/app/components/manage/settings/settings.component.html 17 - Display language + Idioma You need to reload the page after applying a new language. @@ -680,7 +680,7 @@ src/app/components/manage/settings/settings.component.html 25 - You need to reload the page after applying a new language. + Necesitas recargar la página tras aplicar el nuevo idioma. Date display @@ -688,7 +688,7 @@ src/app/components/manage/settings/settings.component.html 32 - Date display + Formato de fechas Date format @@ -696,7 +696,7 @@ src/app/components/manage/settings/settings.component.html 45 - Date format + Formato de fechas Short: @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Short: + Corto: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Medium: + Medio: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Long: + Largo: Items per page @@ -728,7 +728,7 @@ src/app/components/manage/settings/settings.component.html 67 - Items per page + Elementos por página Document editor @@ -736,7 +736,7 @@ src/app/components/manage/settings/settings.component.html 83 - Document editor + Editor de documentos Use PDF viewer provided by the browser @@ -744,7 +744,7 @@ src/app/components/manage/settings/settings.component.html 87 - Use PDF viewer provided by the browser + Usar el visor PDF proporcionado por el navegador This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -752,7 +752,7 @@ src/app/components/manage/settings/settings.component.html 87 - This is usually faster for displaying large PDF documents, but it might not work on some browsers. + Habitualmente esto es mas rápido para mostrar archivos PDF largos, pero puede no funcionar en algunos navegadores. Dark mode @@ -760,7 +760,7 @@ src/app/components/manage/settings/settings.component.html 94 - Dark mode + Modo oscuro Use system settings @@ -768,7 +768,7 @@ src/app/components/manage/settings/settings.component.html 97 - Use system settings + Usar ajustes del sistema Enable dark mode @@ -776,7 +776,7 @@ src/app/components/manage/settings/settings.component.html 98 - Enable dark mode + Habilitar modo oscuro Invert thumbnails in dark mode @@ -784,7 +784,7 @@ src/app/components/manage/settings/settings.component.html 99 - Invert thumbnails in dark mode + Invertir miniaturas en modo oscuro Bulk editing @@ -792,7 +792,7 @@ src/app/components/manage/settings/settings.component.html 103 - Bulk editing + Editor multiple Show confirmation dialogs @@ -800,7 +800,7 @@ src/app/components/manage/settings/settings.component.html 107 - Show confirmation dialogs + Mostrar diálogos de confirmación Deleting documents will always ask for confirmation. @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - Deleting documents will always ask for confirmation. + Borrar los documentos siempre pedirá confirmación. Apply on close @@ -816,7 +816,7 @@ src/app/components/manage/settings/settings.component.html 108 - Apply on close + Aplicar al cerrar Document processing @@ -824,7 +824,7 @@ src/app/components/manage/settings/settings.component.html 119 - Document processing + Procesado de documentos Show notifications when new documents are detected @@ -832,7 +832,7 @@ src/app/components/manage/settings/settings.component.html 123 - Show notifications when new documents are detected + Mostrar notificaciones cuando nuevos documentos sean borrados Show notifications when document processing completes successfully @@ -840,7 +840,7 @@ src/app/components/manage/settings/settings.component.html 124 - Show notifications when document processing completes successfully + Mostrar notificaciones cuando el procesado se complete satisfactoriamente Show notifications when document processing fails @@ -848,7 +848,7 @@ src/app/components/manage/settings/settings.component.html 125 - Show notifications when document processing fails + Mostrar notificaciones cuando el procesado falle Suppress notifications on dashboard @@ -856,7 +856,7 @@ src/app/components/manage/settings/settings.component.html 126 - Suppress notifications on dashboard + No mostrar notificaciones en el panel de control This will suppress all messages about document processing status on the dashboard. @@ -864,7 +864,7 @@ src/app/components/manage/settings/settings.component.html 126 - This will suppress all messages about document processing status on the dashboard. + Esto suprimirá todos los mensajes de estado de procesamiento en el panel de control. Appears on @@ -872,7 +872,7 @@ src/app/components/manage/settings/settings.component.html 146 - Appears on + Aparece en Show on dashboard @@ -880,7 +880,7 @@ src/app/components/manage/settings/settings.component.html 149 - Show on dashboard + Mostrar en el panel de control Show in sidebar @@ -888,7 +888,7 @@ src/app/components/manage/settings/settings.component.html 153 - Show in sidebar + Mostrar barra lateral No saved views defined. @@ -896,7 +896,7 @@ src/app/components/manage/settings/settings.component.html 163 - No saved views defined. + No hay ninguna vista guardada definida 404 Not Found @@ -904,7 +904,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Not Found + 404 No encontrado Do you really want to delete the correspondent ""? @@ -936,7 +936,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 - Confirmation + Confirmación Confirm @@ -944,7 +944,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 - Confirm + Confirmar Cancel @@ -952,7 +952,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Cancel + Cancelar Create new correspondent @@ -976,7 +976,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 - Matching algorithm + Algoritmo del patrón de búsqueda Matching pattern @@ -984,7 +984,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 - Matching pattern + Patrón de busqueda Case insensitive @@ -992,7 +992,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 - Case insensitive + Insensible a mayúsculas y minusculas Create new tag @@ -1000,7 +1000,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 - Create new tag + Crear nueva etiqueta Edit tag @@ -1008,7 +1008,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Edit tag + Editar etiqueta Inbox tag @@ -1016,7 +1016,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tag + Etiqueta de entrada Inbox tags are automatically assigned to all consumed documents. @@ -1032,7 +1032,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 - Create new document type + Crear nuevo tipo de documento Edit document type @@ -1040,7 +1040,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Edit document type + Editar tipo de documento Search results @@ -1048,7 +1048,7 @@ src/app/components/search/search.component.html 1 - Search results + Resultados de la busqueda Invalid search query: @@ -1056,39 +1056,39 @@ src/app/components/search/search.component.html 4 - Invalid search query: + Cadena de búsqueda no valida: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Mostrando documentos similares a Search query: src/app/components/search/search.component.html - 11 + 9 - Search query: + Cadena de búsqueda: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Did you mean ""? + ¿Quizás quisiste decir ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + {VAR_PLURAL, plural, =0 {Sin resultados} =1 {Un resultado} other { resultados}} Paperless-ng @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1105,7 +1105,7 @@ src/app/components/app-frame/app-frame.component.html 15 - Search documents + Buscar documentos Logout @@ -1113,7 +1113,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + Cerrar sesión Manage @@ -1121,7 +1121,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + Organizar Admin @@ -1129,7 +1129,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Administrar Info @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Información Documentation @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Documentación GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1161,7 +1161,7 @@ src/app/components/app-frame/app-frame.component.html 181 - Suggest an idea + Sugerir una idea Logged in as @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Logged in as + Sesión iniciada como Open documents @@ -1177,7 +1177,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + Abrir documentos Close all @@ -1185,29 +1185,37 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + Cerrar todos Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 - Title + Título Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 - Title & content + Titulo y contenido + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + NSF Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 Correspondent: @@ -1215,7 +1223,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Without correspondent @@ -1223,41 +1231,49 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type: + Tipo: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 - Without document type + Sin tipo de documento Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Etiqueta: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 - Without any tag + Sin ninguna etiqueta Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Title: + Título: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1265,7 +1281,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 20 - Filter tags + Filtrar etiquetas Filter correspondents @@ -1281,7 +1297,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 35 - Filter document types + Filtrar tipos de documento Reset filters @@ -1289,7 +1305,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 58 - Reset filters + Quitar filtros Not assigned @@ -1298,7 +1314,7 @@ 166 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + Sin asignar Apply @@ -1306,7 +1322,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Apply + Aplicar Last 7 days @@ -1314,7 +1330,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 34 - Last 7 days + Últimos 7 días Last month @@ -1322,7 +1338,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 35 - Last month + Último mes Last 3 months @@ -1330,7 +1346,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 36 - Last 3 months + Últimos 3 meses Last year @@ -1338,7 +1354,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 37 - Last year + Último año After @@ -1346,7 +1362,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - After + Después Before @@ -1354,7 +1370,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 38 - Before + Antes Clear @@ -1362,7 +1378,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 18 - Clear + Limpiar View @@ -1370,7 +1386,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 50 - View + Vista Created: @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Created: + Creado: Filter by correspondent @@ -1394,7 +1410,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 24 - Filter by tag + Filtrar por etiqueta Score: @@ -1402,7 +1418,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 62 - Score: + Puntuación: View in browser @@ -1410,7 +1426,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 40 - View in browser + Ver en navegador Error executing bulk operation: @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Error executing bulk operation: + Error ejecutando operación múltiple: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" and "" + "" y "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - and "" + y "" Confirm tags assignment @@ -1461,7 +1477,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 - Confirm tags assignment + Confirmar etiquetas asignadas This operation will add the tag "" to selected document(s). @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - This operation will add the tag "" to selected document(s). + Esta operación agregará la etiqueta "" a documento(s) seleccionado(s). This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - This operation will add the tags to selected document(s). + Esta operación agregará las etiquetas a documento(s) seleccionado(s). This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - This operation will remove the tag "" from selected document(s). + Esta operacion eliminará la etiqueta "" de documento(s) seleccionado(s). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - This operation will remove the tags from selected document(s). + Esta operacion eliminará las etiquetas de documento(s) seleccionado(s). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - This operation will add the tags and remove the tags on selected document(s). + Esta operacion agregará las etiquetas y eliminará las etiquetas en documento(s) seleccionado(s). Confirm correspondent assignment @@ -1533,7 +1549,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 - Confirm document type assignment + Confirmar asignación de tipo de documento This operation will assign the document type "" to selected document(s). @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - This operation will assign the document type "" to selected document(s). + Esta operacion asignará el tipo de documento "" a documento(s) seleccionado(s). This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - This operation will remove the document type from selected document(s). + Esta operación eliminará el tipo de documento de documento(s) seleccionado(s). Delete confirm @@ -1557,7 +1573,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 - Delete confirm + Confirmar borrado This operation will permanently delete selected document(s). @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - This operation will permanently delete selected document(s). + Esta operación borrará permanentemente documento(s) seleccionado(s). This operation cannot be undone. @@ -1573,7 +1589,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 - This operation cannot be undone. + Esta operación no se puede deshacer. Delete document(s) @@ -1581,7 +1597,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 - Delete document(s) + Borrar documento(s) Select: @@ -1589,7 +1605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Seleccionar: All @@ -1597,7 +1613,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + Todos Edit: @@ -1605,7 +1621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Editar: Download originals @@ -1613,7 +1629,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 - Download originals + Descargar originales Suggestions: @@ -1621,7 +1637,7 @@ src/app/components/common/input/select/select.component.html 26 - Suggestions: + Sugerencias: Save current view @@ -1629,7 +1645,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Guardar la vista actual Show all @@ -1637,7 +1653,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 - Show all + Mostrar todos Statistics @@ -1645,7 +1661,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Estadisticas Total documents: @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total documents: + Total de documentos: Documents in inbox: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Processing: + Procesando: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Failed: + Fallidos: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Added: + Agregado: Connecting... @@ -1693,7 +1709,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 - Connecting... + Conectando... Uploading... @@ -1701,7 +1717,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 - Uploading... + Subiendo... Upload complete, waiting... @@ -1709,7 +1725,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 - Upload complete, waiting... + Subida completa, esperando... HTTP error: @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - HTTP error: + Error HTTP: Upload new documents @@ -1725,7 +1741,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Subir nuevos documentos Drop documents here or @@ -1741,7 +1757,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Explorar ficheros Dismiss completed @@ -1750,7 +1766,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + Descartar completados {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -1759,7 +1775,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, =1 {Un documento más} other { más documentos}} Open document @@ -1767,7 +1783,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 - Open document + Abrir documento First steps @@ -1775,7 +1791,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 - First steps + Primeros pasos Paperless is running! :) @@ -1783,7 +1799,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - Paperless is running! :) + Paperless está ejecutándose :) 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. @@ -1799,7 +1815,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Paperless offers some more features that try to make your life easier: + Paperless tiene algunas características para hacer tu vida mas sencilla: Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. @@ -1807,7 +1823,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + Una vez tengas un par de documentos en paperless y añadido metadatos, paperless puede asignar metadatos a los nuevos documentos automáticamente. You can configure paperless to read your mails and add documents from attached files. @@ -1815,7 +1831,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 - You can configure paperless to read your mails and add documents from attached files. + Puedes configurar paperless para leer tus correos y añadir documentos de los ficheros adjuntos. 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. @@ -1823,7 +1839,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 - Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + Consulta la documentación sobre como usar estas características . La sección de uso básico también tiene algo de información de como usar Paperless en general. Metadata @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Metadatos Select @@ -1839,7 +1855,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 18 - Select + Seleccionar Please select an object @@ -1847,7 +1863,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 21 - Please select an object + Por favor, selecciona un objeto Invalid date. @@ -1855,7 +1871,7 @@ src/app/components/common/input/date/date.component.html 14 - Invalid date. + Fecha no válida. Yes @@ -1863,7 +1879,7 @@ src/app/pipes/yes-no.pipe.ts 9 - Yes + Si No @@ -1871,7 +1887,7 @@ src/app/pipes/yes-no.pipe.ts 9 - No + No (no title) @@ -1879,7 +1895,7 @@ src/app/pipes/document-title.pipe.ts 12 - (no title) + (sin título) English (US) @@ -1887,7 +1903,7 @@ src/app/services/settings.service.ts 90 - English (US) + Inglés (US) English (GB) @@ -1895,7 +1911,7 @@ src/app/services/settings.service.ts 91 - English (GB) + Inglés (Gran Bretaña) German @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - German + Alemán Dutch @@ -1911,7 +1927,7 @@ src/app/services/settings.service.ts 93 - Dutch + Alemán French @@ -1919,7 +1935,7 @@ src/app/services/settings.service.ts 94 - French + Francés Portuguese (Brazil) @@ -1927,7 +1943,7 @@ src/app/services/settings.service.ts 95 - Portuguese (Brazil) + Portugués (Brasil) Italian @@ -1935,7 +1951,7 @@ src/app/services/settings.service.ts 96 - Italian + Italiano Romanian @@ -1943,15 +1959,23 @@ src/app/services/settings.service.ts 97 - Romanian + Rumano + + + Russian + + src/app/services/settings.service.ts + 98 + + Russian ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -1959,7 +1983,7 @@ src/app/services/consumer-status.service.ts 15 - Document already exists. + El documento ya existe. File not found. @@ -1967,7 +1991,7 @@ src/app/services/consumer-status.service.ts 16 - File not found. + Archivo no encontrado Pre-consume script does not exist. @@ -2011,7 +2035,7 @@ src/app/services/consumer-status.service.ts 21 - Received new file. + Nuevo archivo recibido. File type not supported. @@ -2019,7 +2043,7 @@ src/app/services/consumer-status.service.ts 22 - File type not supported. + Tipo de fichero no soportado. Processing document... @@ -2027,7 +2051,7 @@ src/app/services/consumer-status.service.ts 23 - Processing document... + Procesando documento... Generating thumbnail... @@ -2035,7 +2059,7 @@ src/app/services/consumer-status.service.ts 24 - Generating thumbnail... + Generando miniatura... Retrieving date from document... @@ -2043,7 +2067,7 @@ src/app/services/consumer-status.service.ts 25 - Retrieving date from document... + Obteniendo fecha del documento... Saving document... @@ -2051,7 +2075,7 @@ src/app/services/consumer-status.service.ts 26 - Saving document... + Guardando documento... Finished. @@ -2059,7 +2083,7 @@ src/app/services/consumer-status.service.ts 27 - Finished. + Completado. Error @@ -2067,7 +2091,7 @@ src/app/services/toast.service.ts 35 - Error + Error Information @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Información Correspondent @@ -2099,7 +2115,7 @@ src/app/services/rest/document.service.ts 20 - Document type + Tipo de documento Created @@ -2107,7 +2123,7 @@ src/app/services/rest/document.service.ts 21 - Created + Creado Added @@ -2115,7 +2131,7 @@ src/app/services/rest/document.service.ts 22 - Added + Agregado Modified @@ -2123,7 +2139,7 @@ src/app/services/rest/document.service.ts 23 - Modified + Modificado Create new item @@ -2131,7 +2147,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 50 - Create new item + Crear nuevo elemento Edit item @@ -2139,7 +2155,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 54 - Edit item + Editar elemento Could not save element: @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Could not save element: + No se pudo guardar el elemento: Automatic @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + Automático Do you really want to delete this element? @@ -2163,7 +2179,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 97 - Do you really want to delete this element? + ¿Estás seguro de querer borrar este elemento? Associated documents will not be deleted. @@ -2171,7 +2187,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 104 - Associated documents will not be deleted. + Los documentos asociados no serán borrados. Delete @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Delete + Borrar Error while deleting element: @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Error while deleting element: + Error borrando el elemento: Any word @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Any word + Cualquier palabra Any: Document contains any of these words (space separated) @@ -2203,7 +2219,7 @@ src/app/data/matching-model.ts 12 - Any: Document contains any of these words (space separated) + Cualquiera: El documento contiene cualquiera de estas palabras (separadas por espacios) All words @@ -2211,7 +2227,7 @@ src/app/data/matching-model.ts 13 - All words + Todas las palabras All: Document contains all of these words (space separated) @@ -2219,7 +2235,7 @@ src/app/data/matching-model.ts 13 - All: Document contains all of these words (space separated) + Todas: El documento contiene todas estas palabras (separadas por espacios) Exact match @@ -2227,7 +2243,7 @@ src/app/data/matching-model.ts 14 - Exact match + Coincidencia exacta Exact: Document contains this string @@ -2235,7 +2251,7 @@ src/app/data/matching-model.ts 14 - Exact: Document contains this string + Exacto: El documento contiene este texto Regular expression @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + Expresión regular Regular expression: Document matches this regular expression @@ -2251,7 +2267,7 @@ src/app/data/matching-model.ts 15 - Regular expression: Document matches this regular expression + Expresión regular: El documento coincide con esta expresión regular Fuzzy word @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Fuzzy word + Palabra borrosa Fuzzy: Document contains a word similar to this word @@ -2275,7 +2291,7 @@ src/app/data/matching-model.ts 17 - Auto: Learn matching automatically + Automático: Aprender automáticamente diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index bbc97753e..a5752de1b 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Le document a été ajouté à Paperless-ng. + Le document a été ajouté à Paperless-ng. Open document @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Impossible d'ajouter : + Impossible d'ajouter : New document detected @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Le document est en cours de traitement par Paperless-ng. + Le document est en cours de traitement par Paperless-ng. Documents @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Documents View "" saved successfully. @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - Vue "" enregistrée avec succès. + Vue "" enregistrée avec succès. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - Vue "" créée avec succès. + Vue "" créée avec succès. Select @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Enregistrer "" + Enregistrer "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Voulez-vous vraiment supprimer le document "" ? + Voulez-vous vraiment supprimer le document "" ? The files for this document will be deleted permanently. This operation cannot be undone. @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Une erreur s'est produite lors de la suppression du document : + Une erreur s'est produite lors de la suppression du document : Delete @@ -328,7 +328,7 @@ src/app/components/document-detail/document-detail.component.html 4 - Page + Page of @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - sur + sur Download original @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Bonjour , bienvenue dans Paperless-ng ! + Bonjour , bienvenue dans Paperless-ng ! Welcome to Paperless-ng! @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Voulez-vous vraiment supprimer l'étiquette "" ? + Voulez-vous vraiment supprimer l'étiquette "" ? Tags @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Actions Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Documents Edit @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Voulez-vous vraiment supprimer le type de document "" ? + Voulez-vous vraiment supprimer le type de document "" ? Document types @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Rapports + Journaux Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Vue "" supprimée. + Vue "" supprimée. Settings saved successfully. @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Une erreur s'est produite lors de l'enregistrement des paramètres sur le serveur : + Une erreur s'est produite lors de l'enregistrement des paramètres sur le serveur : Settings @@ -648,7 +648,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notifications + Notifications Saved views @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Court : + Court : Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Moyen : + Moyen : Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Long : + Long : Items per page @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Voulez-vous vraiment supprimer le correspondant "" ? + Voulez-vous vraiment supprimer le correspondant "" ? Correspondents @@ -936,7 +936,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 - Confirmation + Confirmation Confirm @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Requête de recherche invalide : + Requête de recherche invalide : - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Présentation des documents similaires à + Présentation des documents similaires à Search query: src/app/components/search/search.component.html - 11 + 9 - Requête de recherche : + Requête de recherche : Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Vouliez-vous dire "" ? + Vouliez-vous dire "" ? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {Aucun résultat} =1 {Un résultat} other { résultats}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Info Documentation @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Documentation GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Connexion en tant que + Connexion en tant que Open documents @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Titre @@ -1199,23 +1199,31 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Titre & contenu + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + NSA + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondant : + Correspondant : Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Sans correspondant @@ -1223,15 +1231,15 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type : + Type : Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Sans type de document @@ -1239,15 +1247,15 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Étiquette : + Étiquette : Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Sans étiquette @@ -1255,9 +1263,17 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Titre : + Titre : + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + NSA : Filter tags @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Créé le : + Créé le : Filter by correspondent @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Une erreur s'est produite lors de l'exécution de l'opération de masse : + Une erreur s'est produite lors de l'exécution de l'opération de masse : "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" et "" + "" et "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - et "" + et "" Confirm tags assignment @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - Cette action affectera l'étiquette "" au(x) document(s) sélectionné(s). + Cette action affectera l'étiquette "" au(x) document(s) sélectionné(s). This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - Cette action affectera les étiquettes au(x) document(s) sélectionné(s). + Cette action affectera les étiquettes au(x) document(s) sélectionné(s). This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - Cette action supprimera l'étiquette "" de(s) document(s) sélectionné(s). + Cette action supprimera l'étiquette "" de(s) document(s) sélectionné(s). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - Cette action supprimera les étiquettes de(s) document(s) sélectionné(s). + Cette action supprimera les étiquettes de(s) document(s) sélectionné(s). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - Cette action affectera les étiquettes et supprimera les étiquettes de(s) document(s) sélectionné(s). + Cette action affectera les étiquettes et supprimera les étiquettes de(s) document(s) sélectionné(s). Confirm correspondent assignment @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - Cette action affectera le correspondant "" au(x) document(s) sélectionné(s). + Cette action affectera le correspondant "" au(x) document(s) sélectionné(s). This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - Cette action supprimera le correspondant de(s) document(s) sélectionné(s). + Cette action supprimera le correspondant de(s) document(s) sélectionné(s). Confirm document type assignment @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - Cette action affectera le type de document "" au(x) document(s) sélectionné(s). + Cette action affectera le type de document "" au(x) document(s) sélectionné(s). This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - Cette action supprimera le type de document de(s) document(s) sélectionné(s). + Cette action supprimera le type de document de(s) document(s) sélectionné(s). Delete confirm @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - Cette action supprimera définitivement document(s) sélectionné(s). + Cette action supprimera définitivement document(s) sélectionné(s). This operation cannot be undone. @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Nombre total de documents : + Nombre total de documents : Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documents dans la boîte de réception : + Documents dans la boîte de réception : Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Traitement : + Traitement : Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Échec : + Échec : Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Ajout : + Ajout : Connecting... @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - Erreur HTTP : + Erreur HTTP : Upload new documents @@ -1945,13 +1961,21 @@ Roumain + + Russian + + src/app/services/settings.service.ts + 98 + + Russe + ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - NSA + Information Correspondent @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Impossible d'enregistrer l'élément : + Impossible d'enregistrer l'élément : Automatic @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Une erreur s'est produite lors de la suppression de l'élément : + Une erreur s'est produite lors de la suppression de l'élément : Any word diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 909b1b104..a947d5b73 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Dokumentumok View "" saved successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - View "" created successfully. + Nézet "" sikeresen létrehozva. Select @@ -80,7 +80,7 @@ src/app/components/document-list/document-list.component.html 7 - Select + Kijelölés Select none @@ -88,7 +88,7 @@ src/app/components/document-list/document-list.component.html 10 - Select none + Kijelölés törlése Select page @@ -96,7 +96,7 @@ src/app/components/document-list/document-list.component.html 11 - Select page + Oldal kijelölése Select all @@ -104,7 +104,7 @@ src/app/components/document-list/document-list.component.html 12 - Select all + Mindent kijelöl Sort @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Nézet Save as... @@ -128,7 +128,7 @@ src/app/components/document-list/document-list.component.html 72 - Save as... + Mentés másként Save "" @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + ASN Correspondent @@ -176,7 +176,7 @@ src/app/components/document-list/document-list.component.html 111 - Correspondent + Partner Title @@ -184,7 +184,7 @@ src/app/components/document-list/document-list.component.html 117 - Title + Cím Document type @@ -192,7 +192,7 @@ src/app/components/document-list/document-list.component.html 123 - Document type + Dokumentum típus Created @@ -200,7 +200,7 @@ src/app/components/document-list/document-list.component.html 129 - Created + Létrehozva Added @@ -208,7 +208,7 @@ src/app/components/document-list/document-list.component.html 135 - Added + Hozzáadva Confirm delete @@ -216,7 +216,7 @@ src/app/components/document-detail/document-detail.component.ts 203 - Confirm delete + Törlés megerősítése Do you really want to delete document ""? @@ -232,7 +232,7 @@ src/app/components/document-detail/document-detail.component.ts 205 - The files for this document will be deleted permanently. This operation cannot be undone. + A dokumentumhoz tartozó fájlok véglegesen törlésre kerülnek. Ez a művelet nem visszafordítható. Delete document @@ -240,7 +240,7 @@ src/app/components/document-detail/document-detail.component.ts 207 - Delete document + Dokumentum törlése Error deleting document: @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Delete + Törlés Download @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Download + Letöltés More like this @@ -272,7 +272,7 @@ src/app/components/document-detail/document-detail.component.html 38 - More like this + Ehhez hasonlók Close @@ -280,7 +280,7 @@ src/app/components/document-detail/document-detail.component.html 44 - Close + Bezárás Details @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Részletek Content @@ -296,7 +296,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Content + Tartalom Metadata @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Metaadat Discard @@ -312,7 +312,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Discard + Elvetés Save @@ -320,7 +320,7 @@ src/app/components/document-detail/document-detail.component.html 132 - Save + Mentés Page @@ -328,7 +328,7 @@ src/app/components/document-detail/document-detail.component.html 4 - Page + Oldal of @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - of + / Download original @@ -344,7 +344,7 @@ src/app/components/document-detail/document-detail.component.html 29 - Download original + Eredeti letöltése Archive serial number @@ -352,7 +352,7 @@ src/app/components/document-detail/document-detail.component.html 60 - Archive serial number + Archívum sorozat szám Date created @@ -360,7 +360,7 @@ src/app/components/document-detail/document-detail.component.html 61 - Date created + Létrehozás dátuma Date modified @@ -368,7 +368,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Date modified + Módosítás dátuma Date added @@ -376,7 +376,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Date added + Hozzáadás dátuma Media filename @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Media filename + Média fájlnév Original MD5 checksum @@ -392,7 +392,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Original MD5 checksum + Eredeti MD5 ellenőrző szám Original file size @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Original file size + Eredeti fájl méret Original mime type @@ -408,7 +408,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Original mime type + Eredeti MIME típus Archive MD5 checksum @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Archive MD5 checksum + Archívum MD5 ellenőrző szám Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Archive file size + Archív fájl mérete Original document metadata @@ -432,7 +432,7 @@ src/app/components/document-detail/document-detail.component.html 121 - Original document metadata + Eredeti dokumentum metaadat Archived document metadata @@ -440,7 +440,7 @@ src/app/components/document-detail/document-detail.component.html 122 - Archived document metadata + Archivált dokumentum metaadat Save & next @@ -448,7 +448,7 @@ src/app/components/document-detail/document-detail.component.html 131 - Save & next + Mentés & Következő Hello , welcome to Paperless-ng! @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hello , welcome to Paperless-ng! + Hello , a Paperless-ng üdvözöl Téged! Welcome to Paperless-ng! @@ -464,7 +464,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - Welcome to Paperless-ng! + Üdvözöl a Paperless-ng! Dashboard @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Vezérlőpult Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Do you really want to delete the tag ""? + Valóban törölni akarod a "" címkét? Tags @@ -488,7 +488,7 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Cimkék Create @@ -496,7 +496,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Create + Létrehozás Filter by: @@ -504,7 +504,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filter by: + Szűrés: Name @@ -512,7 +512,7 @@ src/app/components/manage/tag-list/tag-list.component.html 9 - Name + Név Color @@ -520,7 +520,7 @@ src/app/components/manage/tag-list/tag-list.component.html 20 - Color + Szín Matching @@ -528,7 +528,7 @@ src/app/components/manage/tag-list/tag-list.component.html 21 - Matching + Egyezés Document count @@ -536,7 +536,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Document count + Dokumentum szám Actions @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Műveletek Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Dokumentumok Edit @@ -560,7 +560,7 @@ src/app/components/manage/tag-list/tag-list.component.html 43 - Edit + Szerkesztés Do you really want to delete the document type ""? @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Do you really want to delete the document type ""? + Valóban törölni akarod a "" dokumentum típust? Document types @@ -576,7 +576,7 @@ src/app/components/manage/document-type-list/document-type-list.component.html 1 - Document types + Dokumentum típusok Logs @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Napló Saved view "" deleted. @@ -600,7 +600,7 @@ src/app/components/manage/settings/settings.component.ts 89 - Settings saved successfully. + Beállítások elmentve. Use system language @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Error while storing settings on server: + Hiba történt a beállitások mentése közben: Settings @@ -632,7 +632,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + Beállitások General settings @@ -640,7 +640,7 @@ src/app/components/manage/settings/settings.component.html 10 - General settings + Általános beállitások Notifications @@ -656,7 +656,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + Mentett nézetek Appearance @@ -728,7 +728,7 @@ src/app/components/manage/settings/settings.component.html 67 - Items per page + Oldalankénti elemek száma Document editor @@ -792,7 +792,7 @@ src/app/components/manage/settings/settings.component.html 103 - Bulk editing + Csoportos szerkesztés Show confirmation dialogs @@ -800,7 +800,7 @@ src/app/components/manage/settings/settings.component.html 107 - Show confirmation dialogs + Jóváhagyó dialógusok mutatása Deleting documents will always ask for confirmation. @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - Deleting documents will always ask for confirmation. + Dokumentumok törlése mindig jóváhagyást igényel Apply on close @@ -816,7 +816,7 @@ src/app/components/manage/settings/settings.component.html 108 - Apply on close + Alkalmazás bezárás után Document processing @@ -872,7 +872,7 @@ src/app/components/manage/settings/settings.component.html 146 - Appears on + Megjelenés Show on dashboard @@ -880,7 +880,7 @@ src/app/components/manage/settings/settings.component.html 149 - Show on dashboard + Vezérlőpulton megjelenítés Show in sidebar @@ -888,7 +888,7 @@ src/app/components/manage/settings/settings.component.html 153 - Show in sidebar + Oldal menüben megjelenítés No saved views defined. @@ -896,7 +896,7 @@ src/app/components/manage/settings/settings.component.html 163 - No saved views defined. + Nincs mentett nézet definiálva. 404 Not Found @@ -904,7 +904,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Not Found + 404 Nem található Do you really want to delete the correspondent ""? @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Do you really want to delete the correspondent ""? + Valóban törölni szerenéd a következő partnert: "" ? Correspondents @@ -920,7 +920,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 1 - Correspondents + Partnerek Last correspondence @@ -928,7 +928,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 22 - Last correspondence + Utolsó partner Confirmation @@ -936,7 +936,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 - Confirmation + Jóváhagyás Confirm @@ -944,7 +944,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 - Confirm + Jóváhagy Cancel @@ -952,7 +952,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Cancel + Megszakítás Create new correspondent @@ -960,7 +960,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 - Create new correspondent + Új partner létrehozása Edit correspondent @@ -968,7 +968,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 - Edit correspondent + Partner szerkesztése Matching algorithm @@ -976,7 +976,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 - Matching algorithm + Egyeztető algoritmus Matching pattern @@ -992,7 +992,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 - Case insensitive + Kisbetű-nagybetű érzékenység Create new tag @@ -1000,7 +1000,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 - Create new tag + Új cimke készítése Edit tag @@ -1008,7 +1008,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Edit tag + Cimke szerkesztés Inbox tag @@ -1016,7 +1016,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tag + Inbox cimke Inbox tags are automatically assigned to all consumed documents. @@ -1024,7 +1024,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tags are automatically assigned to all consumed documents. + Az "inbox" cimkék automatikusan hozzárendelődnek a feldolgozott dokumentumokhoz. Create new document type @@ -1032,7 +1032,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 - Create new document type + Új dokumentum tipus létrehozása Edit document type @@ -1040,7 +1040,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Edit document type + Dokumentum típus szerkesztése Search results @@ -1048,7 +1048,7 @@ src/app/components/search/search.component.html 1 - Search results + Találatok Invalid search query: @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Invalid search query: + Érvénytelen keresési kifejezés: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Showing documents similar to Search query: src/app/components/search/search.component.html - 11 + 9 - Search query: + Keresés: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Did you mean ""? + Úgy értetted, hogy ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1113,7 +1113,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + Kilépés Manage @@ -1121,7 +1121,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + Menedzselés Admin @@ -1129,7 +1129,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Adminisztráció Info @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Dokumentáció GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1177,7 +1177,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + Dokumentum megnyitása Close all @@ -1185,37 +1185,45 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + Összes bezárása Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 - Title + Cím Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Title & content + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondent: + Partner: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Without correspondent @@ -1223,15 +1231,15 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type: + Típus: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Without document type @@ -1239,15 +1247,15 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Cimke: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Without any tag @@ -1255,17 +1263,25 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 Title: + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: + Filter tags src/app/components/document-list/filter-editor/filter-editor.component.html 20 - Filter tags + Cimkék szerinti szűrés Filter correspondents @@ -1273,7 +1289,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 28 - Filter correspondents + Partnerek szerinti szűrés Filter document types @@ -1281,7 +1297,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 35 - Filter document types + Dokumentum típus szerinti szűrés Reset filters @@ -1298,7 +1314,7 @@ 166 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + Nincs hozzárendelés Apply @@ -1306,7 +1322,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Apply + Alkalmaz Last 7 days @@ -1314,7 +1330,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 34 - Last 7 days + Utolsó 7 nap Last month @@ -1322,7 +1338,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 35 - Last month + Előző hónap Last 3 months @@ -1330,7 +1346,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 36 - Last 3 months + Előző 3 hónap Last year @@ -1338,7 +1354,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 37 - Last year + Előző év After @@ -1346,7 +1362,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - After + Után Before @@ -1354,7 +1370,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 38 - Before + Előtte Clear @@ -1362,7 +1378,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 18 - Clear + Törlés View @@ -1370,7 +1386,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 50 - View + Megtekint Created: @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Created: + Létrehozva: Filter by correspondent @@ -1386,7 +1402,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 20 - Filter by correspondent + Partner szerinti szűrés Filter by tag @@ -1394,7 +1410,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 24 - Filter by tag + Cimke szerinti szűrés Score: @@ -1402,7 +1418,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 62 - Score: + Pont: View in browser @@ -1410,7 +1426,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 40 - View in browser + Megtekintés böngészőben Error executing bulk operation: @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" and "" + "" és "" , @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - and "" + és "" Confirm tags assignment @@ -1461,7 +1477,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 - Confirm tags assignment + Cimke hozzárendelés jóváhagyása This operation will add the tag "" to selected document(s). @@ -1509,7 +1525,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 - Confirm correspondent assignment + Partner hozzárendelés megerősítése This operation will assign the correspondent "" to selected document(s). @@ -1533,7 +1549,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 - Confirm document type assignment + Dokumentum típus hozzárendelés megerősítése This operation will assign the document type "" to selected document(s). @@ -1557,7 +1573,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 - Delete confirm + Törlés megerősítése This operation will permanently delete selected document(s). @@ -1573,7 +1589,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 - This operation cannot be undone. + Ez a művelet nem visszafordítható. Delete document(s) @@ -1581,7 +1597,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 - Delete document(s) + Dokumentum(ok) törlése Select: @@ -1589,7 +1605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Kijelöl All @@ -1597,7 +1613,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + Mind Edit: @@ -1605,7 +1621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Szerkeszt: Download originals @@ -1629,7 +1645,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Jelenlegi nézet mentése Show all @@ -1637,7 +1653,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 - Show all + Mindent megjelenít Statistics @@ -1645,7 +1661,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Statisztika Total documents: @@ -1725,7 +1741,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Új dokumentum feltöltése Drop documents here or @@ -1733,7 +1749,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Drop documents here or + Húzz ide dokumentumokat, vagy Browse files @@ -1741,7 +1757,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Fájl böngészése Dismiss completed @@ -1775,7 +1791,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 - First steps + Első lépések Paperless is running! :) @@ -1783,7 +1799,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - Paperless is running! :) + A Paperless üzemel! :) 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. @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Metaadat Select @@ -1839,7 +1855,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 18 - Select + Kijelöl Please select an object @@ -1847,7 +1863,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 21 - Please select an object + Kérem válaszon egy elemet Invalid date. @@ -1863,7 +1879,7 @@ src/app/pipes/yes-no.pipe.ts 9 - Yes + Igen No @@ -1871,7 +1887,7 @@ src/app/pipes/yes-no.pipe.ts 9 - No + Nem (no title) @@ -1879,7 +1895,7 @@ src/app/pipes/document-title.pipe.ts 12 - (no title) + (nincs cím) English (US) @@ -1887,7 +1903,7 @@ src/app/services/settings.service.ts 90 - English (US) + Angol (US) English (GB) @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - German + Német Dutch @@ -1945,11 +1961,19 @@ Romanian + + Russian + + src/app/services/settings.service.ts + 98 + + Russian + ISO 8601 src/app/services/settings.service.ts - 102 + 103 ISO 8601 @@ -2067,7 +2091,7 @@ src/app/services/toast.service.ts 35 - Error + Hiba Information @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Információ Correspondent @@ -2091,7 +2107,7 @@ src/app/services/rest/document.service.ts 18 - Correspondent + Partner Document type @@ -2099,7 +2115,7 @@ src/app/services/rest/document.service.ts 20 - Document type + Dokumentum típus Created @@ -2107,7 +2123,7 @@ src/app/services/rest/document.service.ts 21 - Created + Létrehozva Added @@ -2115,7 +2131,7 @@ src/app/services/rest/document.service.ts 22 - Added + Hozzáadva Modified @@ -2123,7 +2139,7 @@ src/app/services/rest/document.service.ts 23 - Modified + Módosítva Create new item @@ -2131,7 +2147,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 50 - Create new item + Új elem létrehozása Edit item @@ -2139,7 +2155,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 54 - Edit item + Elem szerkesztése Could not save element: @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Could not save element: + Hiba az elem mentése során: Automatic @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + Automatikus Do you really want to delete this element? @@ -2163,7 +2179,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 97 - Do you really want to delete this element? + Valóban törölni szeretnéd ezt az elemet? Associated documents will not be deleted. @@ -2171,7 +2187,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 104 - Associated documents will not be deleted. + A kapcsolódó dokumentumok nem kerülnek törlésre. Delete @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Delete + Törlés Error while deleting element: @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + Regexp Regular expression: Document matches this regular expression diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 19821f8b3..7088230dd 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Il documento è stato aggiunto a paperless. + Il documento è stato aggiunto a paperless. Open document @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Impossibile aggiungere : + Impossibile aggiungere : New document detected @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Paperless sta elaborando il documento . + Paperless sta elaborando il documento . Documents @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - La vista "" è stata salvata. + La vista "" è stata salvata. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - La vista "" è stata creata. + La vista "" è stata creata. Select @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Salva "" + Salva "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + ASN Correspondent @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Vuoi eliminare il documento ""? + Vuoi eliminare il documento ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Errore nell'eliminazione del documento: + Errore nell'eliminazione del documento: Delete @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - di + di Download original @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Nome del file multimediale + Nome file Original MD5 checksum @@ -392,7 +392,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Somma MD5 originale + Checksum MD5 originale Original file size @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Dimensione del file originale + Dimensione file originale Original mime type @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Checksum MD5 dell'archivio + Checksum MD5 archivio Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Dimensione dell'archivio + Dimensione file archivio Original document metadata @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Ciao , benvenuto su Paperless-ng! + Ciao , benvenuto su Paperless-ng! Welcome to Paperless-ng! @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Dashboard Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Vuoi eliminare il tag ""? + Vuoi eliminare il tag ""? Tags @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Vuoi eliminare il tipo di documento ""? + Vuoi eliminare il tipo di documento ""? Document types @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - La vista "" è stata eliminata. + La vista "" è stata eliminata. Settings saved successfully. @@ -616,7 +616,7 @@ src/app/components/manage/settings/settings.component.ts 100 - Usa il formato data della lingua di visualizzazione + Usa il formato data della lingua Error while storing settings on server: @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Errore durante il salvataggio delle impostazioni sul server: + Errore durante il salvataggio delle impostazioni sul server: Settings @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Breve: + Breve: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Media: + Media: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Lunga: + Lunga: Items per page @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - L'eliminazione dei documenti chiederà sempre la conferma. + Verrà sempre chiesta una conferma prima di eliminare documenti. Apply on close @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Vuoi eliminare il corrispondente ""? + Vuoi eliminare il corrispondente ""? Correspondents @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Query di ricerca non valida: + Query di ricerca non valida: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Documenti simili a + Documenti simili a Search query: src/app/components/search/search.component.html - 11 + 9 - Query di ricerca: + Query di ricerca: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Forse intendevi ""? + Forse intendevi ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {Nessun risultato} =1 {Un risultato} other { risultati}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Accesso effettuato come + Accesso effettuato come Open documents @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Titolo @@ -1199,23 +1199,31 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Titolo & contenuto + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Corrispondente: + Corrispondente: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Senza corrispondente @@ -1223,15 +1231,15 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Tipo: + Tipo: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Senza tipo di documento @@ -1239,15 +1247,15 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Tag: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Senza alcun tag @@ -1255,9 +1263,17 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Titolo: + Titolo: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Creato il: + Creato il: Filter by correspondent @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Errore durante l'operazione di modifica in blocco: + Errore durante l'operazione di modifica in blocco: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" e "" + "" e "" , @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - e "" + e "" Confirm tags assignment @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - Questa operazione aggiungerà il tag "" a documento/i selezionato/i. + Questa operazione aggiungerà il tag "" a documento/i selezionato/i. This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - Questa operazione aggiungerà i tag a documento/i selezionato/i. + Questa operazione aggiungerà i tag a documento/i selezionato/i. This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - Questa operazione rimuoverà il tag "" da documento/i selezionato/i. + Questa operazione rimuoverà il tag "" da documento/i selezionato/i. This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - Questa operazione rimuoverà i tag da documento/i selezionato/i. + Questa operazione rimuoverà i tag da documento/i selezionato/i. This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - Questa operazione aggiungerà i tag e rimuoverà i tag a documento/i selezionato/i. + Questa operazione aggiungerà i tag e rimuoverà i tag a documento/i selezionato/i. Confirm correspondent assignment @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - Questa operazione assegnerà il corrispondente "" a documento/i selezionato/i. + Questa operazione assegnerà il corrispondente "" a documento/i selezionato/i. This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - Questa operazione rimuoverà il corrispondente da documento/i selezionato/i. + Questa operazione rimuoverà il corrispondente da documento/i selezionato/i. Confirm document type assignment @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - Questa operazione assegnerà il tipo di documento "" a documento/i selezionato/i. + Questa operazione assegnerà il tipo di documento "" a documento/i selezionato/i. This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - Questa operazione eliminerà il tipo di documento da documento/i selezionato/i. + Questa operazione eliminerà il tipo di documento da documento/i selezionato/i. Delete confirm @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - Questa operazione eliminerà definitivamente documento/i selezionato/i. + Questa operazione eliminerà definitivamente documento/i selezionato/i. This operation cannot be undone. @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Documenti totali: + Documenti totali: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documenti taggati in arrivo: + Documenti taggati in arrivo: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Elaborazione in corso: + Elaborazione in corso: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Falliti: + Falliti: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Aggiunti: + Aggiunti: Connecting... @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - Errore HTTP: + Errore HTTP: Upload new documents @@ -1871,7 +1887,7 @@ src/app/pipes/yes-no.pipe.ts 9 - No + No (no title) @@ -1945,13 +1961,21 @@ Rumeno + + Russian + + src/app/services/settings.service.ts + 98 + + Russo + ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -2077,14 +2101,6 @@ Informazione - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN - Correspondent @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Non è possibile salvare l'elemento: + Non è possibile salvare l'elemento: Automatic @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Errore durante l'eliminazione dell'elemento: + Errore durante l'eliminazione dell'elemento: Any word diff --git a/src-ui/src/locale/messages.la_LA.xlf b/src-ui/src/locale/messages.la_LA.xlf index 21f16eb92..149c26513 100644 --- a/src-ui/src/locale/messages.la_LA.xlf +++ b/src-ui/src/locale/messages.la_LA.xlf @@ -1945,11 +1945,19 @@ Romanian + + Russian + + src/app/services/settings.service.ts + 98 + + Russian + ISO 8601 src/app/services/settings.service.ts - 102 + 103 ISO 8601 diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index f969efcdb..7f9dca0ef 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Document werd toegevoegd aan paperless. + Document werd toegevoegd aan paperless. Open document @@ -24,7 +24,7 @@ src/app/app.component.ts 51 - Open document + Open document Could not add : @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Kon niet toevoegen : + Kon niet toevoegen : New document detected @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Document wordt verwerkt door paperless. + Document wordt verwerkt door paperless. Documents @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - View "" met succes opgeslagen. + View "" met succes opgeslagen. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - View "" met succes gemaakt. + View "" met succes gemaakt. Select @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Views Save as... @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Opslaan "" + Opslaan "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + ASN Correspondent @@ -176,7 +176,7 @@ src/app/components/document-list/document-list.component.html 111 - Correspondent + Correspondent Title @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Wilt u het document echt verwijderen ""? + Wilt u het document echt verwijderen ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Fout bij het verwijderen van het document: + Fout bij het verwijderen van het document: Delete @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Download + Download More like this @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Details Content @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Metadata Discard @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - van + van Download original @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hallo , welkom bij Paperless-ng! + Hallo , welkom bij Paperless-ng! Welcome to Paperless-ng! @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Dashboard Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Wil je het etiket echt verwijderen ""? + Wil je het etiket echt verwijderen ""? Tags @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Wilt u het documenttype echt verwijderen ""? + Wilt u het documenttype echt verwijderen ""? Document types @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logs Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Opgeslagen view "" verwijderd. + Opgeslagen view "" verwijderd. Settings saved successfully. @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Fout bij het opslaan van de instellingen: + Fout bij het opslaan van de instellingen: Settings @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Kort: + Kort: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Medium: + Medium: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Lang: + Lang: Items per page @@ -784,7 +784,7 @@ src/app/components/manage/settings/settings.component.html 99 - Toon negatief van previews in nachtmodus + Toon negatief van voorbeeldweergave in nachtmodus Bulk editing @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Bent u zeker dat u correspondent "" wilt verwijderen? + Bent u zeker dat u correspondent "" wilt verwijderen? Correspondents @@ -1024,7 +1024,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - "Postvak in"-etiketten worden automatisch toegewezen aan alle verwerkte documenten." + "Postvak in"-etiketten worden automatisch toegewezen aan alle verwerkte documenten. Create new document type @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Ongeldige zoekopdracht: + Ongeldige zoekopdracht: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Toon documenten die lijken op + Toon documenten die lijken op Search query: src/app/components/search/search.component.html - 11 + 9 - Zoekopdracht: + Zoekopdracht: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Bedoelde u ""? + Bedoelde u ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {Geen resultaten} =1 {Eén resultaat} other { resultaten}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Aangemeld als + Aangemeld als Open documents @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Titel @@ -1199,23 +1199,31 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Titel en inhoud + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondent: + Correspondent: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Zonder correspondent @@ -1223,15 +1231,15 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type: + Type: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Zonder documenttype @@ -1239,15 +1247,15 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Etiket: + Etiket: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Zonder enig etiket @@ -1255,9 +1263,17 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Titel: + Titel: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Aangemaakt op: + Aangemaakt op: Filter by correspondent @@ -1402,7 +1418,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 62 - Score: + Score: View in browser @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Fout bij het uitvoeren van een massabewerking: + Fout bij het uitvoeren van een massabewerking: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" en "" + "" en "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - en "" + en "" Confirm tags assignment @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - Het etiket "" zal aan geselecteerd(e) document(en) worden toegewezen. + Het etiket "" zal aan geselecteerd(e) document(en) worden toegewezen. This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - De etiketten zullen aan geselecteerd(e) document(en) worden toegewezen. + De etiketten zullen aan geselecteerd(e) document(en) worden toegewezen. This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - Het etiket "" zal verwijderd worden van geselecteerd(e) document(en). + Het etiket "" zal verwijderd worden van geselecteerd(e) document(en). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - De etiketten zullen verwijderd worden van geselecteerd(e) document(en). + De etiketten zullen verwijderd worden van geselecteerd(e) document(en). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - De etiketten zullen toegevoegd worden aan, en de etiketten zullen verwijderd worden van geselecteerd(e) document(en). + De etiketten zullen toegevoegd worden aan, en de etiketten zullen verwijderd worden van geselecteerd(e) document(en). Confirm correspondent assignment @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - De correspondent "" zal aan geselecteerd(e) document(en) worden toegewezen. + De correspondent "" zal aan geselecteerd(e) document(en) worden toegewezen. This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - De correspondent zal verwijderd worden van geselecteerd(e) document(en). + De correspondent zal verwijderd worden van geselecteerd(e) document(en). Confirm document type assignment @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - Het documenttype "" zal aan geselecteerd(e) document(en) worden toegewezen. + Het documenttype "" zal aan geselecteerd(e) document(en) worden toegewezen. This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - Het documenttype zal verwijderd worden van geselecteerd(e) document(en). + Het documenttype zal verwijderd worden van geselecteerd(e) document(en). Delete confirm @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - geselecteerd(e) document(en) zullen permanent worden verwijderd. + geselecteerd(e) document(en) zullen permanent worden verwijderd. This operation cannot be undone. @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Totaal aantal documenten: + Totaal aantal documenten: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documenten in "Postvak in": + Documenten in "Postvak in": Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Bezig met verwerken: + Bezig met verwerken: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Gefaald: + Gefaald: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Toegevoegd: + Toegevoegd: Connecting... @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - HTTP fout: + HTTP fout: Upload new documents @@ -1767,7 +1783,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 - Open document + Open document First steps @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Metadata Select @@ -1945,13 +1961,21 @@ Roemeens + + Russian + + src/app/services/settings.service.ts + 98 + + Russisch + ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -2077,21 +2101,13 @@ Informatie - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN - Correspondent src/app/services/rest/document.service.ts 18 - Correspondent + Correspondent Document type @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Kon het element niet opslaan: + Kon het element niet opslaan: Automatic @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Fout bij het verwijderen van het element: + Fout bij het verwijderen van het element: Any word diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index b12cabcef..d8a49f82b 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Documento foi adicionado ao paperless. + Documento foi adicionado ao paperless. Open document @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Não foi possível adicionar : + Não foi possível adicionar : New document detected @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Documento está sendo processado pelo paperless. + Documento está sendo processado pelo paperless. Documents @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - Visualização "" salva com sucesso. + Visualização "" salva com sucesso. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - Visualização "" criada com sucesso. + Visualização "" criada com sucesso. Select @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Salvar "" + Salvar "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Você realmente deseja excluir o documento ""? + Você realmente deseja excluir o documento ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Erro ao excluir documento: + Erro ao excluir documento: Delete @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - de + de Download original @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Olá , bem-vindo ao Paperless-ng! + Olá , bem-vindo ao Paperless-ng! Welcome to Paperless-ng! @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Você realmente deseja excluir a etiqueta ""? + Você realmente deseja excluir a etiqueta ""? Tags @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Você realmente deseja excluir o tipo de documento ""? + Você realmente deseja excluir o tipo de documento ""? Document types @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logs Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Visualização "" excluída. + Visualização "" excluída. Settings saved successfully. @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Erro ao salvar configurações: + Erro ao salvar configurações: Settings @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Curto: + Curto: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Médio: + Médio: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Longo: + Longo: Items per page @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Você realmente deseja excluir o correspondente ""? + Você realmente deseja excluir o correspondente ""? Correspondents @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Termo de pesquisa inválido: + Termo de pesquisa inválido: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Exibindo documentos similares a + Exibindo documentos similares a Search query: src/app/components/search/search.component.html - 11 + 9 - Termo de pesquisa: + Termo de pesquisa: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Você quis dizer ""? + Você quis dizer ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {Sem resultados} =1 {Um resultado} other { resultados}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1129,7 +1129,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Admin Info @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Sessão iniciada como + Sessão iniciada como Open documents @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Título @@ -1199,23 +1199,31 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Título & conteúdo + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + NSA + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondente: + Correspondente: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Sem correspondente @@ -1223,15 +1231,15 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Tipo: + Tipo: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Sem tipo de documento @@ -1239,15 +1247,15 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Etiqueta: + Etiqueta: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Sem etiquetas @@ -1255,9 +1263,17 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Título: + Título: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Criado: + Criado: Filter by correspondent @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Erro ao executar operação em massa: + Erro ao executar operação em massa: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" e "" + "" e "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - e "" + e "" Confirm tags assignment @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - Essa operação irá adicionar a etiqueta "" em documento(s) selecionado(s). + Essa operação irá adicionar a etiqueta "" em documento(s) selecionado(s). This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - Essa operação irá adicionar as etiquetas em documento(s) selecionado(s). + Essa operação irá adicionar as etiquetas em documento(s) selecionado(s). This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - Essa operação irá remover a etiqueta "" de documento(s) selecionado(s). + Essa operação irá remover a etiqueta "" de documento(s) selecionado(s). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - Essa operação irá remover as etiquetas de documento(s) selecionado(s). + Essa operação irá remover as etiquetas de documento(s) selecionado(s). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - Essa operação irá adicionar as etiquetas e remover as etiquetas de documento(s) selecionado(s). + Essa operação irá adicionar as etiquetas e remover as etiquetas de documento(s) selecionado(s). Confirm correspondent assignment @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - Essa operação irá atribuir o correspondente "" para documento(s) selecionado(s). + Essa operação irá atribuir o correspondente "" para documento(s) selecionado(s). This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - Essa operação irá remover o correspondente de documento(s) selecionado(s). + Essa operação irá remover o correspondente de documento(s) selecionado(s). Confirm document type assignment @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - Essa operação irá atribuir o tipo de documento "" para documento(s) selecionado(s). + Essa operação irá atribuir o tipo de documento "" para documento(s) selecionado(s). This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - Essa operação irá remover o tipo de documento de documento(s) selecionado(s). + Essa operação irá remover o tipo de documento de documento(s) selecionado(s). Delete confirm @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - Essa operação irá excluir permanentemente documento(s) selecionado(s). + Essa operação irá excluir permanentemente documento(s) selecionado(s). This operation cannot be undone. @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total de documentos: + Total de documentos: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documentos na caixa de entrada: + Documentos na caixa de entrada: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Processando: + Processando: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Falha: + Falha: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Adicionado: + Adicionado: Connecting... @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - Erro HTTP: + Erro HTTP: Upload new documents @@ -1733,7 +1749,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Solte documentos aqui ou + Arraste documentos aqui ou Browse files @@ -1945,13 +1961,21 @@ Romeno + + Russian + + src/app/services/settings.service.ts + 98 + + Russian + ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -2077,14 +2101,6 @@ Informação - - ASN - - src/app/services/rest/document.service.ts - 17 - - NSA - Correspondent @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Não podemos salvar elemento: + Não podemos salvar elemento: Automatic @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Erro ao excluir elemento: + Erro ao excluir elemento: Any word diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index c608fc3f6..83c62dcc3 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -8,7 +8,7 @@ src/app/app.component.ts 51 - Document added + Documento adicionado Document was added to paperless. @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Document was added to paperless. + Documento foi adicionado ao paperless. Open document @@ -24,7 +24,7 @@ src/app/app.component.ts 51 - Open document + Abrir documento Could not add : @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Could not add : + Não foi possível adicionar : New document detected @@ -40,7 +40,7 @@ src/app/app.component.ts 65 - New document detected + Novo documento detectado Document is being processed by paperless. @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Document is being processed by paperless. + Documento está sendo processado pelo paperless. Documents @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Documentos View "" saved successfully. @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - View "" saved successfully. + Visualização "" salva com sucesso. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - View "" created successfully. + Visualização "" criada com sucesso. Select @@ -80,7 +80,7 @@ src/app/components/document-list/document-list.component.html 7 - Select + Selecionar Select none @@ -88,7 +88,7 @@ src/app/components/document-list/document-list.component.html 10 - Select none + Selecionar nenhum Select page @@ -96,7 +96,7 @@ src/app/components/document-list/document-list.component.html 11 - Select page + Selecionar página Select all @@ -104,7 +104,7 @@ src/app/components/document-list/document-list.component.html 12 - Select all + Selecionar todos Sort @@ -112,7 +112,7 @@ src/app/components/document-list/document-list.component.html 39 - Sort + Ordenar Views @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Visualizações Save as... @@ -128,7 +128,7 @@ src/app/components/document-list/document-list.component.html 72 - Save as... + Salvar como... Save "" @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Save "" + Salvar "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -144,7 +144,7 @@ src/app/components/document-list/document-list.component.html 85 - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, one {} =1 {Selecionado de um documento} other {Selecionados de documentos}} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -152,7 +152,7 @@ src/app/components/document-list/document-list.component.html 86 - {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, one {} =1 {Um documento} other { documentos}} (filtered) @@ -160,7 +160,7 @@ src/app/components/document-list/document-list.component.html 86 - (filtered) + (filtrado) ASN @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + NSA Correspondent @@ -176,7 +176,7 @@ src/app/components/document-list/document-list.component.html 111 - Correspondent + Correspondente Title @@ -184,7 +184,7 @@ src/app/components/document-list/document-list.component.html 117 - Title + Título Document type @@ -192,7 +192,7 @@ src/app/components/document-list/document-list.component.html 123 - Document type + Tipo de Documento Created @@ -200,7 +200,7 @@ src/app/components/document-list/document-list.component.html 129 - Created + Criado Added @@ -208,7 +208,7 @@ src/app/components/document-list/document-list.component.html 135 - Added + Adicionado Confirm delete @@ -216,7 +216,7 @@ src/app/components/document-detail/document-detail.component.ts 203 - Confirm delete + Confirmar exclusão Do you really want to delete document ""? @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Do you really want to delete document ""? + Você realmente deseja excluir o documento ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -232,7 +232,7 @@ src/app/components/document-detail/document-detail.component.ts 205 - The files for this document will be deleted permanently. This operation cannot be undone. + Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. Delete document @@ -240,7 +240,7 @@ src/app/components/document-detail/document-detail.component.ts 207 - Delete document + Excluir documento Error deleting document: @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Error deleting document: + Erro ao excluir documento: Delete @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Delete + Excluir Download @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Download + Baixar More like this @@ -272,7 +272,7 @@ src/app/components/document-detail/document-detail.component.html 38 - More like this + Mais como este Close @@ -280,7 +280,7 @@ src/app/components/document-detail/document-detail.component.html 44 - Close + Fechar Details @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Detalhes Content @@ -296,7 +296,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Content + Conteúdo Metadata @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Metadados Discard @@ -312,7 +312,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Discard + Descartar Save @@ -320,7 +320,7 @@ src/app/components/document-detail/document-detail.component.html 132 - Save + Salvar Page @@ -328,7 +328,7 @@ src/app/components/document-detail/document-detail.component.html 4 - Page + Página of @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - of + de Download original @@ -344,7 +344,7 @@ src/app/components/document-detail/document-detail.component.html 29 - Download original + Baixar original Archive serial number @@ -352,7 +352,7 @@ src/app/components/document-detail/document-detail.component.html 60 - Archive serial number + Número de série de arquivamento Date created @@ -360,7 +360,7 @@ src/app/components/document-detail/document-detail.component.html 61 - Date created + Data de criação Date modified @@ -368,7 +368,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Date modified + Data de modificação Date added @@ -376,7 +376,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Date added + Data de adição Media filename @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Media filename + Nome do arquivo Original MD5 checksum @@ -392,7 +392,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Original MD5 checksum + Soma de verificação MD5 original Original file size @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Original file size + Tamanho do arquivo original Original mime type @@ -408,7 +408,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Original mime type + Tipo mime original Archive MD5 checksum @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Archive MD5 checksum + Soma de verificação MD5 de arquivamento Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Archive file size + Tamanho arquivado Original document metadata @@ -432,7 +432,7 @@ src/app/components/document-detail/document-detail.component.html 121 - Original document metadata + Metadados do documento original Archived document metadata @@ -440,7 +440,7 @@ src/app/components/document-detail/document-detail.component.html 122 - Archived document metadata + Metadados do documento arquivado Save & next @@ -448,7 +448,7 @@ src/app/components/document-detail/document-detail.component.html 131 - Save & next + Salvar & próximo Hello , welcome to Paperless-ng! @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hello , welcome to Paperless-ng! + Olá , bem-vindo ao Paperless-ng! Welcome to Paperless-ng! @@ -464,7 +464,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - Welcome to Paperless-ng! + Bem-vindo ao Paperless-ng! Dashboard @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Painel de controle Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Do you really want to delete the tag ""? + Você realmente deseja excluir a etiqueta ""? Tags @@ -488,7 +488,7 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Etiquetas Create @@ -496,7 +496,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Create + Criar Filter by: @@ -504,7 +504,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filter by: + Filtrar por: Name @@ -512,7 +512,7 @@ src/app/components/manage/tag-list/tag-list.component.html 9 - Name + Nome Color @@ -520,7 +520,7 @@ src/app/components/manage/tag-list/tag-list.component.html 20 - Color + Cor Matching @@ -528,7 +528,7 @@ src/app/components/manage/tag-list/tag-list.component.html 21 - Matching + Detecção Document count @@ -536,7 +536,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Document count + Número de documentos Actions @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Ações Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Documentos Edit @@ -560,7 +560,7 @@ src/app/components/manage/tag-list/tag-list.component.html 43 - Edit + Editar Do you really want to delete the document type ""? @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Do you really want to delete the document type ""? + Você realmente deseja excluir o tipo de documento ""? Document types @@ -576,7 +576,7 @@ src/app/components/manage/document-type-list/document-type-list.component.html 1 - Document types + Tipos de documento Logs @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logs Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Saved view "" deleted. + Visualização "" excluída. Settings saved successfully. @@ -600,7 +600,7 @@ src/app/components/manage/settings/settings.component.ts 89 - Settings saved successfully. + Configurações salvas com sucesso. Use system language @@ -608,7 +608,7 @@ src/app/components/manage/settings/settings.component.ts 94 - Use system language + Usar linguagem do sistema Use date format of display language @@ -616,7 +616,7 @@ src/app/components/manage/settings/settings.component.ts 100 - Use date format of display language + Usar formato de data da linguagem de exibição Error while storing settings on server: @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Error while storing settings on server: + Erro ao salvar configurações: Settings @@ -632,7 +632,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + Configurações General settings @@ -640,7 +640,7 @@ src/app/components/manage/settings/settings.component.html 10 - General settings + Configurações gerais Notifications @@ -648,7 +648,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notifications + Notificações Saved views @@ -656,7 +656,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + Visualizações Appearance @@ -664,7 +664,7 @@ src/app/components/manage/settings/settings.component.html 13 - Appearance + Aparência Display language @@ -672,7 +672,7 @@ src/app/components/manage/settings/settings.component.html 17 - Display language + Linguagem de exibição You need to reload the page after applying a new language. @@ -680,7 +680,7 @@ src/app/components/manage/settings/settings.component.html 25 - You need to reload the page after applying a new language. + Você precisar recarregar a página depois de escolher uma nova linguagem. Date display @@ -688,7 +688,7 @@ src/app/components/manage/settings/settings.component.html 32 - Date display + Exibição de data Date format @@ -696,7 +696,7 @@ src/app/components/manage/settings/settings.component.html 45 - Date format + Formato de data Short: @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Short: + Curto: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Medium: + Médio: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Long: + Longo: Items per page @@ -728,7 +728,7 @@ src/app/components/manage/settings/settings.component.html 67 - Items per page + Itens por página Document editor @@ -736,7 +736,7 @@ src/app/components/manage/settings/settings.component.html 83 - Document editor + Editor de documentos Use PDF viewer provided by the browser @@ -744,7 +744,7 @@ src/app/components/manage/settings/settings.component.html 87 - Use PDF viewer provided by the browser + Usar visualizador de PDF do navegador This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -752,7 +752,7 @@ src/app/components/manage/settings/settings.component.html 87 - This is usually faster for displaying large PDF documents, but it might not work on some browsers. + Isso é geralmente mais rápido para exibir grandes documentos PDF, mas poderá não funcionar em alguns navegadores. Dark mode @@ -760,7 +760,7 @@ src/app/components/manage/settings/settings.component.html 94 - Dark mode + Modo noturno Use system settings @@ -768,7 +768,7 @@ src/app/components/manage/settings/settings.component.html 97 - Use system settings + Usar configurações do sistema Enable dark mode @@ -776,7 +776,7 @@ src/app/components/manage/settings/settings.component.html 98 - Enable dark mode + Habilitar modo noturno Invert thumbnails in dark mode @@ -784,7 +784,7 @@ src/app/components/manage/settings/settings.component.html 99 - Invert thumbnails in dark mode + Inverter miniaturas no modo escuro Bulk editing @@ -792,7 +792,7 @@ src/app/components/manage/settings/settings.component.html 103 - Bulk editing + Edição em massa Show confirmation dialogs @@ -800,7 +800,7 @@ src/app/components/manage/settings/settings.component.html 107 - Show confirmation dialogs + Mostrar janelas de confirmação Deleting documents will always ask for confirmation. @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - Deleting documents will always ask for confirmation. + Ao excluir um documento, sempre será pedido uma confirmação. Apply on close @@ -816,7 +816,7 @@ src/app/components/manage/settings/settings.component.html 108 - Apply on close + Aplicar ao fechar Document processing @@ -824,7 +824,7 @@ src/app/components/manage/settings/settings.component.html 119 - Document processing + Processamento de documentos Show notifications when new documents are detected @@ -832,7 +832,7 @@ src/app/components/manage/settings/settings.component.html 123 - Show notifications when new documents are detected + Exibir notificações quando novos documentos forem detectados Show notifications when document processing completes successfully @@ -840,7 +840,7 @@ src/app/components/manage/settings/settings.component.html 124 - Show notifications when document processing completes successfully + Exibir notificações quando o processamento de um documento concluir com sucesso Show notifications when document processing fails @@ -848,7 +848,7 @@ src/app/components/manage/settings/settings.component.html 125 - Show notifications when document processing fails + Exibir notificações quando o processamento de um documento falhar Suppress notifications on dashboard @@ -856,7 +856,7 @@ src/app/components/manage/settings/settings.component.html 126 - Suppress notifications on dashboard + Não exibir notificações no painel de controle This will suppress all messages about document processing status on the dashboard. @@ -864,7 +864,7 @@ src/app/components/manage/settings/settings.component.html 126 - This will suppress all messages about document processing status on the dashboard. + Isso esconderá todas as mensagens sobre o status de processamento de documentos no painel de controle. Appears on @@ -872,7 +872,7 @@ src/app/components/manage/settings/settings.component.html 146 - Appears on + Aparece em Show on dashboard @@ -880,7 +880,7 @@ src/app/components/manage/settings/settings.component.html 149 - Show on dashboard + Exibir no painel de controle Show in sidebar @@ -888,7 +888,7 @@ src/app/components/manage/settings/settings.component.html 153 - Show in sidebar + Mostrar na navegação lateral No saved views defined. @@ -896,7 +896,7 @@ src/app/components/manage/settings/settings.component.html 163 - No saved views defined. + Nenhuma vista gravada definida. 404 Not Found @@ -904,7 +904,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Not Found + 404 Não encontrado Do you really want to delete the correspondent ""? @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Do you really want to delete the correspondent ""? + Tem a certeza que deseja eliminar a correspondência ""? Correspondents @@ -920,7 +920,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 1 - Correspondents + Correspondentes Last correspondence @@ -928,7 +928,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 22 - Last correspondence + Última correspondência Confirmation @@ -936,7 +936,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 - Confirmation + Confirmação Confirm @@ -944,7 +944,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 - Confirm + Confirmar Cancel @@ -952,7 +952,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Cancel + Cancelar Create new correspondent @@ -960,7 +960,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 - Create new correspondent + Criar nova correspondência Edit correspondent @@ -968,7 +968,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 - Edit correspondent + Editar correspondente Matching algorithm @@ -976,7 +976,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 - Matching algorithm + Algoritmo correspondente Matching pattern @@ -984,7 +984,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 - Matching pattern + Padrão correspondente Case insensitive @@ -992,7 +992,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 - Case insensitive + Não distingue maiúsculas de minúsculas Create new tag @@ -1000,7 +1000,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 - Create new tag + Criar uma nova etiqueta Edit tag @@ -1008,7 +1008,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Edit tag + Editar etiqueta Inbox tag @@ -1016,7 +1016,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tag + Etiqueta de novo Inbox tags are automatically assigned to all consumed documents. @@ -1024,7 +1024,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tags are automatically assigned to all consumed documents. + As etiquetas de novo são automaticamente adicionadas a todos os documentos consumidos. Create new document type @@ -1032,7 +1032,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 - Create new document type + Criar novo tipo de documento Edit document type @@ -1040,7 +1040,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Edit document type + Editar tipo de documento Search results @@ -1048,7 +1048,7 @@ src/app/components/search/search.component.html 1 - Search results + Resultados da pesquisa Invalid search query: @@ -1056,39 +1056,39 @@ src/app/components/search/search.component.html 4 - Invalid search query: + Termo de pesquisa inválido: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Mostrar documentos similares a Search query: src/app/components/search/search.component.html - 11 + 9 - Search query: + Termo de pesquisa: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Did you mean ""? + Será que quer dizer ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + {VAR_PLURAL, plural, one {} =0 {Sem resultados} =1 {Um resultado} other { resultados}} Paperless-ng @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1105,7 +1105,7 @@ src/app/components/app-frame/app-frame.component.html 15 - Search documents + Procurar documentos Logout @@ -1113,7 +1113,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + Terminar sessão Manage @@ -1121,7 +1121,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + Gerir Admin @@ -1129,7 +1129,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Administrador Info @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Informação Documentation @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Documentação GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + Github Suggest an idea @@ -1161,7 +1161,7 @@ src/app/components/app-frame/app-frame.component.html 181 - Suggest an idea + Sugerir uma ideia Logged in as @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Logged in as + Sessão iniciada como Open documents @@ -1177,7 +1177,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + Abrir documentos Close all @@ -1185,79 +1185,95 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + Fechar todos Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 - Title + Título Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 - Title & content + Título & conteúdo + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + NSA Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondent: + Correspondente: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 - Without correspondent + Sem correspondente Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type: + Tipo: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 - Without document type + Sem tipo de documento Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Etiqueta: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 - Without any tag + Sem etiquetas Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Title: + Título: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + NSA: Filter tags @@ -1265,7 +1281,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 20 - Filter tags + Filtrar etiquetas Filter correspondents @@ -1273,7 +1289,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 28 - Filter correspondents + Filtrar correspondentes Filter document types @@ -1281,7 +1297,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 35 - Filter document types + Filtrar tipos de documentos Reset filters @@ -1289,7 +1305,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 58 - Reset filters + Limpar filtros Not assigned @@ -1298,7 +1314,7 @@ 166 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + Não atribuído Apply @@ -1306,7 +1322,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Apply + Aplicar Last 7 days @@ -1314,7 +1330,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 34 - Last 7 days + Últimos 7 dias Last month @@ -1322,7 +1338,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 35 - Last month + Último mês Last 3 months @@ -1330,7 +1346,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 36 - Last 3 months + Últimos 3 meses Last year @@ -1338,7 +1354,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 37 - Last year + Último ano After @@ -1346,7 +1362,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - After + Antes Before @@ -1354,7 +1370,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 38 - Before + Depois Clear @@ -1362,7 +1378,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 18 - Clear + Limpar View @@ -1370,7 +1386,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 50 - View + Ver Created: @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Created: + Criado: Filter by correspondent @@ -1386,7 +1402,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 20 - Filter by correspondent + Filtrar por correspondente Filter by tag @@ -1394,7 +1410,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 24 - Filter by tag + Filtrar por etiqueta Score: @@ -1402,7 +1418,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 62 - Score: + Pontuação: View in browser @@ -1410,7 +1426,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 40 - View in browser + Ver no navegador Error executing bulk operation: @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Error executing bulk operation: + Erro ao executar operação em massa: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" and "" + "" e "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - and "" + e "" Confirm tags assignment @@ -1461,7 +1477,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 - Confirm tags assignment + Confirmar atribuição de etiquetas This operation will add the tag "" to selected document(s). @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - This operation will add the tag "" to selected document(s). + Esta operação irá adicionar a etiqueta "" ao(s) documento(s) selecionado(s). This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - This operation will add the tags to selected document(s). + Esta operação irá adicionar as etiquetas ao(s) documento(s) selecionado(s). This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - This operation will remove the tag "" from selected document(s). + Esta operação irá remover a etiqueta "" do(s) documento(s) selecionado(s). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - This operation will remove the tags from selected document(s). + Esta operação irá remover as etiquetas do(s) documento(s) selecionado(s). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - This operation will add the tags and remove the tags on selected document(s). + Esta operação irá adicionar a(s) etiqueta(s) e remover a(s) no(s) documento(s) selecionado(s). Confirm correspondent assignment @@ -1509,7 +1525,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 - Confirm correspondent assignment + Confirmar atribuição correspondente This operation will assign the correspondent "" to selected document(s). @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - This operation will assign the correspondent "" to selected document(s). + Esta operação irá adicionar a correspondência aos documento(s) selecionado(s). This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - This operation will remove the correspondent from selected document(s). + Esta operação irá remover a correspondência do(s) documento(s) selecionado(s). Confirm document type assignment @@ -1533,7 +1549,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 - Confirm document type assignment + Confirmar atribuição de tipo de documentos This operation will assign the document type "" to selected document(s). @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - This operation will assign the document type "" to selected document(s). + A operação irá associar o tipo de documento "" ao(s) documento(s) selecionado(s). This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - This operation will remove the document type from selected document(s). + Esta operação irá remover o tipo de documento do(s) documento(s) selecionado(s). Delete confirm @@ -1557,7 +1573,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 - Delete confirm + Confirmar eliminação This operation will permanently delete selected document(s). @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - This operation will permanently delete selected document(s). + Esta operação irá apagar permanentemente o(s) documento(s) selecionado(s). This operation cannot be undone. @@ -1573,7 +1589,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 - This operation cannot be undone. + Esta operação não pode ser desfeita. Delete document(s) @@ -1581,7 +1597,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 - Delete document(s) + Apagar documento(s) Select: @@ -1589,7 +1605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Selecionar: All @@ -1597,7 +1613,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + Todos Edit: @@ -1605,7 +1621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Editar: Download originals @@ -1613,7 +1629,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 - Download originals + Descarregar originais Suggestions: @@ -1621,7 +1637,7 @@ src/app/components/common/input/select/select.component.html 26 - Suggestions: + Sugestões: Save current view @@ -1629,7 +1645,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Guardar a vista atual Show all @@ -1637,7 +1653,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 - Show all + Mostrar tudo Statistics @@ -1645,7 +1661,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Estatísticas Total documents: @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total documents: + Total de documentos: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documents in inbox: + Documentos novos: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Processing: + Processando: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Failed: + Falha: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Added: + Adicionado: Connecting... @@ -1693,7 +1709,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 - Connecting... + A ligar... Uploading... @@ -1701,7 +1717,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 - Uploading... + A carregar... Upload complete, waiting... @@ -1709,7 +1725,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 - Upload complete, waiting... + Carregamento concluído, à espera... HTTP error: @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - HTTP error: + Erro HTTP: Upload new documents @@ -1725,7 +1741,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Carregar novos documentos Drop documents here or @@ -1733,7 +1749,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Drop documents here or + Largar documentos aqui ou Browse files @@ -1741,7 +1757,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Navegar ficheiros Dismiss completed @@ -1750,7 +1766,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + Descartar concluído {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -1759,7 +1775,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, one {} =1 {Mais um documento} other {mais documentos}} Open document @@ -1767,7 +1783,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 - Open document + Abrir documento First steps @@ -1775,7 +1791,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 - First steps + Primeiros passos Paperless is running! :) @@ -1783,7 +1799,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - Paperless is running! :) + O Paperless está a correr! :) 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. @@ -1791,7 +1807,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + Pode começar a carregar documentos deixando-os na caixa de carregamento de ficheiros à direita, ou deixando-os na pasta de consumo pré-configurada, que eles depois aparecem na lista de documentos. Depois de ter adicionado alguns meta-dados aos seus documentos, utilize os mecanismos de filtragem do Paperless para criar visualizações personalizadas (tais como 'Adicionados recentemente', 'Etiquetados com PARAFAZER'). Posteriormente estes aparecerão no painel em vez desta mensagem. Paperless offers some more features that try to make your life easier: @@ -1799,7 +1815,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Paperless offers some more features that try to make your life easier: + O Paperless oferece algumas funcionalidades para tentar tornar a sua vida mais fácil: Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. @@ -1807,7 +1823,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + Assim que já tenha alguns documentos previamente adicionados com os respetivos meta-dados, o Paperless consegue adicionar automaticamente meta-dados aos novos documentos. You can configure paperless to read your mails and add documents from attached files. @@ -1815,7 +1831,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 - You can configure paperless to read your mails and add documents from attached files. + Pode configurar o Paperless para ler os seus e-mails e adicionar os documentos em anexo à plataforma. 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. @@ -1823,7 +1839,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 - Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + Consulte a documentação para saber como utilizar estas funcionalidades. A secção sobre utilização básica têm informação para o ajudar a utilizar a plataforma de uma forma geral. Metadata @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Metadados Select @@ -1839,7 +1855,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 18 - Select + Selecione Please select an object @@ -1847,7 +1863,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 21 - Please select an object + Por favor selecione um objeto Invalid date. @@ -1855,7 +1871,7 @@ src/app/components/common/input/date/date.component.html 14 - Invalid date. + Data inválida. Yes @@ -1863,7 +1879,7 @@ src/app/pipes/yes-no.pipe.ts 9 - Yes + Sim No @@ -1871,7 +1887,7 @@ src/app/pipes/yes-no.pipe.ts 9 - No + Não (no title) @@ -1879,7 +1895,7 @@ src/app/pipes/document-title.pipe.ts 12 - (no title) + (sem título) English (US) @@ -1887,7 +1903,7 @@ src/app/services/settings.service.ts 90 - English (US) + Inglês (US) English (GB) @@ -1895,7 +1911,7 @@ src/app/services/settings.service.ts 91 - English (GB) + Inglês (GB) German @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - German + Alemão Dutch @@ -1911,7 +1927,7 @@ src/app/services/settings.service.ts 93 - Dutch + Holandês French @@ -1919,7 +1935,7 @@ src/app/services/settings.service.ts 94 - French + Francês Portuguese (Brazil) @@ -1927,7 +1943,7 @@ src/app/services/settings.service.ts 95 - Portuguese (Brazil) + Português (Brasil) Italian @@ -1935,7 +1951,7 @@ src/app/services/settings.service.ts 96 - Italian + Italiano Romanian @@ -1943,15 +1959,23 @@ src/app/services/settings.service.ts 97 - Romanian + Romeno + + + Russian + + src/app/services/settings.service.ts + 98 + + Russo ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -1959,7 +1983,7 @@ src/app/services/consumer-status.service.ts 15 - Document already exists. + Documento já existente. File not found. @@ -1967,7 +1991,7 @@ src/app/services/consumer-status.service.ts 16 - File not found. + Arquivo não encontrado. Pre-consume script does not exist. @@ -1976,7 +2000,7 @@ 17 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Pre-consume script does not exist. + Script pré-consumo não existe. Error while executing pre-consume script. @@ -1985,7 +2009,7 @@ 18 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. + Erro ao executar script pré-consumo. Post-consume script does not exist. @@ -1994,7 +2018,7 @@ 19 Post-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. + Script pós-consumo não existe. Error while executing post-consume script. @@ -2003,7 +2027,7 @@ 20 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. + Erro ao executar script pós-consumo. Received new file. @@ -2011,7 +2035,7 @@ src/app/services/consumer-status.service.ts 21 - Received new file. + Novo arquivo recebido. File type not supported. @@ -2019,7 +2043,7 @@ src/app/services/consumer-status.service.ts 22 - File type not supported. + Tipo de arquivo não suportado. Processing document... @@ -2027,7 +2051,7 @@ src/app/services/consumer-status.service.ts 23 - Processing document... + Processando documento... Generating thumbnail... @@ -2035,7 +2059,7 @@ src/app/services/consumer-status.service.ts 24 - Generating thumbnail... + Gerando imagem... Retrieving date from document... @@ -2043,7 +2067,7 @@ src/app/services/consumer-status.service.ts 25 - Retrieving date from document... + Buscando data do documento... Saving document... @@ -2051,7 +2075,7 @@ src/app/services/consumer-status.service.ts 26 - Saving document... + Salvando documento... Finished. @@ -2059,7 +2083,7 @@ src/app/services/consumer-status.service.ts 27 - Finished. + Encerrado. Error @@ -2067,7 +2091,7 @@ src/app/services/toast.service.ts 35 - Error + Erro Information @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Informação Correspondent @@ -2091,7 +2107,7 @@ src/app/services/rest/document.service.ts 18 - Correspondent + Correspondente Document type @@ -2099,7 +2115,7 @@ src/app/services/rest/document.service.ts 20 - Document type + Tipo de Documento Created @@ -2107,7 +2123,7 @@ src/app/services/rest/document.service.ts 21 - Created + Criado Added @@ -2115,7 +2131,7 @@ src/app/services/rest/document.service.ts 22 - Added + Adicionado Modified @@ -2123,7 +2139,7 @@ src/app/services/rest/document.service.ts 23 - Modified + Modificado Create new item @@ -2131,7 +2147,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 50 - Create new item + Criar novo item Edit item @@ -2139,7 +2155,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 54 - Edit item + Editar item Could not save element: @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Could not save element: + Não podemos salvar elemento: Automatic @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + Automático Do you really want to delete this element? @@ -2163,7 +2179,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 97 - Do you really want to delete this element? + Você realmente quer excluir esse elemento? Associated documents will not be deleted. @@ -2171,7 +2187,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 104 - Associated documents will not be deleted. + Documentos associados não serão excluidos. Delete @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Delete + Excluir Error while deleting element: @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Error while deleting element: + Erro ao excluir elemento: Any word @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Any word + Qualquer palavra Any: Document contains any of these words (space separated) @@ -2203,7 +2219,7 @@ src/app/data/matching-model.ts 12 - Any: Document contains any of these words (space separated) + Qualquer: Documento contém qualquer uma dessas palavras (separadas por espaço) All words @@ -2211,7 +2227,7 @@ src/app/data/matching-model.ts 13 - All words + Todas as palavras All: Document contains all of these words (space separated) @@ -2219,7 +2235,7 @@ src/app/data/matching-model.ts 13 - All: Document contains all of these words (space separated) + Todas: Documento contém todas essas palavras (separadas por espaço) Exact match @@ -2227,7 +2243,7 @@ src/app/data/matching-model.ts 14 - Exact match + Detecção exata Exact: Document contains this string @@ -2235,7 +2251,7 @@ src/app/data/matching-model.ts 14 - Exact: Document contains this string + Exata: Documento contém essa palavra Regular expression @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + Expressão regular Regular expression: Document matches this regular expression @@ -2251,7 +2267,7 @@ src/app/data/matching-model.ts 15 - Regular expression: Document matches this regular expression + Expressão regular: Documento condiz com essa expressão regular Fuzzy word @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Fuzzy word + Palavra difusa Fuzzy: Document contains a word similar to this word @@ -2267,7 +2283,7 @@ src/app/data/matching-model.ts 16 - Fuzzy: Document contains a word similar to this word + Fuzzy: Documento contém uma palavra similar à essa. Auto: Learn matching automatically @@ -2275,7 +2291,7 @@ src/app/data/matching-model.ts 17 - Auto: Learn matching automatically + Auto: Aprender detecção automaticamente diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 712527fb4..a9be02808 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -8,7 +8,7 @@ src/app/app.component.ts 51 - Document adaugat + Document adăugat Document was added to paperless. @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Documentul a fost adaugat + Documentul a fost adăugat. Open document @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Nu s-a putut adauga : + Nu s-a putut adăuga : New document detected @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Documentul este in procesare + Documentul este în procesare. Documents @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - Vizualizarea "" a fost salvata + Vizualizarea "" a fost salvată. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - Vizualizarea "" a fost creata + Vizualizarea "" a fost creată. Select @@ -80,7 +80,7 @@ src/app/components/document-list/document-list.component.html 7 - Selecteaza + Selectează Select none @@ -88,7 +88,7 @@ src/app/components/document-list/document-list.component.html 10 - Deselecteaza tot + Deselectează tot Select page @@ -96,7 +96,7 @@ src/app/components/document-list/document-list.component.html 11 - Selecteaza pagina + Selectează pagina Select all @@ -104,7 +104,7 @@ src/app/components/document-list/document-list.component.html 12 - Selecteaza tot + Selectează tot Sort @@ -112,7 +112,7 @@ src/app/components/document-list/document-list.component.html 39 - Sorteaza + Sortează Views @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Vizualizari + Vizualizări Save as... @@ -128,7 +128,7 @@ src/app/components/document-list/document-list.component.html 72 - Salveaza ca... + Salvează ca... Save "" @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Salveaza "" + Salvează "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + Aviz prealabil de expediție Correspondent @@ -208,7 +208,7 @@ src/app/components/document-list/document-list.component.html 135 - Adaugat + Adăugat Confirm delete @@ -216,7 +216,7 @@ src/app/components/document-detail/document-detail.component.ts 203 - Confirma stergerea + Confirmă ștergerea Do you really want to delete document ""? @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Sunteti sigur ca doriti sa stergeti documentul ""? + Sunteţi sigur că doriţi să ştergeţi documentul ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -232,7 +232,7 @@ src/app/components/document-detail/document-detail.component.ts 205 - Fisierele pentru acest document vor fi sterse permanent. Operatiunea este ireversibila. + Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila. Delete document @@ -240,7 +240,7 @@ src/app/components/document-detail/document-detail.component.ts 207 - Sterge document + Șterge document Error deleting document: @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Eroare la stergerea documentului: + Eroare la ștergerea documentului: Delete @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Sterge + Şterge Download @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Descarca + Descarcă More like this @@ -280,7 +280,7 @@ src/app/components/document-detail/document-detail.component.html 44 - Inchide + Închide Details @@ -296,7 +296,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Continut + Conținut Metadata @@ -312,7 +312,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Renunta + Renunță Save @@ -320,7 +320,7 @@ src/app/components/document-detail/document-detail.component.html 132 - Salveaza + Salvează Page @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - din + din Download original @@ -344,7 +344,7 @@ src/app/components/document-detail/document-detail.component.html 29 - Descarca originalul + Descarcă originalul Archive serial number @@ -352,7 +352,7 @@ src/app/components/document-detail/document-detail.component.html 60 - Numar de arhiva + Număr serial în arhivă Date created @@ -360,7 +360,7 @@ src/app/components/document-detail/document-detail.component.html 61 - Data crearii + Data creării Date modified @@ -368,7 +368,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Data ultimei modificari + Data ultimei modificări Date added @@ -376,7 +376,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Data adaugarii + Data adăugării Media filename @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Numele fisierului media + Numele fișierului media Original MD5 checksum @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Marimea fisierului original + Dimensiunea fișierului original Original mime type @@ -408,7 +408,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Tipul fisierului original + Tip MIME original Archive MD5 checksum @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - MD5 arhiva + MD5 arhivă Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Marimea arhivei + Mărimea arhivei Original document metadata @@ -448,7 +448,7 @@ src/app/components/document-detail/document-detail.component.html 131 - Salveaza si continua + Salvează și continuă Hello , welcome to Paperless-ng! @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Salut, , bine ai venit la Paperless-ng! + Salut, , bun venit la Paperless-ng! Welcome to Paperless-ng! @@ -464,7 +464,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - Bine ai venit la Paperless-ng! + Bun venit la Paperless-ng! Dashboard @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Sunteti sigur ca doriti sa stergeti eticheta ""? + Sunteți sigur că doriți să ștergeți documentul ""? Tags @@ -496,7 +496,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Creeaza + Creează Filter by: @@ -504,7 +504,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filtreaza dupa: + Filtrează după: Name @@ -536,7 +536,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Numar de documente + Număr de documente Actions @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Sunteti sigur ca doriti sa stergeti tipul de document ""? + Sunteți sigur că doriți să ștergeți tipul de document ""? Document types @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Vizualizarea "" a fost stearsa. + Vizualizarea "" a fost ștearsă. Settings saved successfully. @@ -600,7 +600,7 @@ src/app/components/manage/settings/settings.component.ts 89 - Setarile au fost salvate. + Setările au fost salvate. Use system language @@ -608,7 +608,7 @@ src/app/components/manage/settings/settings.component.ts 94 - Foloseste limba sistemului + Utilizați limba sistemului Use date format of display language @@ -616,7 +616,7 @@ src/app/components/manage/settings/settings.component.ts 100 - Foloseste formatul datei corespunzator limbii de afisare + Folosiți formatul datei corespunzător limbii de afișare Error while storing settings on server: @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Eroare la stocarea setarilor pe server: + Eroare la stocarea setărilor pe server: Settings @@ -632,7 +632,7 @@ src/app/components/manage/settings/settings.component.html 1 - Setari + Setări General settings @@ -640,7 +640,7 @@ src/app/components/manage/settings/settings.component.html 10 - Setari generale + Setări generale Notifications @@ -648,7 +648,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notificari + Notificări Saved views @@ -656,7 +656,7 @@ src/app/components/manage/settings/settings.component.html 134 - Vizualizari + Vizualizări Appearance @@ -664,7 +664,7 @@ src/app/components/manage/settings/settings.component.html 13 - Afisare + Afișare Display language @@ -672,7 +672,7 @@ src/app/components/manage/settings/settings.component.html 17 - Limba de afisare + Limba de afișare You need to reload the page after applying a new language. @@ -680,7 +680,7 @@ src/app/components/manage/settings/settings.component.html 25 - Trebuie sa reincarcati pagina dupa schimbarea limbii. + Trebuie să reîncărcați pagina după aplicarea unei noi limbi. Date display @@ -688,7 +688,7 @@ src/app/components/manage/settings/settings.component.html 32 - Afisarea datei + Afișarea datei Date format @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Scurt: + Scurt: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Mediu: + Mediu: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Lung: + Lung: Items per page @@ -744,7 +744,7 @@ src/app/components/manage/settings/settings.component.html 87 - Folositi browserul pentru a deschide PDF-uri + Utilizați vizualizatorul PDF furnizat de browser This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -752,7 +752,7 @@ src/app/components/manage/settings/settings.component.html 87 - Aceasta optiune este mai rapida pentru PDF-uri mari, dar nu este compatibila cu toate browserele. + Această opțiune este mai rapidă pentru PDF-uri mari, dar nu este compatibilă cu toate browserele. Dark mode @@ -760,7 +760,7 @@ src/app/components/manage/settings/settings.component.html 94 - Mod intunecat + Mod întunecat Use system settings @@ -768,7 +768,7 @@ src/app/components/manage/settings/settings.component.html 97 - Folositi setarile sistemului + Folosește setările sistemului Enable dark mode @@ -776,7 +776,7 @@ src/app/components/manage/settings/settings.component.html 98 - Activati modul intunecat + Activează modul întunecat Invert thumbnails in dark mode @@ -784,7 +784,7 @@ src/app/components/manage/settings/settings.component.html 99 - Inverseaza miniaturile in modul intunecat + Inversează miniaturile în modul întunecat Bulk editing @@ -792,7 +792,7 @@ src/app/components/manage/settings/settings.component.html 103 - Editare in bloc + Editare în bloc Show confirmation dialogs @@ -800,7 +800,7 @@ src/app/components/manage/settings/settings.component.html 107 - Afisati dialoguri de confirmare + Afișare dialoguri de confirmare Deleting documents will always ask for confirmation. @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - Stergerea documentelor necesita intotdeauna confirmare. + Ștergerea documentelor va necesita întotdeauna confirmare. Apply on close @@ -816,7 +816,7 @@ src/app/components/manage/settings/settings.component.html 108 - Aplica la iesire + Aplică la ieșire Document processing @@ -832,7 +832,7 @@ src/app/components/manage/settings/settings.component.html 123 - Afisati notificari cand sunt detectate documente noi + Arată notificări atunci când sunt detectate documente noi Show notifications when document processing completes successfully @@ -840,7 +840,7 @@ src/app/components/manage/settings/settings.component.html 124 - Afisati notificari cand procesarea unui document este completa + Arată notificări atunci când procesarea documentului se termină cu succes Show notifications when document processing fails @@ -848,7 +848,7 @@ src/app/components/manage/settings/settings.component.html 125 - Afisati notificari cand procesarea unui document esueaza + Arată notificări atunci când procesarea documentului eșuează Suppress notifications on dashboard @@ -856,7 +856,7 @@ src/app/components/manage/settings/settings.component.html 126 - Ascundeti notificarile pe tabloul de bord + Ascunde notificările pe tabloul de bord This will suppress all messages about document processing status on the dashboard. @@ -864,7 +864,7 @@ src/app/components/manage/settings/settings.component.html 126 - Aceasta setare va opri mesajele despre procesarea documentelor pe tabloul de bord + Această setare va opri mesajele despre procesarea documentelor pe tabloul de bord. Appears on @@ -880,7 +880,7 @@ src/app/components/manage/settings/settings.component.html 149 - Afiseaza pe tabloul de bord + Afișează pe tabloul de bord Show in sidebar @@ -888,7 +888,7 @@ src/app/components/manage/settings/settings.component.html 153 - Afiseaza in bara laterala + Afișează in bara laterala No saved views defined. @@ -896,7 +896,7 @@ src/app/components/manage/settings/settings.component.html 163 - Nu sunt definite vizualizari. + Nu sunt definite vizualizări. 404 Not Found @@ -904,7 +904,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Pagina nu a fost gasita + 404 Pagina nu a fost gasită Do you really want to delete the correspondent ""? @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Sunteti sigur ca doriti sa stergeti corespondentul ""? + Sunteți sigur că doriți să ștergeți corespondentul ""? Correspondents @@ -920,7 +920,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 1 - Corespondenti + Corespondenți Last correspondence @@ -928,7 +928,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 22 - Ultima corespondenta + Ultima corespondență Confirmation @@ -944,7 +944,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 - Confirma + Confirmă Cancel @@ -952,7 +952,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Anuleaza + Anulează Create new correspondent @@ -960,7 +960,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 - Creeaza un nou corespondent + Creare corespondent nou Edit correspondent @@ -968,7 +968,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 - Modifica un corespondent + Modifică un corespondent Matching algorithm @@ -992,7 +992,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 - Ignora majusculele + Ignoră majusculele Create new tag @@ -1000,7 +1000,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 - Creeaza o noua eticheta + Crează o etichetă nouă Edit tag @@ -1008,7 +1008,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Modifica o eticheta + Modifică o etichetă Inbox tag @@ -1032,7 +1032,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 - Creeaza un nou tip de document + Crează un nou tip de document Edit document type @@ -1040,7 +1040,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Modifica un tip de document + Modifică un tip de document Search results @@ -1048,7 +1048,7 @@ src/app/components/search/search.component.html 1 - Rezultatele cautarii + Rezultatele căutarii Invalid search query: @@ -1056,37 +1056,37 @@ src/app/components/search/search.component.html 4 - Interogare invalida: + Interogare invalidă: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Documente similare cu + Documente similare cu Search query: src/app/components/search/search.component.html - 11 + 9 - Interogare: + Interogare: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Ati vrut sa scrieti ""? + Ați vrut să scrieți ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {Niciun rezultat} =1 {Un rezultat} other { rezultate}} @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1105,7 +1105,7 @@ src/app/components/app-frame/app-frame.component.html 15 - Cauta documente + Caută documente Logout @@ -1121,7 +1121,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Administreaza + Administrează Admin @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Informatii + Informații Documentation @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentatie + Documentație GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Autentificat ca + Autentificat ca Open documents @@ -1185,13 +1185,13 @@ src/app/components/app-frame/app-frame.component.html 106 - Inchide tot + Închide tot Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Titlu @@ -1199,65 +1199,81 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 - Titlu si continut + Titlu si conținut + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + Aviz prealabil de expediție Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Corespondent: + Corespondent: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 - Fara corespondent + Fără corespondent Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Tip: + Tip: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 - Fara tip + Fară tip Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Eticheta: + Eticheta: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 - Fara etichete + Fară etichete Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Titlu: + Titlu: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + Aviz prealabil de expediție: Filter tags @@ -1265,7 +1281,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 20 - Filtreaza etichete + Filtrează etichete Filter correspondents @@ -1273,7 +1289,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 28 - Filtreaza corespondenti + Filtrează corespondenți Filter document types @@ -1281,7 +1297,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 35 - Filtreaza tipuri de documente + Filtrează tipuri de documente Reset filters @@ -1289,7 +1305,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 58 - Resetati filtrele + Resetare filtre Not assigned @@ -1298,7 +1314,7 @@ 166 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Neasignate + Nealocate Apply @@ -1306,7 +1322,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Aplica + Aplică Last 7 days @@ -1322,7 +1338,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 35 - Ultima luna + Ultima lună Last 3 months @@ -1346,7 +1362,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - Dupa + După Before @@ -1354,7 +1370,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 38 - Inainte + Înainte Clear @@ -1362,7 +1378,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 18 - Goleste + Curăță View @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Creat: + Creat: Filter by correspondent @@ -1386,7 +1402,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 20 - Filtreaza dupa corespondent + Filtrează dupa corespondent Filter by tag @@ -1394,7 +1410,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 24 - Filtreaza dupa eticheta + Filtrează dupa etichetă Score: @@ -1410,7 +1426,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 40 - Vizualizeaza in browser + Vizualizează în browser Error executing bulk operation: @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Eroare la executarea operatiunii in bloc: + Eroare la executarea operațiunii în bloc: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" si "" + "" și "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - si "" + și "" Confirm tags assignment @@ -1461,7 +1477,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 - Confirmati atribuirea etichetelor + Confirmați atribuirea etichetelor This operation will add the tag "" to selected document(s). @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - Va fi adaugata eticheta "" la document(e) selectat(e). + Va fi adăugată eticheta "" la document(e) selectat(e). This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - Vor fi adaugate etichetele la document(e) selectat(e). + Vor fi adăugate etichetele la document(e) selectat(e). This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - Va fi eliminata eticheta "" din document(e) selectat(e). + Va fi eliminată eticheta "" din document(e) selectat(e). This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - Vor fi eliminate etichetele din document(e) selectat(e). + Vor fi eliminate etichetele din document(e) selectat(e). This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - Vor fi adaugate etichetele si vor fi eliminate etichetele pentru document(e) selectat(e). + Vor fi adăugate etichetele și vor fi eliminate etichetele pentru document(e) selectat(e). Confirm correspondent assignment @@ -1509,7 +1525,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 - Confirmati atribuirea corespondentului + Confirmați atribuirea corespondentului This operation will assign the correspondent "" to selected document(s). @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - Va fi adaugat corespondentul "" la document(e) selectat(e). + Va fi adăugat corespondentul "" la document(e) selectat(e). This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - Va fi eliminat corespondentul din document(e) selectat(e). + Va fi eliminat corespondentul din document(e) selectat(e). Confirm document type assignment @@ -1533,7 +1549,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 - Confirmati atribuirea tipului de document + Confirmați atribuirea tipului de document This operation will assign the document type "" to selected document(s). @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - Va fi atribuit tipul "" pentru document(e) selectat(e). + Va fi atribuit tipul "" pentru document(e) selectat(e). This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - Va fi eliminat tipul pentru document(e) selectat(e). + Va fi eliminat tipul pentru document(e) selectat(e). Delete confirm @@ -1557,7 +1573,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 - Confirmati stergerea + Confirmați stergerea This operation will permanently delete selected document(s). @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - document(e) selectat(e) vor fi sterse permanent. + document(e) selectat(e) vor fi șterse permanent. This operation cannot be undone. @@ -1573,7 +1589,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 - Aceasta operatiune este ireversibila. + Această operațiune este ireversibilă. Delete document(s) @@ -1581,7 +1597,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 - Sterge document(e) + Șterge document(e) Select: @@ -1589,7 +1605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Selecteaza: + Selectează: All @@ -1605,7 +1621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Editeaza: + Editează: Download originals @@ -1613,7 +1629,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 - Descarca originalele + Descarcă originalele Suggestions: @@ -1629,7 +1645,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Salveaza vizualizarea curenta + Salvează vizualizarea curenta Show all @@ -1637,7 +1653,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 - Arata tot + Arată tot Statistics @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total documente: + Total documente: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documente in inbox: + Documente in inbox: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - In procesare: + În procesare: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Esuate: + Eșuate: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Adaugate: + Adăugate: Connecting... @@ -1701,7 +1717,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 - Incarcare... + Încarcare... Upload complete, waiting... @@ -1709,7 +1725,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 - Incarcare completa, in asteptare... + Încarcare completa, în așteptare... HTTP error: @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - Eroare HTTP: + Eroare HTTP: Upload new documents @@ -1725,7 +1741,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Incarca documente noi + Încarcă documente noi Drop documents here or @@ -1733,7 +1749,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Trageti documentele aici sau + Trage documentele aici sau Browse files @@ -1741,7 +1757,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Rasfoiti fisiere + Caută fișiere Dismiss completed @@ -1750,7 +1766,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Inlatura operatiunile finalizate + Înlătură operațiunile finalizate {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -1759,7 +1775,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {Inca un document} other {Inca documente}} + {VAR_PLURAL, plural, =1 {Încă un document} other {Încă documente}} Open document @@ -1775,7 +1791,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 - Primii pasi + Primii pași Paperless is running! :) @@ -1783,7 +1799,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - Paperless ruleaza! :) + Paperless rulează! :) 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. @@ -1791,7 +1807,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 - Puteti incepe sa incarcati fisiere tragandu-le in casuta din dreapta sau in directorul configurat de consum, si vor incepe sa apara in lista de documente. Dupa ce ati adaugat metadate documentelor, folositi mecanismele de filtrare pentru a crea vizualizari personalizate (cum ar fi "Adaugate recent", "Etichetate URGENT"), ce vor aparea in locul acestui mesaj. + Puteți începe să încărcați fișiere trăgându-le în căsuța din dreapta sau în directorul configurat de consum, și vor începe să apară în lista de documente. După ce ați adăugat metadate documentelor, folosiți mecanismele de filtrare pentru a crea vizualizări personalizate (cum ar fi "Adăugate recent", "Etichetate URGENT"), ce vor apărea în locul acestui mesaj. Paperless offers some more features that try to make your life easier: @@ -1799,7 +1815,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Paperless mai ofera urmatoarele functii pentru a va face viata mai usoara: + Paperless mai oferă următoarele funcții pentru a vă face viata mai ușoară: Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. @@ -1807,7 +1823,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 - Dupa ce aveti cateva documente si le adaugati metadate, Paperless poate atribui acele metadate in mod automat pentru documente noi. + După ce aveți câteva documente și le adăugați metadate, Paperless poate atribui acele metadate în mod automat pentru documente noi. You can configure paperless to read your mails and add documents from attached files. @@ -1815,7 +1831,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 - Puteti configura Paperless sa va citeasca email-urile si sa adauge documentele atasate. + Puteți configura Paperless să vă citească email-urile și să adauge documentele atașate. 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. @@ -1823,7 +1839,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 - Consultati documentatia pentru a afla cum sa folositi aceste functii. Sectiunea de baza contine informatii despre cum sa folositi Paperless in general. + Consultați documentația pentru a afla cum să folosiți aceste funcții. Secțiunea de baza conține informații despre cum să folosiți Paperless în general. Metadata @@ -1839,7 +1855,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 18 - Selecteaza + Selectează Please select an object @@ -1847,7 +1863,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 21 - Selectati un obiect + Selectați un obiect Invalid date. @@ -1855,7 +1871,7 @@ src/app/components/common/input/date/date.component.html 14 - Data invalida. + Data invalidă. Yes @@ -1879,7 +1895,7 @@ src/app/pipes/document-title.pipe.ts 12 - (fara titlu) + (fără titlu) English (US) @@ -1887,7 +1903,7 @@ src/app/services/settings.service.ts 90 - Engleza (SUA) + Engleză (Americană) English (GB) @@ -1895,7 +1911,7 @@ src/app/services/settings.service.ts 91 - Engleza (UK) + Engleză (Britanică) German @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - Germana + Germană Dutch @@ -1911,7 +1927,7 @@ src/app/services/settings.service.ts 93 - Olandeza + Olandeză French @@ -1919,7 +1935,7 @@ src/app/services/settings.service.ts 94 - Franceza + Franceză Portuguese (Brazil) @@ -1927,7 +1943,7 @@ src/app/services/settings.service.ts 95 - Portugheza (Brazilia) + Portugheză (Brazilia) Italian @@ -1935,7 +1951,7 @@ src/app/services/settings.service.ts 96 - Italiana + Italiană Romanian @@ -1943,15 +1959,23 @@ src/app/services/settings.service.ts 97 - Romana + Română + + + Russian + + src/app/services/settings.service.ts + 98 + + Rusă ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -1959,7 +1983,7 @@ src/app/services/consumer-status.service.ts 15 - Documentul exista deja. + Documentul există deja. File not found. @@ -1967,7 +1991,7 @@ src/app/services/consumer-status.service.ts 16 - Fisierul nu a fost gasit. + Fișierul nu a fost găsit. Pre-consume script does not exist. @@ -1976,7 +2000,7 @@ 17 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Scriptul pre-consum nu exista. + Scriptul pre-consum nu există. Error while executing pre-consume script. @@ -1985,7 +2009,7 @@ 18 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Eroare la executia scriptului pre-consum. + Eroare la execuția scriptului pre-consum. Post-consume script does not exist. @@ -1994,7 +2018,7 @@ 19 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Scriptul post-consum nu exista. + Scriptul post-consum nu există. Error while executing post-consume script. @@ -2003,7 +2027,7 @@ 20 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Eroare la executia scriptului post-consum. + Eroare la execuția scriptului post-consum. Received new file. @@ -2011,7 +2035,7 @@ src/app/services/consumer-status.service.ts 21 - Fisier nou primit. + Fișier nou primit. File type not supported. @@ -2019,7 +2043,7 @@ src/app/services/consumer-status.service.ts 22 - Tip de fisier nesuportat. + Tip de fișier nesuportat. Processing document... @@ -2027,7 +2051,7 @@ src/app/services/consumer-status.service.ts 23 - Se proceseaza documentul... + Se procesează documentul... Generating thumbnail... @@ -2035,7 +2059,7 @@ src/app/services/consumer-status.service.ts 24 - Se genereaza miniatura... + Se generează miniatura... Retrieving date from document... @@ -2051,7 +2075,7 @@ src/app/services/consumer-status.service.ts 26 - Se salveaza documentul... + Se salvează documentul... Finished. @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Informatii - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Informații Correspondent @@ -2115,7 +2131,7 @@ src/app/services/rest/document.service.ts 22 - Adaugat + Adăugat Modified @@ -2131,7 +2147,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 50 - Creeaza articol nou + Crează articol nou Edit item @@ -2139,7 +2155,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 54 - Modifica articol + Modifică articol Could not save element: @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Nu s-a putut salva elementul: + Nu s-a putut salva elementul: Automatic @@ -2163,7 +2179,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 97 - Sunteti sigur ca doriti sa stergeti acest element? + Sunteți sigur că doriți să ștergeți acest element? Associated documents will not be deleted. @@ -2171,7 +2187,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 104 - Documentele asociate nu vor fi sterse. + Documentele asociate nu vor fi șterse. Delete @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Sterge + Șterge Error while deleting element: @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Eroare la stergerea elementului: + Eroare la ștergerea elementului: Any word @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Oricare cuvant + Oricare cuvânt Any: Document contains any of these words (space separated) @@ -2203,7 +2219,7 @@ src/app/data/matching-model.ts 12 - Oricare: Documentul contine oricare dintre aceste cuvinte (separate prin spatiu) + Oricare: Documentul conține oricare dintre aceste cuvinte (separate prin spațiu) All words @@ -2219,7 +2235,7 @@ src/app/data/matching-model.ts 13 - Toate: Documentul contine toate aceste cuvinte (separate prin spatiu) + Toate: Documentul conține toate aceste cuvinte (separate prin spațiu) Exact match @@ -2235,7 +2251,7 @@ src/app/data/matching-model.ts 14 - Exact: Documentul contine acest sir de caractere + Exact: Documentul conține acest șir de caractere Regular expression @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Expresie regulata + Expresie regulată Regular expression: Document matches this regular expression @@ -2251,7 +2267,7 @@ src/app/data/matching-model.ts 15 - Expresie regulata: Documentul se potriveste cu aceasta expresie regulata + Expresie regulată: Documentul se potrivește cu această expresie regulată Fuzzy word @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Cuvant neclar + Cuvânt neclar Fuzzy: Document contains a word similar to this word @@ -2267,7 +2283,7 @@ src/app/data/matching-model.ts 16 - Neclar: Documentul contine un cuvant similar cu acesta + Neclar: Documentul conține un cuvânt similar cu acesta Auto: Learn matching automatically @@ -2275,7 +2291,7 @@ src/app/data/matching-model.ts 17 - Auto: Invata potrivirile automat + Auto: Învață potrivirea automat diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index f018f5f31..0c73d051c 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -8,7 +8,7 @@ src/app/app.component.ts 51 - Document added + Документ добавлен Document was added to paperless. @@ -16,7 +16,7 @@ src/app/app.component.ts 51 - Document was added to paperless. + Документ был добавлен в paperless. Open document @@ -24,7 +24,7 @@ src/app/app.component.ts 51 - Open document + Открыть документ Could not add : @@ -32,7 +32,7 @@ src/app/app.component.ts 59 - Could not add : + Невозможно добавить : New document detected @@ -40,7 +40,7 @@ src/app/app.component.ts 65 - New document detected + Обнаружен новый документ Document is being processed by paperless. @@ -48,7 +48,7 @@ src/app/app.component.ts 65 - Document is being processed by paperless. + Документ обрабатывается paperless Documents @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + Документы View "" saved successfully. @@ -64,7 +64,7 @@ src/app/components/document-list/document-list.component.ts 115 - View "" saved successfully. + Представление "" успешно сохранено. View "" created successfully. @@ -72,7 +72,7 @@ src/app/components/document-list/document-list.component.ts 136 - View "" created successfully. + Представление "" успешно создано. Select @@ -80,7 +80,7 @@ src/app/components/document-list/document-list.component.html 7 - Select + Выбор Select none @@ -88,7 +88,7 @@ src/app/components/document-list/document-list.component.html 10 - Select none + Ничего Select page @@ -96,7 +96,7 @@ src/app/components/document-list/document-list.component.html 11 - Select page + Выбрать страницу Select all @@ -104,7 +104,7 @@ src/app/components/document-list/document-list.component.html 12 - Select all + Выбрать всё Sort @@ -112,7 +112,7 @@ src/app/components/document-list/document-list.component.html 39 - Sort + Сортировка Views @@ -120,7 +120,7 @@ src/app/components/document-list/document-list.component.html 64 - Views + Представления Save as... @@ -128,7 +128,7 @@ src/app/components/document-list/document-list.component.html 72 - Save as... + Сохранить как... Save "" @@ -136,7 +136,7 @@ src/app/components/document-list/document-list.component.html 71 - Save "" + Сохранить "" {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -144,7 +144,7 @@ src/app/components/document-list/document-list.component.html 85 - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, =1 {Выделено документов: из 1} other {Выделено документов: из }} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -152,7 +152,7 @@ src/app/components/document-list/document-list.component.html 86 - {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, =1 {Один документ} other { документа(ов)}} (filtered) @@ -160,7 +160,7 @@ src/app/components/document-list/document-list.component.html 86 - (filtered) + (отфильтровано) ASN @@ -168,7 +168,7 @@ src/app/components/document-list/document-list.component.html 105 - ASN + АН Correspondent @@ -176,7 +176,7 @@ src/app/components/document-list/document-list.component.html 111 - Correspondent + Корреспондент Title @@ -184,7 +184,7 @@ src/app/components/document-list/document-list.component.html 117 - Title + Заголовок Document type @@ -192,7 +192,7 @@ src/app/components/document-list/document-list.component.html 123 - Document type + Тип документа Created @@ -200,7 +200,7 @@ src/app/components/document-list/document-list.component.html 129 - Created + Создано Added @@ -208,7 +208,7 @@ src/app/components/document-list/document-list.component.html 135 - Added + Добавлено Confirm delete @@ -216,7 +216,7 @@ src/app/components/document-detail/document-detail.component.ts 203 - Confirm delete + Подтвердите удаление Do you really want to delete document ""? @@ -224,7 +224,7 @@ src/app/components/document-detail/document-detail.component.ts 204 - Do you really want to delete document ""? + Вы действительно хотите удалить документ ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -232,7 +232,7 @@ src/app/components/document-detail/document-detail.component.ts 205 - The files for this document will be deleted permanently. This operation cannot be undone. + Файлы из этого документа будут удалены незамедлительно. Это операцию нельзя отменить. Delete document @@ -240,7 +240,7 @@ src/app/components/document-detail/document-detail.component.ts 207 - Delete document + Удалить документ Error deleting document: @@ -248,7 +248,7 @@ src/app/components/document-detail/document-detail.component.ts 214 - Error deleting document: + Ошибка удаления документа: Delete @@ -256,7 +256,7 @@ src/app/components/document-detail/document-detail.component.html 15 - Delete + Удалить Download @@ -264,7 +264,7 @@ src/app/components/document-detail/document-detail.component.html 23 - Download + Скачать More like this @@ -272,7 +272,7 @@ src/app/components/document-detail/document-detail.component.html 38 - More like this + Больше похожих Close @@ -280,7 +280,7 @@ src/app/components/document-detail/document-detail.component.html 44 - Close + Закрыть Details @@ -288,7 +288,7 @@ src/app/components/document-detail/document-detail.component.html 56 - Details + Детали Content @@ -296,7 +296,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Content + Содержимое Metadata @@ -304,7 +304,7 @@ src/app/components/document-detail/document-detail.component.html 81 - Metadata + Метаданные Discard @@ -312,7 +312,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Discard + Отменить Save @@ -320,7 +320,7 @@ src/app/components/document-detail/document-detail.component.html 132 - Save + Сохранить Page @@ -328,7 +328,7 @@ src/app/components/document-detail/document-detail.component.html 4 - Page + Страница of @@ -336,7 +336,7 @@ src/app/components/document-detail/document-detail.component.html 8 - of + из Download original @@ -344,7 +344,7 @@ src/app/components/document-detail/document-detail.component.html 29 - Download original + Скачать оригинал Archive serial number @@ -352,7 +352,7 @@ src/app/components/document-detail/document-detail.component.html 60 - Archive serial number + Архивный номер (АН) Date created @@ -360,7 +360,7 @@ src/app/components/document-detail/document-detail.component.html 61 - Date created + Дата создания Date modified @@ -368,7 +368,7 @@ src/app/components/document-detail/document-detail.component.html 87 - Date modified + Дата изменения Date added @@ -376,7 +376,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Date added + Дата добавления Media filename @@ -384,7 +384,7 @@ src/app/components/document-detail/document-detail.component.html 95 - Media filename + Имя файла Original MD5 checksum @@ -392,7 +392,7 @@ src/app/components/document-detail/document-detail.component.html 99 - Original MD5 checksum + Оригинальная MD5 сумма Original file size @@ -400,7 +400,7 @@ src/app/components/document-detail/document-detail.component.html 103 - Original file size + Размер оригинального файла Original mime type @@ -408,7 +408,7 @@ src/app/components/document-detail/document-detail.component.html 107 - Original mime type + Оригинальный MIME тип Archive MD5 checksum @@ -416,7 +416,7 @@ src/app/components/document-detail/document-detail.component.html 111 - Archive MD5 checksum + MD5 сумма архива Archive file size @@ -424,7 +424,7 @@ src/app/components/document-detail/document-detail.component.html 115 - Archive file size + Размер архива Original document metadata @@ -432,7 +432,7 @@ src/app/components/document-detail/document-detail.component.html 121 - Original document metadata + Метаданные оригинального документа Archived document metadata @@ -440,7 +440,7 @@ src/app/components/document-detail/document-detail.component.html 122 - Archived document metadata + Метаданные архивного документа Save & next @@ -448,7 +448,7 @@ src/app/components/document-detail/document-detail.component.html 131 - Save & next + Сохранить & следующий Hello , welcome to Paperless-ng! @@ -456,7 +456,7 @@ src/app/components/dashboard/dashboard.component.ts 33 - Hello , welcome to Paperless-ng! + Привет, , добро пожаловать в Paperless-ng! Welcome to Paperless-ng! @@ -464,7 +464,7 @@ src/app/components/dashboard/dashboard.component.ts 35 - Welcome to Paperless-ng! + Добро пожаловать в Paperless-ng, Dashboard @@ -472,7 +472,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Панель Do you really want to delete the tag ""? @@ -480,7 +480,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 26 - Do you really want to delete the tag ""? + Вы действительно хотите удалить тег ""? Tags @@ -488,7 +488,7 @@ src/app/components/manage/tag-list/tag-list.component.html 1 - Tags + Теги Create @@ -496,7 +496,7 @@ src/app/components/manage/tag-list/tag-list.component.html 2 - Create + Создать Filter by: @@ -504,7 +504,7 @@ src/app/components/manage/tag-list/tag-list.component.html 8 - Filter by: + Отфильтровать по: Name @@ -512,7 +512,7 @@ src/app/components/manage/tag-list/tag-list.component.html 9 - Name + Имя Color @@ -520,7 +520,7 @@ src/app/components/manage/tag-list/tag-list.component.html 20 - Color + Цвет Matching @@ -528,7 +528,7 @@ src/app/components/manage/tag-list/tag-list.component.html 21 - Matching + Совпадения Document count @@ -536,7 +536,7 @@ src/app/components/manage/tag-list/tag-list.component.html 22 - Document count + Количество документов Actions @@ -544,7 +544,7 @@ src/app/components/manage/tag-list/tag-list.component.html 23 - Actions + Действия Documents @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + Документы Edit @@ -560,7 +560,7 @@ src/app/components/manage/tag-list/tag-list.component.html 43 - Edit + Редактировать Do you really want to delete the document type ""? @@ -568,7 +568,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 26 - Do you really want to delete the document type ""? + Вы действительно хотите удалить этот тип документа: ""? Document types @@ -576,7 +576,7 @@ src/app/components/manage/document-type-list/document-type-list.component.html 1 - Document types + Типы документов Logs @@ -584,7 +584,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Логи Saved view "" deleted. @@ -592,7 +592,7 @@ src/app/components/manage/settings/settings.component.ts 68 - Saved view "" deleted. + Сохраненное представление "" удалено. Settings saved successfully. @@ -600,7 +600,7 @@ src/app/components/manage/settings/settings.component.ts 89 - Settings saved successfully. + Настройки успешно сохранены. Use system language @@ -608,7 +608,7 @@ src/app/components/manage/settings/settings.component.ts 94 - Use system language + Использовать язык системы Use date format of display language @@ -616,7 +616,7 @@ src/app/components/manage/settings/settings.component.ts 100 - Use date format of display language + Использовать формат даты, соответсвующий языку Error while storing settings on server: @@ -624,7 +624,7 @@ src/app/components/manage/settings/settings.component.ts 117 - Error while storing settings on server: + Ошибка при хранении настроек на сервере: Settings @@ -632,7 +632,7 @@ src/app/components/manage/settings/settings.component.html 1 - Settings + Настройки General settings @@ -640,7 +640,7 @@ src/app/components/manage/settings/settings.component.html 10 - General settings + Основные настройки Notifications @@ -648,7 +648,7 @@ src/app/components/manage/settings/settings.component.html 116 - Notifications + Уведомления Saved views @@ -656,7 +656,7 @@ src/app/components/manage/settings/settings.component.html 134 - Saved views + Сохраненные представления Appearance @@ -664,7 +664,7 @@ src/app/components/manage/settings/settings.component.html 13 - Appearance + Вид Display language @@ -672,7 +672,7 @@ src/app/components/manage/settings/settings.component.html 17 - Display language + Язык интерфейса You need to reload the page after applying a new language. @@ -680,7 +680,7 @@ src/app/components/manage/settings/settings.component.html 25 - You need to reload the page after applying a new language. + Вы должны перезагрузить страница, после применения нового языка. Date display @@ -688,7 +688,7 @@ src/app/components/manage/settings/settings.component.html 32 - Date display + Дата Date format @@ -696,7 +696,7 @@ src/app/components/manage/settings/settings.component.html 45 - Date format + Формат даты Short: @@ -704,7 +704,7 @@ src/app/components/manage/settings/settings.component.html 51 - Short: + Краткий: Medium: @@ -712,7 +712,7 @@ src/app/components/manage/settings/settings.component.html 55 - Medium: + Средний: Long: @@ -720,7 +720,7 @@ src/app/components/manage/settings/settings.component.html 59 - Long: + Длинный: Items per page @@ -728,7 +728,7 @@ src/app/components/manage/settings/settings.component.html 67 - Items per page + Элементов на странице Document editor @@ -736,7 +736,7 @@ src/app/components/manage/settings/settings.component.html 83 - Document editor + Редактор документов Use PDF viewer provided by the browser @@ -744,7 +744,7 @@ src/app/components/manage/settings/settings.component.html 87 - Use PDF viewer provided by the browser + Использовать просмоторщик PDF встроенный в браузер This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -752,7 +752,7 @@ src/app/components/manage/settings/settings.component.html 87 - This is usually faster for displaying large PDF documents, but it might not work on some browsers. + Это, обычно, более быстрый способо отображения больших PDF документов, но он может не работать в некоторых браузерах. Dark mode @@ -760,7 +760,7 @@ src/app/components/manage/settings/settings.component.html 94 - Dark mode + Тёмный режим Use system settings @@ -768,7 +768,7 @@ src/app/components/manage/settings/settings.component.html 97 - Use system settings + Использовать системные настройки Enable dark mode @@ -776,7 +776,7 @@ src/app/components/manage/settings/settings.component.html 98 - Enable dark mode + Включить тёмный режим Invert thumbnails in dark mode @@ -784,7 +784,7 @@ src/app/components/manage/settings/settings.component.html 99 - Invert thumbnails in dark mode + Инвертировать эскизы при включенном тёмном режиме Bulk editing @@ -792,7 +792,7 @@ src/app/components/manage/settings/settings.component.html 103 - Bulk editing + Массовое редактирование Show confirmation dialogs @@ -800,7 +800,7 @@ src/app/components/manage/settings/settings.component.html 107 - Show confirmation dialogs + Показывать диалоги подтверждения Deleting documents will always ask for confirmation. @@ -808,7 +808,7 @@ src/app/components/manage/settings/settings.component.html 107 - Deleting documents will always ask for confirmation. + Удаление документов всегда будет требовать подтверждения. Apply on close @@ -816,7 +816,7 @@ src/app/components/manage/settings/settings.component.html 108 - Apply on close + Применить при закрытии Document processing @@ -824,7 +824,7 @@ src/app/components/manage/settings/settings.component.html 119 - Document processing + Документ обрабатывается Show notifications when new documents are detected @@ -832,7 +832,7 @@ src/app/components/manage/settings/settings.component.html 123 - Show notifications when new documents are detected + Показывать уведомления, когда новый документ удалён Show notifications when document processing completes successfully @@ -840,7 +840,7 @@ src/app/components/manage/settings/settings.component.html 124 - Show notifications when document processing completes successfully + Показывать уведомления, когда обработка документа успешна Show notifications when document processing fails @@ -848,7 +848,7 @@ src/app/components/manage/settings/settings.component.html 125 - Show notifications when document processing fails + Показывать уведомления, когда обработка документа не удалась Suppress notifications on dashboard @@ -856,7 +856,7 @@ src/app/components/manage/settings/settings.component.html 126 - Suppress notifications on dashboard + Спрятать уведомления на панели This will suppress all messages about document processing status on the dashboard. @@ -864,7 +864,7 @@ src/app/components/manage/settings/settings.component.html 126 - This will suppress all messages about document processing status on the dashboard. + Это отключит все сообщения о статусе обработки документов на панели. Appears on @@ -872,7 +872,7 @@ src/app/components/manage/settings/settings.component.html 146 - Appears on + Появляется на Show on dashboard @@ -880,7 +880,7 @@ src/app/components/manage/settings/settings.component.html 149 - Show on dashboard + Показать на панели Show in sidebar @@ -888,7 +888,7 @@ src/app/components/manage/settings/settings.component.html 153 - Show in sidebar + Показать в боковой панели No saved views defined. @@ -896,7 +896,7 @@ src/app/components/manage/settings/settings.component.html 163 - No saved views defined. + Нет сохраненных представлений. 404 Not Found @@ -904,7 +904,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Not Found + 404 Не найдено Do you really want to delete the correspondent ""? @@ -912,7 +912,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 26 - Do you really want to delete the correspondent ""? + Вы действительно хотите удалить этого корреспондента ""? Correspondents @@ -920,7 +920,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 1 - Correspondents + Корреспонденты Last correspondence @@ -928,7 +928,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.html 22 - Last correspondence + Недавние корреспонденты Confirmation @@ -936,7 +936,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 17 - Confirmation + Подтверждение Confirm @@ -944,7 +944,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 29 - Confirm + Подтвердить Cancel @@ -952,7 +952,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Cancel + Отменить Create new correspondent @@ -960,7 +960,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 21 - Create new correspondent + Создать нового корреспондента Edit correspondent @@ -968,7 +968,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 - Edit correspondent + Редактировать корреспондента Matching algorithm @@ -976,7 +976,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 10 - Matching algorithm + Алгоритм сопоставления Matching pattern @@ -984,7 +984,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 11 - Matching pattern + Шаблон соответствия Case insensitive @@ -992,7 +992,7 @@ src/app/components/manage/correspondent-list/correspondent-edit-dialog/correspondent-edit-dialog.component.html 12 - Case insensitive + Без учёта регистра Create new tag @@ -1000,7 +1000,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 22 - Create new tag + Создать новый тег Edit tag @@ -1008,7 +1008,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Edit tag + Редактировать тег Inbox tag @@ -1016,7 +1016,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tag + Входящий теги Inbox tags are automatically assigned to all consumed documents. @@ -1024,7 +1024,7 @@ src/app/components/manage/tag-list/tag-edit-dialog/tag-edit-dialog.component.html 13 - Inbox tags are automatically assigned to all consumed documents. + Входящий тег будет автоматически назначен всем добавленным документам. Create new document type @@ -1032,7 +1032,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 21 - Create new document type + Создать новый тип документа Edit document type @@ -1040,7 +1040,7 @@ src/app/components/manage/document-type-list/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Edit document type + Редактировать тип документа Search results @@ -1048,7 +1048,7 @@ src/app/components/search/search.component.html 1 - Search results + Результаты поиска Invalid search query: @@ -1056,39 +1056,39 @@ src/app/components/search/search.component.html 4 - Invalid search query: + Неверный поисковой запрос: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Показываю документы похожие на Search query: src/app/components/search/search.component.html - 11 + 9 - Search query: + Поисковый запрос: Did you mean ""? src/app/components/search/search.component.html - 13 + 11 - Did you mean ""? + Может вы имели ввиду ""? {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} + {VAR_PLURAL, plural, =0 {Нет результатов} =1 {Один результат} other {Результаты: }} Paperless-ng @@ -1097,7 +1097,7 @@ 11 app title - Paperless-ng + Paperless-ng Search documents @@ -1105,7 +1105,7 @@ src/app/components/app-frame/app-frame.component.html 15 - Search documents + Поиск документов Logout @@ -1113,7 +1113,7 @@ src/app/components/app-frame/app-frame.component.html 45 - Logout + Выход Manage @@ -1121,7 +1121,7 @@ src/app/components/app-frame/app-frame.component.html 112 - Manage + Управлять Admin @@ -1129,7 +1129,7 @@ src/app/components/app-frame/app-frame.component.html 154 - Admin + Админ Info @@ -1137,7 +1137,7 @@ src/app/components/app-frame/app-frame.component.html 160 - Info + Информация Documentation @@ -1145,7 +1145,7 @@ src/app/components/app-frame/app-frame.component.html 167 - Documentation + Документация GitHub @@ -1153,7 +1153,7 @@ src/app/components/app-frame/app-frame.component.html 175 - GitHub + GitHub Suggest an idea @@ -1161,7 +1161,7 @@ src/app/components/app-frame/app-frame.component.html 181 - Suggest an idea + Предложить идею Logged in as @@ -1169,7 +1169,7 @@ src/app/components/app-frame/app-frame.component.html 34 - Logged in as + Вошёл как Open documents @@ -1177,7 +1177,7 @@ src/app/components/app-frame/app-frame.component.html 87 - Open documents + Открыть документы Close all @@ -1185,79 +1185,95 @@ src/app/components/app-frame/app-frame.component.html 106 - Close all + Закрыть всё Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 - Title + Заголовок Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 - Title & content + Заголовок и содержимое + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + АН Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 - Correspondent: + Корреспондент: Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 - Without correspondent + Без корреспондента Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 - Type: + Тип: Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 - Without document type + Без типа документа Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 - Tag: + Тег: Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 - Without any tag + Без тегов Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 - Title: + Заголовок: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: Filter tags @@ -1265,7 +1281,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 20 - Filter tags + Фильтр тегов Filter correspondents @@ -1273,7 +1289,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 28 - Filter correspondents + Фильтр корреспондентов Filter document types @@ -1281,7 +1297,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 35 - Filter document types + Фильтр типа документов Reset filters @@ -1289,7 +1305,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 58 - Reset filters + Сбросить фильтры Not assigned @@ -1298,7 +1314,7 @@ 166 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + Не назначено Apply @@ -1306,7 +1322,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Apply + Подтвердить Last 7 days @@ -1314,7 +1330,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 34 - Last 7 days + 7 дней Last month @@ -1322,7 +1338,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 35 - Last month + Месяц Last 3 months @@ -1330,7 +1346,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 36 - Last 3 months + Три месяца Last year @@ -1338,7 +1354,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 37 - Last year + Год After @@ -1346,7 +1362,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 13 - After + После Before @@ -1354,7 +1370,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 38 - Before + До Clear @@ -1362,7 +1378,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 18 - Clear + Очистить View @@ -1370,7 +1386,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 50 - View + Представление Created: @@ -1378,7 +1394,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 67 - Created: + Создано: Filter by correspondent @@ -1386,7 +1402,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 20 - Filter by correspondent + Отфильтровать по корреспонденту Filter by tag @@ -1394,7 +1410,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 24 - Filter by tag + Отфильтровать по тегу Score: @@ -1402,7 +1418,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 62 - Score: + Оценка: View in browser @@ -1410,7 +1426,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 40 - View in browser + Просмотреть в браузере Error executing bulk operation: @@ -1418,7 +1434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 74 - Error executing bulk operation: + Ошибка выполнения массовой операции: "" @@ -1426,7 +1442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 113 - "" + "" "" and "" @@ -1435,7 +1451,7 @@ 115 This is for messages like 'modify "tag1" and "tag2"' - "" and "" + "" и "" , @@ -1444,7 +1460,7 @@ 117 this is used to separate enumerations and should probably be a comma and a whitespace in most languages - , + , and "" @@ -1453,7 +1469,7 @@ 118 this is for messages like 'modify "tag1", "tag2" and "tag3"' - and "" + и "" Confirm tags assignment @@ -1461,7 +1477,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 127 - Confirm tags assignment + Подтвердить применяемый тег This operation will add the tag "" to selected document(s). @@ -1469,7 +1485,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 130 - This operation will add the tag "" to selected document(s). + Эта операция добавит тег "" выбранным документам . This operation will add the tags to selected document(s). @@ -1477,7 +1493,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 132 - This operation will add the tags to selected document(s). + Эта операция добавит теги выбранным документам. This operation will remove the tag "" from selected document(s). @@ -1485,7 +1501,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 135 - This operation will remove the tag "" from selected document(s). + Эта операция удалит теги "" с выбранных документов. This operation will remove the tags from selected document(s). @@ -1493,7 +1509,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 137 - This operation will remove the tags from selected document(s). + Эта операция удалит теги с выбранных документов. This operation will add the tags and remove the tags on selected document(s). @@ -1501,7 +1517,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 139 - This operation will add the tags and remove the tags on selected document(s). + Эта операция добавит теги и удалит теги на выбранных документах. Confirm correspondent assignment @@ -1509,7 +1525,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 159 - Confirm correspondent assignment + Подтвердите назначения корреспондента This operation will assign the correspondent "" to selected document(s). @@ -1517,7 +1533,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 161 - This operation will assign the correspondent "" to selected document(s). + Эта операция назначит корреспондента "" выбранным документам. This operation will remove the correspondent from selected document(s). @@ -1525,7 +1541,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 163 - This operation will remove the correspondent from selected document(s). + Эта операция удалит корреспондента из выбранных документов. Confirm document type assignment @@ -1533,7 +1549,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 182 - Confirm document type assignment + Подтвердите назначение типа документа This operation will assign the document type "" to selected document(s). @@ -1541,7 +1557,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 184 - This operation will assign the document type "" to selected document(s). + Эта операция присвоит тип "" выбранным документам. This operation will remove the document type from selected document(s). @@ -1549,7 +1565,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 186 - This operation will remove the document type from selected document(s). + Эта операция удалит тип из выбранных документов Delete confirm @@ -1557,7 +1573,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 201 - Delete confirm + Подтвердите удаление This operation will permanently delete selected document(s). @@ -1565,7 +1581,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 202 - This operation will permanently delete selected document(s). + Эта операция навсегда удалит выбранных документов. This operation cannot be undone. @@ -1573,7 +1589,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 203 - This operation cannot be undone. + Эту операцию нельзя отменить. Delete document(s) @@ -1581,7 +1597,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 205 - Delete document(s) + Удалить документ(ы) Select: @@ -1589,7 +1605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Выбрано: All @@ -1597,7 +1613,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + Все Edit: @@ -1605,7 +1621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Редактировать: Download originals @@ -1613,7 +1629,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 68 - Download originals + Скачать оригиналы Suggestions: @@ -1621,7 +1637,7 @@ src/app/components/common/input/select/select.component.html 26 - Suggestions: + Рекомендации: Save current view @@ -1629,7 +1645,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Сохранить текущее представление Show all @@ -1637,7 +1653,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 3 - Show all + Показать всё Statistics @@ -1645,7 +1661,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Статистика Total documents: @@ -1653,7 +1669,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Total documents: + Всего документов: Documents in inbox: @@ -1661,7 +1677,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 3 - Documents in inbox: + Документов во входящих: Processing: @@ -1669,7 +1685,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 32 - Processing: + Обрабатываются: Failed: @@ -1677,7 +1693,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 35 - Failed: + Ошибка: Added: @@ -1685,7 +1701,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 38 - Added: + Добавлено: Connecting... @@ -1693,7 +1709,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 118 - Connecting... + Подключение... Uploading... @@ -1701,7 +1717,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 123 - Uploading... + Загрузка... Upload complete, waiting... @@ -1709,7 +1725,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 126 - Upload complete, waiting... + Загрузка завершена, ждите... HTTP error: @@ -1717,7 +1733,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 136 - HTTP error: + Ошибка HTTP: Upload new documents @@ -1725,7 +1741,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Загрузить новые документы Drop documents here or @@ -1733,7 +1749,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Drop documents here or + Перетащите документы сюда или Browse files @@ -1741,7 +1757,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Загрузить файлы Dismiss completed @@ -1750,7 +1766,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + Скрытие завершено {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -1759,7 +1775,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, =1 {Ещё документ: 1} other {Ещё документов: }} Open document @@ -1767,7 +1783,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 45 - Open document + Открыть документ First steps @@ -1775,7 +1791,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 1 - First steps + Первые шаги Paperless is running! :) @@ -1783,7 +1799,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - Paperless is running! :) + Paperless запущен! ;) 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. @@ -1791,7 +1807,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 6,7 - You can start uploading documents by dropping them in the file upload box to the right or by dropping them in the configured consumption folder and they'll start showing up in the documents list. After you've added some metadata to your documents, use the filtering mechanisms of paperless to create custom views (such as 'Recently added', 'Tagged TODO') and they will appear on the dashboard instead of this message. + Вы можете загрузить документы, перетащив их на панель загрузки файлов справа, либо положив их в каталог, указанный в настройках. После обработки документы появятся в списке документов. После того, как вы добавите метаданные в свои документы, используйте безбумажные механизмы фильтрации для создания пользовательских представлений (таких как «Недавно добавленные», «Tagged TODO»), и они появятся на панели управления вместо этого сообщения. Paperless offers some more features that try to make your life easier: @@ -1799,7 +1815,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Paperless offers some more features that try to make your life easier: + Paperless предлагает больше возможностей, чтобы сделать вашу жизнь легче: Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. @@ -1807,7 +1823,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 10 - Once you've got a couple documents in paperless and added metadata to them, paperless can assign that metadata to new documents automatically. + После того, как вы добавите несколько документов в paperless и добавите к ним метаданные, paperless сможет автоматически назначать эти метаданные новым документам. You can configure paperless to read your mails and add documents from attached files. @@ -1815,7 +1831,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 11 - You can configure paperless to read your mails and add documents from attached files. + Вы можете настроить paperless на чтение ваших писем и добавление документов из прикрепленных файлов. 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. @@ -1823,7 +1839,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 13 - Consult the documentation on how to use these features. The section on basic usage also has some information on how to use paperless in general. + Обратитесь к документации по использованию этих функций. Раздел "Использование" содержит общую информацию о работе с paperless. Metadata @@ -1831,7 +1847,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 18 - Metadata + Метаданные Select @@ -1839,7 +1855,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 18 - Select + Выбрать Please select an object @@ -1847,7 +1863,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 21 - Please select an object + Пожалуйста, выберите объект Invalid date. @@ -1855,7 +1871,7 @@ src/app/components/common/input/date/date.component.html 14 - Invalid date. + Неверная дата. Yes @@ -1863,7 +1879,7 @@ src/app/pipes/yes-no.pipe.ts 9 - Yes + Да No @@ -1871,7 +1887,7 @@ src/app/pipes/yes-no.pipe.ts 9 - No + Нет (no title) @@ -1879,7 +1895,7 @@ src/app/pipes/document-title.pipe.ts 12 - (no title) + (без заголовка) English (US) @@ -1887,7 +1903,7 @@ src/app/services/settings.service.ts 90 - English (US) + English (US) English (GB) @@ -1895,7 +1911,7 @@ src/app/services/settings.service.ts 91 - English (GB) + English (GB) German @@ -1903,7 +1919,7 @@ src/app/services/settings.service.ts 92 - German + German Dutch @@ -1911,7 +1927,7 @@ src/app/services/settings.service.ts 93 - Dutch + Голландский French @@ -1919,7 +1935,7 @@ src/app/services/settings.service.ts 94 - French + French Portuguese (Brazil) @@ -1927,7 +1943,7 @@ src/app/services/settings.service.ts 95 - Portuguese (Brazil) + Portuguese (Brazil) Italian @@ -1935,7 +1951,7 @@ src/app/services/settings.service.ts 96 - Italian + Italian Romanian @@ -1943,15 +1959,23 @@ src/app/services/settings.service.ts 97 - Romanian + Romanian + + + Russian + + src/app/services/settings.service.ts + 98 + + Russian ISO 8601 src/app/services/settings.service.ts - 102 + 103 - ISO 8601 + ISO 8601 Document already exists. @@ -1959,7 +1983,7 @@ src/app/services/consumer-status.service.ts 15 - Document already exists. + Такой документ уже существует. File not found. @@ -1967,7 +1991,7 @@ src/app/services/consumer-status.service.ts 16 - File not found. + Файл не найден. Pre-consume script does not exist. @@ -1976,7 +2000,7 @@ 17 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Pre-consume script does not exist. + скрипт предобработки не существует. Error while executing pre-consume script. @@ -1985,7 +2009,7 @@ 18 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. + Ошибка при выполнении скрипта предобработки. Post-consume script does not exist. @@ -1994,7 +2018,7 @@ 19 Post-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. + скрипт постобработки не существует. Error while executing post-consume script. @@ -2003,7 +2027,7 @@ 20 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. + Ошибка при выполнении скрипта постобработки. Received new file. @@ -2011,7 +2035,7 @@ src/app/services/consumer-status.service.ts 21 - Received new file. + Получен новый файл. File type not supported. @@ -2019,7 +2043,7 @@ src/app/services/consumer-status.service.ts 22 - File type not supported. + Этот тип файла не поддерживается. Processing document... @@ -2027,7 +2051,7 @@ src/app/services/consumer-status.service.ts 23 - Processing document... + Обработка документа... Generating thumbnail... @@ -2035,7 +2059,7 @@ src/app/services/consumer-status.service.ts 24 - Generating thumbnail... + Создание эскиза... Retrieving date from document... @@ -2043,7 +2067,7 @@ src/app/services/consumer-status.service.ts 25 - Retrieving date from document... + Получение даты из документа... Saving document... @@ -2051,7 +2075,7 @@ src/app/services/consumer-status.service.ts 26 - Saving document... + Сохранение документа... Finished. @@ -2059,7 +2083,7 @@ src/app/services/consumer-status.service.ts 27 - Finished. + Завершено. Error @@ -2067,7 +2091,7 @@ src/app/services/toast.service.ts 35 - Error + Ошибка Information @@ -2075,15 +2099,7 @@ src/app/services/toast.service.ts 39 - Information - - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN + Информация Correspondent @@ -2091,7 +2107,7 @@ src/app/services/rest/document.service.ts 18 - Correspondent + Корреспондент Document type @@ -2099,7 +2115,7 @@ src/app/services/rest/document.service.ts 20 - Document type + Тип документа Created @@ -2107,7 +2123,7 @@ src/app/services/rest/document.service.ts 21 - Created + Создано Added @@ -2115,7 +2131,7 @@ src/app/services/rest/document.service.ts 22 - Added + Добавлено Modified @@ -2123,7 +2139,7 @@ src/app/services/rest/document.service.ts 23 - Modified + Изменено Create new item @@ -2131,7 +2147,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 50 - Create new item + Создать новый объект Edit item @@ -2139,7 +2155,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 54 - Edit item + Редактировать объект Could not save element: @@ -2147,7 +2163,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 58 - Could not save element: + Не могу сохранить элемент: Automatic @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + Автоматически Do you really want to delete this element? @@ -2163,7 +2179,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 97 - Do you really want to delete this element? + Вы действительно хотите удалить этот элемент? Associated documents will not be deleted. @@ -2171,7 +2187,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 104 - Associated documents will not be deleted. + Связанные документы не будут удалены. Delete @@ -2179,7 +2195,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 106 - Delete + Удалить Error while deleting element: @@ -2187,7 +2203,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 114 - Error while deleting element: + Возникла ошибка при удалении: Any word @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Any word + Любые слова Any: Document contains any of these words (space separated) @@ -2203,7 +2219,7 @@ src/app/data/matching-model.ts 12 - Any: Document contains any of these words (space separated) + Любой: Документ содержит любое из этих слов (разделитель - пробел) All words @@ -2211,7 +2227,7 @@ src/app/data/matching-model.ts 13 - All words + Все слова All: Document contains all of these words (space separated) @@ -2219,7 +2235,7 @@ src/app/data/matching-model.ts 13 - All: Document contains all of these words (space separated) + Все: Документ содержит все эти слова (разделитель - пробел) Exact match @@ -2227,7 +2243,7 @@ src/app/data/matching-model.ts 14 - Exact match + Точное соответствие Exact: Document contains this string @@ -2235,7 +2251,7 @@ src/app/data/matching-model.ts 14 - Exact: Document contains this string + Точное: Документ содержит эту строку Regular expression @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + Регулярное выражение Regular expression: Document matches this regular expression @@ -2251,7 +2267,7 @@ src/app/data/matching-model.ts 15 - Regular expression: Document matches this regular expression + Регулярное выражение: Документ соответствует этому регулярному выражению Fuzzy word @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Fuzzy word + "Нечёткий" режим Fuzzy: Document contains a word similar to this word @@ -2267,7 +2283,7 @@ src/app/data/matching-model.ts 16 - Fuzzy: Document contains a word similar to this word + Нечетко: Документ содержит слово, подобное этому слову Auto: Learn matching automatically @@ -2275,7 +2291,7 @@ src/app/data/matching-model.ts 17 - Auto: Learn matching automatically + Авто: Автоматически изучать соответствие diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index d5b3de020..6fac379bd 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -1945,11 +1945,19 @@ Romanian + + Russian + + src/app/services/settings.service.ts + 98 + + Russian + ISO 8601 src/app/services/settings.service.ts - 102 + 103 ISO 8601 diff --git a/src-ui/src/locale/messages.xh_ZA.xlf b/src-ui/src/locale/messages.xh_ZA.xlf index f17fd8941..781e5ec72 100644 --- a/src-ui/src/locale/messages.xh_ZA.xlf +++ b/src-ui/src/locale/messages.xh_ZA.xlf @@ -1058,19 +1058,19 @@ crwdns3100:0{{errorMessage}}crwdne3100:0 - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - crwdns3102:0{{more_like}}crwdnd3102:0{{more_like_doc?.original_file_name}}crwdnd3102:0{{more_like_doc?.original_file_name}}crwdne3102:0 + crwdns3406:0{{more_like}}crwdnd3406:0{{more_like_doc?.original_file_name}}crwdnd3406:0{{more_like_doc?.original_file_name}}crwdne3406:0 Search query: src/app/components/search/search.component.html - 11 + 9 crwdns3104:0{{query}}crwdnd3104:0{{query}}crwdne3104:0 @@ -1078,7 +1078,7 @@ Did you mean ""? src/app/components/search/search.component.html - 13 + 11 crwdns3106:0[routerLink]crwdnd3106:0{{correctedQuery}}crwdnd3106:0{{correctedQuery}}crwdne3106:0 @@ -1086,7 +1086,7 @@ {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 crwdns3108:0VAR_PLURAL={VAR_PLURAL}crwdne3108:0 @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 crwdns3134:0crwdne3134:0 @@ -1199,15 +1199,23 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 crwdns3136:0crwdne3136:0 + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + crwdns3354:0crwdne3354:0 + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 crwdns3138:0crwdne3138:0 @@ -1215,7 +1223,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 crwdns3140:0crwdne3140:0 @@ -1223,7 +1231,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 crwdns3142:0crwdne3142:0 @@ -1231,7 +1239,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 crwdns3144:0crwdne3144:0 @@ -1239,7 +1247,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 crwdns3146:0crwdne3146:0 @@ -1247,7 +1255,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 crwdns3148:0crwdne3148:0 @@ -1255,10 +1263,18 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 crwdns3150:0crwdne3150:0 + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + crwdns3416:0crwdne3416:0 + Filter tags @@ -1945,11 +1961,19 @@ crwdns3320:0crwdne3320:0 + + Russian + + src/app/services/settings.service.ts + 98 + + crwdns3404:0crwdne3404:0 + ISO 8601 src/app/services/settings.service.ts - 102 + 103 crwdns3322:0crwdne3322:0 @@ -2077,14 +2101,6 @@ crwdns3352:0crwdne3352:0 - - ASN - - src/app/services/rest/document.service.ts - 17 - - crwdns3354:0crwdne3354:0 - Correspondent diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index b8eaa1c53..0942b3773 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -56,7 +56,7 @@ src/app/components/document-list/document-list.component.ts 49 - Documents + 文件 View "" saved successfully. @@ -552,7 +552,7 @@ src/app/components/manage/tag-list/tag-list.component.html 38 - Documents + 文件 Edit @@ -1058,19 +1058,19 @@ Invalid search query: - - Showing documents similar to + + Showing documents similar to src/app/components/search/search.component.html - 7 + 6 - Showing documents similar to + Showing documents similar to Search query: src/app/components/search/search.component.html - 11 + 9 Search query: @@ -1078,7 +1078,7 @@ Did you mean ""? src/app/components/search/search.component.html - 13 + 11 Did you mean ""? @@ -1086,7 +1086,7 @@ {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} src/app/components/search/search.component.html - 18 + 16 {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} @@ -1191,7 +1191,7 @@ Title src/app/components/document-list/filter-editor/filter-editor.component.ts - 73 + 77 Title @@ -1199,15 +1199,23 @@ Title & content src/app/components/document-list/filter-editor/filter-editor.component.ts - 74 + 78 Title & content + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 79 + + ASN + Correspondent: src/app/components/document-list/filter-editor/filter-editor.component.ts - 32 + 33 Correspondent: @@ -1215,7 +1223,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 34 + 35 Without correspondent @@ -1223,7 +1231,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 39 + 40 Type: @@ -1231,7 +1239,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 41 + 42 Without document type @@ -1239,7 +1247,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 45 + 46 Tag: @@ -1247,7 +1255,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 49 + 50 Without any tag @@ -1255,10 +1263,18 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 53 + 54 Title: + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 57 + + ASN: + Filter tags @@ -1945,11 +1961,19 @@ Romanian + + Russian + + src/app/services/settings.service.ts + 98 + + Russian + ISO 8601 src/app/services/settings.service.ts - 102 + 103 ISO 8601 @@ -2077,14 +2101,6 @@ Information - - ASN - - src/app/services/rest/document.service.ts - 17 - - ASN - Correspondent @@ -2155,7 +2171,7 @@ src/app/components/manage/generic-list/generic-list.component.ts 39 - Automatic + 自动 Do you really want to delete this element? @@ -2195,7 +2211,7 @@ src/app/data/matching-model.ts 12 - Any word + 任何词 Any: Document contains any of these words (space separated) @@ -2211,7 +2227,7 @@ src/app/data/matching-model.ts 13 - All words + 所有词 All: Document contains all of these words (space separated) @@ -2227,7 +2243,7 @@ src/app/data/matching-model.ts 14 - Exact match + 完全符合 Exact: Document contains this string @@ -2243,7 +2259,7 @@ src/app/data/matching-model.ts 15 - Regular expression + 正则表达式 Regular expression: Document matches this regular expression @@ -2259,7 +2275,7 @@ src/app/data/matching-model.ts 16 - Fuzzy word + 模糊词汇 Fuzzy: Document contains a word similar to this word diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 6ebf4c541..3641c73a5 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -50,7 +50,7 @@ class MatchingModelSerializer(serializers.ModelSerializer): re.compile(match) except Exception as e: raise serializers.ValidationError( - _("Invalid regular expresssion: %(error)s") % + _("Invalid regular expression: %(error)s") % {'error': str(e)} ) return match diff --git a/src/documents/tests/test_views.py b/src/documents/tests/test_views.py index ccc41666a..7f7a07a61 100644 --- a/src/documents/tests/test_views.py +++ b/src/documents/tests/test_views.py @@ -15,7 +15,7 @@ class TestViews(TestCase): def test_index(self): self.client.force_login(self.user) - for (language_given, language_actual) in [("", "en-US"), ("en-US", "en-US"), ("de", "de"), ("en", "en-US"), ("en-us", "en-US"), ("fr", "fr"), ("jp", "en-US")]: + for (language_given, language_actual) in [("", "en-US"), ("en-US", "en-US"), ("de", "de-DE"), ("en", "en-US"), ("en-us", "en-US"), ("fr", "fr-FR"), ("jp", "en-US")]: if language_given: self.client.cookies.load({settings.LANGUAGE_COOKIE_NAME: language_given}) elif settings.LANGUAGE_COOKIE_NAME in self.client.cookies.keys(): diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index ff7098536..dd1a65888 100644 --- a/src/locale/cs_CZ/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 20:36\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -84,7 +84,7 @@ msgstr "Označí tento tag jako tag pro příchozí: Všechny nově zkonzumovan #: documents/models.py:94 msgid "tag" -msgstr "" +msgstr "tag" #: documents/models.py:95 documents/models.py:151 msgid "tags" @@ -188,7 +188,7 @@ msgstr "dokumenty" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "debug" #: documents/models.py:312 msgid "information" @@ -226,7 +226,7 @@ msgstr "záznam" msgid "logs" msgstr "záznamy" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "uložený pohled" @@ -326,25 +326,33 @@ msgstr "upraveno po" msgid "does not have tag" msgstr "nemá tag" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" msgstr "typ pravidla" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "hodnota" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "filtrovací pravidlo" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "filtrovací pravidla" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "" #: documents/serialisers.py:177 @@ -396,38 +404,42 @@ msgstr "Heslo" msgid "Sign in" msgstr "Přihlásit se" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "Němčina" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "Holandština" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "Francouzština" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Správa Paperless-ng" @@ -450,7 +462,7 @@ msgstr "Akce provedena na emailu. Tato akce je provedena jen pokud byly dokument #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Metadata" #: 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." @@ -482,11 +494,11 @@ msgstr "Používat STARTTLS" #: paperless_mail/models.py:29 msgid "IMAP server" -msgstr "" +msgstr "IMAP server" #: paperless_mail/models.py:33 msgid "IMAP port" -msgstr "" +msgstr "IMAP port" #: paperless_mail/models.py:36 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 120dcd1a8..d7936bed4 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 21:35\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -226,7 +226,7 @@ msgstr "Protokoll" msgid "logs" msgstr "Protokoll" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "Gespeicherte Ansicht" @@ -326,25 +326,33 @@ msgstr "Geändert nach" msgid "does not have tag" msgstr "Hat nicht folgendes Tag" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "Dokument hat keine ASN" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "Titel oder Inhalt enthält" + +#: documents/models.py:400 msgid "rule type" msgstr "Regeltyp" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "Wert" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "Filterregel" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "Filterregeln" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "Ungültiger regulärer Ausdruck: %(error)s" #: documents/serialisers.py:177 @@ -396,45 +404,49 @@ msgstr "Passwort" msgid "Sign in" msgstr "Anmelden" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "Englisch (US)" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "Englisch (UK)" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "Niederländisch" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "Französisch" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "Portugiesisch (Brasilien)" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "Italienisch" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "Rumänisch" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Russisch" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Paperless-ng Administration" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "" +msgstr "Filter" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." @@ -618,7 +630,7 @@ msgstr "Parameter für Aktion" #: 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 "Zusätzlicher Parameter für die oben ausgewählte Aktion, zum Beispiel der Zielordner für die Aktion \"In angegebenen Ordner verschieben\"" +msgstr "Zusätzlicher Parameter für die oben ausgewählte Aktion, zum Beispiel der Zielordner für die Aktion \"In angegebenen Ordner verschieben\"." #: paperless_mail/models.py:173 msgid "assign title from" diff --git a/src/locale/en_GB/LC_MESSAGES/django.po b/src/locale/en_GB/LC_MESSAGES/django.po index 5ae2832b0..238d0444d 100644 --- a/src/locale/en_GB/LC_MESSAGES/django.po +++ b/src/locale/en_GB/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:39\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 21:35\n" "Last-Translator: \n" "Language-Team: English, United Kingdom\n" "Language: en_GB\n" @@ -19,56 +19,56 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "Documents" #: documents/models.py:32 msgid "Any word" -msgstr "" +msgstr "Any word" #: documents/models.py:33 msgid "All words" -msgstr "" +msgstr "All words" #: documents/models.py:34 msgid "Exact match" -msgstr "" +msgstr "Exact match" #: documents/models.py:35 msgid "Regular expression" -msgstr "" +msgstr "Regular expression" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "" +msgstr "Fuzzy word" #: documents/models.py:37 msgid "Automatic" -msgstr "" +msgstr "Automatic" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" -msgstr "" +msgstr "name" #: documents/models.py:45 msgid "match" -msgstr "" +msgstr "match" #: documents/models.py:49 msgid "matching algorithm" -msgstr "" +msgstr "matching algorithm" #: documents/models.py:55 msgid "is insensitive" -msgstr "" +msgstr "is insensitive" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" -msgstr "" +msgstr "correspondent" #: documents/models.py:75 msgid "correspondents" -msgstr "" +msgstr "correspondents" #: documents/models.py:81 msgid "color" @@ -76,276 +76,284 @@ msgstr "colour" #: documents/models.py:87 msgid "is inbox tag" -msgstr "" +msgstr "is inbox tag" #: documents/models.py:89 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." -msgstr "" +msgstr "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." #: documents/models.py:94 msgid "tag" -msgstr "" +msgstr "tag" #: documents/models.py:95 documents/models.py:151 msgid "tags" -msgstr "" +msgstr "tags" #: documents/models.py:101 documents/models.py:133 msgid "document type" -msgstr "" +msgstr "document type" #: documents/models.py:102 msgid "document types" -msgstr "" +msgstr "document types" #: documents/models.py:110 msgid "Unencrypted" -msgstr "" +msgstr "Unencrypted" #: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" -msgstr "" +msgstr "Encrypted with GNU Privacy Guard" #: documents/models.py:124 msgid "title" -msgstr "" +msgstr "title" #: documents/models.py:137 msgid "content" -msgstr "" +msgstr "content" #: documents/models.py:139 msgid "The raw, text-only data of the document. This field is primarily used for searching." -msgstr "" +msgstr "The raw, text-only data of the document. This field is primarily used for searching." #: documents/models.py:144 msgid "mime type" -msgstr "" +msgstr "mime type" #: documents/models.py:155 msgid "checksum" -msgstr "" +msgstr "checksum" #: documents/models.py:159 msgid "The checksum of the original document." -msgstr "" +msgstr "The checksum of the original document." #: documents/models.py:163 msgid "archive checksum" -msgstr "" +msgstr "archive checksum" #: documents/models.py:168 msgid "The checksum of the archived document." -msgstr "" +msgstr "The checksum of the archived document." #: documents/models.py:172 documents/models.py:328 msgid "created" -msgstr "" +msgstr "created" #: documents/models.py:176 msgid "modified" -msgstr "" +msgstr "modified" #: documents/models.py:180 msgid "storage type" -msgstr "" +msgstr "storage type" #: documents/models.py:188 msgid "added" -msgstr "" +msgstr "added" #: documents/models.py:192 msgid "filename" -msgstr "" +msgstr "filename" #: documents/models.py:198 msgid "Current filename in storage" -msgstr "" +msgstr "Current filename in storage" #: documents/models.py:202 msgid "archive filename" -msgstr "" +msgstr "archive filename" #: documents/models.py:208 msgid "Current archive filename in storage" -msgstr "" +msgstr "Current archive filename in storage" #: documents/models.py:212 msgid "archive serial number" -msgstr "" +msgstr "archive serial number" #: documents/models.py:217 msgid "The position of this document in your physical document archive." -msgstr "" +msgstr "The position of this document in your physical document archive." #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "document" #: documents/models.py:224 msgid "documents" -msgstr "" +msgstr "documents" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "debug" #: documents/models.py:312 msgid "information" -msgstr "" +msgstr "information" #: documents/models.py:313 msgid "warning" -msgstr "" +msgstr "warning" #: documents/models.py:314 msgid "error" -msgstr "" +msgstr "error" #: documents/models.py:315 msgid "critical" -msgstr "" +msgstr "critical" #: documents/models.py:319 msgid "group" -msgstr "" +msgstr "group" #: documents/models.py:322 msgid "message" -msgstr "" +msgstr "message" #: documents/models.py:325 msgid "level" -msgstr "" +msgstr "level" #: documents/models.py:332 msgid "log" -msgstr "" +msgstr "log" #: documents/models.py:333 msgid "logs" -msgstr "" +msgstr "logs" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" -msgstr "" +msgstr "saved view" #: documents/models.py:345 msgid "saved views" -msgstr "" +msgstr "saved views" #: documents/models.py:348 msgid "user" -msgstr "" +msgstr "user" #: documents/models.py:354 msgid "show on dashboard" -msgstr "" +msgstr "show on dashboard" #: documents/models.py:357 msgid "show in sidebar" -msgstr "" +msgstr "show in sidebar" #: documents/models.py:361 msgid "sort field" -msgstr "" +msgstr "sort field" #: documents/models.py:364 msgid "sort reverse" -msgstr "" +msgstr "sort reverse" #: documents/models.py:370 msgid "title contains" -msgstr "" +msgstr "title contains" #: documents/models.py:371 msgid "content contains" -msgstr "" +msgstr "content contains" #: documents/models.py:372 msgid "ASN is" -msgstr "" +msgstr "ASN is" #: documents/models.py:373 msgid "correspondent is" -msgstr "" +msgstr "correspondent is" #: documents/models.py:374 msgid "document type is" -msgstr "" +msgstr "document type is" #: documents/models.py:375 msgid "is in inbox" -msgstr "" +msgstr "is in inbox" #: documents/models.py:376 msgid "has tag" -msgstr "" +msgstr "has tag" #: documents/models.py:377 msgid "has any tag" -msgstr "" +msgstr "has any tag" #: documents/models.py:378 msgid "created before" -msgstr "" +msgstr "created before" #: documents/models.py:379 msgid "created after" -msgstr "" +msgstr "created after" #: documents/models.py:380 msgid "created year is" -msgstr "" +msgstr "created year is" #: documents/models.py:381 msgid "created month is" -msgstr "" +msgstr "created month is" #: documents/models.py:382 msgid "created day is" -msgstr "" +msgstr "created day is" #: documents/models.py:383 msgid "added before" -msgstr "" +msgstr "added before" #: documents/models.py:384 msgid "added after" -msgstr "" +msgstr "added after" #: documents/models.py:385 msgid "modified before" -msgstr "" +msgstr "modified before" #: documents/models.py:386 msgid "modified after" -msgstr "" +msgstr "modified after" #: documents/models.py:387 msgid "does not have tag" -msgstr "" +msgstr "does not have tag" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "does not have ASN" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "title or content contains" + +#: documents/models.py:400 msgid "rule type" -msgstr "" +msgstr "rule type" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" -msgstr "" +msgstr "value" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" -msgstr "" +msgstr "filter rule" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" -msgstr "" +msgstr "filter rules" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" -msgstr "" +msgid "Invalid regular expression: %(error)s" +msgstr "Invalid regular expression: %(error)s" #: documents/serialisers.py:177 msgid "Invalid color." @@ -354,289 +362,293 @@ msgstr "Invalid colour." #: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" -msgstr "" +msgstr "File type %(type)s not supported" #: documents/templates/index.html:21 msgid "Paperless-ng is loading..." -msgstr "" +msgstr "Paperless-ng is loading..." #: documents/templates/registration/logged_out.html:13 msgid "Paperless-ng signed out" -msgstr "" +msgstr "Paperless-ng signed out" #: documents/templates/registration/logged_out.html:41 msgid "You have been successfully logged out. Bye!" -msgstr "" +msgstr "You have been successfully logged out. Bye!" #: documents/templates/registration/logged_out.html:42 msgid "Sign in again" -msgstr "" +msgstr "Sign in again" #: documents/templates/registration/login.html:13 msgid "Paperless-ng sign in" -msgstr "" +msgstr "Paperless-ng sign in" #: documents/templates/registration/login.html:42 msgid "Please sign in." -msgstr "" +msgstr "Please sign in." #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "" +msgstr "Your username and password didn't match. Please try again." #: documents/templates/registration/login.html:48 msgid "Username" -msgstr "" +msgstr "Username" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "" +msgstr "Password" #: documents/templates/registration/login.html:54 msgid "Sign in" -msgstr "" - -#: paperless/settings.py:297 -msgid "English (US)" -msgstr "" +msgstr "Sign in" #: paperless/settings.py:298 -msgid "English (GB)" -msgstr "" +msgid "English (US)" +msgstr "English (US)" #: paperless/settings.py:299 -msgid "German" -msgstr "" +msgid "English (GB)" +msgstr "English (GB)" #: paperless/settings.py:300 -msgid "Dutch" -msgstr "" +msgid "German" +msgstr "German" #: paperless/settings.py:301 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Dutch" #: paperless/settings.py:302 -msgid "Portuguese (Brazil)" -msgstr "" +msgid "French" +msgstr "French" #: paperless/settings.py:303 -msgid "Italian" -msgstr "" +msgid "Portuguese (Brazil)" +msgstr "Portuguese (Brazil)" #: paperless/settings.py:304 +msgid "Italian" +msgstr "Italian" + +#: paperless/settings.py:305 msgid "Romanian" -msgstr "" +msgstr "Romanian" + +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Russian" #: paperless/urls.py:118 msgid "Paperless-ng administration" -msgstr "" +msgstr "Paperless-ng administration" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "" +msgstr "Filter" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." -msgstr "" +msgstr "Paperless will only process mails that match ALL of the filters given below." #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "" +msgstr "Actions" #: 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 "" +msgstr "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." #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Metadata" #: 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 "" +msgstr "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." #: paperless_mail/apps.py:9 msgid "Paperless mail" -msgstr "" +msgstr "Paperless mail" #: paperless_mail/models.py:11 msgid "mail account" -msgstr "" +msgstr "mail account" #: paperless_mail/models.py:12 msgid "mail accounts" -msgstr "" +msgstr "mail accounts" #: paperless_mail/models.py:19 msgid "No encryption" -msgstr "" +msgstr "No encryption" #: paperless_mail/models.py:20 msgid "Use SSL" -msgstr "" +msgstr "Use SSL" #: paperless_mail/models.py:21 msgid "Use STARTTLS" -msgstr "" +msgstr "Use STARTTLS" #: paperless_mail/models.py:29 msgid "IMAP server" -msgstr "" +msgstr "IMAP server" #: paperless_mail/models.py:33 msgid "IMAP port" -msgstr "" +msgstr "IMAP port" #: paperless_mail/models.py:36 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." -msgstr "" +msgstr "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." #: paperless_mail/models.py:40 msgid "IMAP security" -msgstr "" +msgstr "IMAP security" #: paperless_mail/models.py:46 msgid "username" -msgstr "" +msgstr "username" #: paperless_mail/models.py:50 msgid "password" -msgstr "" +msgstr "password" #: paperless_mail/models.py:60 msgid "mail rule" -msgstr "" +msgstr "mail rule" #: paperless_mail/models.py:61 msgid "mail rules" -msgstr "" +msgstr "mail rules" #: paperless_mail/models.py:67 msgid "Only process attachments." -msgstr "" +msgstr "Only process attachments." #: paperless_mail/models.py:68 msgid "Process all files, including 'inline' attachments." -msgstr "" +msgstr "Process all files, including 'inline' attachments." #: paperless_mail/models.py:78 msgid "Mark as read, don't process read mails" -msgstr "" +msgstr "Mark as read, don't process read mails" #: paperless_mail/models.py:79 msgid "Flag the mail, don't process flagged mails" -msgstr "" +msgstr "Flag the mail, don't process flagged mails" #: paperless_mail/models.py:80 msgid "Move to specified folder" -msgstr "" +msgstr "Move to specified folder" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "" +msgstr "Delete" #: paperless_mail/models.py:88 msgid "Use subject as title" -msgstr "" +msgstr "Use subject as title" #: paperless_mail/models.py:89 msgid "Use attachment filename as title" -msgstr "" +msgstr "Use attachment filename as title" #: paperless_mail/models.py:99 msgid "Do not assign a correspondent" -msgstr "" +msgstr "Do not assign a correspondent" #: paperless_mail/models.py:101 msgid "Use mail address" -msgstr "" +msgstr "Use mail address" #: paperless_mail/models.py:103 msgid "Use name (or mail address if not available)" -msgstr "" +msgstr "Use name (or mail address if not available)" #: paperless_mail/models.py:105 msgid "Use correspondent selected below" -msgstr "" +msgstr "Use correspondent selected below" #: paperless_mail/models.py:113 msgid "order" -msgstr "" +msgstr "order" #: paperless_mail/models.py:120 msgid "account" -msgstr "" +msgstr "account" #: paperless_mail/models.py:124 msgid "folder" -msgstr "" +msgstr "folder" #: paperless_mail/models.py:128 msgid "filter from" -msgstr "" +msgstr "filter from" #: paperless_mail/models.py:131 msgid "filter subject" -msgstr "" +msgstr "filter subject" #: paperless_mail/models.py:134 msgid "filter body" -msgstr "" +msgstr "filter body" #: paperless_mail/models.py:138 msgid "filter attachment filename" -msgstr "" +msgstr "filter attachment filename" #: 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 "" +msgstr "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." #: paperless_mail/models.py:146 msgid "maximum age" -msgstr "" +msgstr "maximum age" #: paperless_mail/models.py:148 msgid "Specified in days." -msgstr "" +msgstr "Specified in days." #: paperless_mail/models.py:151 msgid "attachment type" -msgstr "" +msgstr "attachment type" #: paperless_mail/models.py:154 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "" +msgstr "Inline attachments include embedded images, so it's best to combine this option with a filename filter." #: paperless_mail/models.py:159 msgid "action" -msgstr "" +msgstr "action" #: paperless_mail/models.py:165 msgid "action parameter" -msgstr "" +msgstr "action parameter" #: 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 "" +msgstr "Additional parameter for the action selected above, i.e., the target folder of the move to folder action." #: paperless_mail/models.py:173 msgid "assign title from" -msgstr "" +msgstr "assign title from" #: paperless_mail/models.py:183 msgid "assign this tag" -msgstr "" +msgstr "assign this tag" #: paperless_mail/models.py:191 msgid "assign this document type" -msgstr "" +msgstr "assign this document type" #: paperless_mail/models.py:195 msgid "assign correspondent from" -msgstr "" +msgstr "assign correspondent from" #: paperless_mail/models.py:205 msgid "assign this correspondent" -msgstr "" +msgstr "assign this correspondent" diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index 7aaa6ddd1..36359709a 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-28 12:40+0100\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -230,7 +230,7 @@ msgstr "" msgid "logs" msgstr "" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "" @@ -330,25 +330,33 @@ msgstr "" msgid "does not have tag" msgstr "" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" msgstr "" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "" #: documents/serialisers.py:177 @@ -400,38 +408,42 @@ msgstr "" msgid "Sign in" msgstr "" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index e13ab0ef1..74418eca3 100644 --- a/src/locale/es_ES/LC_MESSAGES/django.po +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-09 23:16\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -19,48 +19,48 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "Documentos" #: documents/models.py:32 msgid "Any word" -msgstr "" +msgstr "Cualquier palabra" #: documents/models.py:33 msgid "All words" -msgstr "" +msgstr "Todas las palabras" #: documents/models.py:34 msgid "Exact match" -msgstr "" +msgstr "Coincidencia exacta" #: documents/models.py:35 msgid "Regular expression" -msgstr "" +msgstr "Expresión regular" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "" +msgstr "Palabra borrosa" #: documents/models.py:37 msgid "Automatic" -msgstr "" +msgstr "Automático" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" -msgstr "" +msgstr "nombre" #: documents/models.py:45 msgid "match" -msgstr "" +msgstr "coincidencia" #: documents/models.py:49 msgid "matching algorithm" -msgstr "" +msgstr "Algoritmo de coincidencia" #: documents/models.py:55 msgid "is insensitive" -msgstr "" +msgstr "es insensible" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" @@ -72,7 +72,7 @@ msgstr "" #: documents/models.py:81 msgid "color" -msgstr "" +msgstr "color" #: documents/models.py:87 msgid "is inbox tag" @@ -84,35 +84,35 @@ msgstr "" #: documents/models.py:94 msgid "tag" -msgstr "" +msgstr "etiqueta" #: documents/models.py:95 documents/models.py:151 msgid "tags" -msgstr "" +msgstr "etiquetas" #: documents/models.py:101 documents/models.py:133 msgid "document type" -msgstr "" +msgstr "tipo de documento" #: documents/models.py:102 msgid "document types" -msgstr "" +msgstr "tipos de documento" #: documents/models.py:110 msgid "Unencrypted" -msgstr "" +msgstr "Sin encriptar" #: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" -msgstr "" +msgstr "Encriptado con GNU Privacy Guard" #: documents/models.py:124 msgid "title" -msgstr "" +msgstr "titulo" #: documents/models.py:137 msgid "content" -msgstr "" +msgstr "contenido" #: documents/models.py:139 msgid "The raw, text-only data of the document. This field is primarily used for searching." @@ -120,7 +120,7 @@ msgstr "" #: documents/models.py:144 msgid "mime type" -msgstr "" +msgstr "tipo MIME" #: documents/models.py:155 msgid "checksum" @@ -140,19 +140,19 @@ msgstr "" #: documents/models.py:172 documents/models.py:328 msgid "created" -msgstr "" +msgstr "creado" #: documents/models.py:176 msgid "modified" -msgstr "" +msgstr "modificado" #: documents/models.py:180 msgid "storage type" -msgstr "" +msgstr "tipo de almacenamiento" #: documents/models.py:188 msgid "added" -msgstr "" +msgstr "añadido" #: documents/models.py:192 msgid "filename" @@ -164,7 +164,7 @@ msgstr "" #: documents/models.py:202 msgid "archive filename" -msgstr "" +msgstr "nombre de archivo" #: documents/models.py:208 msgid "Current archive filename in storage" @@ -176,67 +176,67 @@ msgstr "" #: documents/models.py:217 msgid "The position of this document in your physical document archive." -msgstr "" +msgstr "Posición de este documento en tu archivo físico de documentos." #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "documento" #: documents/models.py:224 msgid "documents" -msgstr "" +msgstr "documentos" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "depuración" #: documents/models.py:312 msgid "information" -msgstr "" +msgstr "información" #: documents/models.py:313 msgid "warning" -msgstr "" +msgstr "alerta" #: documents/models.py:314 msgid "error" -msgstr "" +msgstr "error" #: documents/models.py:315 msgid "critical" -msgstr "" +msgstr "crítico" #: documents/models.py:319 msgid "group" -msgstr "" +msgstr "grupo" #: documents/models.py:322 msgid "message" -msgstr "" +msgstr "mensaje" #: documents/models.py:325 msgid "level" -msgstr "" +msgstr "nivel" #: documents/models.py:332 msgid "log" -msgstr "" +msgstr "log" #: documents/models.py:333 msgid "logs" -msgstr "" +msgstr "logs" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" -msgstr "" +msgstr "vista guardada" #: documents/models.py:345 msgid "saved views" -msgstr "" +msgstr "vistas guardadas" #: documents/models.py:348 msgid "user" -msgstr "" +msgstr "usuario" #: documents/models.py:354 msgid "show on dashboard" @@ -244,23 +244,23 @@ msgstr "" #: documents/models.py:357 msgid "show in sidebar" -msgstr "" +msgstr "mostrar en barra lateral" #: documents/models.py:361 msgid "sort field" -msgstr "" +msgstr "campo de ordenación" #: documents/models.py:364 msgid "sort reverse" -msgstr "" +msgstr "ordenar al revés" #: documents/models.py:370 msgid "title contains" -msgstr "" +msgstr "el titulo contiene" #: documents/models.py:371 msgid "content contains" -msgstr "" +msgstr "el contenido contiene" #: documents/models.py:372 msgid "ASN is" @@ -272,7 +272,7 @@ msgstr "" #: documents/models.py:374 msgid "document type is" -msgstr "" +msgstr "el tipo de documento es" #: documents/models.py:375 msgid "is in inbox" @@ -280,177 +280,189 @@ msgstr "" #: documents/models.py:376 msgid "has tag" -msgstr "" +msgstr "tiene la etiqueta" #: documents/models.py:377 msgid "has any tag" -msgstr "" +msgstr "tiene cualquier etiqueta" #: documents/models.py:378 msgid "created before" -msgstr "" +msgstr "creado antes" #: documents/models.py:379 msgid "created after" -msgstr "" +msgstr "creado después" #: documents/models.py:380 msgid "created year is" -msgstr "" +msgstr "el año de creación es" #: documents/models.py:381 msgid "created month is" -msgstr "" +msgstr "el mes de creación es" #: documents/models.py:382 msgid "created day is" -msgstr "" +msgstr "creado el día" #: documents/models.py:383 msgid "added before" -msgstr "" +msgstr "agregado antes de" #: documents/models.py:384 msgid "added after" -msgstr "" +msgstr "agregado después de" #: documents/models.py:385 msgid "modified before" -msgstr "" +msgstr "modificado después de" #: documents/models.py:386 msgid "modified after" -msgstr "" +msgstr "modificado antes de" #: documents/models.py:387 msgid "does not have tag" +msgstr "no tiene la etiqueta" + +#: documents/models.py:388 +msgid "does not have ASN" msgstr "" -#: documents/models.py:398 +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" -msgstr "" +msgstr "tipo de regla" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" -msgstr "" +msgstr "valor" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" -msgstr "" +msgstr "regla de filtrado" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" -msgstr "" +msgstr "reglas de filtrado" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" -msgstr "" +msgid "Invalid regular expression: %(error)s" +msgstr "Expresión irregular inválida: %(error)s" #: documents/serialisers.py:177 msgid "Invalid color." -msgstr "" +msgstr "Color inválido." #: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" -msgstr "" +msgstr "Tipo de fichero %(type)s no suportado" #: documents/templates/index.html:21 msgid "Paperless-ng is loading..." -msgstr "" +msgstr "Paperless-ng está cargándose…" #: documents/templates/registration/logged_out.html:13 msgid "Paperless-ng signed out" -msgstr "" +msgstr "Paperless-ng Sesión cerrada" #: documents/templates/registration/logged_out.html:41 msgid "You have been successfully logged out. Bye!" -msgstr "" +msgstr "Has cerrado la sesión satisfactoriamente. ¡Adiós!" #: documents/templates/registration/logged_out.html:42 msgid "Sign in again" -msgstr "" +msgstr "Iniciar sesión de nuevo" #: documents/templates/registration/login.html:13 msgid "Paperless-ng sign in" -msgstr "" +msgstr "Paperless-ng Iniciar sesión" #: documents/templates/registration/login.html:42 msgid "Please sign in." -msgstr "" +msgstr "Por favor, inicie sesión" #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "" +msgstr "Tu usuario y contraseña no coinciden. Inténtalo de nuevo." #: documents/templates/registration/login.html:48 msgid "Username" -msgstr "" +msgstr "Usuario" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "" +msgstr "Contraseña" #: documents/templates/registration/login.html:54 msgid "Sign in" -msgstr "" - -#: paperless/settings.py:297 -msgid "English (US)" -msgstr "" +msgstr "Iniciar sesión" #: paperless/settings.py:298 -msgid "English (GB)" -msgstr "" +msgid "English (US)" +msgstr "Inglés (US)" #: paperless/settings.py:299 -msgid "German" -msgstr "" +msgid "English (GB)" +msgstr "Inglés (Gran Bretaña)" #: paperless/settings.py:300 -msgid "Dutch" -msgstr "" +msgid "German" +msgstr "Alemán" #: paperless/settings.py:301 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Alemán" #: paperless/settings.py:302 -msgid "Portuguese (Brazil)" -msgstr "" +msgid "French" +msgstr "Francés" #: paperless/settings.py:303 -msgid "Italian" -msgstr "" +msgid "Portuguese (Brazil)" +msgstr "Portugués (Brasil)" #: paperless/settings.py:304 +msgid "Italian" +msgstr "Italiano" + +#: paperless/settings.py:305 msgid "Romanian" -msgstr "" +msgstr "Rumano" + +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Ruso" #: paperless/urls.py:118 msgid "Paperless-ng administration" -msgstr "" +msgstr "Paperless-ng Administración" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "" +msgstr "Filtro" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." -msgstr "" +msgstr "Paperless solo procesará los correos que coincidan con TODOS los filtros escritos abajo." #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "" +msgstr "Acciones" #: 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 "" +msgstr "La acción aplicada al correo. Esta acción solo se realiza cuando los documentos se consumen del correo. Los correos sin archivos adjuntos permanecerán totalmente intactos." #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Metadatos" #: 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." @@ -462,87 +474,87 @@ msgstr "" #: paperless_mail/models.py:11 msgid "mail account" -msgstr "" +msgstr "cuenta de correo" #: paperless_mail/models.py:12 msgid "mail accounts" -msgstr "" +msgstr "cuentas de correo" #: paperless_mail/models.py:19 msgid "No encryption" -msgstr "" +msgstr "Sin encriptar" #: paperless_mail/models.py:20 msgid "Use SSL" -msgstr "" +msgstr "Usar SSL" #: paperless_mail/models.py:21 msgid "Use STARTTLS" -msgstr "" +msgstr "Usar STARTTLS" #: paperless_mail/models.py:29 msgid "IMAP server" -msgstr "" +msgstr "Servidor IMAP" #: paperless_mail/models.py:33 msgid "IMAP port" -msgstr "" +msgstr "Puerto IMAP" #: paperless_mail/models.py:36 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." -msgstr "" +msgstr "Normalmente 143 para conexiones sin encriptar y STARTTLS, y 993 para conexiones SSL." #: paperless_mail/models.py:40 msgid "IMAP security" -msgstr "" +msgstr "Seguridad IMAP" #: paperless_mail/models.py:46 msgid "username" -msgstr "" +msgstr "usuario" #: paperless_mail/models.py:50 msgid "password" -msgstr "" +msgstr "contraseña" #: paperless_mail/models.py:60 msgid "mail rule" -msgstr "" +msgstr "regla de correo" #: paperless_mail/models.py:61 msgid "mail rules" -msgstr "" +msgstr "reglas de correo" #: paperless_mail/models.py:67 msgid "Only process attachments." -msgstr "" +msgstr "Solo procesar ficheros adjuntos." #: paperless_mail/models.py:68 msgid "Process all files, including 'inline' attachments." -msgstr "" +msgstr "Procesar todos los ficheros, incluyendo ficheros 'incrustados'." #: paperless_mail/models.py:78 msgid "Mark as read, don't process read mails" -msgstr "" +msgstr "Marcar como leído, no procesar archivos leídos" #: paperless_mail/models.py:79 msgid "Flag the mail, don't process flagged mails" -msgstr "" +msgstr "Marcar el correo, no procesar correos marcados" #: paperless_mail/models.py:80 msgid "Move to specified folder" -msgstr "" +msgstr "Mover a carpeta específica" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "" +msgstr "Borrar" #: paperless_mail/models.py:88 msgid "Use subject as title" -msgstr "" +msgstr "Usar asunto como titulo" #: paperless_mail/models.py:89 msgid "Use attachment filename as title" -msgstr "" +msgstr "Usar nombre del fichero adjunto como título" #: paperless_mail/models.py:99 msgid "Do not assign a correspondent" @@ -550,11 +562,11 @@ msgstr "" #: paperless_mail/models.py:101 msgid "Use mail address" -msgstr "" +msgstr "Usar dirección de correo" #: paperless_mail/models.py:103 msgid "Use name (or mail address if not available)" -msgstr "" +msgstr "Usar nombre (o dirección de correo si no está disponible)" #: paperless_mail/models.py:105 msgid "Use correspondent selected below" @@ -562,15 +574,15 @@ msgstr "" #: paperless_mail/models.py:113 msgid "order" -msgstr "" +msgstr "orden" #: paperless_mail/models.py:120 msgid "account" -msgstr "" +msgstr "cuenta" #: paperless_mail/models.py:124 msgid "folder" -msgstr "" +msgstr "carpeta" #: paperless_mail/models.py:128 msgid "filter from" @@ -578,15 +590,15 @@ msgstr "" #: paperless_mail/models.py:131 msgid "filter subject" -msgstr "" +msgstr "filtrar asunto" #: paperless_mail/models.py:134 msgid "filter body" -msgstr "" +msgstr "filtrar cuerpo" #: paperless_mail/models.py:138 msgid "filter attachment filename" -msgstr "" +msgstr "filtrar nombre del fichero adjunto" #: 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." @@ -594,43 +606,43 @@ msgstr "" #: paperless_mail/models.py:146 msgid "maximum age" -msgstr "" +msgstr "antigüedad máxima" #: paperless_mail/models.py:148 msgid "Specified in days." -msgstr "" +msgstr "Especificado en días." #: paperless_mail/models.py:151 msgid "attachment type" -msgstr "" +msgstr "tipo de fichero adjunto" #: paperless_mail/models.py:154 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "" +msgstr "Adjuntos incrustados incluyen imágenes, por lo que es mejor combina resta opción un filtro de nombre de fichero." #: paperless_mail/models.py:159 msgid "action" -msgstr "" +msgstr "acción" #: paperless_mail/models.py:165 msgid "action parameter" -msgstr "" +msgstr "parámetro de acción" #: 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 "" +msgstr "Parámetro adicional para la acción seleccionada arriba. Ej. la carpeta de destino de la acción de mover a carpeta." #: paperless_mail/models.py:173 msgid "assign title from" -msgstr "" +msgstr "asignar titulo desde" #: paperless_mail/models.py:183 msgid "assign this tag" -msgstr "" +msgstr "asignar esta etiqueta" #: paperless_mail/models.py:191 msgid "assign this document type" -msgstr "" +msgstr "asignar este tipo de documento" #: paperless_mail/models.py:195 msgid "assign correspondent from" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index f97e275d2..b8f79e03b 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-08 21:07\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -19,7 +19,7 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "Documents" #: documents/models.py:32 msgid "Any word" @@ -180,11 +180,11 @@ msgstr "Le classement de ce document dans votre archive de documents physiques." #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "document" #: documents/models.py:224 msgid "documents" -msgstr "" +msgstr "documents" #: documents/models.py:311 msgid "debug" @@ -192,7 +192,7 @@ msgstr "débogage" #: documents/models.py:312 msgid "information" -msgstr "" +msgstr "information" #: documents/models.py:313 msgid "warning" @@ -212,7 +212,7 @@ msgstr "groupe" #: documents/models.py:322 msgid "message" -msgstr "" +msgstr "message" #: documents/models.py:325 msgid "level" @@ -220,13 +220,13 @@ msgstr "niveau" #: documents/models.py:332 msgid "log" -msgstr "rapport" +msgstr "journal" #: documents/models.py:333 msgid "logs" -msgstr "rapports" +msgstr "journaux" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "vue enregistrée" @@ -326,25 +326,33 @@ msgstr "modifié après" msgid "does not have tag" msgstr "ne porte pas d'étiquette" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "ne porte pas de NSA" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "le titre ou le contenu contient" + +#: documents/models.py:400 msgid "rule type" msgstr "type de règle" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "valeur" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "règle de filtrage" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "règles de filtrage" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "Expression régulière incorrecte : %(error)s" #: documents/serialisers.py:177 @@ -396,38 +404,42 @@ msgstr "Mot de passe" msgid "Sign in" msgstr "S'identifier" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "Anglais (US)" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "Anglais (GB)" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "Allemand" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "Néerlandais" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "Français" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "Portugais (Brésil)" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "Italien" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "Roumain" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Russe" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Administration de Paperless-ng" @@ -442,7 +454,7 @@ msgstr "Paperless-ng ne traitera que les courriers qui correspondent à TOUS les #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "" +msgstr "Actions" #: 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." @@ -610,7 +622,7 @@ msgstr "Les pièces jointes en ligne comprennent les images intégrées, il est #: paperless_mail/models.py:159 msgid "action" -msgstr "" +msgstr "action" #: paperless_mail/models.py:165 msgid "action parameter" diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index 29fb985aa..abaaa8a01 100644 --- a/src/locale/hu_HU/LC_MESSAGES/django.po +++ b/src/locale/hu_HU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 20:36\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -19,7 +19,7 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "Dokumentumok" #: documents/models.py:32 msgid "Any word" @@ -35,7 +35,7 @@ msgstr "" #: documents/models.py:35 msgid "Regular expression" -msgstr "" +msgstr "Regexp" #: documents/models.py:36 msgid "Fuzzy word" @@ -43,7 +43,7 @@ msgstr "" #: documents/models.py:37 msgid "Automatic" -msgstr "" +msgstr "Automatikus" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 @@ -226,7 +226,7 @@ msgstr "" msgid "logs" msgstr "" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "" @@ -326,25 +326,33 @@ msgstr "" msgid "does not have tag" msgstr "" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" msgstr "" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "" #: documents/serialisers.py:177 @@ -396,45 +404,49 @@ msgstr "" msgid "Sign in" msgstr "" -#: paperless/settings.py:297 -msgid "English (US)" -msgstr "" - #: paperless/settings.py:298 +msgid "English (US)" +msgstr "Angol (US)" + +#: paperless/settings.py:299 msgid "English (GB)" msgstr "" -#: paperless/settings.py:299 -msgid "German" -msgstr "" - #: paperless/settings.py:300 +msgid "German" +msgstr "Német" + +#: paperless/settings.py:301 msgid "Dutch" msgstr "" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "" +msgstr "Szűrő" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." @@ -442,7 +454,7 @@ msgstr "" #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "" +msgstr "Műveletek" #: 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." @@ -450,7 +462,7 @@ msgstr "" #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Metaadat" #: 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." @@ -534,7 +546,7 @@ msgstr "" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "" +msgstr "Törlés" #: paperless_mail/models.py:88 msgid "Use subject as title" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index 8e9118139..3f6f7fed2 100644 --- a/src/locale/it_IT/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 23:26\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -84,7 +84,7 @@ msgstr "Contrassegna questo tag come tag in arrivo: tutti i documenti elaborati #: documents/models.py:94 msgid "tag" -msgstr "" +msgstr "tag" #: documents/models.py:95 documents/models.py:151 msgid "tags" @@ -124,7 +124,7 @@ msgstr "tipo mime" #: documents/models.py:155 msgid "checksum" -msgstr "" +msgstr "checksum" #: documents/models.py:159 msgid "The checksum of the original document." @@ -188,7 +188,7 @@ msgstr "documenti" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "debug" #: documents/models.py:312 msgid "information" @@ -220,13 +220,13 @@ msgstr "livello" #: documents/models.py:332 msgid "log" -msgstr "" +msgstr "log" #: documents/models.py:333 msgid "logs" msgstr "log" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "vista salvata" @@ -326,25 +326,33 @@ msgstr "modificato dopo" msgid "does not have tag" msgstr "non ha tag" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "non ha ASN" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "il titolo o il contenuto contiene" + +#: documents/models.py:400 msgid "rule type" msgstr "tipo di regola" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "valore" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "regola filtro" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "regole filtro" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "Espressione regolare non valida: %(error)s" #: documents/serialisers.py:177 @@ -390,44 +398,48 @@ msgstr "Nome utente" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "" +msgstr "Password" #: documents/templates/registration/login.html:54 msgid "Sign in" msgstr "Accedi" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "Inglese (US)" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "Inglese (GB)" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "Tedesco" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "Olandese" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "Francese" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "Portoghese (Brasile)" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "Rumeno" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Russo" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Amministrazione di Paperless-ng" @@ -502,7 +514,7 @@ msgstr "nome utente" #: paperless_mail/models.py:50 msgid "password" -msgstr "" +msgstr "password" #: paperless_mail/models.py:60 msgid "mail rule" @@ -566,7 +578,7 @@ msgstr "priorità" #: paperless_mail/models.py:120 msgid "account" -msgstr "" +msgstr "account" #: paperless_mail/models.py:124 msgid "folder" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 7aba94bba..714b01deb 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-08 06:44\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -64,7 +64,7 @@ msgstr "is niet hoofdlettergevoelig" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" -msgstr "" +msgstr "correspondent" #: documents/models.py:75 msgid "correspondents" @@ -124,7 +124,7 @@ msgstr "mimetype" #: documents/models.py:155 msgid "checksum" -msgstr "" +msgstr "checksum" #: documents/models.py:159 msgid "The checksum of the original document." @@ -180,7 +180,7 @@ msgstr "De positie van dit document in je fysieke documentenarchief." #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "document" #: documents/models.py:224 msgid "documents" @@ -188,7 +188,7 @@ msgstr "documenten" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "debug" #: documents/models.py:312 msgid "information" @@ -226,7 +226,7 @@ msgstr "bericht" msgid "logs" msgstr "berichten" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "opgeslagen view" @@ -264,11 +264,11 @@ msgstr "inhoud bevat" #: documents/models.py:372 msgid "ASN is" -msgstr "" +msgstr "ASN is" #: documents/models.py:373 msgid "correspondent is" -msgstr "" +msgstr "correspondent is" #: documents/models.py:374 msgid "document type is" @@ -326,25 +326,33 @@ msgstr "gewijzigd na" msgid "does not have tag" msgstr "heeft geen etiket" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "heeft geen ASN" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "titel of inhoud bevat" + +#: documents/models.py:400 msgid "rule type" msgstr "type regel" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "waarde" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "filterregel" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "filterregels" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere expressie: %(error)s" #: documents/serialisers.py:177 @@ -396,45 +404,49 @@ msgstr "Wachtwoord" msgid "Sign in" msgstr "Aanmelden" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "Engels (US)" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "Engels (Brits)" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "Duits" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "Nederlands" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "Frans" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "Portugees (Brazilië)" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "Italiaans" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "Roemeens" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Russisch" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Paperless-ng administratie" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "" +msgstr "Filter" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." @@ -450,7 +462,7 @@ msgstr "De actie die wordt toegepast op de mail. Deze actie wordt alleen uitgevo #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Metadata" #: 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." @@ -566,7 +578,7 @@ msgstr "volgorde" #: paperless_mail/models.py:120 msgid "account" -msgstr "" +msgstr "account" #: paperless_mail/models.py:124 msgid "folder" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 9f32ecfac..354780b4e 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-08 20:02\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -188,7 +188,7 @@ msgstr "documentos" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "debug" #: documents/models.py:312 msgid "information" @@ -220,13 +220,13 @@ msgstr "nível" #: documents/models.py:332 msgid "log" -msgstr "" +msgstr "log" #: documents/models.py:333 msgid "logs" -msgstr "" +msgstr "logs" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "visualização" @@ -326,25 +326,33 @@ msgstr "modificado depois de" msgid "does not have tag" msgstr "não tem etiqueta" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "título ou conteúdo contém" + +#: documents/models.py:400 msgid "rule type" msgstr "tipo de regra" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "valor" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "regra de filtragem" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "regras de filtragem" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" #: documents/serialisers.py:177 @@ -396,38 +404,42 @@ msgstr "Senha" msgid "Sign in" msgstr "Entrar" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "Inglês (EUA)" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "Inglês (GB)" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "Alemão" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "Holandês" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "Francês" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "Português (Brasil)" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "Romeno" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "Administração do Paperless-ng" @@ -458,7 +470,7 @@ msgstr "Atribua metadados aos documentos consumidos por esta regra automaticamen #: paperless_mail/apps.py:9 msgid "Paperless mail" -msgstr "" +msgstr "Paperless mail" #: paperless_mail/models.py:11 msgid "mail account" diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index df07b0ad6..e015d377d 100644 --- a/src/locale/pt_PT/LC_MESSAGES/django.po +++ b/src/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-08 23:34\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -19,44 +19,44 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "Documentos" #: documents/models.py:32 msgid "Any word" -msgstr "" +msgstr "Qualquer palavra" #: documents/models.py:33 msgid "All words" -msgstr "" +msgstr "Todas as palavras" #: documents/models.py:34 msgid "Exact match" -msgstr "" +msgstr "Detecção exata" #: documents/models.py:35 msgid "Regular expression" -msgstr "" +msgstr "Expressão regular" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "" +msgstr "Palavra difusa (fuzzy)" #: documents/models.py:37 msgid "Automatic" -msgstr "" +msgstr "Automático" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" -msgstr "" +msgstr "nome" #: documents/models.py:45 msgid "match" -msgstr "" +msgstr "correspondência" #: documents/models.py:49 msgid "matching algorithm" -msgstr "" +msgstr "algoritmo correspondente" #: documents/models.py:55 msgid "is insensitive" @@ -64,19 +64,19 @@ msgstr "" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" -msgstr "" +msgstr "correspondente" #: documents/models.py:75 msgid "correspondents" -msgstr "" +msgstr "correspondentes" #: documents/models.py:81 msgid "color" -msgstr "" +msgstr "cor" #: documents/models.py:87 msgid "is inbox tag" -msgstr "" +msgstr "é etiqueta de novo" #: documents/models.py:89 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." @@ -84,35 +84,35 @@ msgstr "" #: documents/models.py:94 msgid "tag" -msgstr "" +msgstr "etiqueta" #: documents/models.py:95 documents/models.py:151 msgid "tags" -msgstr "" +msgstr "etiquetas" #: documents/models.py:101 documents/models.py:133 msgid "document type" -msgstr "" +msgstr "tipo de documento" #: documents/models.py:102 msgid "document types" -msgstr "" +msgstr "tipos de documento" #: documents/models.py:110 msgid "Unencrypted" -msgstr "" +msgstr "Não encriptado" #: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" -msgstr "" +msgstr "Encriptado com GNU Privacy Guard" #: documents/models.py:124 msgid "title" -msgstr "" +msgstr "título" #: documents/models.py:137 msgid "content" -msgstr "" +msgstr "conteúdo" #: documents/models.py:139 msgid "The raw, text-only data of the document. This field is primarily used for searching." @@ -140,23 +140,23 @@ msgstr "" #: documents/models.py:172 documents/models.py:328 msgid "created" -msgstr "" +msgstr "criado" #: documents/models.py:176 msgid "modified" -msgstr "" +msgstr "modificado" #: documents/models.py:180 msgid "storage type" -msgstr "" +msgstr "tipo de armazenamento" #: documents/models.py:188 msgid "added" -msgstr "" +msgstr "adicionado" #: documents/models.py:192 msgid "filename" -msgstr "" +msgstr "nome de ficheiro" #: documents/models.py:198 msgid "Current filename in storage" @@ -180,53 +180,53 @@ msgstr "" #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "documento" #: documents/models.py:224 msgid "documents" -msgstr "" +msgstr "documentos" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "depurar" #: documents/models.py:312 msgid "information" -msgstr "" +msgstr "informação" #: documents/models.py:313 msgid "warning" -msgstr "" +msgstr "aviso" #: documents/models.py:314 msgid "error" -msgstr "" +msgstr "erro" #: documents/models.py:315 msgid "critical" -msgstr "" +msgstr "crítico" #: documents/models.py:319 msgid "group" -msgstr "" +msgstr "grupo" #: documents/models.py:322 msgid "message" -msgstr "" +msgstr "mensagem" #: documents/models.py:325 msgid "level" -msgstr "" +msgstr "nível" #: documents/models.py:332 msgid "log" -msgstr "" +msgstr "registo" #: documents/models.py:333 msgid "logs" -msgstr "" +msgstr "registos" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "" @@ -236,11 +236,11 @@ msgstr "" #: documents/models.py:348 msgid "user" -msgstr "" +msgstr "utilizador" #: documents/models.py:354 msgid "show on dashboard" -msgstr "" +msgstr "exibir no painel de controlo" #: documents/models.py:357 msgid "show in sidebar" @@ -326,25 +326,33 @@ msgstr "" msgid "does not have tag" msgstr "" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" msgstr "" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "" #: documents/serialisers.py:177 @@ -396,38 +404,42 @@ msgstr "" msgid "Sign in" msgstr "" -#: paperless/settings.py:297 -msgid "English (US)" -msgstr "" - #: paperless/settings.py:298 -msgid "English (GB)" -msgstr "" +msgid "English (US)" +msgstr "Inglês (EUA)" #: paperless/settings.py:299 -msgid "German" -msgstr "" +msgid "English (GB)" +msgstr "English (GB)" #: paperless/settings.py:300 -msgid "Dutch" -msgstr "" +msgid "German" +msgstr "Deutsch" #: paperless/settings.py:301 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Nederlandse" #: paperless/settings.py:302 +msgid "French" +msgstr "Français" + +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Russo" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "" @@ -442,7 +454,7 @@ msgstr "" #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "" +msgstr "Ações" #: 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." @@ -450,7 +462,7 @@ msgstr "" #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Metadados" #: 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." @@ -534,7 +546,7 @@ msgstr "" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "" +msgstr "Excluir" #: paperless_mail/models.py:88 msgid "Use subject as title" diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index 7d83eae22..2adfe6f4d 100644 --- a/src/locale/ro_RO/LC_MESSAGES/django.po +++ b/src/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:39\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-08 11:58\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -23,7 +23,7 @@ msgstr "Documente" #: documents/models.py:32 msgid "Any word" -msgstr "Orice cuvant" +msgstr "Orice cuvânt" #: documents/models.py:33 msgid "All words" @@ -31,15 +31,15 @@ msgstr "Toate cuvintele" #: documents/models.py:34 msgid "Exact match" -msgstr "Potrivire exacta" +msgstr "Potrivire exactă" #: documents/models.py:35 msgid "Regular expression" -msgstr "Expresie regulata" +msgstr "Expresie regulată" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "Cuvant neclar" +msgstr "Mod neatent" #: documents/models.py:37 msgid "Automatic" @@ -60,7 +60,7 @@ msgstr "algoritm de potrivire" #: documents/models.py:55 msgid "is insensitive" -msgstr "ignora majusculele" +msgstr "nu ține cont de majuscule" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" @@ -68,7 +68,7 @@ msgstr "corespondent" #: documents/models.py:75 msgid "correspondents" -msgstr "corespondenti" +msgstr "corespondenți" #: documents/models.py:81 msgid "color" @@ -76,15 +76,15 @@ msgstr "culoare" #: documents/models.py:87 msgid "is inbox tag" -msgstr "este eticheta inbox" +msgstr "este etichetă inbox" #: documents/models.py:89 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." -msgstr "Marcheaza aceasta eticheta ca eticheta inbox: Toate documentele nou consumate primesc aceasta eticheta." +msgstr "Marchează aceasta eticheta ca etichetă inbox: Toate documentele nou consumate primesc aceasta eticheta." #: documents/models.py:94 msgid "tag" -msgstr "eticheta" +msgstr "etichetă" #: documents/models.py:95 documents/models.py:151 msgid "tags" @@ -112,19 +112,19 @@ msgstr "titlu" #: documents/models.py:137 msgid "content" -msgstr "continut" +msgstr "conținut" #: documents/models.py:139 msgid "The raw, text-only data of the document. This field is primarily used for searching." -msgstr "Textul brut al documentului. Acest camp este folosit in principal pentru cautare." +msgstr "Textul brut al documentului. Acest camp este folosit in principal pentru căutare." #: documents/models.py:144 msgid "mime type" -msgstr "tip mime" +msgstr "tip MIME" #: documents/models.py:155 msgid "checksum" -msgstr "suma de control" +msgstr "sumă de control" #: documents/models.py:159 msgid "The checksum of the original document." @@ -152,19 +152,19 @@ msgstr "tip de stocare" #: documents/models.py:188 msgid "added" -msgstr "adaugat" +msgstr "adăugat" #: documents/models.py:192 msgid "filename" -msgstr "nume fisier" +msgstr "nume fișier" #: documents/models.py:198 msgid "Current filename in storage" -msgstr "Numele curent al fisierului stocat" +msgstr "Numele curent al fișierului stocat" #: documents/models.py:202 msgid "archive filename" -msgstr "nume fisier arhiva" +msgstr "nume fișier arhiva" #: documents/models.py:208 msgid "Current archive filename in storage" @@ -172,15 +172,15 @@ msgstr "Numele curent al arhivei stocate" #: documents/models.py:212 msgid "archive serial number" -msgstr "numar serial in arhiva" +msgstr "număr serial in arhiva" #: documents/models.py:217 msgid "The position of this document in your physical document archive." -msgstr "Pozitia acestui document in arhiva fizica." +msgstr "Poziția acestui document in arhiva fizica." #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "document" #: documents/models.py:224 msgid "documents" @@ -192,7 +192,7 @@ msgstr "depanare" #: documents/models.py:312 msgid "information" -msgstr "informatii" +msgstr "informații" #: documents/models.py:313 msgid "warning" @@ -226,13 +226,13 @@ msgstr "jurnal" msgid "logs" msgstr "jurnale" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "vizualizare" #: documents/models.py:345 msgid "saved views" -msgstr "vizualizari" +msgstr "vizualizări" #: documents/models.py:348 msgid "user" @@ -240,31 +240,31 @@ msgstr "utilizator" #: documents/models.py:354 msgid "show on dashboard" -msgstr "afiseaza pe tabloul de bord" +msgstr "afișează pe tabloul de bord" #: documents/models.py:357 msgid "show in sidebar" -msgstr "afiseaza in bara laterala" +msgstr "afișează in bara laterala" #: documents/models.py:361 msgid "sort field" -msgstr "sorteaza camp" +msgstr "sortează camp" #: documents/models.py:364 msgid "sort reverse" -msgstr "sorteaza invers" +msgstr "sortează invers" #: documents/models.py:370 msgid "title contains" -msgstr "titlul contine" +msgstr "titlul conține" #: documents/models.py:371 msgid "content contains" -msgstr "continutul contine" +msgstr "conținutul conține" #: documents/models.py:372 msgid "ASN is" -msgstr "ASN-ul este" +msgstr "Avizul prealabil de expediție este" #: documents/models.py:373 msgid "correspondent is" @@ -276,7 +276,7 @@ msgstr "tipul documentului este" #: documents/models.py:375 msgid "is in inbox" -msgstr "este in inbox" +msgstr "este în inbox" #: documents/models.py:376 msgid "has tag" @@ -288,77 +288,85 @@ msgstr "are orice eticheta" #: documents/models.py:378 msgid "created before" -msgstr "creat inainte de" +msgstr "creat înainte de" #: documents/models.py:379 msgid "created after" -msgstr "creat dupa" +msgstr "creat după" #: documents/models.py:380 msgid "created year is" -msgstr "anul crearii este" +msgstr "anul creării este" #: documents/models.py:381 msgid "created month is" -msgstr "luna crearii este" +msgstr "luna creării este" #: documents/models.py:382 msgid "created day is" -msgstr "ziua crearii este" +msgstr "ziua creării este" #: documents/models.py:383 msgid "added before" -msgstr "adaugat inainte de" +msgstr "adăugat înainte de" #: documents/models.py:384 msgid "added after" -msgstr "adaugat dupa" +msgstr "adăugat după" #: documents/models.py:385 msgid "modified before" -msgstr "modificat inainte de" +msgstr "modificat înainte de" #: documents/models.py:386 msgid "modified after" -msgstr "modificat dupa" +msgstr "modificat după" #: documents/models.py:387 msgid "does not have tag" -msgstr "nu are eticheta" +msgstr "nu are etichetă" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "nu are aviz prealabil de expediție" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "titlul sau conținutul conține" + +#: documents/models.py:400 msgid "rule type" msgstr "tip de regula" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "valoare" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" -msgstr "regula de filtrare" +msgstr "regulă de filtrare" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "reguli de filtrare" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" -msgstr "Expresie regulata invalida: %(error)s" +msgid "Invalid regular expression: %(error)s" +msgstr "Expresie regulată invalida: %(error)s" #: documents/serialisers.py:177 msgid "Invalid color." -msgstr "Culoare invalida." +msgstr "Culoare invalidă." #: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" -msgstr "Tip de fisier %(type)s nesuportat " +msgstr "Tip de fișier %(type)s nesuportat" #: documents/templates/index.html:21 msgid "Paperless-ng is loading..." -msgstr "Paperless-ng se incarca..." +msgstr "Paperless-ng se încarca..." #: documents/templates/registration/logged_out.html:13 msgid "Paperless-ng signed out" @@ -366,11 +374,11 @@ msgstr "Paperless-ng s-a deconectat" #: documents/templates/registration/logged_out.html:41 msgid "You have been successfully logged out. Bye!" -msgstr "Ati fost deconectat cu succes. La revedere !" +msgstr "Ați fost deconectat cu succes. La revedere!" #: documents/templates/registration/logged_out.html:42 msgid "Sign in again" -msgstr "Conectati-va din nou" +msgstr "Conectați-vă din nou" #: documents/templates/registration/login.html:13 msgid "Paperless-ng sign in" @@ -378,11 +386,11 @@ msgstr "Conectare Paperless-ng" #: documents/templates/registration/login.html:42 msgid "Please sign in." -msgstr "Va rugam conectati-va." +msgstr "Vă rugăm conectați-vă." #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "Numele si parola nu sunt corecte. Va rugam incercati din nou." +msgstr "Numele si parola nu sunt corecte. Vă rugăm incercați din nou." #: documents/templates/registration/login.html:48 msgid "Username" @@ -390,43 +398,47 @@ msgstr "Nume" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "Parola" +msgstr "Parolă" #: documents/templates/registration/login.html:54 msgid "Sign in" msgstr "Conectare" -#: paperless/settings.py:297 -msgid "English (US)" -msgstr "Engleza (SUA)" - #: paperless/settings.py:298 -msgid "English (GB)" -msgstr "Engleza (UK)" +msgid "English (US)" +msgstr "Engleză (Americană)" #: paperless/settings.py:299 -msgid "German" -msgstr "Germana" +msgid "English (GB)" +msgstr "Engleză (Britanică)" #: paperless/settings.py:300 -msgid "Dutch" -msgstr "Olandeza" +msgid "German" +msgstr "Germană" #: paperless/settings.py:301 -msgid "French" -msgstr "Franceza" +msgid "Dutch" +msgstr "Olandeză" #: paperless/settings.py:302 -msgid "Portuguese (Brazil)" -msgstr "Portugheza (Brazilia)" +msgid "French" +msgstr "Franceză" #: paperless/settings.py:303 -msgid "Italian" -msgstr "Italiana" +msgid "Portuguese (Brazil)" +msgstr "Portugheză (Brazilia)" #: paperless/settings.py:304 +msgid "Italian" +msgstr "Italiană" + +#: paperless/settings.py:305 msgid "Romanian" -msgstr "Romana" +msgstr "Română" + +#: paperless/settings.py:306 +msgid "Russian" +msgstr "Rusă" #: paperless/urls.py:118 msgid "Paperless-ng administration" @@ -438,7 +450,7 @@ msgstr "Filtru" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." -msgstr "Paperless va procesa numai email-urile care se potrivesc cu TOATE filtrele de mai jos." +msgstr "Paperless va procesa doar mail-urile care corespund TUTUROR filtrelor date mai jos." #: paperless_mail/admin.py:37 msgid "Actions" @@ -446,7 +458,7 @@ msgstr "Acțiuni" #: 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 "Actiunea aplicata tuturol email-urilor. Aceasta este realizata doar cand sunt consumate documente din email. Cele fara atasamente nu vor fi procesate." +msgstr "Acțiunea aplicată tuturor email-urilor. Aceasta este realizată doar când sunt consumate documente din email. Cele fara atașamente nu vor fi procesate." #: paperless_mail/admin.py:46 msgid "Metadata" @@ -454,7 +466,7 @@ msgstr "Metadate" #: 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 "Atribuie metadate documentelor consumate prin aceasta regula in mod automat. Chiar daca nu sunt atribuite etichete, tipuri sau corespondenti, Paperless va procesa toate regulile definite care se potrivesc." +msgstr "Atribuie metadate documentelor consumate prin aceasta regula în mod automat. Chiar dacă nu sunt atribuite etichete, tipuri sau corespondenți, Paperless va procesa toate regulile definite care se potrivesc." #: paperless_mail/apps.py:9 msgid "Paperless mail" @@ -470,15 +482,15 @@ msgstr "conturi de email" #: paperless_mail/models.py:19 msgid "No encryption" -msgstr "Fara criptare" +msgstr "Fără criptare" #: paperless_mail/models.py:20 msgid "Use SSL" -msgstr "Foloseste SSL" +msgstr "Folosește SSL" #: paperless_mail/models.py:21 msgid "Use STARTTLS" -msgstr "Foloseste STARTTLS" +msgstr "Folosește STARTTLS" #: paperless_mail/models.py:29 msgid "IMAP server" @@ -490,7 +502,7 @@ msgstr "port IMAP" #: paperless_mail/models.py:36 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." -msgstr "De obicei este 143 pentru conexiuni necriptate si STARTTLS, sau 993 pentru conexiuni SSL." +msgstr "De obicei este 143 pentru conexiuni necriptate și STARTTLS, sau 993 pentru conexiuni SSL." #: paperless_mail/models.py:40 msgid "IMAP security" @@ -502,11 +514,11 @@ msgstr "nume" #: paperless_mail/models.py:50 msgid "password" -msgstr "parola" +msgstr "parolă" #: paperless_mail/models.py:60 msgid "mail rule" -msgstr "regula email" +msgstr "regulă email" #: paperless_mail/models.py:61 msgid "mail rules" @@ -514,35 +526,35 @@ msgstr "reguli email" #: paperless_mail/models.py:67 msgid "Only process attachments." -msgstr "Proceseaza doar atasamentele." +msgstr "Procesează doar atașamentele." #: paperless_mail/models.py:68 msgid "Process all files, including 'inline' attachments." -msgstr "Proceseaza toate fisierele, inclusiv atasamentele \"inline\"." +msgstr "Procesează toate fișierele, inclusiv atașamentele „inline”." #: paperless_mail/models.py:78 msgid "Mark as read, don't process read mails" -msgstr "Marcheaza ca citit, nu procesa email-uri citite" +msgstr "Marchează ca citit, nu procesa email-uri citite" #: paperless_mail/models.py:79 msgid "Flag the mail, don't process flagged mails" -msgstr "Semnalizeaza, nu procesa email-uri semnalizate" +msgstr "Marchează, nu procesa email-uri marcate" #: paperless_mail/models.py:80 msgid "Move to specified folder" -msgstr "Muta in directorul specificat" +msgstr "Mută în directorul specificat" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "Sterge" +msgstr "Șterge" #: paperless_mail/models.py:88 msgid "Use subject as title" -msgstr "Foloseste subiectul ca titlu" +msgstr "Utilizează subiectul ca titlu" #: paperless_mail/models.py:89 msgid "Use attachment filename as title" -msgstr "Foloseste numele atasamentului ca titlu" +msgstr "Utilizează numele fișierului atașat ca titlu" #: paperless_mail/models.py:99 msgid "Do not assign a correspondent" @@ -550,19 +562,19 @@ msgstr "Nu atribui un corespondent" #: paperless_mail/models.py:101 msgid "Use mail address" -msgstr "Foloseste adresa de email" +msgstr "Folosește adresa de email" #: paperless_mail/models.py:103 msgid "Use name (or mail address if not available)" -msgstr "Foloseste numele (daca nu exista, foloseste adresa de email)" +msgstr "Folosește numele (dacă nu exista, folosește adresa de email)" #: paperless_mail/models.py:105 msgid "Use correspondent selected below" -msgstr "Foloseste corespondentul selectat mai jos" +msgstr "Folosește corespondentul selectat mai jos" #: paperless_mail/models.py:113 msgid "order" -msgstr "ordoneaza" +msgstr "ordonează" #: paperless_mail/models.py:120 msgid "account" @@ -574,51 +586,51 @@ msgstr "director" #: paperless_mail/models.py:128 msgid "filter from" -msgstr "filtreaza de la" +msgstr "filtrează de la" #: paperless_mail/models.py:131 msgid "filter subject" -msgstr "filtreaza subiect" +msgstr "filtrează subiect" #: paperless_mail/models.py:134 msgid "filter body" -msgstr "filtreaza corpul email-ului" +msgstr "filtrează corpul email-ului" #: paperless_mail/models.py:138 msgid "filter attachment filename" -msgstr "filtreaza numele atasamentului" +msgstr "filtrează numele fișierului atașat" #: 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 "Consuma doar documentele care se potrivesc in intregime cu acest nume de fisier, daca este specificat. Simbolul * tine locul oricarui sir de caractere. Majusculele nu conteaza." +msgstr "Consumă doar documentele care se potrivesc în întregime cu acest nume de fișier, dacă este specificat. Simbolul * ține locul oricărui șir de caractere. Majusculele nu contează." #: paperless_mail/models.py:146 msgid "maximum age" -msgstr "varsta maxima" +msgstr "vârsta maximă" #: paperless_mail/models.py:148 msgid "Specified in days." -msgstr "Specificata in zile." +msgstr "Specificată in zile." #: paperless_mail/models.py:151 msgid "attachment type" -msgstr "tipul atasamentului" +msgstr "tip atașament" #: paperless_mail/models.py:154 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "Atasamentele \"inline\" includ si imaginile incorporate, deci aceasta optiune functioneaza cel mai bine combinata cu un filtru pentru numele fisierului." +msgstr "Atașamentele \"inline\" includ și imaginile încorporate, deci această opțiune funcționează cel mai bine combinată cu un filtru pentru numele fișierului." #: paperless_mail/models.py:159 msgid "action" -msgstr "actiune" +msgstr "acţiune" #: paperless_mail/models.py:165 msgid "action parameter" -msgstr "parametru al actiunii" +msgstr "parametru acțiune" #: 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 "Parametru aditional pentru actiunea definita mai sus (ex. directorul in care sa se realizeze o mutare)" +msgstr "Parametru adițional pentru acțiunea definită mai sus (ex. directorul în care să se realizeze o mutare)." #: paperless_mail/models.py:173 msgid "assign title from" @@ -626,7 +638,7 @@ msgstr "atribuie titlu din" #: paperless_mail/models.py:183 msgid "assign this tag" -msgstr "atribuie aceasta eticheta" +msgstr "atribuie această etichetă" #: paperless_mail/models.py:191 msgid "assign this document type" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index b6d2b89f3..8f84da8c5 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 21:35\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -19,624 +19,636 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "Документы" #: documents/models.py:32 msgid "Any word" -msgstr "" +msgstr "Любые слова" #: documents/models.py:33 msgid "All words" -msgstr "" +msgstr "Все слова" #: documents/models.py:34 msgid "Exact match" -msgstr "" +msgstr "Точное соответствие" #: documents/models.py:35 msgid "Regular expression" -msgstr "" +msgstr "Регулярное выражение" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "" +msgstr "\"Нечёткий\" режим" #: documents/models.py:37 msgid "Automatic" -msgstr "" +msgstr "Автоматически" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" -msgstr "" +msgstr "имя" #: documents/models.py:45 msgid "match" -msgstr "" +msgstr "соответствие" #: documents/models.py:49 msgid "matching algorithm" -msgstr "" +msgstr "алгоритм сопоставления" #: documents/models.py:55 msgid "is insensitive" -msgstr "" +msgstr "без учёта регистра" #: documents/models.py:74 documents/models.py:120 msgid "correspondent" -msgstr "" +msgstr "корреспондент" #: documents/models.py:75 msgid "correspondents" -msgstr "" +msgstr "корреспонденты" #: documents/models.py:81 msgid "color" -msgstr "" +msgstr "цвет" #: documents/models.py:87 msgid "is inbox tag" -msgstr "" +msgstr "это входящий тег" #: documents/models.py:89 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." -msgstr "" +msgstr "Отметить этот тег как «Входящий»: все вновь добавленные документы будут помечены тегами «Входящие»." #: documents/models.py:94 msgid "tag" -msgstr "" +msgstr "тег" #: documents/models.py:95 documents/models.py:151 msgid "tags" -msgstr "" +msgstr "теги" #: documents/models.py:101 documents/models.py:133 msgid "document type" -msgstr "" +msgstr "тип документа" #: documents/models.py:102 msgid "document types" -msgstr "" +msgstr "типы документов" #: documents/models.py:110 msgid "Unencrypted" -msgstr "" +msgstr "не зашифровано" #: documents/models.py:111 msgid "Encrypted with GNU Privacy Guard" -msgstr "" +msgstr "Зашифровано с помощью GNU Privacy Guard" #: documents/models.py:124 msgid "title" -msgstr "" +msgstr "заголовок" #: documents/models.py:137 msgid "content" -msgstr "" +msgstr "содержимое" #: documents/models.py:139 msgid "The raw, text-only data of the document. This field is primarily used for searching." -msgstr "" +msgstr "Это поле используется в основном для поиска." #: documents/models.py:144 msgid "mime type" -msgstr "" +msgstr "тип Mime" #: documents/models.py:155 msgid "checksum" -msgstr "" +msgstr "контрольная сумма" #: documents/models.py:159 msgid "The checksum of the original document." -msgstr "" +msgstr "Контрольная сумма оригинального документа." #: documents/models.py:163 msgid "archive checksum" -msgstr "" +msgstr "контрольная сумма архива" #: documents/models.py:168 msgid "The checksum of the archived document." -msgstr "" +msgstr "Контрольная сумма архивного документа." #: documents/models.py:172 documents/models.py:328 msgid "created" -msgstr "" +msgstr "создано" #: documents/models.py:176 msgid "modified" -msgstr "" +msgstr "изменено" #: documents/models.py:180 msgid "storage type" -msgstr "" +msgstr "тип хранилища" #: documents/models.py:188 msgid "added" -msgstr "" +msgstr "добавлено" #: documents/models.py:192 msgid "filename" -msgstr "" +msgstr "имя файла" #: documents/models.py:198 msgid "Current filename in storage" -msgstr "" +msgstr "Текущее имя файла в хранилище" #: documents/models.py:202 msgid "archive filename" -msgstr "" +msgstr "имя файла архива" #: documents/models.py:208 msgid "Current archive filename in storage" -msgstr "" +msgstr "Текущее имя файла архива в хранилище" #: documents/models.py:212 msgid "archive serial number" -msgstr "" +msgstr "архивный номер (АН)" #: documents/models.py:217 msgid "The position of this document in your physical document archive." -msgstr "" +msgstr "Позиция этого документа в вашем физическом архиве документов." #: documents/models.py:223 msgid "document" -msgstr "" +msgstr "документ" #: documents/models.py:224 msgid "documents" -msgstr "" +msgstr "документы" #: documents/models.py:311 msgid "debug" -msgstr "" +msgstr "отладка" #: documents/models.py:312 msgid "information" -msgstr "" +msgstr "информация" #: documents/models.py:313 msgid "warning" -msgstr "" +msgstr "предупреждение" #: documents/models.py:314 msgid "error" -msgstr "" +msgstr "ошибка" #: documents/models.py:315 msgid "critical" -msgstr "" +msgstr "критическая" #: documents/models.py:319 msgid "group" -msgstr "" +msgstr "группа" #: documents/models.py:322 msgid "message" -msgstr "" +msgstr "сообщение" #: documents/models.py:325 msgid "level" -msgstr "" +msgstr "уровень" #: documents/models.py:332 msgid "log" -msgstr "" +msgstr "журнал" #: documents/models.py:333 msgid "logs" -msgstr "" +msgstr "логи" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" -msgstr "" +msgstr "сохранённое представление" #: documents/models.py:345 msgid "saved views" -msgstr "" +msgstr "сохраненные представления" #: documents/models.py:348 msgid "user" -msgstr "" +msgstr "пользователь" #: documents/models.py:354 msgid "show on dashboard" -msgstr "" +msgstr "показать на панели" #: documents/models.py:357 msgid "show in sidebar" -msgstr "" +msgstr "показать в боковой панели" #: documents/models.py:361 msgid "sort field" -msgstr "" +msgstr "Поле сортировки" #: documents/models.py:364 msgid "sort reverse" -msgstr "" +msgstr "обратная сортировка" #: documents/models.py:370 msgid "title contains" -msgstr "" +msgstr "заголовок содержит" #: documents/models.py:371 msgid "content contains" -msgstr "" +msgstr "содержимое содержит" #: documents/models.py:372 msgid "ASN is" -msgstr "" +msgstr "АН" #: documents/models.py:373 msgid "correspondent is" -msgstr "" +msgstr "корреспондент" #: documents/models.py:374 msgid "document type is" -msgstr "" +msgstr "тип документа" #: documents/models.py:375 msgid "is in inbox" -msgstr "" +msgstr "во входящих" #: documents/models.py:376 msgid "has tag" -msgstr "" +msgstr "есть тег" #: documents/models.py:377 msgid "has any tag" -msgstr "" +msgstr "есть любой тег" #: documents/models.py:378 msgid "created before" -msgstr "" +msgstr "создан до" #: documents/models.py:379 msgid "created after" -msgstr "" +msgstr "создан после" #: documents/models.py:380 msgid "created year is" -msgstr "" +msgstr "год создания" #: documents/models.py:381 msgid "created month is" -msgstr "" +msgstr "месяц создания" #: documents/models.py:382 msgid "created day is" -msgstr "" +msgstr "день создания" #: documents/models.py:383 msgid "added before" -msgstr "" +msgstr "добавлен до" #: documents/models.py:384 msgid "added after" -msgstr "" +msgstr "добавлен после" #: documents/models.py:385 msgid "modified before" -msgstr "" +msgstr "изменен до" #: documents/models.py:386 msgid "modified after" -msgstr "" +msgstr "изменен после" #: documents/models.py:387 msgid "does not have tag" +msgstr "не имеет тега" + +#: documents/models.py:388 +msgid "does not have ASN" msgstr "" -#: documents/models.py:398 +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" -msgstr "" +msgstr "Тип правила" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" -msgstr "" +msgstr "значение" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" -msgstr "" +msgstr "Правило фильтрации" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" -msgstr "" +msgstr "правила фильтрации" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" -msgstr "" +msgid "Invalid regular expression: %(error)s" +msgstr "неверное регулярное выражение: %(error)s" #: documents/serialisers.py:177 msgid "Invalid color." -msgstr "" +msgstr "Неверный цвет." #: documents/serialisers.py:451 #, python-format msgid "File type %(type)s not supported" -msgstr "" +msgstr "Тип файла %(type)s не поддерживается" #: documents/templates/index.html:21 msgid "Paperless-ng is loading..." -msgstr "" +msgstr "Paperless-ng загружается..." #: documents/templates/registration/logged_out.html:13 msgid "Paperless-ng signed out" -msgstr "" +msgstr "Выполнен выход из Paperless-ng" #: documents/templates/registration/logged_out.html:41 msgid "You have been successfully logged out. Bye!" -msgstr "" +msgstr "Вы успешно вышли из системы. До свидания!" #: documents/templates/registration/logged_out.html:42 msgid "Sign in again" -msgstr "" +msgstr "Войти снова" #: documents/templates/registration/login.html:13 msgid "Paperless-ng sign in" -msgstr "" +msgstr "Выполнен выход в Paperless-ng" #: documents/templates/registration/login.html:42 msgid "Please sign in." -msgstr "" +msgstr "Пожалуйста, войдите." #: documents/templates/registration/login.html:45 msgid "Your username and password didn't match. Please try again." -msgstr "" +msgstr "Неправильные имя пользователя или пароль! Попробуйте еще раз." #: documents/templates/registration/login.html:48 msgid "Username" -msgstr "" +msgstr "Имя пользователя" #: documents/templates/registration/login.html:49 msgid "Password" -msgstr "" +msgstr "Пароль" #: documents/templates/registration/login.html:54 msgid "Sign in" -msgstr "" - -#: paperless/settings.py:297 -msgid "English (US)" -msgstr "" +msgstr "Вход" #: paperless/settings.py:298 -msgid "English (GB)" -msgstr "" +msgid "English (US)" +msgstr "Английский (США)" #: paperless/settings.py:299 -msgid "German" -msgstr "" +msgid "English (GB)" +msgstr "Английский (Великобритании)" #: paperless/settings.py:300 -msgid "Dutch" -msgstr "" +msgid "German" +msgstr "Немецкий" #: paperless/settings.py:301 -msgid "French" -msgstr "" +msgid "Dutch" +msgstr "Датский" #: paperless/settings.py:302 -msgid "Portuguese (Brazil)" -msgstr "" +msgid "French" +msgstr "Французский" #: paperless/settings.py:303 -msgid "Italian" -msgstr "" +msgid "Portuguese (Brazil)" +msgstr "Portuguese (Brazil)" #: paperless/settings.py:304 +msgid "Italian" +msgstr "Italian" + +#: paperless/settings.py:305 msgid "Romanian" +msgstr "Romanian" + +#: paperless/settings.py:306 +msgid "Russian" msgstr "" #: paperless/urls.py:118 msgid "Paperless-ng administration" -msgstr "" +msgstr "Администрирование Paperless-ng" #: paperless_mail/admin.py:25 msgid "Filter" -msgstr "" +msgstr "Фильтр" #: paperless_mail/admin.py:27 msgid "Paperless will only process mails that match ALL of the filters given below." -msgstr "" +msgstr "Paperless будет обрабатывать только те письма, которые соответствуют всем фильтрам, указанным ниже." #: paperless_mail/admin.py:37 msgid "Actions" -msgstr "" +msgstr "Действия" #: 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 "" +msgstr "Действие применено к письму. Это действие применяется только при обработке документов из почты. Сообщения без вложений не обрабатываются." #: paperless_mail/admin.py:46 msgid "Metadata" -msgstr "" +msgstr "Метаданные" #: 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 "" +msgstr "Автоматически назначать метаданные документам, полученным из этого правила. Если вы не назначаете здесь теги, типы или корреспонденты, paperless все равно будут обрабатывать все соответствующие правила, которые вы определили." #: paperless_mail/apps.py:9 msgid "Paperless mail" -msgstr "" +msgstr "Безбумажная почта" #: paperless_mail/models.py:11 msgid "mail account" -msgstr "" +msgstr "почтовый ящик" #: paperless_mail/models.py:12 msgid "mail accounts" -msgstr "" +msgstr "Почтовые ящики" #: paperless_mail/models.py:19 msgid "No encryption" -msgstr "" +msgstr "Без шифрования" #: paperless_mail/models.py:20 msgid "Use SSL" -msgstr "" +msgstr "Использовать SSL" #: paperless_mail/models.py:21 msgid "Use STARTTLS" -msgstr "" +msgstr "Использовать STARTTLS" #: paperless_mail/models.py:29 msgid "IMAP server" -msgstr "" +msgstr "Сервер IMAP" #: paperless_mail/models.py:33 msgid "IMAP port" -msgstr "" +msgstr "Порт IMAP" #: paperless_mail/models.py:36 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." -msgstr "" +msgstr "Обычно это 143 для нешифрованных и STARTTLS соединений и 993 для SSL-соединений." #: paperless_mail/models.py:40 msgid "IMAP security" -msgstr "" +msgstr "Безопасность IMAP" #: paperless_mail/models.py:46 msgid "username" -msgstr "" +msgstr "Имя пользователя" #: paperless_mail/models.py:50 msgid "password" -msgstr "" +msgstr "пароль" #: paperless_mail/models.py:60 msgid "mail rule" -msgstr "" +msgstr "правило почты" #: paperless_mail/models.py:61 msgid "mail rules" -msgstr "" +msgstr "правила почты" #: paperless_mail/models.py:67 msgid "Only process attachments." -msgstr "" +msgstr "Обрабатывать только вложения." #: paperless_mail/models.py:68 msgid "Process all files, including 'inline' attachments." -msgstr "" +msgstr "Обрабатывать все файлы, включая 'встроенные' вложения." #: paperless_mail/models.py:78 msgid "Mark as read, don't process read mails" -msgstr "" +msgstr "Пометить как прочитанное, не обрабатывать прочитанные письма" #: paperless_mail/models.py:79 msgid "Flag the mail, don't process flagged mails" -msgstr "" +msgstr "Пометить почту, не обрабатывать помеченные письма" #: paperless_mail/models.py:80 msgid "Move to specified folder" -msgstr "" +msgstr "Переместить в указанную папку" #: paperless_mail/models.py:81 msgid "Delete" -msgstr "" +msgstr "Удалить" #: paperless_mail/models.py:88 msgid "Use subject as title" -msgstr "" +msgstr "Тема в качестве заголовка" #: paperless_mail/models.py:89 msgid "Use attachment filename as title" -msgstr "" +msgstr "Использовать имя вложенного файла как заголовок" #: paperless_mail/models.py:99 msgid "Do not assign a correspondent" -msgstr "" +msgstr "Не назначать корреспондента" #: paperless_mail/models.py:101 msgid "Use mail address" -msgstr "" +msgstr "Использовать email адрес" #: paperless_mail/models.py:103 msgid "Use name (or mail address if not available)" -msgstr "" +msgstr "Использовать имя (или адрес электронной почты, если недоступно)" #: paperless_mail/models.py:105 msgid "Use correspondent selected below" -msgstr "" +msgstr "Использовать корреспондента, выбранного ниже" #: paperless_mail/models.py:113 msgid "order" -msgstr "" +msgstr "порядок" #: paperless_mail/models.py:120 msgid "account" -msgstr "" +msgstr "Учётная запись" #: paperless_mail/models.py:124 msgid "folder" -msgstr "" +msgstr "каталог" #: paperless_mail/models.py:128 msgid "filter from" -msgstr "" +msgstr "фильтр по отправителю" #: paperless_mail/models.py:131 msgid "filter subject" -msgstr "" +msgstr "фильтр по теме" #: paperless_mail/models.py:134 msgid "filter body" -msgstr "" +msgstr "фильтр по тексту сообщения" #: paperless_mail/models.py:138 msgid "filter attachment filename" -msgstr "" +msgstr "фильтр по имени вложения" #: 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 "" +msgstr "Обрабатывать только документы, которые полностью совпадают с именем файла (если оно указано). Маски, например *.pdf или *счет*, разрешены. Без учёта регистра." #: paperless_mail/models.py:146 msgid "maximum age" -msgstr "" +msgstr "Максимальный возраст" #: paperless_mail/models.py:148 msgid "Specified in days." -msgstr "" +msgstr "Указывается в днях." #: paperless_mail/models.py:151 msgid "attachment type" -msgstr "" +msgstr "Тип вложения" #: paperless_mail/models.py:154 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "" +msgstr "Вложенные вложения включая встраиваемые изображения. Лучше совместить эту опцию с фильтром по имени вложения." #: paperless_mail/models.py:159 msgid "action" -msgstr "" +msgstr "действие" #: paperless_mail/models.py:165 msgid "action parameter" -msgstr "" +msgstr "параметр действия" #: 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 "" +msgstr "Дополнительный параметр для выбранного действия, например целевой каталог для действия \"переместить в каталог\"." #: paperless_mail/models.py:173 msgid "assign title from" -msgstr "" +msgstr "назначить заголовок из" #: paperless_mail/models.py:183 msgid "assign this tag" -msgstr "" +msgstr "назначить этот тег" #: paperless_mail/models.py:191 msgid "assign this document type" -msgstr "" +msgstr "назначить этот тип документа" #: paperless_mail/models.py:195 msgid "assign correspondent from" -msgstr "" +msgstr "назначить корреспондента из" #: paperless_mail/models.py:205 msgid "assign this correspondent" -msgstr "" +msgstr "назначить этого корреспондента" diff --git a/src/locale/xh_ZA/LC_MESSAGES/django.po b/src/locale/xh_ZA/LC_MESSAGES/django.po index 3939f9d52..b43006137 100644 --- a/src/locale/xh_ZA/LC_MESSAGES/django.po +++ b/src/locale/xh_ZA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:39\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 20:36\n" "Last-Translator: \n" "Language-Team: Xhosa\n" "Language: xh_ZA\n" @@ -226,7 +226,7 @@ msgstr "crwdns2628:0crwdne2628:0" msgid "logs" msgstr "crwdns2630:0crwdne2630:0" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "crwdns2632:0crwdne2632:0" @@ -326,26 +326,34 @@ msgstr "crwdns2678:0crwdne2678:0" msgid "does not have tag" msgstr "crwdns2680:0crwdne2680:0" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "crwdns3408:0crwdne3408:0" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "crwdns3410:0crwdne3410:0" + +#: documents/models.py:400 msgid "rule type" msgstr "crwdns2682:0crwdne2682:0" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "crwdns2684:0crwdne2684:0" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "crwdns2686:0crwdne2686:0" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "crwdns2688:0crwdne2688:0" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" -msgstr "crwdns2690:0%(error)scrwdne2690:0" +msgid "Invalid regular expression: %(error)s" +msgstr "crwdns3412:0%(error)scrwdne3412:0" #: documents/serialisers.py:177 msgid "Invalid color." @@ -396,38 +404,42 @@ msgstr "crwdns2712:0crwdne2712:0" msgid "Sign in" msgstr "crwdns2714:0crwdne2714:0" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "crwdns2716:0crwdne2716:0" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "crwdns2718:0crwdne2718:0" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "crwdns2720:0crwdne2720:0" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "crwdns2722:0crwdne2722:0" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "crwdns2724:0crwdne2724:0" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "crwdns2726:0crwdne2726:0" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "crwdns2728:0crwdne2728:0" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "crwdns2730:0crwdne2730:0" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "crwdns3414:0crwdne3414:0" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "crwdns2732:0crwdne2732:0" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index 3d6513cbb..254b75843 100644 --- a/src/locale/zh_CN/LC_MESSAGES/django.po +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ng\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-02-28 12:40+0100\n" -"PO-Revision-Date: 2021-03-06 21:40\n" +"POT-Creation-Date: 2021-03-07 21:34+0100\n" +"PO-Revision-Date: 2021-03-07 20:36\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -19,44 +19,44 @@ msgstr "" #: documents/apps.py:10 msgid "Documents" -msgstr "" +msgstr "文件" #: documents/models.py:32 msgid "Any word" -msgstr "" +msgstr "任何词" #: documents/models.py:33 msgid "All words" -msgstr "" +msgstr "所有词" #: documents/models.py:34 msgid "Exact match" -msgstr "" +msgstr "完全符合" #: documents/models.py:35 msgid "Regular expression" -msgstr "" +msgstr "正则表达式" #: documents/models.py:36 msgid "Fuzzy word" -msgstr "" +msgstr "模糊词汇" #: documents/models.py:37 msgid "Automatic" -msgstr "" +msgstr "自动" #: documents/models.py:41 documents/models.py:350 paperless_mail/models.py:25 #: paperless_mail/models.py:109 msgid "name" -msgstr "" +msgstr "名字" #: documents/models.py:45 msgid "match" -msgstr "" +msgstr "配对" #: documents/models.py:49 msgid "matching algorithm" -msgstr "" +msgstr "配对算法" #: documents/models.py:55 msgid "is insensitive" @@ -226,7 +226,7 @@ msgstr "" msgid "logs" msgstr "" -#: documents/models.py:344 documents/models.py:394 +#: documents/models.py:344 documents/models.py:396 msgid "saved view" msgstr "" @@ -326,25 +326,33 @@ msgstr "" msgid "does not have tag" msgstr "" -#: documents/models.py:398 +#: documents/models.py:388 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:389 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:400 msgid "rule type" msgstr "" -#: documents/models.py:402 +#: documents/models.py:404 msgid "value" msgstr "" -#: documents/models.py:408 +#: documents/models.py:410 msgid "filter rule" msgstr "" -#: documents/models.py:409 +#: documents/models.py:411 msgid "filter rules" msgstr "" #: documents/serialisers.py:53 #, python-format -msgid "Invalid regular expresssion: %(error)s" +msgid "Invalid regular expression: %(error)s" msgstr "" #: documents/serialisers.py:177 @@ -396,38 +404,42 @@ msgstr "" msgid "Sign in" msgstr "" -#: paperless/settings.py:297 +#: paperless/settings.py:298 msgid "English (US)" msgstr "" -#: paperless/settings.py:298 +#: paperless/settings.py:299 msgid "English (GB)" msgstr "" -#: paperless/settings.py:299 +#: paperless/settings.py:300 msgid "German" msgstr "" -#: paperless/settings.py:300 +#: paperless/settings.py:301 msgid "Dutch" msgstr "" -#: paperless/settings.py:301 +#: paperless/settings.py:302 msgid "French" msgstr "" -#: paperless/settings.py:302 +#: paperless/settings.py:303 msgid "Portuguese (Brazil)" msgstr "" -#: paperless/settings.py:303 +#: paperless/settings.py:304 msgid "Italian" msgstr "" -#: paperless/settings.py:304 +#: paperless/settings.py:305 msgid "Romanian" msgstr "" +#: paperless/settings.py:306 +msgid "Russian" +msgstr "" + #: paperless/urls.py:118 msgid "Paperless-ng administration" msgstr "" diff --git a/src/paperless/checks.py b/src/paperless/checks.py index df4d45e38..0d11d8a90 100644 --- a/src/paperless/checks.py +++ b/src/paperless/checks.py @@ -1,5 +1,6 @@ import os import shutil +import stat from django.conf import settings from django.core.checks import Error, Warning, register @@ -16,16 +17,25 @@ writeable_hint = ( def path_check(var, directory): messages = [] if directory: - if not os.path.exists(directory): + if not os.path.isdir(directory): messages.append(Error( exists_message.format(var), exists_hint.format(directory) )) - elif not os.access(directory, os.W_OK | os.X_OK): - messages.append(Warning( - writeable_message.format(var), - writeable_hint.format(directory) - )) + else: + test_file = os.path.join(directory, '__paperless_write_test__') + try: + open(test_file, 'w') + except PermissionError: + messages.append(Error( + writeable_message.format(var), + writeable_hint.format( + f'\n{stat.filemode(os.stat(directory).st_mode)} ' + f'{directory}\n') + )) + else: + os.remove(test_file) + return messages diff --git a/src/paperless/settings.py b/src/paperless/settings.py index f57be3b6d..909a38a84 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -302,7 +302,8 @@ LANGUAGES = [ ("fr-fr", _("French")), ("pt-br", _("Portuguese (Brazil)")), ("it-it", _("Italian")), - ("ro-ro", _("Romanian")) + ("ro-ro", _("Romanian")), + ("ru-ru", _("Russian")) ] LOCALE_PATHS = [