diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html index 540429e89..0ae3009ea 100644 --- a/src-ui/src/app/components/common/input/select/select.component.html +++ b/src-ui/src/app/components/common/input/select/select.component.html @@ -1,33 +1,36 @@
-
- - - -
- +
+ + +
+ +
-
{{hint}} Suggestions:  {{s.name}}  - - + +
diff --git a/src-ui/src/app/components/common/input/select/select.component.ts b/src-ui/src/app/components/common/input/select/select.component.ts index e02aaab72..921e3606c 100644 --- a/src-ui/src/app/components/common/input/select/select.component.ts +++ b/src-ui/src/app/components/common/input/select/select.component.ts @@ -16,6 +16,7 @@ export class SelectComponent extends AbstractInputComponent { constructor() { super() + this.addItemRef = this.addItem.bind(this) } @Input() @@ -34,9 +35,13 @@ export class SelectComponent extends AbstractInputComponent { suggestions: number[] @Output() - createNew = new EventEmitter() + createNew = new EventEmitter() - showPlusButton(): boolean { + public addItemRef: (name) => void + + private _lastSearchTerm: string + + get allowCreateNew(): boolean { return this.createNew.observers.length > 0 } @@ -48,4 +53,29 @@ export class SelectComponent extends AbstractInputComponent { } } + addItem(name: string) { + if (name) this.createNew.next(name) + else this.createNew.next(this._lastSearchTerm) + this.clearLastSearchTerm() + } + + clickNew() { + this.createNew.next(this._lastSearchTerm) + this.clearLastSearchTerm() + } + + clearLastSearchTerm() { + this._lastSearchTerm = null + } + + onSearch($event) { + this._lastSearchTerm = $event.term + } + + onBlur() { + setTimeout(() => { + this.clearLastSearchTerm() + }, 3000); + } + } diff --git a/src-ui/src/app/components/common/input/tags/tags.component.html b/src-ui/src/app/components/common/input/tags/tags.component.html index 677b9f4d1..72c2cf1a5 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.html +++ b/src-ui/src/app/components/common/input/tags/tags.component.html @@ -7,8 +7,13 @@ [closeOnSelect]="false" [clearSearchOnAdd]="true" [hideSelected]="true" + [addTag]="createTagRef" + addTagText="Add tag" (change)="onChange(value)" - (blur)="onTouched()"> + (search)="onSearch($event)" + (focus)="clearLastSearchTerm()" + (clear)="clearLastSearchTerm()" + (blur)="onBlur()"> @@ -39,8 +44,8 @@ {{tag.name}}  - - + +
diff --git a/src-ui/src/app/components/common/input/tags/tags.component.ts b/src-ui/src/app/components/common/input/tags/tags.component.ts index f77d0570d..8db444ba3 100644 --- a/src-ui/src/app/components/common/input/tags/tags.component.ts +++ b/src-ui/src/app/components/common/input/tags/tags.component.ts @@ -17,8 +17,9 @@ import { TagService } from 'src/app/services/rest/tag.service'; }) export class TagsComponent implements OnInit, ControlValueAccessor { - constructor(private tagService: TagService, private modalService: NgbModal) { } - + constructor(private tagService: TagService, private modalService: NgbModal) { + this.createTagRef = this.createTag.bind(this) + } onChange = (newValue: number[]) => {}; @@ -56,6 +57,10 @@ export class TagsComponent implements OnInit, ControlValueAccessor { tags: PaperlessTag[] + public createTagRef: (name) => void + + private _lastSearchTerm: string + getTag(id) { if (this.tags) { return this.tags.find(tag => tag.id == id) @@ -74,9 +79,11 @@ export class TagsComponent implements OnInit, ControlValueAccessor { } } - createTag() { + createTag(name: string = null) { var modal = this.modalService.open(TagEditDialogComponent, {backdrop: 'static'}) modal.componentInstance.dialogMode = 'create' + if (name) modal.componentInstance.object = { name: name } + else if (this._lastSearchTerm) modal.componentInstance.object = { name: this._lastSearchTerm } modal.componentInstance.success.subscribe(newTag => { this.tagService.listAll().subscribe(tags => { this.tags = tags.results @@ -99,4 +106,18 @@ export class TagsComponent implements OnInit, ControlValueAccessor { this.onChange(this.value) } + clearLastSearchTerm() { + this._lastSearchTerm = null + } + + onSearch($event) { + this._lastSearchTerm = $event.term + } + + onBlur() { + setTimeout(() => { + this.clearLastSearchTerm() + }, 3000); + } + } diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html index f9b87aee3..1286225fb 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.html +++ b/src-ui/src/app/components/document-detail/document-detail.component.html @@ -60,9 +60,9 @@ + (createNew)="createCorrespondent($event)" [suggestions]="suggestions?.correspondents"> + (createNew)="createDocumentType($event)" [suggestions]="suggestions?.document_types"> diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index fee707b22..493e61d35 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -128,9 +128,10 @@ export class DocumentDetailComponent implements OnInit { this.documentForm.patchValue(doc) } - createDocumentType() { + createDocumentType(newName: string) { var modal = this.modalService.open(DocumentTypeEditDialogComponent, {backdrop: 'static'}) modal.componentInstance.dialogMode = 'create' + if (newName) modal.componentInstance.object = { name: newName } modal.componentInstance.success.subscribe(newDocumentType => { this.documentTypeService.listAll().subscribe(documentTypes => { this.documentTypes = documentTypes.results @@ -139,9 +140,10 @@ export class DocumentDetailComponent implements OnInit { }) } - createCorrespondent() { + createCorrespondent(newName: string) { var modal = this.modalService.open(CorrespondentEditDialogComponent, {backdrop: 'static'}) modal.componentInstance.dialogMode = 'create' + if (newName) modal.componentInstance.object = { name: newName } modal.componentInstance.success.subscribe(newCorrespondent => { this.correspondentService.listAll().subscribe(correspondents => { this.correspondents = correspondents.results diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index c24654569..335046a73 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Dokumenty @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 View "" saved successfully. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 View "" created successfully. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondent @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Title @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Document type @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Created @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Added @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirm delete @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Do you really want to delete document ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 The files for this document will be deleted permanently. This operation cannot be undone. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Delete document @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Error deleting document: @@ -1042,54 +1042,6 @@ Edit document type - - Search results - - src/app/components/search/search.component.html - 1 - - Search results - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Invalid search query: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Showing documents similar to - - - Search query: - - src/app/components/search/search.component.html - 9 - - Search query: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Did you mean ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - Paperless-ng @@ -1187,35 +1139,11 @@ Close all - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Title - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondent: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Without correspondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Type: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Without document type @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Tag: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Without any tag @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Title: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Title & content + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Score: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Invalid date. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 1d7a3e918..9047251ef 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Dokumente @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Ansicht "" erfolgreich gespeichert. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Ansicht "" erfolgreich erstellt. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Korrespondent @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Titel @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Dokumenttyp @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Ausgestellt @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Hinzugefügt @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Löschen bestätigen @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Möchten Sie das Dokument "" wirklich löschen? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Dokument löschen @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Fehler beim Löschen des Dokuments: @@ -1042,54 +1042,6 @@ Dokumenttyp bearbeiten - - Search results - - src/app/components/search/search.component.html - 1 - - Suchergebnisse - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Ungültige Suchanfrage: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Zeige ähnliche Dokumente zu - - - Search query: - - src/app/components/search/search.component.html - 9 - - Suchanfrage: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Meinten Sie ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Keine Ergebnisse} =1 {Ein Ergebnis} other { Ergebnisse}} - Paperless-ng @@ -1187,35 +1139,11 @@ Alle schließen - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Titel - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Korrespondent: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Ohne Korrespondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Typ: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Ohne Dokumenttyp @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Tag: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Ohne Tag @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Titel: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Titel + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Titel & Inhalt + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Erweiterte Suche + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + Ähnlich zu + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Relevanz: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Ausgestellt: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Hinzugefügt: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Geändert: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Ungültiges Datum. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Dokument mit ASN wird gesucht + Yes diff --git a/src-ui/src/locale/messages.en_GB.xlf b/src-ui/src/locale/messages.en_GB.xlf index 060411de2..a8d967b9e 100644 --- a/src-ui/src/locale/messages.en_GB.xlf +++ b/src-ui/src/locale/messages.en_GB.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documents @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 View "" saved successfully. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 View "" created successfully. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondent @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Title @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Document type @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Created @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Added @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirm delete @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Do you really want to delete document ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 The files for this document will be deleted permanently. This operation cannot be undone. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Delete document @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Error deleting document: @@ -1042,54 +1042,6 @@ Edit document type - - Search results - - src/app/components/search/search.component.html - 1 - - Search results - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Invalid search query: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Showing documents similar to - - - Search query: - - src/app/components/search/search.component.html - 9 - - Search query: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Did you mean ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - Paperless-ng @@ -1187,35 +1139,11 @@ Close all - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Title - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondent: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Without correspondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Type: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Without document type @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Tag: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Without any tag @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Title: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Title & content + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Score: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Invalid date. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index b743b8a83..f0ba5e8a6 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documentos @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Ver "" guardado satisfactoriamente. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Ver "" creado satisfactoriamente. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 NSA @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Tipo de documento @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Título @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Tipo de documento @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Creado @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Aggregado @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirmar borrado @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 ¿Estás seguro de querer borrar el documento ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Borrar documento @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Error borrando el documento: @@ -1042,54 +1042,6 @@ Editar tipo de documento - - Search results - - src/app/components/search/search.component.html - 1 - - Resultados de la busqueda - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Cadena de búsqueda no valida: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Mostrando documentos similares a - - - Search query: - - src/app/components/search/search.component.html - 9 - - Cadena de búsqueda: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - ¿Quizás quisiste decir ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Sin resultados} =1 {Un resultado} other { resultados}} - Paperless-ng @@ -1187,35 +1139,11 @@ Cerrar todos - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Título - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 78 - - 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 - 33 + 37 Tipo: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Sin tipo de documento @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Tipo: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Sin tipo de documento @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Etiqueta: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Sin ninguna etiqueta @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Título: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Título + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Titulo y contenido + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + NSF + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Puntuación: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Fecha no válida. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index d3103a6ad..6d325e6d4 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documents @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Vue "" enregistrée avec succès. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Vue "" créée avec succès. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 NSA @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondant @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Titre @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Type de document @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Date de création @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Date d'ajout @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirmer la suppression @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Voulez-vous vraiment supprimer le document "" ? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Supprimer le document @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Une erreur s'est produite lors de la suppression du document : @@ -1042,54 +1042,6 @@ Éditer le type de document - - Search results - - src/app/components/search/search.component.html - 1 - - Résultats de la recherche - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Requête de recherche invalide : - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Présentation des documents similaires à - - - Search query: - - src/app/components/search/search.component.html - 9 - - Requête de recherche : - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Vouliez-vous dire "" ? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Aucun résultat} =1 {Un résultat} other { résultats}} - Paperless-ng @@ -1187,35 +1139,11 @@ Fermer tout - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Titre - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondant : @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Sans correspondant @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Type : @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Sans type de document @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Étiquette : @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Sans étiquette @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Titre : @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 NSA : + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Titre + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Titre & contenu + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + NSA + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Score : + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Date incorrecte. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 218e4fa98..57a95252b 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Dokumentumok @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 View "" saved successfully. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Nézet "" sikeresen létrehozva. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Partner @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Cím @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Dokumentum típus @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Létrehozva @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Hozzáadva @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Törlés megerősítése @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Do you really want to delete document ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 A dokumentumhoz tartozó fájlok véglegesen törlésre kerülnek. Ez a művelet nem visszafordítható. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Dokumentum törlése @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Error deleting document: @@ -1042,54 +1042,6 @@ Dokumentum típus szerkesztése - - Search results - - src/app/components/search/search.component.html - 1 - - Találatok - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Érvénytelen keresési kifejezés: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Showing documents similar to - - - Search query: - - src/app/components/search/search.component.html - 9 - - Keresés: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Úgy értetted, hogy ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - Paperless-ng @@ -1187,35 +1139,11 @@ Összes bezárása - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Cím - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Partner: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Without correspondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Típus: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Without document type @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Cimke: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Without any tag @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Title: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Cím + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Title & content + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Pont: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Invalid date. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index c41ed083d..51ad7370f 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documenti @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 La vista "" è stata salvata. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 La vista "" è stata creata. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Corrispondente @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Titolo @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Tipo di documento @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Creato @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Aggiunto @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Conferma eliminazione @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Vuoi eliminare il documento ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Elimina documento @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Errore nell'eliminazione del documento: @@ -1042,54 +1042,6 @@ Modifica tipo di documento - - Search results - - src/app/components/search/search.component.html - 1 - - Risultati della ricerca - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Query di ricerca non valida: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Documenti simili a - - - Search query: - - src/app/components/search/search.component.html - 9 - - Query di ricerca: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Forse intendevi ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Nessun risultato} =1 {Un risultato} other { risultati}} - Paperless-ng @@ -1187,35 +1139,11 @@ Chiudi tutti - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Titolo - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Corrispondente: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Senza corrispondente @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Tipo: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Senza tipo di documento @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Tag: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Senza alcun tag @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Titolo: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Titolo + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Titolo & contenuto + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Ricerca avanzata + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + Più come + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Punteggio: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Creato il: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Aggiunto il: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modificato il: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Data non valida. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Cercando documento con asn + Yes diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index c187fc531..cf67a9c80 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documenten @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 View "" met succes opgeslagen. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 View "" met succes gemaakt. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondent @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Titel @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Documenttype @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Aangemaakt @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Toegevoegd @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Bevestig het verwijderen @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Wilt u het document echt verwijderen ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Verwijder document @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Fout bij het verwijderen van het document: @@ -1042,54 +1042,6 @@ Documenttype bewerken - - Search results - - src/app/components/search/search.component.html - 1 - - Zoekresultaten - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Ongeldige zoekopdracht: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Toon documenten die lijken op - - - Search query: - - src/app/components/search/search.component.html - 9 - - Zoekopdracht: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Bedoelde u ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Geen resultaten} =1 {Eén resultaat} other { resultaten}} - Paperless-ng @@ -1187,35 +1139,11 @@ Alles sluiten - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Titel - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondent: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Zonder correspondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Type: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Zonder documenttype @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Etiket: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Zonder enig etiket @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Titel: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Titel + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Titel en inhoud + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Score: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Ongeldige datum. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index c95ae9670..946173aad 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documentos @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Visualização "" salva com sucesso. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Visualização "" criada com sucesso. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 NSA @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondente @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Título @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Tipo de Documento @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Criado @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Adicionado @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirmar exclusão @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Você realmente deseja excluir o documento ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Excluir documento @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Erro ao excluir documento: @@ -1042,54 +1042,6 @@ Editar tipo de documento - - Search results - - src/app/components/search/search.component.html - 1 - - Resultados da busca - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Termo de pesquisa inválido: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Exibindo documentos similares a - - - Search query: - - src/app/components/search/search.component.html - 9 - - Termo de pesquisa: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Você quis dizer ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Sem resultados} =1 {Um resultado} other { resultados}} - Paperless-ng @@ -1187,35 +1139,11 @@ Fechar todos - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Título - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondente: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Sem correspondente @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Tipo: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Sem tipo de documento @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Etiqueta: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Sem etiquetas @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Título: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Título + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Título & conteúdo + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + NSA + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Nota: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Data inválida. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 1059654f9..2c4d6d543 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documentos @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Visualização "" salva com sucesso. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Visualização "" criada com sucesso. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 NSA @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondente @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Título @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Tipo de Documento @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Criado @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Adicionado @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirmar exclusão @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Você realmente deseja excluir o documento ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Excluir documento @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Erro ao excluir documento: @@ -1042,54 +1042,6 @@ Editar tipo de documento - - Search results - - src/app/components/search/search.component.html - 1 - - Resultados da pesquisa - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Termo de pesquisa inválido: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Mostrar documentos similares a - - - Search query: - - src/app/components/search/search.component.html - 9 - - Termo de pesquisa: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Será que quer dizer ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, one {} =0 {Sem resultados} =1 {Um resultado} other { resultados}} - Paperless-ng @@ -1187,35 +1139,11 @@ Fechar todos - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Título - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondente: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Sem correspondente @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Tipo: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Sem tipo de documento @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Etiqueta: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Sem etiquetas @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Título: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 NSA: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Título + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Título & conteúdo + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + NSA + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Pesquisa avançada + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + Mais semelhante + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Pontuação: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Criado em: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Adicionado a: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modificado a: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Data inválida. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + À procura do documento com nsa + Yes diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 4f45f3625..0eb8c72ac 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Documente @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Vizualizarea "" a fost salvată. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Vizualizarea "" a fost creată. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 Aviz prealabil de expediție @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Corespondent @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Titlu @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Tipul documentului @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Creat @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Adăugat @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirmă ștergerea @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Sunteţi sigur că doriţi să ştergeţi documentul ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Șterge document @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Eroare la ștergerea documentului: @@ -1042,54 +1042,6 @@ Modifică un tip de document - - Search results - - src/app/components/search/search.component.html - 1 - - Rezultatele căutarii - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Interogare invalidă: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Documente similare cu - - - Search query: - - src/app/components/search/search.component.html - 9 - - Interogare: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Ați vrut să scrieți ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Niciun rezultat} =1 {Un rezultat} other { rezultate}} - Paperless-ng @@ -1187,35 +1139,11 @@ Închide tot - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Titlu - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 78 - - 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 - 33 + 37 Corespondent: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Fără corespondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Tip: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Fară tip @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Eticheta: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Fară etichete @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Titlu: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 Aviz prealabil de expediție: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Titlu + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Titlu si conținut + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + Aviz prealabil de expediție + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Scor: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Data invalidă. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index c2736233c..c0b9f8eff 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 Документы @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 Представление "" успешно сохранено. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 Представление "" успешно создано. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 Архивный номер @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Корреспондент @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Название @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Тип документа @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Создано @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Добавлено @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Подтвердите удаление @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Вы действительно хотите удалить документ ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 Файлы из этого документа будут удалены незамедлительно. Это операцию нельзя отменить. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Удалить документ @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Ошибка удаления документа: @@ -1042,54 +1042,6 @@ Редактировать тип документа - - Search results - - src/app/components/search/search.component.html - 1 - - Результаты поиска - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Неверный поисковой запрос: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Показываю документы похожие на - - - Search query: - - src/app/components/search/search.component.html - 9 - - Поисковый запрос: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Может вы имели ввиду ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {Нет результатов} =1 {Один результат} other {Результаты: }} - Paperless-ng @@ -1187,35 +1139,11 @@ Закрыть всё - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Заголовок - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Корреспондент: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Без корреспондента @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Тип: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Без типа документа @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Тег: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Без тегов @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Название: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 Архивный номер: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Заголовок + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Название и содержимое + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + АН + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Расширенный поиск + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + Больше похожих + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Оценка: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Создано: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Добавлено: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Изменено: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Неверная дата. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Поиск документа с asn + Yes diff --git a/src-ui/src/locale/messages.xh_ZA.xlf b/src-ui/src/locale/messages.xh_ZA.xlf index 2d759ed8a..d9f1f631c 100644 --- a/src-ui/src/locale/messages.xh_ZA.xlf +++ b/src-ui/src/locale/messages.xh_ZA.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 crwdns2850:0crwdne2850:0 @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 crwdns2852:0crwdne2852:0 @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 crwdns2854:0crwdne2854:0 @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 crwdns2878:0crwdne2878:0 @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 crwdns2880:0crwdne2880:0 @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 crwdns2882:0crwdne2882:0 @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 crwdns2884:0crwdne2884:0 @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 crwdns2886:0crwdne2886:0 @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 crwdns2888:0crwdne2888:0 @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 crwdns2890:0crwdne2890:0 @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 crwdns2892:0crwdne2892:0 @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 crwdns2894:0crwdne2894:0 @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 crwdns2896:0crwdne2896:0 @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 crwdns2898:0crwdne2898:0 @@ -1042,54 +1042,6 @@ crwdns3096:0crwdne3096:0 - - Search results - - src/app/components/search/search.component.html - 1 - - crwdns3098:0crwdne3098:0 - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - crwdns3100:0{{errorMessage}}crwdne3100:0 - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - 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 - 9 - - crwdns3104:0{{query}}crwdnd3104:0{{query}}crwdne3104:0 - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - crwdns3106:0[routerLink]crwdnd3106:0{{correctedQuery}}crwdnd3106:0{{correctedQuery}}crwdne3106:0 - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - crwdns3108:0VAR_PLURAL={VAR_PLURAL}crwdne3108:0 - Paperless-ng @@ -1187,35 +1139,11 @@ crwdns3132:0crwdne3132:0 - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - crwdns3134:0crwdne3134:0 - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 crwdns3138:0crwdne3138:0 @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 crwdns3140:0crwdne3140:0 @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 crwdns3142:0crwdne3142:0 @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 crwdns3144:0crwdne3144:0 @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 crwdns3146:0crwdne3146:0 @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 crwdns3148:0crwdne3148:0 @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 crwdns3150:0crwdne3150:0 @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 crwdns3416:0crwdne3416:0 + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + crwdns3134:0crwdne3134:0 + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + crwdns3136:0crwdne3136:0 + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + crwdns3354:0crwdne3354:0 + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + crwdns3434:0crwdne3434:0 + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + crwdns3436:0crwdne3436:0 + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 crwdns3186:0crwdne3186:0 + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + crwdns3426:0{{ document.created | customDate}}crwdne3426:0 + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + crwdns3428:0{{ document.added | customDate}}crwdne3428:0 + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + crwdns3430:0{{ document.modified | customDate}}crwdne3430:0 + Error executing bulk operation: @@ -1857,6 +1849,14 @@ crwdns3298:0crwdne3298:0 + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + crwdns3432:0{{asn}}crwdne3432:0 + Yes diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index a40acabe4..5f21489b4 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -54,7 +54,7 @@ Documents src/app/components/document-list/document-list.component.ts - 49 + 51 文件 @@ -62,7 +62,7 @@ View "" saved successfully. src/app/components/document-list/document-list.component.ts - 115 + 116 View "" saved successfully. @@ -70,7 +70,7 @@ View "" created successfully. src/app/components/document-list/document-list.component.ts - 136 + 138 View "" created successfully. @@ -166,7 +166,7 @@ ASN src/app/components/document-list/document-list.component.html - 105 + 111 ASN @@ -174,7 +174,7 @@ Correspondent src/app/components/document-list/document-list.component.html - 111 + 117 Correspondent @@ -182,7 +182,7 @@ Title src/app/components/document-list/document-list.component.html - 117 + 123 Title @@ -190,7 +190,7 @@ Document type src/app/components/document-list/document-list.component.html - 123 + 129 Document type @@ -198,7 +198,7 @@ Created src/app/components/document-list/document-list.component.html - 129 + 135 Created @@ -206,7 +206,7 @@ Added src/app/components/document-list/document-list.component.html - 135 + 141 Added @@ -214,7 +214,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 203 + 204 Confirm delete @@ -222,7 +222,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 204 + 205 Do you really want to delete document ""? @@ -230,7 +230,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 205 + 206 The files for this document will be deleted permanently. This operation cannot be undone. @@ -238,7 +238,7 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 207 + 208 Delete document @@ -246,7 +246,7 @@ Error deleting document: src/app/components/document-detail/document-detail.component.ts - 214 + 215 Error deleting document: @@ -1042,54 +1042,6 @@ Edit document type - - Search results - - src/app/components/search/search.component.html - 1 - - Search results - - - Invalid search query: - - src/app/components/search/search.component.html - 4 - - Invalid search query: - - - Showing documents similar to - - src/app/components/search/search.component.html - 6 - - Showing documents similar to - - - Search query: - - src/app/components/search/search.component.html - 9 - - Search query: - - - Did you mean ""? - - src/app/components/search/search.component.html - 11 - - Did you mean ""? - - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - - src/app/components/search/search.component.html - 16 - - {VAR_PLURAL, plural, =0 {No results} =1 {One result} other { results}} - Paperless-ng @@ -1187,35 +1139,11 @@ Close all - - Title - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 77 - - Title - - - Title & content - - src/app/components/document-list/filter-editor/filter-editor.component.ts - 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 - 33 + 37 Correspondent: @@ -1223,7 +1151,7 @@ Without correspondent src/app/components/document-list/filter-editor/filter-editor.component.ts - 35 + 39 Without correspondent @@ -1231,7 +1159,7 @@ Type: src/app/components/document-list/filter-editor/filter-editor.component.ts - 40 + 44 Type: @@ -1239,7 +1167,7 @@ Without document type src/app/components/document-list/filter-editor/filter-editor.component.ts - 42 + 46 Without document type @@ -1247,7 +1175,7 @@ Tag: src/app/components/document-list/filter-editor/filter-editor.component.ts - 46 + 50 Tag: @@ -1255,7 +1183,7 @@ Without any tag src/app/components/document-list/filter-editor/filter-editor.component.ts - 50 + 54 Without any tag @@ -1263,7 +1191,7 @@ Title: src/app/components/document-list/filter-editor/filter-editor.component.ts - 54 + 58 Title: @@ -1271,10 +1199,50 @@ ASN: src/app/components/document-list/filter-editor/filter-editor.component.ts - 57 + 61 ASN: + + Title + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 85 + + Title + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 86 + + Title & content + + + ASN + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 87 + + ASN + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 88 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 91 + + More like + Filter tags @@ -1408,10 +1376,34 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 86 Score: + + Created: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Created: + + + Added: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 44 + + Added: + + + Modified: + + src/app/components/document-list/document-card-small/document-card-small.component.html + 45 + + Modified: + Error executing bulk operation: @@ -1857,6 +1849,14 @@ Invalid date. + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + Yes